.contacts-container
{
    color: #D3DAD9;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 80px;
    gap: 50px;
    padding-right: 10px;
    padding-left: 10px;
}

.contacts-infos
{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;

    opacity: 0;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;


}

.contacts-infos h1
{
    font-size: 1.7rem;
    margin-bottom: 20px;
}


.contacts-map
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1000px;

    opacity: 0;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

.contacts-map iframe
{
    border: none;
    border-radius: 10px;
}

@media only screen and (min-width: 1120px)
{
    .contacts-container
    {
        flex-direction: row;
        padding-right: 35px;
        padding-left: 35px;
    }
}