@charset "utf-8";
/* CSS Document */

.page-margin {
    max-width: 1350px;
    margin: 0 auto;
}

.main-section {
    display: flex;
    margin: 3em auto 5em;
}

.hero-section {
    height: 420px;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 0;
}

.toc-nav {
    position: sticky;
    top: 2rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    width: 20%;
}

.toc-link {
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 0.70rem 0 0.70rem 1rem;
    border-left: 3px solid #e0e0e0;
    transition: all 0.2s ease-in-out;
}

.toc-link.active {
    color: #1D98E4;
    border-left-color: #1D98E4;
    font-weight: 700;
}

.toc-link:hover {
    color: #1D98E4;
}

.content {
    width: 80%;
}

.content h1 {
    margin: 0;
}

.content h2 {
    font-size: 22px;
}

.content p {
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 1%;
    width: 70%;
}

#section2,
#section3,
#section4 {
    margin-bottom: 5em;
}

#section3 ul  {
    padding-left: 20px;
    list-style-type: square;
}

#section3 ul li h3 {
    margin-top: 1.5em;
}

#section3 ul li p {
    margin-left: -15px;
}

.video-element {
    display: flex;
    background: #F5F7FB;
    padding: 10px 1.5em;
    gap: 3em;
    height: 130px;
    margin-top: 3em;
}

.video-element img {
    height: 100%;
}

.video-content {
    width: 100%;
}

.video-content h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #00112D;
}

.video-content p {
    margin: 0;
    color: #232F3E;
    font-size: 13px;
}

.card-deck {
    background: #F5F5F7;
    padding: 4em 0;
}

.card-deck-wrap {
    display: flex;
    justify-content: space-between;
}

.card-deck-wrap > p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.card-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5em;
}

.card-inner {
    background: #fff;
    padding: 1em;
}

.card-inner h4 {
    margin: 0;
}

.card-deck-wrap .card {
    width: 300px;
}

.card-deck-wrap .card img {
    width: 100%;
}

.quote-holder {
    position: relative;
    margin: 4em 0 10em;
}

.quote-holder .img-holder-content {
    position: absolute;
    top: 1.5em;
    left: 1.5em;
}

.quote-holder p {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1%;
    position: relative;
    left: 2em;
    top: 5px;
    max-width: 55%;
    line-height: 28px;
}

.quote-holder .quote-mark {
    color: #1D98E4;
    font-size: 100px;
}

.quote-holder .quote-mark:nth-of-type(1) {
    position: absolute;
    top: -25px;
    left: 0;
}

.quote-holder .quote-mark:nth-of-type(2) {
    position: absolute;
    top: .8em;
    left: 6.2em;
    rotate: 180deg;
}

/*********************
Media
*********************/

@media only screen and (max-width: 1400px) {
    .page-margin {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 1250px) {
    .page-margin {
        max-width: 1100px;
    }
}

@media only screen and (max-width: 1150px) {
    .page-margin {
        max-width: unset;
        padding: 0 2em;
    }
    .toc-nav {
        display: none;
    }
    .content {
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .content p {
        width: 80%;
    }
    .quote-holder p {
        max-width: 65%;
    }
}

@media only screen and (max-width: 900px) {
    .quote-holder p {
        max-width: 75%;
    }
}

@media only screen and (min-width: 800px) {
    
}

@media only screen and (max-width: 800px) {
    .content p {
        width: 100%;
    }
    .quote-holder p {
        font-size: 20px;
    }
    .quote-holder .quote-mark {
        font-size: 85px;
    }
    .quote-holder .quote-mark:nth-of-type(2) {
        top: 1.2em;
        left: 6.5em;
    }
    .hero-section img {
        object-position: 45% 0;
    }
}

@media only screen and (max-width: 650px) {
    .quote-holder p {
        max-width: 100%;
        left: 0;
    }
    .quote-holder {
        margin: 8em 0;
    }
    .quote-holder .quote-mark:nth-of-type(1) {
        top: -40px;
    }
    .quote-holder .quote-mark:nth-of-type(2) {
        left: 4em;
    }
    .quote-holder .quote-mark:nth-of-type(2) {
        top: 1.5em;
    }
    .video-element {
        gap: 0;
        height: unset;
        flex-direction: column;
        padding: 2em 1.5em 0;

    }
    .video-content {
        padding: 2em 0;
    }
}


@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 550px) {
    .hero-section img {
        object-position: 35% 0;
    }
}

@media only screen and (max-width: 450px) {
    .page-margin {
        padding-right: 1.5em;
        padding-left: 1.5em;
    }
    .content h1 {
        font-size: 24px;
    }
    .content h2 {
        font-size: 20px;
    }
    .hero-section {
        height: 350px;
    }
    .quote-holder .quote-mark:nth-of-type(2) {
        top: 2em;
    }
    .quote-holder {
        margin: 6em 0;
    }
}

























