/* =========================================================
   VARIABLES
========================================================= */

:root {
    --blue-dark: #203b60;
    --blue: #3f6593;
    --blue-light: #4a709f;
    --yellow: #f9c238;
    --white: #ffffff;
    --grey: #f3f4f5;
    --text: #1e2d3d;
}


/* =========================================================
   COMMON
========================================================= */

.eyebrow {
    margin-bottom: 12px;
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.text-yellow {
    color: var(--yellow);
}


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

.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 25px;

    border: 0;
    border-radius: 0;

    background: var(--yellow);
    color: var(--blue-dark);

    
    font-weight: 700;
    letter-spacing: 1.3px;

    transition: .25s ease;
}

.btn-yellow:hover {
    background: #ffd05b;
    color: var(--blue-dark);
    transform: translateY(-2px);
}


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

.hero {
    position: relative;
    min-height: 385px;
    padding: 10rem 0 0;

    background:
        linear-gradient(
            110deg,
            #234469 0%,
            #3d6595 100%
        );

    color: white;
}

.hero::after {
    content: "";
    position: absolute;

    width: 230px;
    height: 230px;

    top: -100px;
    right: -20px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.hero h1 {
    margin: 0 0 18px;

    font-size: 47px;
    line-height: 1.02;
    letter-spacing: -1px;
}

.hero h1 em {
    color: var(--yellow);
    font-style: italic;
}

.hero-intro {
    max-width: 490px;
    margin-bottom: 27px;

    line-height: 1.6;

    opacity: .9;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-link {
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFF;
}
.hero-link:hover { color: #FFF; }

.hero-link span {
    margin-left: 8px;
}

.hero-arrow {
    position: absolute;

    color: rgba(255,255,255,.07);

    font-family: Arial, sans-serif;
    font-size: 150px;
    line-height: 1;

    transform: rotate(-25deg);
}

.hero-arrow-1 {
    top: 40px;
    right: 290px;
}

.hero-arrow-2 {
    top: 110px;
    right: 190px;
}


/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {
    padding: 55px 0 65px;
    background: #fff;
}

.pricing-section h2 {
    margin-bottom: 2rem;

    font-size: 27px;
    line-height: 1.25;
}

.section-note {
    text-align: right;
    margin: 0 0 2px;
    line-height: 1.55;
    color: #69727c;
}


/* =========================================================
   ZONES
========================================================= */

.zone-card {
    position: relative;
    overflow: hidden;

    height: 165px;
    padding: 23px 22px;

    color: white;
}

.zone-1 {
    background: var(--yellow);
    color: var(--blue-dark);
}

.zone-2 {
    background: var(--blue);
}

.zone-3 {
    background: var(--blue-dark);
}

.zone-number {
    position: absolute;

    top: 8px;
    right: 13px;

    font-family: "Playfair Display", serif;
    font-size: 37px;

    opacity: .18;
}

.zone-label {
    margin-bottom: 3px;

    font-weight: 700;
    letter-spacing: 1.4px;
}

.zone-card h3 {
    position: relative;
    z-index: 1;

    margin: 0;

    line-height: 1.2;
}

.zone-price {
    position: absolute;
    left: 22px;
    bottom: 15px;

    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1;
}

.zone-price small {
    margin-left: 5px;

    
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   ADDITIONAL PRICES
========================================================= */

.additional-prices {
    margin-top: 62px;
}

.additional-prices h2 {
    font-size: 25px;
}

.pricing-table {
    margin: 0;

    border-collapse: collapse;

}

.pricing-table thead th {
    padding: 10px 12px;

    border: 0;

    background: var(--blue-dark);
    color: white;

    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-table thead th:not(:first-child) {
    text-align: center;
}

.pricing-table tbody td {
    padding: 10px 12px;

    border-bottom: 1px solid #e4e6e9;

    vertical-align: middle;
}

.pricing-table tbody tr:nth-child(even) td {
    background: #f4f5f6;
}

.pricing-table tbody td:first-child {
    font-weight: 600;
}

.pricing-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 600;
}


/* =========================================================
   OPTIONS
========================================================= */

.options {
    margin-top: 30px;

    border-top: 1px solid #e2e4e6;
    border-bottom: 1px solid #e2e4e6;
}

.option {
    display: flex;
    gap: 10px;

    min-height: 70px;
    padding: 17px 15px;
}

.option + .option {
    border-left: 1px solid #e2e4e6;
}

.option-number {
    flex: 0 0 auto;

    color: var(--yellow);

    font-family: "Playfair Display", serif;
    font-size: 15px;
}

.option strong {
    display: block;
}

.option p {
    margin: 2px 0 0;

    color: #777;
    line-height: 1.4;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 45px 0;

    background: var(--blue);
    color: white;
}

.cta h2 {
    margin: 0;

    font-size: 27px;
    line-height: 1.2;
}

.cta .btn {
    min-width: 155px;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info {
    background: var(--blue);
    color: white;

    border-top: 1px solid rgba(255,255,255,.35);
}

.contact-column {
    min-height: 125px;
    padding: 23px 30px;

    border-right: 1px solid rgba(255,255,255,.35);

    font-size: 10px;
}

.contact-column:first-child {
    padding-left: 65px;
}

.contact-column:last-child {
    border-right: 0;
}

.contact-column p {
    margin-bottom: 13px;
}

.map-button {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 200px;
    height: 35px;

    background: white;
    color: var(--blue-dark);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: .8px;
}

.map-button span {
    margin-right: 7px;
}

.linkedin img {
    display: block;
    width: 105px;
    height: auto;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    padding: 20px 0;

    background: white;
}

.footer-logo img {
    width: 140px;
    max-width: 100%;
}

.footer-main h3 {
    margin: 0 0 10px;

    
    font-size: 9px;
    font-weight: 700;
}

.footer-main ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-main li {
    margin-bottom: 3px;

    font-size: 9px;
}

.qualifications img {
    width: 75px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    padding: 11px 0;

    border-top: 1px solid #aabbd0;

    color: #777;
    font-size: 8px;
}

.footer-bottom a {
    color: var(--blue);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero {
        min-height: auto;
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-arrow {
        display: none;
    }

    .pricing-section {
        padding: 40px 0;
    }

    .section-note {
        margin-top: 15px;
    }

    .zone-card {
        height: 155px;
    }

    .additional-prices {
        margin-top: 45px;
    }

    .additional-prices h2 {
        margin-bottom: 25px;
    }

    .pricing-table {
        min-width: 580px;
    }

    .options {
        border-bottom: 0;
    }

    .option {
        border-bottom: 1px solid #e2e4e6;
    }

    .option + .option {
        border-left: 0;
    }

    .cta {
        padding: 40px 0;
    }

    .cta .btn {
        margin-top: 25px;
    }

    .contact-column,
    .contact-column:first-child {
        padding: 25px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.35);
        text-align: left;
    }

    .contact-column.text-center {
        text-align: left !important;
    }

    .footer-main {
        padding: 30px 0;
    }

    .footer-logo,
    .qualifications {
        margin-bottom: 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        margin-top: 8px;
        text-align: center !important;
    }
}