.container {
    width: 100%;

    display: flex;
    flex-direction: column;
}

/* Fold */

.fold {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
}

.fold > img {
    width: 100%;
    height: 100%;

    filter: brightness(40%);
    -webkit-filter: brightness(40%);

    object-fit: cover;
    -o-object-fit: cover;
}

.fold-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;
}

.fold-intro > h1 {
    color: #FFFFFF;

    text-align: center;

    margin-bottom: 20px;
}

.fold-intro > a {
    display: flex;
    align-items: center;
}

.fold-intro > a > i {
    margin-right: 10px;
}

.fold-view-services-link {
    color: #FFFFFF;

    text-transform: uppercase;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: absolute;

    bottom: 20px;

    animation: vertical-slide-shake 1s linear infinite;
}

.fold-view-services-link > img {
    width: 40px;
}

/* Services */

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-heading {
    margin: 20px 0;
}

.services-wrapper {
    width: 100%;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service {
    width: 25%;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;
}

.service-icon {
    height: 40px;

    margin-bottom: 20px;
}

.service-name {
    font-size: 14px;

    text-align: center;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-info-icon {
    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;
    
    margin-left: 5px;

    cursor: pointer;
}

.service-info-icon > i {
    color: #FFFFFF;

    font-size: 8px;
}

/* About us */

.about-us {
    display: flex;
    align-items: center;
}

.about-us-img {
    height: 400px;

    border-radius: 5px;

    object-fit: cover;
    -o-object-fit: cover;

    margin-right: 40px;
}

.about-us-info {
    display: flex;
    flex-direction: column;
}

.about-us-info-content {
    font-size: 14px;

    margin: 20px 0;
}

.about-us-info-social-media-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-us-info-social-media-links > a {
    width: 30px;
    height: 30px;

    border-radius: 5px;

    color: #FFFFFF;
    background-color: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services */

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contacts-heading {
    margin-bottom: 20px;
}

.contacts-wrapper {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact {
    width: 25%;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;
}

.contact-icon {
    height: 40px;

    margin-bottom: 20px;
}

.contact-link {
    font-size: 14px;

    text-align: center;
    text-transform: uppercase;
}

.contacts-map {
    width: 100%;
    height: 400px;

    border-radius: 5px;

    margin: 20px 20px 40px 20px;
}

.contacts-note {
    width: 100%;

    display: flex;
    flex-direction: column;
}

.contacts-note-imgs {
    width: 100%;

    display: flex;
    align-items: center;
    
    margin-top: 20px;
}

.contacts-note-imgs > img {
    height: 40px;
}

.contacts-note-imgs > img:not(:last-child) {
    margin-right: 20px;
}

/* Footer */

footer {
    background-color: var(--primary-color);

    display: flex;
    justify-content: center;

    padding: 10px;
}

footer > span {
    color: #FFFFFF;
}

footer > span > a {
    color: #FFFFFF;

    font-weight: 800;
}

@media only screen and (max-width: 680px) {
    .service {
        width: 100%;
    }

    .service-name {
        font-size: 14px;
    }

    .about-us {
        flex-direction: column;
    }

    .about-us-img {
        width: 100%;

        margin: 0 0 20px 0;
    }

    .contact {
        width: 100%;
    }

    .contact-link {
        font-size: 14px;
    }
}

@media only screen and (max-width: 400px) {
    
}