.overview-component {
    background-color: var(--palette-600);
    padding: 3rem 0;
}

.overview-wrapper {
    max-width: 1080px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
    color: var(--palette-100);
    text-align: center;
}

.overview-wrapper h1 {
    font-size: 2.667em;
    
}

.overview-text {
    padding: 0 20px;
}

.about-card-component {
    padding: 3rem 0;
    padding-top: 8rem;
}

.about-card-wrapper {
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.w-triangle {
    margin-left: 65px;
}

.w-triangle:before {
    content: "";
    border-style: solid;
    border-width: 25px 30px 0px 0px;
    border-color: var(--palette-500) transparent transparent transparent;
    position: absolute;
    margin-left: -40px;
    margin-top: 5px;
}

.w-triangle  {
    margin-left: 65px;
}

.about-card-content p {
    margin-top: 0;
}

.about-card-image {
    flex: 1 0 40%;
    margin-right: 35px;
}

.about-card-video {
    flex: 1 0 40%;
    margin-right: 35px;
}

.about-card-content {
    flex: 1 0 40%;
    margin-left: 35px;
}

.about-card-content-highlight {
    font-size: 1.333em;
}

.about-card-content-highlight span,
.about-card-content-highlight strong {
    color: var(--palette-500);
}

.about-card-content p {
    color: var(--palette-100);
    line-height: normal;
}

.about-history-component {
    padding: 3rem 0;
    padding-top: 8rem;
}

.about-history-wrapper {
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    padding: 100px;
}

.about-history-title {
    font-size: 2.667em;
    color: var(--white);
    font-weight: 500;
    letter-spacing: normal;
    flex: 1;
    margin: 0;
}

.about-history-btn {
    background-color: var(--white);
    display: inline-flex;
    color: var(--palette-500);
    padding: 20px;
    border-radius: 15px;
    flex-direction: row;
    align-items: center;
    min-width: 210px;
    cursor: pointer;
    text-decoration: none;
}

.about-history-btn-text {
    flex: 1;
    font-weight: 200;
}

.about-history-btn-arrow {
    display: block;
    width: 30px;
}

.about-history-btn-arrow img {
    max-width: 100%;
    height: auto;
}

.about-history-component.history-2
.about-history-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
}

.about-history-component.history-2
.about-history-title {
   font-size: 1.333em;
   font-weight: normal;
   flex: unset;
   margin-bottom: 20px;
   max-width: 380px;
}

.about-history-component.history-2
.about-history-btn {
    max-width: 380px;
}

.about-history-component.history-2
.about-history-btn-text {
    margin-right: 90px;
}


@media screen and (max-width: 1024px) {
    .about-card-wrapper {
        align-items: center;
        flex-direction: column;
    }

    .about-card-image {
        margin-bottom: 5rem;
        margin-right: 0;
    }

    .about-card-content {
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .about-history-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 50px;
    }
    
    .about-history-title {
        margin-bottom: 2rem;
    }

    .about-card-video {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-history-component.history-2
    .about-history-btn-text {
        margin-right: 0;
    }
}