main{
    margin-top: 125px;
}

.italic {
    font-style: italic;
}

#slider .container:nth-of-type(1){
    width: 100%;
    position: relative;
    flex-direction: column;
}

#slider .blue-stripe{
    margin: 25px auto;
    width: 100%;
    background-color: var(--main-blue);
    position: relative
}

#slider .blue-stripe img{
    margin-top: 0;
    padding: 0 5%;
}

h1{
    position: relative;
    width: 90%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    font-size: 1.4em;
    margin: auto auto;
}

h1 span{
    color: var(--main-blue);
    display: block;
}

.title{
    width: 90%;
    margin: 50px 5% 25px 5%;
    
}

.title h2{
    font-size: 1.2em;
}

.menu{
    display: flex;
    width: 100%;
    justify-content: center;
}

.menu-button{
    margin: 0 18px;
    height: 22px;
    cursor: pointer;
    font-weight: bold;
    transition: all ease 0.5s;
}

.menu-button span{
    display: block
}

.menu-button:hover{
    color: var(--main-blue);
    border-bottom: 1px solid var(--main-blue);
}

.menu-button.active{
    color: var(--main-blue);
    border-bottom: 1px solid var(--main-blue);
}

.service-name{
    display: none;
}

.slider-infos{
    position: relative;
    display: flex;
    justify-content: center;
}

.slider-infos span{
    font-weight: bold;
}

.slider-infos ul span{
    min-width: 6px;
    height: 6px;
    display: inline-block;
    margin-right: 5px;
    background-color: var(--main-blue);
    margin-top: 7px;
}

.slider-infos li{
    display: flex;
   /* align-items: center;*/
}
/*
.slider-infos li::before{
    content:"";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-right: 5px;
    background-color: var(--main-blue);
}
*/
.info-container{
    width: 90%;
    margin-top: 25px;
    border: 1px solid var(--main-blue);
    padding: 20px;
}

.info-container span{
    color: var(--main-blue);
}

.info-container li{
    list-style: none;
}

.info-container .message{
    margin-top: 50px;
    background-color: var(--main-blue);
    color: black;
    padding: 25px;
}

.infos{
    display: none;
    opacity: 0;
    transition: all ease 0.5s;
}

.infos.active-display{
    display: block;
}

.infos.active-opacity{
    opacity: 1;
}

.left-arrow, .right-arrow{
    display: flex;
    width: 49px;
    height: 100%;
    cursor: pointer;
    margin: 0;
    position: absolute;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.507);
    opacity: 0.35;
}

.left-arrow img, .right-arrow img{
    margin-top: 150px;
}

.left-arrow:hover, .right-arrow:hover{
    opacity: 1;
}

.arrow-services{
    display: none;
}

.arrow-services-mb{
    display: block;
    position: relative;
}

.left-arrow{
    left: 0px;
}

.right-arrow{
    left: unset;
    right: 0px;
    transform: scaleX(-1);
}

.reserver{
    width: 100%;
    margin-top: 50px;
    justify-content: center;
}

.blue-stripe{
    background-color: var(--main-blue);
    width: 100%;
    height: 100px;
    margin: 100px 0;
}

.blue-stripe .container{
    margin: auto auto;
}

#slider .blue-stripe{
    height: auto;
}

.blue-stripe img{
    margin-top: -50px;
}

@media only screen and (min-width: 768px) {
    main{
        margin-top: 238px;
    }
    
    #slider .container:nth-of-type(1){
        flex-direction: row;
    }

    
    #slider .blue-stripe{
        height: 150px;
    }
    
    #slider .blue-stripe img{
        position: absolute;
        top: -50px;
        left: 0;
    }


    h1{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        align-items: center;
    }

    .blue-stripe{
        background-color: var(--main-blue);
        height: 225px;
    }
}

    

@media only screen and (min-width: 1024px) {

    #slider .blue-stripe{
        height: 200px;
    }

    h1{
        font-size: 2em;
    }

    .title{
        width: 90%;
        margin: 75px 5%;
        
    }
    
    .title h2{
        font-size: 2em;
    }

    .menu{
        display: flex;
        width: 100%;
        justify-content: center;
    }
    
    .menu-button{
        margin: 0 25px;
        height: 22px;
        cursor: pointer;
        font-weight: bold;
        transition: all ease 0.5s;
    }
   
    .service-name{
        display: block;
    }

    .menu-button span{
        display: none;
    }

    .slider-infos{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .info-container{
        width: 80%;
        padding: 20px 50px;
    }
    

    .left-arrow, .right-arrow{
        width: 49px;
        height: 37px;
        cursor: pointer;
        margin: 0 25px;
        opacity: 1;
        align-items: flex-start;
    }
    
    .right-arrow{
        left: unset;
        right: 10px;
        transform: scaleX(-1);
    }

    .left-arrow{
        left: 10px;
    }

    .arrow-services{
        display: block;
    }
    
    .arrow-services-mb{
        display: none
    }

    .left-arrow img, .right-arrow img{
        margin-top: 0;
    }

    .blue-stripe{
        background-color: var(--main-blue);
        height: 250px;
        margin: 100px 0;
    }

    .blue-stripe img{
        margin-top: -100px;
    }
    
}



@media only screen and (min-width: 1288px) {

    #slider .blue-stripe{
        height: 250px;
    }

    .blue-stripe{
        background-color: var(--main-blue);
        height: 350px;
    }
}



@media only screen and (min-width: 1500px) {

    #slider .blue-stripe{
        height: 320px;
    }

}



@media only screen and (min-width: 1920px) {

    

}