/* CONTACT LEFT PART*/
section#contact {
    font-family: 'Gilroy', sans-serif;
    width: 100%;
    color: #fff;
}

.contact-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10em;
    position: relative;
}

.rdv-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: relative;
    margin-bottom: 4rem;
}

.form-horizontal {
    width: 50%;
}

.rdvForm h1 {
    font-family: 'GilroyExtraBold', sans-serif;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rdvForm {
    background-color: #1B1C1E;
    padding: 50px;
    border-radius: 20px;
}

.form-control {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 8px;
    margin-bottom: 2em;
    padding: 10px;
    font-size: 15px;
    color: black;
}

.form-horizontal input {
    height: 40px;
}


.form-horizontal input:focus,
.form-horizontal textarea:focus {
    outline: none;
}


.form-button {
    display: flex;
    justify-content: center;
}

.send-button {
    width: 60%;
    padding: 15px;
    background-color: #1B1C1E;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 15px;
    cursor: pointer;
}

.send-button:hover {
    transition: all 0.3s;
    background-color: #fff;
    color: #1B1C1E;
}

/* CONTACT RIGHT PART*/
.direct-contact-container {
    font-size: 19px;
}

.direct-contact-container a {
    text-decoration: none;
    color: #fff;
}

.social-media-list img {
    width: 50px;
}

.contact-list .list-item,
.social-media-list li {
    list-style: none;
}

.contact-list .list-item {
    line-height: 2em;
    letter-spacing: 2px;
}

.contact-list {
    margin-bottom: 2em;
}

.social-media-list {
    display: flex;
    justify-content: space-around;
}

.social-media-list img {
    margin: 15px 0;
    border: 1px solid #fff;
    border-radius: 50%;
}

.social-media-list img:hover {
    padding: 5px;
    transition: .3s;
}

.contact-list .list-item .contact-icon {
    margin-right: 2em;
}

.contact-list .list-item a:hover {
    color: #FD6262;
    transition: .3s;
}

.copyright {
    text-align: center;
    margin-top: 1.5em;
    font-size: 14px;
    color: #aaa;
}

.direct-contact-container hr {
    border: 1px solid #FD6262;
}


/* =====================RENDEZ VOUS=================================*/

.select {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 250px;
    height: 40px;
}

.option {
    padding: 0 30px 0 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    background: #333;
    border-top: #222 solid 1px;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
    order: 2;
    z-index: 1;
    transition: .4s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;

}

.option:hover {
    background: #aaa;
}

.select:focus .option {
    position: relative;
    pointer-events: all;
}

.selectopt {
    opacity: 0;
    position: absolute;
    left: -99999px;
}

.selectopt:checked+label {
    order: 1;
    z-index: 2;
    background: #666;
    border-top: none;
    position: relative;
}


.selectopt:checked+label:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    position: absolute;
    right: 10px;
    top: calc(50% - 2.5px);
    pointer-events: none;
    z-index: 3;
}

.selectopt:checked+label:before {
    position: absolute;
    right: 0;
    height: 40px;
    width: 40px;
    content: '';
    background: #666;
}

.form-resa {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2em;

}

.date-input {
    width: 200px;
    border: none;
}


/*   RESPONSIVE */
@media screen and (max-width: 800px) {
    #contact {
        margin-bottom: 5rem;
    }

    .contact-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .form-horizontal {
        width: 80%;
    }

    .contact-list {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        margin: 2em;
    }

    .list-item {
        font-size: 18px;
    }

    .form-resa {
        display: flex;
        margin-bottom: 2em;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .form-resa .form-group {
        margin-bottom: 2em;
    }
}