* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slide {
    overflow: hidden;
}

    .slide::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 10;
    }

    .slide .image-data {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        z-index: 100;
    }

.image-data span.text {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.image-data h2 {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    color: #333;
    background: #fff;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}

    a.button:hover {
        color: #fff;
        background-color: #c87e4f;
    }
/* swiper button css */
.nav-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
}

    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.4);
    }

.swiper-button-next {
    right: 50px;
}

.swiper-button-prev {
    left: 50px;
}

.nav-btn::before,
.nav-btn::after {
    font-size: 25px;
    color: #fff;
}

.swiper-pagination-bullet {
    opacity: 1;
    height: 12px;
    width: 12px;
    background-color: #fff;
    visibility: hidden;
}

.swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: #c87e4f;
}

@media screen and (max-width: 768px) {
    .nav-btn {
        visibility: hidden;
    }

    .swiper-pagination-bullet {
        visibility: visible;
    }
}

@media screen and (max-width: 767px) {
    .explore-two .main {
        height: clamp(220px, 62vw, 380px);
    }

    .explore-two .swiper-pagination {
        bottom: 14px !important;
    }

    .explore-two .swiper-pagination-bullet {
        height: 10px;
        width: 10px;
    }
}
/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--nexin-black);
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    padding: 276px 0 142px;
    text-align: center;
    z-index: 15;
}

.page-header__img-1 {
    position: absolute;
    bottom: 0;
    right: 0px;
}

.page-header__inner h3 {
    font-size: 54px;
    color: var(--nexin-white);
    line-height: 1em;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.thm-breadcrumb__inner {
    position: relative;
    display: block;
}

.thm-breadcrumb {
    position: relative;
    display: block;
}

    .thm-breadcrumb li {
        position: relative;
        display: inline-block;
        font-size: 18px;
        font-weight: 400;
        line-height: 18px;
        color: var(--nexin-white);
        text-transform: capitalize;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        font-family: var(--nexin-font-two);
    }

        .thm-breadcrumb li + li {
            margin-left: 5px;
        }

        .thm-breadcrumb li a {
            position: relative;
            display: inline-block;
            font-size: 18px;
            font-weight: 400;
            line-height: 18px;
            color: var(--nexin-base);
            text-transform: capitalize;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            font-family: var(--nexin-font-two);
        }

        .thm-breadcrumb li:hover a {
            color: var(--nexin-white);
            opacity: 1;
        }

.home-page__bottom {
    position: relative;
    display: block;
    padding-top: 50px;
}
/*==============================================
   Contact Page 
===============================================*/
.contact-page {
    position: relative;
    display: block;
    padding: 105px 0 120px;
    z-index: 1;
}

.contact-page__top {
    position: relative;
    display: block;
}

.contact-page__top-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
    color: var(--nexin-black);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
}

.contact-page__contact-list {
    position: relative;
    display: block;
}

.contact-page__contact-single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 22px 30px 21px;
    border: 1px solid var(--nexin-bdr-color);
    margin-bottom: 30px;
    height: 100%;
}

.contact-page__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 1px solid var(--nexin-bdr-color);
    background-color: var(--nexin-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-page__contact-single:hover .contact-page__icon {
    border: 1px solid var(--nexin-bdr-black);
    background-color: var(--nexin-black);
}

.contact-page__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--nexin-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-page__contact-single:hover .contact-page__icon span {
    color: var(--nexin-white);
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.contact-page__contact-content {
    position: relative;
    display: block;
    flex: 1;
}

    .contact-page__contact-content h3 {
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        color: var(--nexin-black);
        text-transform: capitalize;
        margin-bottom: 3px;
    }

    .contact-page__contact-content p {
        font-weight: 300;
        font-family: var(--nexin-font-two);
        font-size: 14px;
    }

        .contact-page__contact-content p a {
            color: var(--nexin-gray);
            font-size: 14px;
        }

            .contact-page__contact-content p a:hover {
                color: var(--nexin-base);
            }

.contact-page__bottom {
    position: relative;
    display: block;
    padding-top: 50px;
}

.contact-page__bottom-left {
    position: relative;
    display: block;
    margin-right: 30px;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 688px;
    width: 100%;
}

.contact-page__bottom-right {
    position: relative;
    display: block;
    border: 1px solid var(--nexin-bdr-color);
    padding: 46px 60px 60px;
}

.contact-page__form-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
    color: var(--nexin-black);
    margin-bottom: 28px;
}

.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

    .contact-page__input-box input[type="text"],
    .contact-page__input-box input[type="email"],
    .contact-page__input-box input[type="number"] {
        height: 56px;
        width: 100%;
        background-color: transparent;
        border: 1px solid var(--nexin-bdr-color);
        padding-left: 30px;
        padding-right: 30px;
        outline: none;
        font-size: 16px;
        font-weight: 300;
        color: var(--nexin-gray);
        font-family: var(--nexin-font-two);
        display: block;
    }

    .contact-page__input-box textarea {
        font-size: 16px;
        font-weight: 300;
        height: 150px;
        width: 100%;
        color: var(--nexin-gray);
        font-family: var(--nexin-font-two);
        background-color: transparent;
        border: 1px solid var(--nexin-bdr-color);
        padding: 15px 30px 30px;
        outline: none;
        position: relative;
        display: block;
    }

    .contact-page__input-box.text-message-box {
        height: 150px;
    }

.contact-page__btn-box {
    position: relative;
    display: block;
}

    .contact-page__btn-box .thm-btn {
        color: var(--nexin-white);
        background-color: var(--nexin-black);
    }

        .contact-page__btn-box .thm-btn::before {
            background-color: var(--nexin-base);
        }

        .contact-page__btn-box .thm-btn::after {
            background-color: rgba(var(--nexin-base-rgb), 0.3);
        }
/*==============================================
   End  
===============================================*/
.explore-two {
    position: relative;
    overflow: hidden;
    padding: 0;
}

    .explore-two .row {
        display: flex;
        align-items: stretch;
    }

.mySwiper .swiper-wrapper {
    height: 100%;
}
/* REMOVE OLD MARGIN */
.home-page__bottom-left {
    margin-right: 0;
    height: 100%;
}
/* RIGHT SIDE */
.home-page__bottom-right {
    width: 100%;
    height: 100%;
    padding: 60px;
    background: #fff;
    border: 1px solid var(--nexin-bdr-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Fix Bootstrap column spacing */
.explore-two .col-xl-6,
.explore-two .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
}
/* MOBILE */
@media (max-width: 991px) {
    .main.mySwiper {
        height: 400px;
    }

    .home-page__bottom-right {
        padding: 40px 25px;
    }
}
/* marquee */
.marquee {
    height: 55px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
    color: var(--nexin-base);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

    .marquee div {
        display: inline-flex;
        align-items: center;
        gap: 60px;
        width: max-content;
        animation: marquee 18s linear infinite;
    }

.marquee-star {
    font-size: 20px;
    color: var(--nexin-base);
}

.marquee-headline {
    font-size: 18px;
    font-weight: 500;
    color: var(--nexin-base);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.quick-links-wrapper {
    background: var(--nexin-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 767px) {
    .quick-links-wrapper {
        display: none;
    }
}
/* LEFT LINKS */
.quick-links {
    display: flex;
    gap: 25px;
    padding: 14px 0;
    align-items: center;
    flex-wrap: wrap;
}

    .quick-links a {
        font-size: 14px;
        color: #000;
        text-decoration: none;
        transition: 0.3s ease;
        font-weight: 500;
    }

        .quick-links a:hover {
            opacity: 0.8;
        }
/* RIGHT CONTACT */
.quick-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .quick-contact a {
        color: #000;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .quick-contact i {
        font-size: 18px;
    }
/* MOBILE */
@media (max-width: 991px) {
    .quick-links-wrapper {
        justify-content: center;
        text-align: center;
        padding: 15px;
    }

    .quick-links {
        justify-content: center;
    }

    .quick-contact {
        justify-content: center;
    }
}

.hero-section .row {
    align-items: center;
}
/* SWIPER */
.hero-section .main {
    height: 100%;
}

.hero-section .mySwiper {
    width: 100%;
    height: 650px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #fff;
    /* optional */
}

.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
    height: 100%;
}
/* CENTER IMAGE PERFECTLY */
.hero-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
/* FORM */
.hero-form-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* SWIPER BUTTONS */
.hero-section .nav-btn {
    width: 45px;
    height: 45px;
}
/* MOBILE */
@media (max-width: 991px) {
    .hero-section .mySwiper {
        height: 400px;
        margin-bottom: 30px;
    }

    .hero-form-box {
        padding: 30px 20px;
    }
}
