section[data-module="home-banner"],
section[data-module="home-banner"] * {
    box-sizing: border-box;
}

section[data-module="home-banner"] {
    position: relative;
    width: 100%;
    overflow: hidden;
}

section[data-module="home-banner"] .home-banner-swiper {
    width: 100%;
}

section[data-module="home-banner"] .home-banner-slide {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 620px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section[data-module="home-banner"] .home-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
}

section[data-module="home-banner"] .home-banner-container {
    position: relative;
    z-index: 2;
    width: calc(100% - 100px);
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
}

section[data-module="home-banner"] .home-banner-content {
    width: 100%;
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

section[data-module="home-banner"] .home-banner-title {
    margin: 0;
    color: #FFFFFF;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: 1px;
    text-transform: uppercase;
}

section[data-module="home-banner"] .home-banner-description {
    max-width: 900px;
    margin: 24px auto 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   BUTTON
========================================================= */

section[data-module="home-banner"] .home-banner-button-wrap {
    margin-top: 25px;
}

section[data-module="home-banner"] .home-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    padding: 10px 20px;
    border: 0;
    border-radius: 4px;
    background: #265728;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

section[data-module="home-banner"] .home-banner-button:hover {
    background: #D9D9D9;
    color: #000000;
}

section[data-module="home-banner"] .home-banner-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    color: inherit;
    line-height: 1;
}


/* hide original button svg */
section[data-module="home-banner"] .home-banner-button-icon svg {
    display: none;
}


/* double arrow */
section[data-module="home-banner"] .home-banner-button-icon::before {
    display: block;
    color: inherit;
    content: "\00BB";
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-1px);
}

section[data-module="home-banner"] .home-banner-button:hover .home-banner-button-icon::before {
    color: #000000;
}


/* =========================================================
   LARGE NAVIGATION ARROWS
========================================================= */

section[data-module="home-banner"] .home-banner-prev,
section[data-module="home-banner"] .home-banner-next {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 120px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.25s ease;
}

section[data-module="home-banner"] .home-banner-prev {
    left: 0;
}

section[data-module="home-banner"] .home-banner-next {
    right: 0;
}


/* hide original php navigation svg */
section[data-module="home-banner"] .home-banner-prev svg,
section[data-module="home-banner"] .home-banner-next svg {
    display: none;
}


/* LEFT */
section[data-module="home-banner"] .home-banner-prev::before {
    display: block;
    width: 42px;
    height: 42px;
    border-bottom: 6px solid currentColor;
    border-left: 6px solid currentColor;
    content: "";
    transform: rotate(45deg);
}


/* RIGHT */
section[data-module="home-banner"] .home-banner-next::before {
    display: block;
    width: 42px;
    height: 42px;
    border-bottom: 6px solid currentColor;
    border-left: 6px solid currentColor;
    content: "";
    transform: rotate(225deg);
}

section[data-module="home-banner"] .home-banner-prev::after,
section[data-module="home-banner"] .home-banner-next::after {
    display: none;
    content: none;
}

section[data-module="home-banner"] .home-banner-prev:hover,
section[data-module="home-banner"] .home-banner-next:hover {
    color: #FFFFFF;
}


/* =========================================================
   PAGINATION
========================================================= */

section[data-module="home-banner"] .home-banner-pagination {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

section[data-module="home-banner"] .home-banner-pagination .swiper-pagination-bullet {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    background: #FFFFFF;
    opacity: 1;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

section[data-module="home-banner"] .home-banner-pagination .swiper-pagination-bullet-active {
    border-color: #265728;
    background: #265728;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    section[data-module="home-banner"] .home-banner-slide {
        min-height: 560px;
    }

    section[data-module="home-banner"] .home-banner-container {
        width: calc(100% - 80px);
    }

    section[data-module="home-banner"] .home-banner-title {
        font-size: 48px;
    }

    section[data-module="home-banner"] .home-banner-description {
        font-size: 15px;
    }

    section[data-module="home-banner"] .home-banner-prev,
    section[data-module="home-banner"] .home-banner-next {
        width: 70px;
        height: 100px;
    }

    section[data-module="home-banner"] .home-banner-prev::before,
    section[data-module="home-banner"] .home-banner-next::before {
        width: 34px;
        height: 34px;
        border-width: 0 0 5px 5px;
        border-style: solid;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    section[data-module="home-banner"] .home-banner-slide {
        min-height: 520px;
    }

    section[data-module="home-banner"] .home-banner-container {
        width: calc(100% - 60px);
    }

    section[data-module="home-banner"] .home-banner-title {
        font-size: 34px;
        line-height: 1.3;
    }

    section[data-module="home-banner"] .home-banner-description {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.6;
    }

    section[data-module="home-banner"] .home-banner-button-wrap {
        margin-top: 20px;
    }

    section[data-module="home-banner"] .home-banner-button {
        min-height: 44px;
        padding: 9px 16px;
        font-size: 16px;
    }

    section[data-module="home-banner"] .home-banner-button-icon::before {
        font-size: 21px;
    }

    section[data-module="home-banner"] .home-banner-prev,
    section[data-module="home-banner"] .home-banner-next {
        width: 50px;
        height: 75px;
    }

    section[data-module="home-banner"] .home-banner-prev {
        left: 0;
    }

    section[data-module="home-banner"] .home-banner-next {
        right: 0;
    }

    section[data-module="home-banner"] .home-banner-prev::before,
    section[data-module="home-banner"] .home-banner-next::before {
        width: 25px;
        height: 25px;
        border-width: 0 0 4px 4px;
        border-style: solid;
    }

    section[data-module="home-banner"] .home-banner-pagination {
        bottom: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    section[data-module="home-banner"] .home-banner-slide {
        min-height: 480px;
    }

    section[data-module="home-banner"] .home-banner-container {
        width: calc(100% - 50px);
    }

    section[data-module="home-banner"] .home-banner-title {
        font-size: 29px;
    }

    section[data-module="home-banner"] .home-banner-description {
        font-size: 14px;
    }

    section[data-module="home-banner"] .home-banner-button {
        min-height: 42px;
        padding: 8px 15px;
        font-size: 15px;
    }

    section[data-module="home-banner"] .home-banner-button-icon::before {
        font-size: 20px;
    }

    section[data-module="home-banner"] .home-banner-prev,
    section[data-module="home-banner"] .home-banner-next {
        width: 44px;
        height: 65px;
    }

    section[data-module="home-banner"] .home-banner-prev::before,
    section[data-module="home-banner"] .home-banner-next::before {
        width: 22px;
        height: 22px;
        border-width: 0 0 4px 4px;
        border-style: solid;
    }

}