
.slider-section {
    position: relative;
}

/* ------------- CONTENT BANNER ------------- */

.contentBannerContainer {
    aspect-ratio: 3 / 1.3;
}

@media only screen and (max-width: 992px){
    .contentBannerContainer {
        aspect-ratio: 2 / 1.3;
    }
}
@media only screen and (max-width: 576px){
    .contentBannerContainer {
        aspect-ratio: 1 / 1.3;
    }
}

/* ------------- HOME BANNER ------------- */

.slider-section .bannerContainer {
    width: 100%;
    min-height: 500px;
}
.slider-height-p .bannerContainer,
.slider-height-p100 .bannerContainer {
    height: 100vh;
}
.slider-height-p80 .bannerContainer {
    height: 80.5vh;
}
.slider-height-p75 .bannerContainer {
    height: 75vh;
}
.slider-height-p70 .bannerContainer {
    height: 70vh;
}
.slider-height-p65 .bannerContainer {
    height: 65vh;
}
.slider-height-p60 .bannerContainer {
    height: 60vh;
}
.slider-height-p55 .bannerContainer {
    height: 55vh;
}
.slider-height-p50 .bannerContainer {
    height: 50vh;
}



@media only screen and (max-width: 992px){
    .slider-height-p .bannerContainer,
    .slider-height-p100 .bannerContainer,
    .slider-height-p80 .bannerContainer,
    .slider-height-p75 .bannerContainer,
    .slider-height-p70 .bannerContainer,
    .slider-height-p65 .bannerContainer,
    .slider-height-p60 .bannerContainer {
        height: 60vh;
    }
}
@media only screen and (max-width: 767px){
    .slider-height-p .bannerContainer,
    .slider-height-p100 .bannerContainer,
    .slider-height-p80 .bannerContainer,
    .slider-height-p75 .bannerContainer,
    .slider-height-p70 .bannerContainer,
    .slider-height-p65 .bannerContainer,
    .slider-height-p60 .bannerContainer {
        height: 55vh;
        min-height: 400px;
    }
    .slider-height-p55 .bannerContainer,
    .slider-height-p50 .bannerContainer {
        min-height: 400px;
    }
}
@media only screen and (max-width: 576px){
    .slider-height-p .bannerContainer,
    .slider-height-p100 .bannerContainer,
    .slider-height-p80 .bannerContainer,
    .slider-height-p75 .bannerContainer,
    .slider-height-p70 .bannerContainer,
    .slider-height-p65 .bannerContainer,
    .slider-height-p60 .bannerContainer,
    .slider-height-p55 .bannerContainer,
    .slider-height-p50 .bannerContainer {
        height: 50vh;
        min-height: 400px;
    }
}


/* ------------- SWIPER ------------- */
.swiper-slide {
    background-color: #eee;
}


.swiper-slide:before {
    display: block;
    position: absolute;
    z-index: 10;
    top: 0px;
    right: 0px;
    left: 0px;
    height: 300px;
    content: "";

    background: -webkit-linear-gradient(bottom, rgba(0,0,0,0.6) 15%, rgba(0,0,0,0.44) 44%,rgba(0,0,0,0.28) 65%,rgba(0,0,0,0.12) 80%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 15%, rgba(0,0,0,0.44) 44%,rgba(0,0,0,0.28) 65%,rgba(0,0,0,0.12) 80%,rgba(0,0,0,0) 100%);
}


.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide-text-container {
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.swiper-slide-text-grid {
    display: grid;
    height: 100%;
    width: 100%;
    max-width: var(--max-width-header);
    padding: 240px 20px 70px 20px;
    margin: auto;
}




/* --------------------- TEXT POSITION --------------------- */
.swiper-slide-text {
    align-self: center;
    justify-self: center;
}
/* left column */
.swiper-text-position-lt .swiper-slide-text {
    align-self: start;
    justify-self: left;
}
.swiper-text-position-lm .swiper-slide-text {
    align-self: center;
    justify-self: left;
}
.swiper-text-position-lb .swiper-slide-text {
    align-self: end;
    justify-self: left;
}
/* center column */
.swiper-text-position-ct .swiper-slide-text {
    align-self: start;
    justify-self: center;
}
.swiper-text-position-cm .swiper-slide-text {
    align-self: center;
    justify-self: center;
}
.swiper-text-position-cb .swiper-slide-text {
    align-self: end;
    justify-self: center;
}
/* right column */
.swiper-text-position-rt .swiper-slide-text {
    align-self: start;
    justify-self: right;
}
.swiper-text-position-rm .swiper-slide-text {
    align-self: center;
    justify-self: right;
}
.swiper-text-position-rb .swiper-slide-text {
    align-self: end;
    justify-self: right;
}

/* --------------------- TEXT POSITION GRADIENT --------------------- */

.swiper-text-position-lt .swiper-slide-text-container,
.swiper-text-position-lm .swiper-slide-text-container,
.swiper-text-position-lb .swiper-slide-text-container {
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 40%,rgba(0,0,0,0.2) 70%,rgba(0,0,0,0.4) 100%);/* 0 - 0.15 - 0.3 */
    background: linear-gradient(to left, rgba(0,0,0,0) 40%,rgba(0,0,0,0.2) 70%,rgba(0,0,0,0.4) 100%);
}


.swiper-text-position-ct .swiper-slide-text-container {
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 40%,rgba(0,0,0,0.2) 70%,rgba(0,0,0,0.4) 100%);
    background: linear-gradient(to top, rgba(0,0,0,0) 40%,rgba(0,0,0,0.2) 70%,rgba(0,0,0,0.4) 100%);
}
.swiper-text-position-cm .swiper-slide-text-container {
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 20%,rgba(0,0,0,0.05) 50%,rgba(0,0,0,0) 100%);
}
.swiper-text-position-cb .swiper-slide-text-container {
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,0) 40%,rgba(0,0,0,0.2) 70%,rgba(0,0,0,0.4) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%,rgba(0,0,0,0.2) 70%,rgba(0,0,0,0.4) 100%);
}


.swiper-text-position-rt .swiper-slide-text-container,
.swiper-text-position-rm .swiper-slide-text-container,
.swiper-text-position-rb .swiper-slide-text-container {
    background: -webkit-linear-gradient(right, rgba(0,0,0,0) 40%,rgba(0,0,0,0.2) 70%,rgba(0,0,0,0.4) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 40%,rgba(0,0,0,0.2) 70%,rgba(0,0,0,0.4) 100%);
}


/* --------------------- TEXT CSS --------------------- */

.swiper-slide-text {
    max-width: 992px;/*55%*/
    text-align: center;
}
.swiper-slide-text,
.swiper-slide-text * {
    font-family: var(--titles-font-family);
    text-align: center;
    color: #fff;
    font-size: 23px;
    font-weight: 300;
    line-height: normal;
    text-shadow: 0 0 3px rgba(0,0,0,1), 0 0 6px rgba(0,0,0,1);
}

.swiper-slide-text i,
.swiper-slide-text em,
.swiper-slide-text i *,
.swiper-slide-text em * {
    font-family: var(--button-font-family) !important;
    /*font-size: 30px;*/
    letter-spacing: 2px;
}
.swiper-slide-text i strong,
.swiper-slide-text strong i,
.swiper-slide-text i b,
.swiper-slide-text b i {
    font-weight: bold;
}


.swiper-text-position-lt .swiper-slide-text,
.swiper-text-position-lt .swiper-slide-text *,
.swiper-text-position-lm .swiper-slide-text,
.swiper-text-position-lm .swiper-slide-text *,
.swiper-text-position-lb .swiper-slide-text,
.swiper-text-position-lb .swiper-slide-text * {
    text-align: left;
}
.swiper-text-position-rt .swiper-slide-text,
.swiper-text-position-rt .swiper-slide-text *,
.swiper-text-position-rm .swiper-slide-text,
.swiper-text-position-rm .swiper-slide-text *,
.swiper-text-position-rb .swiper-slide-text,
.swiper-text-position-rb .swiper-slide-text * {
    text-align: right;
}


.swiper-slide-text h1,
.swiper-slide-text h2,
.swiper-slide-text h3 {
    color: #fff;
    font-size: 47px;
    text-shadow: 0 0 3px rgba(0,0,0,1), 0 0 6px rgba(0,0,0,1);
    text-transform: none;
}

@media only screen and (max-width: 992px){
    .swiper-slide-text,
    .swiper-slide-text * {
        font-size: 21px;
    }
    .swiper-slide-text i,
    .swiper-slide-text em,
    .swiper-slide-text i *,
    .swiper-slide-text em * {
        font-size: 21px;
    }
    .swiper-slide-text h1,
    .swiper-slide-text h2,
    .swiper-slide-text h3 {
        font-size: 40px;
    }
    .swiper-slide-text-grid {
        padding: 120px 25px 30px 25px;
    }
}
@media only screen and (max-width: 767px){
    .swiper-slide-text,
    .swiper-slide-text * {
        font-size: 19px;
    }
    .swiper-slide-text i,
    .swiper-slide-text em,
    .swiper-slide-text i *,
    .swiper-slide-text em * {
        font-size: 19px;
    }
    .swiper-slide-text h1,
    .swiper-slide-text h2,
    .swiper-slide-text h3 {
        font-size: 34px;
    }
}
@media only screen and (max-height: 767px){
    .swiper-slide-text-grid {
        padding: 120px 25px 30px 25px;
    }
}






/* ------------- INTERNAL BANNERS TEXT ------------- */

/*#internal_banner .swiper-slide-text-container,
#contact_banner .swiper-slide-text-container,
#login_banner .swiper-slide-text-container {
    padding: 100px 0px 100px 0px;
}

@media only screen and (max-width: 767px){
    #internal_banner .swiper-slide-text-container,
    #contact_banner .swiper-slide-text-container,
    #login_banner .swiper-slide-text-container {
        padding: 60px 0px 60px 0px;
    }
    .swiper-slide-text {
        max-width: 100%;
    }
}
@media only screen and (max-width: 576px){
    #internal_banner .swiper-slide-text-container,
    #contact_banner .swiper-slide-text-container,
    #login_banner .swiper-slide-text-container {
        padding: 0px 0px 0px 0px;
    }
}
@media only screen and (max-height: 400px){
    #internal_banner .swiper-slide-text-container,
    #contact_banner .swiper-slide-text-container,
    #login_banner .swiper-slide-text-container {
        padding: 0px 0px 0px 0px;
    }
}

#internal_banner .swiper-slide-text-grid,
#contact_banner .swiper-slide-text-grid,
#login_banner .swiper-slide-text-grid {
    padding: 50px 20px;
}


#internal_banner .swiper-slide-text-container,
#internal_banner .swiper-slide-text-container *,
#contact_banner .swiper-slide-text-container,
#contact_banner .swiper-slide-text-container *,
#login_banner .swiper-slide-text-container,
#login_banner .swiper-slide-text-container *{
    font-size: 1.6rem;
    text-shadow: 0 0 2px rgba(0,0,0,1), 0 0 4px rgba(0,0,0,1), 0 0 6px rgba(0,0,0,1);
}
#internal_banner .swiper-slide-text-container h1,
#internal_banner .swiper-slide-text-container h2,
#internal_banner .swiper-slide-text-container h3,
#contact_banner .swiper-slide-text-container h1,
#contact_banner .swiper-slide-text-container h2,
#contact_banner .swiper-slide-text-container h3,
#login_banner .swiper-slide-text-container h1,
#login_banner .swiper-slide-text-container h2,
#login_banner .swiper-slide-text-container h3 {
    font-size: 3.6rem;
    line-height: 3.6rem;
}



#internal_banner .swiper-slide-text-container i,
#internal_banner .swiper-slide-text-container em,
#contact_banner .swiper-slide-text-container i,
#contact_banner .swiper-slide-text-container em,
#login_banner .swiper-slide-text-container i,
#login_banner .swiper-slide-text-container em {
    font-family: var(--button-font-family) !important;
    font-size: 36px;
    line-height: normal;
}

@media only screen and (max-width: 992px){
    #internal_banner .swiper-slide-text-container,
    #internal_banner .swiper-slide-text-container *,
    #contact_banner .swiper-slide-text-container,
    #contact_banner .swiper-slide-text-container *,
    #login_banner .swiper-slide-text-container,
    #login_banner .swiper-slide-text-container * {
        font-size: 1.4rem;
    }
    #internal_banner .swiper-slide-text-container h1,
    #internal_banner .swiper-slide-text-container h2,
    #internal_banner .swiper-slide-text-container h3,
    #contact_banner .swiper-slide-text-container h1,
    #contact_banner .swiper-slide-text-container h2,
    #contact_banner .swiper-slide-text-container h3,
    #login_banner .swiper-slide-text-container h1,
    #login_banner .swiper-slide-text-container h2,
    #login_banner .swiper-slide-text-container h3 {
        font-size: 3.6rem;
        line-height: 3.6rem;
    }
}
@media only screen and (max-width: 767px){
    #internal_banner .swiper-slide-text-container,
    #internal_banner .swiper-slide-text-container *,
    #contact_banner .swiper-slide-text-container,
    #contact_banner .swiper-slide-text-container *,
    #login_banner .swiper-slide-text-container,
    #login_banner .swiper-slide-text-container * {
        font-size: 1.1rem;
    }
    #internal_banner .swiper-slide-text-container h1,
    #internal_banner .swiper-slide-text-container h2,
    #internal_banner .swiper-slide-text-container h3,
    #contact_banner .swiper-slide-text-container h1,
    #contact_banner .swiper-slide-text-container h2,
    #contact_banner .swiper-slide-text-container h3,
    #login_banner .swiper-slide-text-container h1,
    #login_banner .swiper-slide-text-container h2,
    #login_banner .swiper-slide-text-container h3 {
        font-size: 3.2rem;
        line-height: 3.2rem;
    }
}
@media only screen and (max-width: 576px){
    #internal_banner .swiper-slide-text-container,
    #internal_banner .swiper-slide-text-container *,
    #contact_banner .swiper-slide-text-container,
    #contact_banner .swiper-slide-text-container *,
    #login_banner .swiper-slide-text-container,
    #login_banner .swiper-slide-text-container * {
        font-size: 1rem;
    }
    #internal_banner .swiper-slide-text-container h1,
    #internal_banner .swiper-slide-text-container h2,
    #internal_banner .swiper-slide-text-container h3,
    #contact_banner .swiper-slide-text-container h1,
    #contact_banner .swiper-slide-text-container h2,
    #contact_banner .swiper-slide-text-container h3,
    #login_banner .swiper-slide-text-container h1,
    #login_banner .swiper-slide-text-container h2,
    #login_banner .swiper-slide-text-container h3 {
        font-size: 2.6rem;
        line-height: 2.6rem;
    }
}
*/

/* ------------- INTERNAL BANNERS END ------------- */



.swiper-slide-text-sizer {
    padding: 0px 20px;
    margin: auto;
}

.swiper-slide .swiper-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    background-position:center center;
    background-size:cover;
    background-repeat: no-repeat;
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.swiper-slide.swiper-slide-type-medium video {
    max-width: 700px;
}
.swiper-slide.swiper-slide-type-small video {
    max-width: 700px;
}
.swiper-slide.swiper-slide-type-medium.swiper-text-position-lt video,
.swiper-slide.swiper-slide-type-small.swiper-text-position-lt video,
.swiper-slide.swiper-slide-type-medium.swiper-text-position-lm video,
.swiper-slide.swiper-slide-type-small.swiper-text-position-lm video,
.swiper-slide.swiper-slide-type-medium.swiper-text-position-lb video,
.swiper-slide.swiper-slide-type-small.swiper-text-position-lb video{
    float: right;
}











.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 22px;
}
.swiper-pagination {
    text-align: right;
    padding-right: 20px;
    padding-left: 20px;
}

.swiper-pagination.swiper-pagination-fraction {
    left: auto;
    right: 90px;
    width: auto;
}
@media only screen and (max-width: 992px){
    .swiper-pagination.swiper-pagination-fraction {
        right: 0px;
    }
}

.swiper-pagination.swiper-pagination-fraction,
.swiper-pagination.swiper-pagination-fraction * {
    font-size: 16px;
    color: #fff;
    line-height: normal !important;
    font-weight: 300 !important;
    text-shadow: 0 0 3px rgba(0,0,0,1), 0 0 6px rgba(0,0,0,1);
}

.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #fff;
    border: 1px solid rgba(34, 34, 34, 0.8);
    opacity: 1;
    border-radius: 50%; /*1px*/
    margin: 0px 7px !important;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
    border: 1px solid rgba(34, 34, 34, 0.3);
    box-shadow:
        0px 0px 14px rgba( 255, 255, 255, 1 ),
        0px 0px 11px rgba( 255, 255, 255, 1 ),
        0px 0px 9px rgba( 255, 255, 255, 1 ),
        0px 0px 6px rgba( 255, 255, 255, 1 ),
        0px 0px 3px rgba( 255, 255, 255, 1 );
}
.swiper-slide-no-text {
    display: none;
}
.slide-text-not-active {
    display: none;
}
.slide-text-active {
    display: block;
}
.swiper-button-prev,
.swiper-button-next {
    z-index: 10;
    width: 70px;
    height: 100px;
    margin-top: -50px;
    cursor: pointer;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
    opacity: 0.7;
    display: block;
}
@media only screen and (max-width: 992px){
    .swiper-button-prev,
    .swiper-button-next {
        width: 70px;
        height: 70px;
        margin-top: -70px;
    }
}
@media only screen and (max-width: 767px){
    .swiper-button-prev,
    .swiper-button-next {
        width: 50px;
        height: 50px;
        margin-top: -50px;
    }
}


.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 1;
}
.swiper-button-prev {
    background-image: url("../img/icons/arr_l.png");
    background-position: 13px center;
    left: 10px;
    right: auto;
}
.swiper-button-next {
    background-image: url("../img/icons/arr_r.png");
    background-position: right 13px center;
    right: 10px;
    left: auto;
}


.swiper-button-disabled {
    display: none !important;
}