.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;
}

/* Contacts */

.contacts {
    display: flex;
    flex-wrap: wrap;
}

.contacts-l-side, .contacts-r-side {
    width: 50%;
}

.contacts-l-side {
    background-color: var(--primary-color);
}

.contacts-r-side {
    background-color: #FFFFFF;
}

.contact-heading {
    line-height: 1.2;

    margin-bottom: 20px;
}

.contacts-l-side > .contact-heading {
    color: var(--secondary-color);
}

.contacts-r-side > .contact-heading {
    color: var(--primary-color);
}

.contact-heading > span {
    line-height: 1.2;
}

.contact-info {
    font-size: 16px;

    margin-bottom: 40px;
}

.contacts-l-side > .contact-info {
    color: #FFFFFF;
}

.contact {
    margin-bottom: 20px;
}

.contact-option {
    color: var(--secondary-color);

    margin-bottom: 10px;
}

.contact-link, .contact > span {
    color: #FFFFFF;
}

.contact-social-media-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form > input {
    width: 100%;
}

.contact-form > .c-primary-btn {
    border-color: var(--primary-color);

    color: var(--primary-color);

    font-size: 16px;

    margin-top: 20px;

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

.contact-form > .c-primary-btn:hover {
    color: #FFFFFF;
    background-color: var(--primary-color);
}

.cf-response-note {
    text-align: center;

    display: none;
}

.cf-response-note.active{
    display: block;
}

.cf-response-note.failure {
    color: var(--failure-color);
}

.cf-response-note.success {
    color: var(--success-color);
}

/* Address map */

.address-map {
    width: 100%;
    height: 400px;
}

.address-map > iframe {
    width: 100%;
    height: 100%;

    border: none;
}

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

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

    .contacts-l-side, .contacts-r-side {
        width: 100%;
    }

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

    .contact-form > .c-primary-btn {
        margin-top: 0;
    }
}