/* =========================================
   INNER PAGE HERO
========================================= */

.page-hero-overlay {

    margin: 25px auto 25px;

    border-radius: 12px;

    background-image:
        linear-gradient(180deg,
            rgba(12, 106, 165, 0.38) 0%,
            #0C6AA5 100%),
        url("../images/hero/clients-banner.png");

    background-size: cover;
    background-position: center;

    color: #ffffff;

    box-sizing: border-box;
    overflow: hidden;
}


/* =========================================
   HERO INNER
========================================= */

.page-hero-overlay {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding-top: 253px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;

    box-sizing: border-box;
}


/* =========================================
   BREADCRUMB
========================================= */

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 1px 0;
    padding: 0;
    line-height: 0.5;
}


/* Home */

.page-breadcrumb a {
    display: inline-block;

    margin: 0;
    padding: 0;

    color: #ffffff;

    text-decoration: none;

    background: none;
    border: none;

    line-height: 1;
}


/* > and current page */

.page-breadcrumb span {
    display: inline-block;

    margin: 0;
    padding: 0;

    color: #ffffff;

    line-height: 1;
}


/* Hover */

.page-breadcrumb a:hover {
    opacity: 0.75;
}


/* =========================================
   HERO CONTENT
========================================= */

.page-hero-content {
    width: 100%;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    box-sizing: border-box;
}


/* =========================================
   PAGE TITLE
========================================= */

.page-hero-content h1 {
    margin: 10px 0 0;
    padding: 0;

    color: #ffffff;

    font-size: 48px;
    line-height: 1.05;

    font-weight: 600;
}


/* =========================================
   DESCRIPTION
========================================= */

.page-hero-content p {
    width: 498px;

    margin: 0;
    padding: 0;

    color: #ffffff;

    line-height: 1.55;

    flex-shrink: 0;
}


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

@media (max-width: 1000px) {

    .page-hero {
        width: calc(100% - 50px);
    }

    .page-hero-overlay {
        padding-top: 18px;
        padding-bottom: 22px;
    }

    .page-hero-content {
        gap: 30px;
    }

    .page-hero-content p {
        width: 330px;
    }
}


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

@media (max-width: 650px) {

    .page-hero {
        width: calc(100% - 30px);

        height: 300px;

        margin-top: 10px;
    }

    .page-hero-overlay {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .page-breadcrumb {
        gap: 3px;
        margin-bottom: 2px;


    }

    .page-hero-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .page-hero-content p {
        width: 100%;
    }
}


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

@media (max-width: 450px) {

    .page-hero {
        height: 280px;
    }

    .page-breadcrumb {
        gap: 3px;
        margin-bottom: 1px;


    }

    .page-hero-content h1 {
        font-size: 24px;
        line-height: 1.05;
    }

    .page-hero-content p {

        line-height: 1.5;
    }
}