/* ============================================ */
/* Banner section start here */
/* ============================================ */
.banner__slider {
    margin-top: 106px;
}

.banner {
    /* height: 950px; */
    background-size: cover;
    background-position: center left;
    padding-top: 250px;
    padding-bottom: 150px;
}

@media (min-width: 768px) { /* md breakpoint */
    .banner {
        padding: 350px 0 330px;
    }
}

@media (min-width: 1024px) { /* lg breakpoint */
    .banner {
        background-position: center;
    }
}

.banner__content h1 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 60px;
}

@media (min-width: 768px) {
    .banner__content h1 {
        font-size: 90px;
    }
}

.banner__content h2 {
    margin-bottom: 20px;
}

.banner__content .default-button {
    padding: 0 2rem;
    margin-right: 10px;
}

.banner__content p {
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-right: 30px;
    line-height: 30px;
    font-family: "Oswald", sans-serif;
    color: white;
    font-size: 18px;
}

/* Banner style2 */
.banner-style2 {
    padding: 240px 0 330px;
}

@media (min-width: 1024px) {
    .banner-style2 {
        background-position: top center;
    }
    .banner__content p {
        width: 50%;
    }
}

.swiper-slide-active .banner__content,
.swiper-slide-duplicate-active .banner__content {
    margin-bottom: -150px;
}

.swiper-slide-active .banner__content h1,
.swiper-slide-active .banner__content h2,
.swiper-slide-active .banner__content h3,
.swiper-slide-active .banner__content .default-button,
.swiper-slide-active .banner__content p,
.swiper-slide-duplicate-active .banner__content h1,
.swiper-slide-duplicate-active .banner__content h2,
.swiper-slide-duplicate-active .banner__content h3,
.swiper-slide-duplicate-active .banner__content .default-button,
.swiper-slide-duplicate-active .banner__content p {
    transform: translateY(0px);
    transition: 1s ease;
}

/* ============================================ */
/* Pageheader section start here */
/* ============================================ */
.pageheader-section {
    padding: 150px 0;
    padding-top: calc(150px + 147px);
    background-size: cover;
    background-position: center;
}

.pageheader-section .pageheader-title {
    font-size: 48px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; /* approximate %text-clamp-1 */
}

.pageheader-section .breadcrumb li a {
    color: #000; /* replace %theme-color */
    text-decoration: none;
}

.pageheader-section .breadcrumb li a:hover {
    color: #fff; /* replace %white-color */
}

.pageheader-section .breadcrumb li.active {
    color: #fff; /* replace %white-color */
}


/* Editor preview styling */
:where(.editor-styles-wrapper) .banner {
    background-size: cover;
    background-position: center;
    padding: 250px 0 150px;
    color: #fff;
    text-align: left;
}

:where(.editor-styles-wrapper) .banner__content h1 {
    font-size: 60px;
    margin: 0 0 15px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.7);
}

@media (min-width: 768px) {
    :where(.editor-styles-wrapper) .banner__content h1 {
        font-size: 90px;
    }
}

:where(.editor-styles-wrapper) .banner__content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

:where(.editor-styles-wrapper) .banner__content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

:where(.editor-styles-wrapper) .banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

:where(.editor-styles-wrapper) .banner-buttons a.default-button {
    background: #ff0052;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
    font-family: "Oswald", sans-serif;
}

:where(.editor-styles-wrapper) .banner-buttons a.default-button:hover {
    background: #e04334;
}

:root :where(.editor-styles-wrapper) h1, 
:root :where(.editor-styles-wrapper) h2 {
    color: white !important;
}