/*Slider*/
.slider-container {
    height: calc(100vh - 120px);
    position: relative;
    margin: 0!important;
}
.slider-background {
    height: calc(100% - 150px);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.slider-background.empty-slider {
    height: 100%;
}
.slider-background-text {
	padding: 20px 0;
    margin-right: 10%;
    margin-left: 10%;
}
.slider-background-text h1 {
	color: #ffffff;
    text-shadow: 5px 5px 5px #00000022;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: right;
    font-size: 75px;
}
.slider-bottom-blocks {
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: 1s;
    transition-delay: 250ms;
    margin-left: 70px;
    margin-right: 70px;
}
.slider-bottom-blocks > div {
    text-align: center;
    color: #ffffff!important;
    padding-top: 40px;
    padding-bottom: 40px;
}
.slider-bottom-blocks > div:nth-child(3n+1) {
    background-color: var(--col-blue-dark);
}
.slider-bottom-blocks > div:nth-child(3n+2) {
    background-color: var(--col-blue);
}
.slider-bottom-blocks > div:nth-child(3n+3) {
    background-color: var(--col-blue-light);
}
.slider-bottom-blocks > div > div {
    padding: 0 30px;
}
.slider-bottom-blocks > div > div > * {
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 400;
}
.slider-bottom-blocks > div > div > *:last-child {
    margin-bottom: 0 ;
}
.slider-bottom-blocks > div > div > h2.slider-bottom-title {
    font-size: 28px;
}

.slider-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 1;
    transition: .4s;
    pointer-events: none;
}
@media screen and (max-width: 1399.98px) {
	.slider-background-text {
        margin-right: 90px;
        margin-left: 70px;
    }
    .slider-background-text h1 {
    	font-size: 60px;
    }
    .slider-bottom-blocks > div > div > h2.slider-bottom-title {
        font-size: 26px;
    }
}

@media screen and (max-width: 1199.98px) {
    .slider-container {
        height: auto!important;
    }
    .slider-background {
        height: 50vh!important;
        padding-bottom: 10vh!important;
    }
    .slider-bottom-blocks {
        position: relative;
        bottom: auto;
        margin-top: -10vh;
    }
    .slider-background-overlay {
        display: none;
    }
    .slider-background-text h1 {
    	font-size: 50px;
    }
    .slider-bottom-blocks > div > div > h2.slider-bottom-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 767.98px) {
    .slider-background {
        height: 35vh!important;
        padding-bottom: 5vh!important;
    }
    .slider-bottom-blocks {
        margin-top: -5vh;
        margin-left: 25px;
        margin-right: 25px;
    }
    .slider-background-text h1 {
    	font-size: 40px;
    }
    .slider-background-text {
    	padding: 10px 0;
    	margin-right: 25px;
        margin-left: 25px;
	}
    .slider-bottom-blocks > div > div > h2.slider-bottom-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 575.98px) {
    .slider-background {
        height: 25vh!important;
        padding-bottom: 25px!important;
    }
    .slider-bottom-blocks {
        margin-top: -25px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .slider-bottom-blocks > div {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .slider-bottom-blocks > div > div > * {
        margin-bottom: 15px;
    }
    .slider-bottom-blocks > div > div > h2.slider-bottom-title {
        font-size: 20px;
    }
    .slider-background-text h1 {
    	font-size: 28px;
    }
    .slider-background-text {
        margin-right: 15%;
        margin-left: 15%;
        max-width: 70%;
	}
}