/* Styles for the homepage hero slider */

/* Slider hero additionnal styles */
#slider-hero .slider-container .description-bloc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#slider-hero .description-bloc--white {
    background: #fff;
    color: #252525;
    border-radius: 1.875rem;
    padding: 1rem 2.5rem;
}
#slider-hero .description-bloc--white h2 {
    margin-top: -3.125rem;
}
#slider-hero .slider-container .slide-list .slider-item .description .description-bloc--white h2 {
    text-align: center;
}
#slider-hero .description-bloc .button {
    text-align: center;
    padding: .5rem 4rem;
    font-size: 1rem;
    line-height: 1.25rem;
}
#slider-hero .description-bloc .button span {
    display: block;
}
#slider-hero .description-bloc .button .text-bold {
    font-weight: 700;
}
#slider-hero .actions {
    margin-top: 0;
}
#slider-hero .h3 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
    #slider-hero .slider-container .slide-list .slider-item .description div h2 {
        margin-top: -3.125rem;
    }
    #slider-hero .description-bloc .button {
        padding: .625rem 1.5rem;
    }
}
@media only screen and (max-width: 480px) {
    #slider-hero .h3 {
        font-size: 1.375rem;
    }
}
/* select-form custom styles */
.form-select {
    position: relative;
}
.form-select select {
    border-color: #ffcb2c !important;
    box-shadow: 0 .25rem .375rem -0.0625rem #0000001a, 0 .125rem .25rem -0.125rem #0000001a;
    line-height: 1.5;
    font-size: 1.125rem;
    text-align: left;
    padding-bottom: .5rem;
    padding-top: .5rem;
    padding-left: 1.5rem;
    padding-right: 2.25rem;
    border-radius: 500rem;
    width: 100%;
    height: 3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-width: .0625rem;
    cursor: pointer;
    background-color: rgb(255 255 255 / 1);
}
.form-select select:focus {
    border-radius: 500rem;
}
.form-select select + .select-icon {
    position: absolute;
    right: .5rem;
    top: 50%;
    translate: 0 -50%;
    pointer-events: none;
    transition-duration: .5s;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.form-select select:focus + .select-icon {
    transform: rotate(180deg);
}