/* ========== SWIPER SLIDER ========== */
.swiper {
    background: var(--bg-dark-1);
}

.swiper,
.sw-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-slide {
    position: relative;
    background: var(--bg-dark-1);
}

.swiper-inner {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.sw-caption {
    z-index: 1;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -.5;
}

/* .sw-overlay {
    background: -webkit-linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), .8) 0%, rgba(var(--bg-dark-1-rgb), .8) 50%);
    background: -moz-linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), .8) 0%, rgba(var(--bg-dark-1-rgb), .8) 50%);
    background: linear-gradient(0deg, rgba(var(--bg-dark-1-rgb), .8) 0%, rgba(var(--bg-dark-1-rgb), .8) 50%);
} */

.swiper-pagination {
    width: 100px;
    font-size: 20px;
    text-align: right;
    position: absolute;
    left: auto;
    right: 40px;
    bottom: 40px;
    font-weight: 400;
}

.swiper-pagination-total {
    font-size: 20px;
    opacity: .5;
}

.swiper-pagination-current {
    color: #ffffff;
    font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

/* ========== V-CENTER ========== */
.v-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
}

/* ========== SECTION ========== */
section {
    padding: 100px 0 100px 0;
}

.no-top {
    padding-top: 0 !important;
}

.no-bottom {
    padding-bottom: 0 !important;
    margin-bottom: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.text-light,
.text-light p {
    color: var(--body-font-color-dark);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6 {
    color: #fff;
}

/* ========== SUBTITLE ========== */
.subtitle {
    position: relative;
    font-weight: 600;
    display: inline-block;
    font-size: 12px;
    color: var(--heading-font-color);
    background: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5em;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding-left: 30px;
    margin-bottom: 20px;
}

.subtitle:before {
    position: absolute;
    left: 0;
    content: '';
    display: block;
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
    animation: blinkingText 1s infinite;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}

.dark-scheme .subtitle,
.text-light .subtitle {
    color: #ffffff;
}

@keyframes blinkingText {
    0%   { background: var(--primary-color); }
    50%  { background: rgba(var(--primary-color-rgb), 0); }
    100% { background: var(--primary-color); }
}

/* ========== HEADINGS ========== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight);
    color: var(--heading-font-color);
    text-transform: uppercase;
}



h3 {
    line-height: 1.5em;
    font-size: 22px;
    margin-bottom: 10px;
}

/* ========== CAM STYLE (h1 border corners) ========== */
.cam-style {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.cam-style span {
    position: absolute;
    display: block;
    border: solid 1px #ffffff;
    width: 20px;
    height: 20px;
}

.cam-style span:nth-child(1) {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.cam-style span:nth-child(2) {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.cam-style span:nth-child(3) {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.cam-style span:nth-child(4) {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* ========== BUTTONS ========== */
a.btn-main,
a.btn-main:active,
a.btn-main:focus,
a.btn-main:visited,
.btn-main,
input[type=button].btn-main,
a.btn-line {
    position: relative;
    display: inline-block;
    font-family: var(--heading-font);
    text-align: center;
    color: #fff;
    outline: 0;
    font-weight: bold;
    text-decoration: none;
    padding: 3px 20px;
    font-size: 13px;
    border: none;
    border-radius: var(--button-rounded);
    -moz-border-radius: var(--button-rounded);
    -webkit-border-radius: var(--button-rounded);
    text-transform: uppercase;
}

a.btn-main:hover,
.btn-main:hover {
    color: #fff;
    -webkit-box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
    -moz-box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
    box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
}

a.btn-main.fx-slide {
    overflow: hidden;
}

a.btn-main.fx-slide span {
    display: block;
    position: relative;
    transition: all .3s ease-in-out;
}

a.btn-main.fx-slide:hover span {
    transform: translate(0, 40px);
    opacity: 0;
}

a.btn-main.fx-slide:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

a.btn-main.fx-slide:before {
    content: attr(data-hover);
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translate(0, -100%);
    transition: all 0.3s ease-in-out;
}

a.btn-line,
a.btn-line:hover {
    background: none;
    color: #35404e;
    border: solid 1px rgba(255, 255, 255, .5);
}

a.btn-line:hover {
    border: solid 1px rgba(255, 255, 255, 0);
    color: #ffffff;
}

.text-light .btn-line {
    color: #ffffff;
}

/* ========== POSITION & Z-INDEX HELPERS ========== */
.relative, .position-relative { position: relative; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-1000 { z-index: 1000; }
.abs, .absolute { position: absolute; }
.abs-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ========== WIDTH/HEIGHT HELPERS ========== */
.w-100 { width: 100%; }
.w-70  { width: 70%; }
.h-70  { height: 70%; }

/* ========== TRANSITIONS ========== */
.btn-main,
.swiper-button-next,
.swiper-button-prev,
a.btn-line:after,
#mainmenu * {
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    outline: none;
}

/* ========== WOW ANIMATION ========== */
.wow {
    visibility: hidden;
}

/* ========== RESPONSIVE ========== */
@media only screen and (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    h1,
    h1.slider-title {
        font-size: 60px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    section {
        padding: 40px 0;
    }

    h1,
    h1.slider-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .swiper-pagination {
        right: 20px;
        bottom: 20px;
    }
}


@media only screen and (max-width: 990px) {
.sw-caption .col-lg-6:last-child img {
        display: none;
    }
    .v-center {
        min-height: 80vh;
    }

}




/* ========== RESPONSIVE - SMALL DEVICES BANNER ========== */
@media only screen and (max-width: 767px) {
    section {
        padding: 40px 0;
    }

    h1,
    h1.slider-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .swiper-pagination {
        right: 20px;
        bottom: 20px;
    }

    /* Hide all text content in banner on small devices */
    .sw-caption .col-lg-6:first-child {
        display: none !important;
    }

    /* Show only image column, centered */
    .sw-caption .col-lg-6:last-child {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Make banner image smaller on small devices */
    /* .sw-caption .col-lg-6:last-child img {
        width: 60% !important;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    } */
    .sw-caption .col-lg-6:last-child img {
        display: none;
    }

    /* Reduce overall banner height on small devices */
    .v-center {
        min-height: 70vh;
    }
}

@media only screen and (max-width: 480px) {
    /* .sw-caption .col-lg-6:last-child img {
        width: 85% !important;
        max-width: 280px;
    } */
    .sw-caption .col-lg-6:last-child img {
        display: none;
    }

    .v-center {
        min-height: 50vh;
    }
}










