#contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #254e70;
}

/* #contact * {
  border: 1px black solid;
} */

/* MAIN DIVISION */
#contact>div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    padding: 0;
}

/* SCROLL FOR MORE */
#contact>div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    margin-bottom: 2vh;
    bottom: 0;
    animation: floating 3s infinite;
}

#buttons {
    padding: 10px 0;
}

#buttons>* {
    background-color: #254e70;
    color: #f9f9f9;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    margin: 10px 10px 10px 0;
}

/* INFORMATIONS */
#contact>div:first-child>div:first-child {
    margin-left: 10px;
}

/* POSITION TITLE + ADDRESS */
#contact>div:first-child>div>div {
    padding-left: 80px;
}

#contact>div:first-child>div>div>h1 {
    margin: 8px 0;
}

#contact>div:first-child>div>div>p {
    margin-top: 0;
}

/* TRANSPORTS */
#contact ul {
    padding: 0;
    list-style: none;
    max-width: 370px;
    position: relative;
    padding-left: 80px;
    text-align: justify;
}

#contact li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* ICONS */
#contact ul i {
    width: 50px;
    font-size: 40px;
    color: #c13874;
    position: absolute;
    left: 0;
    text-align: center;
}

/* IFRAME */
#contact>iframe {
    width: 90vw;
    max-width: 450px;
    height: 55vh;
    min-height: 350px;
    max-height: 500px;
    border: none;
    border-radius: 10px;
    box-shadow: lightgrey 0 0 20px;
    margin: 0 20px;
}

/* REMOVE NOTICE WHEN WIDTH TOO SMALL */
@media screen and (max-width: 949px) {
    #contact>div:first-child {
        padding: calc(80px + 3vh) 0 0 0;
    }

    #contact>div:last-child {
        display: none;
    }

    iframe {
        margin: 30px;
    }
}

@media screen and (max-width: 760px) {
    #contact>div:first-child>div:first-child {
        margin-left: 0;
        width: 90vw;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: start;
    }

    #contact ul i {
        text-align: start;
    }

    iframe {
        margin: 30px 0;
    }

    #contact>div:first-child>div>div {
        padding-left: 0;
    }
}