/** CONFIG GENERALE */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html,
body {
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    line-height: 1.625;
    min-height: 100%;
    overflow-x: hidden;
}

h1,
h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


p {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 0px;
}

a {
    text-decoration: none;
    color: #222;
}

/*-----------------------------------------
Header
-------------------------------------------*/
.nav {
    z-index: 9999;
    height: 90px;
    background: linear-gradient(90deg, #00a7e1, #00b9f7);
    box-shadow: 0 0 6px rgb(0 0 0 / 30%);
    position: fixed;
    width: 100%;
}

.logo {
    height: 80px;
    display: block;
    padding: 10px;
}

.header_img {
    padding-top: 90px;
    display: block;
    max-width: 100%;
    width: 100%;
}

.header_img img {
    max-width: 100%;
    width: 100%;
}

.info-section {
    z-index: 9999;
    background: #fff;
    transform: translate(0, -20px);
    padding: 10px;
    box-shadow: 0 0 6px rgb(0 0 0 / 30%);
}

.section-block-parallax {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
    padding: 130px 0px 130px 0px;
    margin: 50px 0;
}

/*-----------------------------------------
Carousel
-------------------------------------------*/
.title {
    font-size: 25px;
    color: #FFF;
    font-weight: bold;
    margin-bottom: 25px;
}

.item {
    margin: 40px 10px;
    background-color: #fff;
    box-shadow: 0 15px 15px #3232321a, 0 5px 5px #0000001a;
    transition: transform 0.3s;
    transform: translate3d(0, -1px, 0);
}

.item:hover {
    transform: translate3d(0, -10px, 0);
}

.item img {
    display: block;
    width: 100%;
    height: auto;
}

.item__body {
    padding: 25px;
}

.item__title {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #232323;
}

.item__description {
    color: #585858;
}

.items {
    position: relative;
}

/**
CAROUSEL
*/

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel__container {
    transition: transform 0.3s;
    transition: translate3d(0, 0, 0);
}

.carousel__item {
    float: left;
}

.carousel__container::after {
    content: '';
    clear: both;
    display: table;
}

.carousel__next,
.carousel__prev {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFF url(right.svg) center center no-repeat;
    background-size: 20px;
    border-radius: 50%;
    top: 50%;
    margin-top: -20px;
    right: -0px;
    box-shadow: 0 15px 35px #3232321a, 0 5px 15px #0000001a;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;

}

.carousel__next:hover,
.carousel__prev:hover {
    transform: scale(1.2);
}

.carousel__prev {
    right: auto;
    left: -0px;
    background-image: url(left.svg);
}

.carousel__next--hidden,
.carousel__prev--hidden {
    opacity: 0;
}
/*-----------------------------------------
Langue texte 
-------------------------------------------*/

.fr {
    color:#4b4a4a;
}

.en {
    margin-left: 30px; 
    color:#605f5f;;
}

.nl {
    margin-left: 60px;
    color: #7c7b7b;
}

.box {
    box-shadow: 3px 7px 25px 0px rgb(0 0 0 / 5%);
    background: #b9edff;
    margin: 15px;
    padding: 20px;
    border-radius: 15px;
}

li {
    font-size: 14px;
}
/*-----------------------------------------
Footer
-------------------------------------------*/

footer {
    padding: 50px 0;
    color: #FFF;
    background-color: #00a7e1;
    min-height: 300px;
}