.rdv_button {
    width: 30%;
    padding: 1% 2%;
    background: linear-gradient(to right, #82a2ee, #9cbaf1);
    border: none;
    border-radius: 1vw;
    color: #fff;
    font-size: 1.8vw;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    text-align: center;
    margin: 2vw auto;
    display: block;
}

.rdv_button:hover {
    background: linear-gradient(to left, #82a2ee, #9cbaf1);
    transform: translateY(-2px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    color: #e5edff;
}

.prise_rdv h1 {
    font-size: 1.8vw;
}

.slider {
    width: 100%;
    height: 20%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: all 0.5s ease-in-out;
    width: 80%;
    height: 40vw;
    margin: 2% 10%;
}

.slides img {
    border-radius: 1vw;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
    width: 100%;
    height: auto;
    object-fit: cover;
    display: none;
}

.slides img.active {
    display: block;
}

.slider .prev,
.slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: rgba(83, 106, 161, 0.84);
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
    color: white;
    font-size: 20px;
    padding: 1vw;
    border-radius: 1vw;
}
.slider .prev:hover,
.slider .next:hover {
    background-color: rgba(122, 145, 203, 0.8);
    color: white;
}

.slider .prev:active,
.slider .next:active {
    background-color: rgba(164, 183, 232, 0.5);
    color: white;
}

.slider .prev {
    left: 4%;
}

.slider .next {
    right: 4%;
}

.content {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h1 {
    font-size: 2.2vw;
    text-align: center;
}

.content h2 {
    font-size: 2vw;
    margin-left: 2vw;
}

.content p {
    font-size: 1.8vw;
    margin-left: 4vw;
}

.transport_icons {
    margin-bottom: 0.2vw;
    width: 2.2vw;
}

.transport_icons, .content p {
    vertical-align: middle;
    display: inline-block;
}

.map {
    margin-left: 2%;
    margin-top: 2vw;
    margin-bottom: 2vw;
    width: 96%;
    height: 30vw;
    border-radius: 1vw;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}

.single_image {
    border-radius: 1vw;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
    width: 35%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (max-width: 810px) {
    .rdv_button {
        width: 50%;
        padding: 3% 6%;
        font-size: 4.2vw;
    }

    .prise_rdv h1 {
        font-size: 16px;
        margin-right: auto;
        margin-left: auto;
        text-align: justify;
        text-justify: auto;
        padding-right: 4vw;
        padding-left: 4vw;
    }

    .map {
        height: 50vw;
    }

    .content h1 {
        font-size: 16px;
        margin-top: 5%;
    }

    .content h2 {
        font-size: 14px;
        margin-left: 2vw;
    }

    .content p {
        font-size: 12px;
        margin-left: 3vw;
    }

    .transport_icons {
        margin-bottom: 2px;
        width: 15px;
    }

    .transport_icons, .content p {
        vertical-align: middle;
        display: inline-block;
    }

    .single_image {
        border-radius: 1vw;
        box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
        width: 80%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
