body {
   background-color: black;
}

.body-section {
    display:flex;
    justify-content: center;

    padding-top: 3%;
    padding-bottom: 2%;
}

.body-section-light {
    background: #eae5da;
}

.intro-section {
    border-bottom: solid 1px #ccc;
}

.hero-section {
    width: 100%;
    height: 70vh;
    margin-top: 90px;

    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 769px) {
    .hero-section {
        margin-top: 0;
    }
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    justify-content: end;

    width: 80%;
    height: 90%;
    font-weight: 500;
    max-width: 1550px;
}
@media (max-width: 769px) {
    .hero-text-container {
        height: 65%;
    }
}

.hero-name {
    color: #fff;
    font-size: 66px;
}
@media (max-width: 769px) {
    .hero-name {
        font-size: 48px;
    }
}

.hero-title {
    color: #e3e3e3;
    font-size: 48px;
}
@media (max-width: 769px) {
    .hero-title {
        font-size: 24px;
    }
}


/* horizontal text bar */

.hero-text-container-horiz {    
    display: flex;
    flex-direction: row;
    width: 80%;
    max-width: 1550px;
}
@media (max-width: 769px) {
    .hero-text-container-horiz {
        width: 86%;
        flex-direction: column;
        padding-bottom: 5%;
    }
}

.hero-meet {
    color: #e3e3e3;
    font-size: 32px;
    width: 45%;
    padding-right: 5%;
}
@media (max-width: 769px) {
    .hero-meet {
        font-size: 18px;
        width: 100%;
        padding-right: 0;
    }
}

.hero-intro {
    color: #9f9f9f;
    font-size: 20px;
    font-weight: 300;
    width: 45%;
    padding-left: 5%;
}
@media (max-width: 769px) {
    .hero-intro {
        font-size: 14px;
        width: 100%;
        padding-left: 0;
    }
}


/* Section sections */

.main-container-horiz {    
    display: flex;
    flex-direction: row;
    width: 80%;
    max-width: 1550px;
    color: #fff;
}
@media (max-width: 769px) {
    .main-container-horiz {
        width: 86%;
        flex-direction: column;
    }
}

.main-container-horiz img {
    width: 45%;  
    object-fit: contain;
    padding-left: 5%;
}
@media (max-width: 769px) {
    .main-container-horiz img {
        width: 100%;
        padding-left: 0;
    }
}

.text-container-horiz {
    display: flex;
    flex-direction: column;
    line-height: 150%;
    width: 45%;
    padding-right: 5%;
}
@media (max-width: 769px) {
    .text-container-horiz {
        width: 100%;
    }
}

.text-container-horiz-full {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Section text */

.text-container-horiz h2 {
    font-size: 48px;
}

.text-container-horiz h3 {
    font-size: 32px;
    line-height: 125%;
}

.text-container-horiz h4 {
    font-size: 26px;
}

.text-container-horiz h4 {
    font-size: 22px;
}

/* Article Carousel */

.article-carousel-text{
    font-size: 48px;
    font-weight: 500;
    text-align: start;
    padding: 0 0 2% 2.5%;
}