.container {
    width: 100%;

    display: flex;
    flex-direction: column;
}

/* Fold */

.fold {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
}

.fold-img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    -o-object-fit: cover;

    position: absolute;

    z-index: -1;
}

.fold-info {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.fold-heading {
    color: #FFFFFF;

    font-size: 64px;

    margin-bottom: 20px;
}

.fold-slogan {
    color: var(--secondary-color);

    text-transform: uppercase;
}

/* Stats */

.stats {
    background-color: var(--primary-color);

    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.stat {
    width: calc(25% - 30px);
}

.stat-number {
    color: #FFFFFF;
    
    font-weight: 800;
}

.stat-name {
    color: var(--secondary-color);

    margin: 10px 0;
}

/* About us */

.about-us {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.about-us-primary {
    width: calc(50% - 20px);
}

.about-our-mission {
    width: calc(25% - 30px);
}

.about-our-vision {
    width: calc(25% - 30px);
}

.about-us h2 {
    color: var(--primary-color);

    margin-bottom: 20px;
}

/* Partners */

.partners {
    display: flex;

    padding: 0 80px 80px 80px;
}

.partner > img {
    width: 100%;
    height: 50px;
    
    /*filter: grayscale(100%);*/
    
    object-fit: contain;
    -o-object-fit: contain;
}

/* Contact us CTA */

.contact-us-cta {
    min-height: 200px;

    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-us-cta-heading {
    color: #FFFFFF;

    margin-bottom: 20px;
}

.contact-us-cta-info > span {
    color: #FFFFFF;
}

.contact-us-cta-btn {
    font-size: 20px;

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.contact-us-cta-btn:hover {
    color: var(--tertiary-color);
    background-color: #FFFFFF;
}

@media only screen and (max-width: 1000px) {
    .stats {
        flex-direction: column;
    }

    .stat {
        width: 100%;
    }

    .about-us-primary, .about-our-mission, .about-our-vision {
        width: calc(33% - 26px);
    }
}

@media only screen and (max-width: 800px) {
    .fold-heading {
        font-size: 54px;
    }

    .about-us {
        flex-direction: column;
    }

    .about-us-primary, .about-our-mission, .about-our-vision {
        width: 100%;
    }

    .partners {
        padding: 0 60px 60px 60px;
    }
    
    .contact-us-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-us-cta-info {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .fold-heading {
        font-size: 48px;
    }

    .partners {
        padding: 0 40px 40px 40px;
    }
}

@media only screen and (max-width: 400px) {
    .stats {
        gap: 20px;
    }

    .partners {
        padding: 20px 20px 40px 20px;
    }
}