.contacts {

    display: flex;
    width: 100%;
    padding: 50px;
    background: #FFFFFF;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
    gap: 20px;
    margin-bottom: 20px;
}

.contacts .contact {

    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 60%;

}

.contacts .contact .fast-contact {

    display: flex;
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
}

.contacts .contact .fast-contact .phone,
.contacts .contact .fast-contact .email {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 45%;
}

.contacts .contact .fast-contact .phone h5,
.contacts .contact .fast-contact .email h5 {

    font-size: 1.4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: black;

}



.contacts .contact .fast-contact .phone span,
.contacts .contact .fast-contact .email span {

    font-size: 1rem;
    font-weight: 400;
    font-family: "Inter", sans-serif;

}

.contacts .contact .social h5 {

    font-size: 1.4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: black;
}

.contacts .contact .social .social-icons {

    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 10px;

}

.contacts .contact .social .social-icons a {

    font-size: 2rem;
    color: black;

}

.contacts .maps {

    display: flex;
    flex-direction: column;
    width: 40%;

}

iframe {
    width: 100%;
    height: 100%;
}

.contacts .maps h2 {

    font-size: 2rem;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    color: black;
    margin-bottom: 20px;
}

.contacts .contact h2 {

    font-size: 2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: black;

}

.backpipe {

    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;

}

.backpipe::before {

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.634);

}

.backpipe img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.backpipe .meta-info {

    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 20px;
}

.backpipe .meta-info h3 {
    font-size: 2rem;
    color: rgb(255, 255, 255);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.backpipe .meta-info span {
    font-weight: 400;
    font-size: 1rem;
    color: rgb(255, 255, 255);
    font-family: "Poppins", sans-serif;
    font-style: italic;

}

.backpipe .meta-info a {

    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
}

.backpipe .meta-info a:hover {

    background-color: rgba(255, 255, 255, 0.204);

}

.backpipe .arrows {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.backpipe .arrows i {

    width: 50px;
    height: 50px;
    font-size: 50px;
    color: white;
    animation: movement 2s linear infinite;
    position: absolute;
    top: 0;
    left: 1;
    transform: translate(-50%, 0);
    opacity: 0;
}

@keyframes movement {

    0% {
        top: 0;
        opacity: 0;
    }

    25% {
        top: 30px;
        opacity: 0.5;
    }

    50% {
        top: 40px;
        opacity: 0.8;
    }

    100% {
        top: 50px;
        opacity: 1;
    }

}

@media screen and (max-width: 990px) {

    .contacts {

        padding: 20px;
        flex-wrap: wrap;
    }

    .contacts .contact {

        width: 100%;
        gap: 30px;
    }

    .contacts .maps {

        width: 100%;
        height: 400px;
        margin-top: 20px;

    }

}

@media screen and (max-width:490px) {

    .contacts .contact {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .contacts .contact .fast-contact {

        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;

    }

    .contacts .contact .fast-contact .phone,
    .contacts .contact .fast-contact .email {

        display: flex;
        width: 100%;
        margin-top: 12px;
    }

    .backpipe {
        font-size: 75%;
    }

    .backpipe img {
        height: 100vh;
        object-fit: cover;
    }

    .backpipe .meta-info h3 {
        font-size: 1.5rem;
    }
}