/* ===========================
   PAGE BANNER
=========================== */

.page-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 430px;
    padding: 110px 0 80px;
    overflow: hidden;
    color: var(--white);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===========================
   BANNER OVERLAY
=========================== */

.page-banner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 25, 48, 0.92) 0%,
        rgba(15, 39, 71, 0.78) 52%,
        rgba(15, 39, 71, 0.48) 100%
    );
}

html[dir="rtl"] .page-banner-overlay {
    background: linear-gradient(
        270deg,
        rgba(7, 25, 48, 0.92) 0%,
        rgba(15, 39, 71, 0.78) 52%,
        rgba(15, 39, 71, 0.48) 100%
    );
}

/* ===========================
   BANNER CONTAINER
=========================== */

.page-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ===========================
   BREADCRUMB
=========================== */

.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.page-breadcrumb a,
.page-breadcrumb span {
    margin-right: 9px;
}

html[dir="rtl"] .page-breadcrumb a,
html[dir="rtl"] .page-breadcrumb span {
    margin-right: 0;
    margin-left: 9px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    transition: color var(--transition);
}

.page-breadcrumb a:hover,
.page-breadcrumb a:focus {
    color: var(--gold);
}

.page-breadcrumb > span:not(.active) {
    color: rgba(255, 255, 255, 0.48);
}

.page-breadcrumb .active {
    color: var(--gold);
    font-weight: 600;
}

/* ===========================
   BANNER CONTENT
=========================== */

.page-banner-title {
    max-width: 850px;
    margin: 0 0 18px;
    color: var(--white);
    font-size: 62px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.page-banner-description {
    max-width: 720px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.page-banner .btn {
    margin-top: 2px;
}

/* ===========================
   TABLET
=========================== */

@media screen and (max-width: 992px) {

    .page-banner {
        min-height: 390px;
        padding: 95px 0 70px;
    }

    .page-banner-title {
        max-width: 720px;
        font-size: 50px;
    }

    .page-banner-description {
        max-width: 650px;
        font-size: 17px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media screen and (max-width: 768px) {

    .page-banner {
        min-height: 340px;
        padding: 80px 0 55px;
        background-position: center center;
    }

    .page-banner-overlay,
    html[dir="rtl"] .page-banner-overlay {
        background: rgba(7, 25, 48, 0.82);
    }

    .page-breadcrumb {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .page-banner-title {
        margin-bottom: 14px;
        font-size: 42px;
    }

    .page-banner-description {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.7;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */

@media screen and (max-width: 480px) {

    .page-banner {
        min-height: 310px;
        padding: 70px 0 45px;
    }

    .page-banner-title {
        font-size: 34px;
    }

    .page-banner-description {
        font-size: 15px;
        line-height: 1.65;
    }
}