/* =========================================
GLOBAL
========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.fd-homepage-wrapper,
.fd-homepage-wrapper * {
    font-family: 'Montserrat', sans-serif !important;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.fd-home-gallery-wrap {
    position: relative;
    max-height: 920px;
    overflow: hidden;
}

.fd-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 18px;
}

@media(min-width:768px) {
    .fd-container {
        padding: 95px 34px;
    }
}

.fd-light-section {
    background: #f8fafc;
}

/* =========================================
HEADINGS
========================================= */

.fd-heading-wrap {
    text-align: center;
    margin-bottom: 45px;
}

.fd-mini-heading {
    display: inline-block;
    margin-bottom: 12px;
    color: #116ad6;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fd-heading {
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 16px;
    color: #0f172a;
}

@media(min-width:768px) {
    .fd-heading {
        font-size: 2.4rem;
    }
}

.fd-heading span {
    color: #116ad6;
}

.fd-subheading {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #64748b;
}

@media(max-width:767px) {
    .fd-subheading {
        font-size: 0.9rem;
        line-height: 1.8;
    }
}

/* =========================================
BUTTONS
========================================= */

.fd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 52px;
    padding: 0 30px;
    background: #116ad6;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #116ad6;
    transition: 0.3s ease;
    letter-spacing: 0.3px;
}

.fd-btn:hover {
    background: #ffffff;
    color: #116ad6;
}