body {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--dark-text);
}

.hero {
    width: 100%;
    height: 440px;
    position: relative;
    display: flex;
    align-items: end;
    padding: 0 0 2rem 0;
    background: url(../img/managers/background.png) no-repeat center;
    background-size: cover;
}

p,
li {
    font-size: 18px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 5rem 0;
}

.section-tagline {
    text-align: center;
    color: #000;
    font-style: italic;
    padding: 30px 0;
    font-weight: 700;
    font-size: 38px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.feature-text {
    max-width: 600px;
}

.feature-img {
    max-width: 500px;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dark-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.dark-section h2 {
    font-style: italic;
    font-size: 48px;
}

.btn-pricing {
    background: #f58025;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
}

.btn-pricing:hover {
    background: #d66a1c;
}

.pricing-btn {
    border-radius: 4px;
    color: #fff;
    height: 40px;
    width: 200px;
    background-color: #e17523;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    align-content: center;
    justify-self: center;
    place-self: center;
}

.feature-text .h6,
h6 {
    font-size: 18px;
}

.feature-text p,
li {
    font-size: 18px;
}

.full-service {
    font-size: 22px;
    margin-bottom: 2rem;
}

@media (max-width: 991.9px) {
    section.feature-section .container .row {
        display: grid;
    }

    section.feature-section .container .row .col-md-5,
    section.feature-section .container .row .col-md-7,
    section.feature-section .container .row .col-md-6 {
        width: 100%;
        max-width: 100%;
        padding-left: 0 !important;
    }

    .illustration {
        padding-top: 2rem;
        /* padding-bottom: 4rem; */
    }

    .text-only {
        order: 1;
    }

    .img-only {
        order: 2;
    }
}

@media (max-width: 767.9px) {

    .feature-text p,
    li {
        font-size: 15px;
    }

    .full-service {
        font-size: 15px;
    }

    section.feature-section .container .row {
        padding: 0 16px;
    }
}