html {
    scroll-behavior: auto !important;
}
.section-container {
    padding: 0;
}

#hero-section {
    padding: 120px 20px 50px;
    background: var(--banner-bg);
    color: var(--color-white);
}
#hero-section .flex {
    align-items: center;
}
#hero-section .col-left {
    width: 50%;
    padding-right: 40px;
}
#hero-section .col-left .type {
    padding-bottom: 15px;
    font-size: var(--font-size-md);
    font-weight: 700;
}
#hero-section .page-title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.33;
    color: var(--color-white);
}
#hero-section .col-right {
    width: 50%;
    text-align: right;
}
#hero-section .col-right img {
    max-width: 500px;
}

.main-content {
    padding: 80px 0;
}
.main-content .cols {
    align-items: flex-start;
}
.main-content .col-quote {
    width: 50%;
    margin-right: 20px;
    padding: 10px 50px 40px 50px;
    text-align: center;
    background: var(--t-sblue);
    border-radius: 10px;
}
.main-content .col-quote .quote {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1.5;
    font-style: normal;
    color: var(--color-white);
    opacity: .8;
}
.main-content .col-quote .quote:before {
    content: "“";
    display: block;
    height: 0.6em;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 100px;
    font-weight: 900;
    color: var(--color-white);
}

.main-content .col-quote cite {
    display: block;
    margin-top: 30px;
    color: var(--color-white);
    opacity: .8;
    font-style: normal;
}
.main-content .col-quote .quote-author {
    padding-bottom: 5px;
    font-size: var(--font-size-md);
    font-weight: 700;
}
.main-content .col-quote .author-role {
    font-size: var(--font-size-sm);
    font-weight: 500;
}
.main-content .col-content {
    width: 50%;
    padding: 0 20px;
    font-size: var(--font-size-md);
    color: #424346;
}
.main-content .col-content ul {
    font-size: var(--font-size-md);
}


@media only screen and (min-width: 768px) {
    #hero-section .page-title {
        font-size: 34px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 1023px) {
    .section-container {
        padding-right: 20px;
        padding-left: 20px;
    }
    #hero-section {
        padding: 100px 20px 50px;
    }
    #hero-section .col-left {
        padding-right: 0;
        width: 100%;
        text-align: center;
    }
    #hero-section .col-right {display: none;}
    .main-content .col-quote {
        padding: 10px 20px 40px 20px;
    }
    .main-content .col-content,
    .main-content .col-content ul {
        font-size: 17px;
    }
}

@media only screen and (max-width: 767px) {
    #hero-section .page-title {
        font-size: 32px;
    }
    .main-content {
        padding: 60px 30px;
    }
    .main-content .cols {
        flex-direction: column;
    }
    .main-content .col-quote {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .main-content .col-content {
        width: 100%;
        padding: 0;
    }
}
