/* navbar */
.navbar-marketing {
    background: transparent;
}

.navbar-marketing.navbar-scrolled {
    background-color: var(--primary);
}
/* navbar - end */

/* header */
.main-header {
    padding-top: 160px;
    padding-bottom: 32px;
    background: linear-gradient(rgba(62, 62, 62, 80%), rgba(62, 62, 62, 80%));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 56px;
    height: 400px;
}

.main-header .container-fluid {
    text-align: center;
}

.main-header .header-1 {
    font-weight: 700;
    color: var(--white);
    font-size: 40px;
    margin-bottom: 16px;
    line-height: calc(40px * 1.5);
}

.section-row .card {
    box-shadow: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    height: 100%;
}
.section-row .card:hover {
    border-color: var(--primary);
}

.section-row .card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-row .card .card-body .contact-wrapper {
    display: flex;
    column-gap: 8px;
}

.section-row .card { text-align: center; }

.section-row .card .card-body .header-3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-row .card .card-body img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.main-section {
    margin-bottom: 56px;
}

@media (max-width: 997.98px) {
    .section-row {
        row-gap: 32px;
    }

    .main-header {
        height: 300px;
        padding-top: 140px;
    }

    .main-header .header-1 {
        font-size: 24px;
        line-height: calc(24px * 1.5);
    }
}
