@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* =====================================================
   HERO BANNER
===================================================== */

.hero-banner {
    width: 100%;
    height: 100vh;

    position: relative;
    overflow: hidden;

    font-family: "Montserrat", sans-serif;
}


/* =====================================================
   SWIPER
===================================================== */

.hero-banner .mySwiper {
    width: 100%;
    height: 100%;
}


/* =====================================================
   SLIDE
===================================================== */

.hero-banner .swiper-slide {
    position: relative;

    width: 100%;
    height: 100%;
}


/* =====================================================
   BANNER IMAGE
===================================================== */

.hero-banner .swiper-slide > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.hero-banner .swiper-slide::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.60);

    z-index: 1;
}


/* =====================================================
   BANNER CONTENT
===================================================== */

.hero-banner-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 5;

    width: 100%;
    max-width: 1600px;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.hero-banner-left {
    width: 55%;

    color: #fff;
}


.hero-banner-left h1 {
    margin: 0 0 25px;

    font-family: "Manrope", sans-serif;

    font-size: 58px;

    line-height: 1.15;

    font-weight: 800;
}


.hero-banner-left p {
    max-width: 600px;

    margin: 0 0 35px;

    font-family: "Montserrat", sans-serif;

    font-size: 18px;

    line-height: 140%;

    font-weight: 500;
}


/* =====================================================
   BUTTONS
===================================================== */

.hero-banner-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* Primary */

.hero-theme-btn {
    display: inline-block;

    padding: 15px 35px;

    background: #b7a597;

    color: #fff;


    border: 2px solid #fff;

    border-radius: 6px;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.hero-theme-btn:hover {
    background: #fff;

    color: #3b2c20;

    border-color: #fff;
}


/* Outline */

.hero-outline-btn {
    display: inline-block;

    padding: 15px 35px;

    background: transparent;

    color: #fff;

    border: 2px solid #fff;

    border-radius: 6px;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


.hero-outline-btn:hover {
    background: #fff;

    color: #3b2c20;
}


.inner-banner img{
    width: 100%;
    display: block;
}

/* =====================================================
   CONSULTATION FORM
===================================================== */

.hero-banner-form {
    width: 420px;

    padding: 20px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

    font-family: "Montserrat", sans-serif;
}


.hero-banner-form h3 {
    margin: 0 0 10px;

    color: #3b2c20;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 700;

    text-align: center;
}


/* Form Group */

.hero-form-group {
    margin-bottom: 18px;
}


/* Inputs */

.hero-banner-form input,
.hero-banner-form textarea {
    width: 100%;

    padding: 10px 18px;

    border: 1px solid #ddd;

    border-radius: 6px;

    outline: none;

    background: #fff;

    color: #333;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


.hero-banner-form input::placeholder,
.hero-banner-form textarea::placeholder {
    color: #999;
}


.hero-banner-form input:focus,
.hero-banner-form textarea:focus {
    border-color: #b7a597;

    box-shadow: 0 0 0 3px rgba(183, 165, 151, 0.12);
}


.hero-banner-form textarea {
    resize: none;
}


/* Submit */

.hero-banner-form button {
    width: 100%;

    padding: 10px;

    border: none;

    border-radius: 6px;

    background: #b7a597;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}


.hero-banner-form button:hover {
    background: #3b2c20;
}

.swiper-button-next, .swiper-button-prev {
    ::slotted(svg), svg {
        height: 44%!important;
        object-fit: contain;
        transform-origin: center;
        width: 100%;
        fill: currentColor;
        pointer-events: none;
    }
}


/* =====================================================
   BANNER NAVIGATION
===================================================== */

.hero-banner .hero-banner-next,
.hero-banner .hero-banner-prev {
    width: 50px;
    height: 50px;

    margin-top: -25px;

    background: #fff;

    border-radius: 50%;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

    color: #b7a597;

    transition: all 0.3s ease;
}


.hero-banner .hero-banner-next::after,
.hero-banner .hero-banner-prev::after {
    font-size: 18px;

    font-weight: 700;

    color: #b7a597;
}


.hero-banner .hero-banner-next:hover,
.hero-banner .hero-banner-prev:hover {
    background: #fff;

    color: #012759;
}


.hero-banner .hero-banner-next:hover::after,
.hero-banner .hero-banner-prev:hover::after {
    color: #012759;
}


.hero-banner .hero-banner-prev {
    left: 40px;
}


.hero-banner .hero-banner-next {
    right: 40px;
}


/* =====================================================
   BANNER PAGINATION
===================================================== */

.hero-banner .hero-banner-pagination {
    z-index: 10;
}


.hero-banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;

    background: #fff;

    opacity: 0.6;
}


.hero-banner .swiper-pagination-bullet-active {
    background: #efc869;

    opacity: 1;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hero-banner {
        position: relative;

        width: 100%;

        height: 750px;

        min-height: 750px;

        overflow: hidden;
    }


    .hero-banner .mySwiper {
        width: 100%;

        height: 100%;
    }


    .hero-banner .swiper-slide {
        position: relative;

        width: 100%;

        height: 750px;

        min-height: 750px;
    }


    /* Full background image */

    .hero-banner .swiper-slide > img {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;

        display: block;
    }


    /* Hide text content */

    .hero-banner-left {
        display: none;
    }


    /* Content stays over image */

    .hero-banner-content {
        position: absolute;

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        z-index: 5;

        width: 100%;

        min-height: auto;

        padding: 30px;

        display: flex;

        align-items: center;

        justify-content: center;
    }


    /* Consultation form */

    .hero-banner-form {
        display: block;

        width: 100%;

        max-width: 500px;

        padding: 30px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .hero-banner {

        width: 100%;

        height: 700px;

        min-height: 700px;

        overflow: hidden;
    }


    .hero-banner .mySwiper {

        width: 100%;

        height: 700px;
    }


    .hero-banner .swiper-slide {

        position: relative;

        width: 100%;

        height: 700px;

        min-height: 700px;
    }


    /* =========================================
       FULL MOBILE BANNER IMAGE
    ========================================= */

    .hero-banner .swiper-slide > img {

        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;

        display: block;
    }


    /* =========================================
       DARK OVERLAY
    ========================================= */

    .hero-banner .swiper-slide::before {

        position: absolute;

        inset: 0;

        background: rgba(0, 0, 0, 0.20);

        z-index: 1;
    }


    /* =========================================
       HIDE LEFT CONTENT
    ========================================= */

    .hero-banner-left {
        display: none;
    }


    /* =========================================
       FORM OVER IMAGE
    ========================================= */

    .hero-banner-content {

        position: absolute;

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        z-index: 5;

        width: 100%;

        padding: 20px;

        display: flex;

        align-items: center;

        justify-content: center;
    }


    .hero-banner-form {

        display: block;

        width: 100%;

        max-width: 420px;

        padding: 25px;

        margin: 0 auto;

        background: #fff;

        border-radius: 10px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.20);
    }


    .hero-banner-form h3 {

        margin-bottom: 20px;

        font-size: 22px;

        text-align: center;
    }


    .hero-form-group {

        margin-bottom: 13px;
    }


    .hero-banner-form input,
    .hero-banner-form textarea {

        width: 100%;

        padding: 11px 13px;

        font-size: 12px;

        box-sizing: border-box;
    }


    .hero-banner-form textarea {

        min-height: 80px;

        resize: none;
    }


    .hero-banner-form button {

        padding: 12px;

        font-size: 13px;
    }


    /* =========================================
       NAVIGATION
    ========================================= */

    .hero-banner .hero-banner-next,
    .hero-banner .hero-banner-prev {

        width: 42px;

        height: 42px;

        margin-top: -21px;

        z-index: 10;
    }


    .hero-banner .hero-banner-prev {

        left: 10px;
    }


    .hero-banner .hero-banner-next {

        right: 10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 576px) {

    .hero-banner {

        height: 650px;

        min-height: 650px;
    }


    .hero-banner .mySwiper {

        height: 650px;
    }


    .hero-banner .swiper-slide {

        height: 650px;

        min-height: 650px;
    }


    .hero-banner-content {

        padding: 15px;
    }


    .hero-banner-form {

        max-width: 100%;

        padding: 22px;

        border-radius: 10px;
    }


    .hero-banner-form h3 {

        font-size: 20px;

        margin-bottom: 18px;
    }


    .hero-form-group {

        margin-bottom: 11px;
    }


    .hero-banner-form input,
    .hero-banner-form textarea {

        padding: 10px 12px;

        font-size: 12px;
    }


    .hero-banner-form textarea {

        min-height: 70px;
    }


    .hero-banner-form button {

        padding: 11px;

        font-size: 13px;
    }


    .hero-banner .hero-banner-next,
    .hero-banner .hero-banner-prev {

        width: 38px;

        height: 38px;

        margin-top: -19px;
    }

}
































/* =====================================================
   TESTIMONIAL SECTION
===================================================== */

.testimonial-section {
    width: 100%;

    padding: 80px 20px;

    background: #fff;

    font-family: "Montserrat", sans-serif;
}


/* =====================================================
   TESTIMONIAL SWIPER
===================================================== */

.testimonial-section .testimonialSwiper {
    width: 100%;

    max-width: 1600px;

    margin: 0 auto;

    overflow: hidden;
}


/* =====================================================
   TESTIMONIAL SLIDE
===================================================== */

.testimonial-section .swiper-slide {
    height: auto;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =====================================================
   TESTIMONIAL ITEM
===================================================== */

.testimonial-item {
    width: 100%;

    max-width: 800px;

    text-align: center;

    padding: 30px;
}


.testimonial-item p {
    margin: 0 0 20px;

    color: #3b2c20;

      font-family: "Montserrat", sans-serif;


    font-size: 20px;

    line-height: 1.7;
}


.testimonial-item h4 {
    margin: 0;

    color: #b7a597;

  font-family: "Montserrat", sans-serif;


    font-size: 16px;

    font-weight: 600;
}


/* =====================================================
   TESTIMONIAL NAVIGATION
===================================================== */

.testimonial-section .testimonial-next,
.testimonial-section .testimonial-prev {
    width: 45px;
    height: 45px;

    margin-top: -22px;

    background: #b7a597;

    border-radius: 50%;

    color: #fff;
}


.testimonial-section .testimonial-next::after,
.testimonial-section .testimonial-prev::after {
    font-size: 15px;

    color: #fff;
}


.testimonial-section .testimonial-next {
    right: 10px;
}


.testimonial-section .testimonial-prev {
    left: 10px;
}


/* =====================================================
   TESTIMONIAL PAGINATION
===================================================== */

.testimonial-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    background: #b7a597;

    opacity: 0.4;
}


.testimonial-section .swiper-pagination-bullet-active {
    opacity: 1;
}


@media only screen and (max-width :1600px) {

    .hero-banner-content {
        max-width: 1500px;
    }

    .hero-banner-left h1 {
        font-size: 48px;
    }

}




@media only screen and (max-width: 1440px) {
    .hero-banner-content {
        max-width: 1300px;
    }
}


@media only screen and (max-width: 1200px) {
    .hero-banner-left h1 {
        font-size: 34px;
    }

    .hero-banner-content {
        width: 90%;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .testimonial-section {
        padding: 60px 15px;
    }


    .testimonial-item {
        padding: 20px 50px;
    }


    .testimonial-item p {
        font-size: 16px;
    }


    .testimonial-section .testimonial-next,
    .testimonial-section .testimonial-prev {
        width: 38px;
        height: 38px;

        margin-top: -19px;
    }


    .testimonial-section .testimonial-next::after,
    .testimonial-section .testimonial-prev::after {
        font-size: 13px;
    }
    .inner-banner img {
        height: 130px;
    }

}