@import url('https://fonts.googleapis.com/css2?family=Charmonman:wght@400;700&family=Raleway:ital,wght@0,100;1,100&family=WindSong:wght@400;500&display=swap');
/*======= CSS variables =======*/
:root{
    --navigation-item-hover-color: #ad877b;
    --scroll-thumb-color: #D5ADA1;
    --scroll-thumb-hover-color: #ad877b;
}
  
/*======= Scroll bar =======*/
::-webkit-scrollbar{
    width: 11px;
    background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb{
    width: 100%;
    background: var(--scroll-thumb-color);
    border-radius: 2em;
}
  
::-webkit-scrollbar-thumb:hover{
    background: var(--scroll-thumb-hover-color);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
}

/* Message Error, Success, Warning, Info  */
.info-msg,
.success-msg,
.warning-msg,
.error-msg {
    margin: 10px 0;
    padding: 10px;
    border-radius: 3px 3px 3px 3px;
    font-size: 15px;
    text-align: center;
    z-index: 1;
}

.info-msg {
    color: #059;
    background-color: #BEF;
}
.success-msg {
    color: #270;
    background-color: #DFF2BF;
}
.warning-msg {
    color: #9F6000;
    background-color: #FEEFB3;
}
.error-msg {
    color: #D8000C;
    background-color: #FFBABA;
}

.container-lang {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    z-index: 9999;
}

.lang form {
    margin-left: 10px;
}

.lang button {
    background: none;
    border: none;
    cursor: pointer;
}

.lang button:hover {
    transform: scale(1.1); /* Scale the button by 10% on hover */
}
nav{
    position: fixed;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.343);
    background: linear-gradient(90deg, #ecececc7, #ffffffe7);
    z-index: 999;
}
nav.sticky{
    background: linear-gradient(90deg, #f9f8f8f3, #f4f1eff2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.343);
  }

nav .header-content{
    display: flex;
    top: 0;
    left: 0;
    padding: 15px;
    transition: all 0.4s ease;  
}

nav .icon-contact{
    padding: 30px;
    position: relative;
    width: 20%;
}
nav .icon-contact a{
    border: none;
    position: relative;
    padding: 15px;
    font-size: 15px;
    color: #7e5c51;
    cursor: pointer;
    border-radius: 100%;
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    outline: none;
}
nav .icon-contact a:active{
    box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
                inset -4px -4px 6px 0 rgba(255,255,255,.2),
                inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
nav .icon-contact a:hover{
    opacity: .7;
    color: #fff;
}

nav .logo{
    position: absol;
    text-align: center;
    width: 60%;
}
nav .logo img{
    width: 250px;
}

nav .comment{
    position: relative;
    width: 20%;
    padding: 15px;
}

nav .comment .custom-btn{
    width: 200px;
    height: 50px;
    color: #fff;
    border-radius: 20px;
    padding: 10px 25px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

nav .comment .btn-11{
    border: none;
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    color: #7e5c51;
    overflow: hidden;
}
nav .comment .btn-11:hover{
    text-decoration: none;
    color: #fff;
}
nav .comment .btn-11:before{
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 8s ease-in-out infinite;
}
nav .comment .btn-11:hover{
    opacity: .7;
}
nav .comment .btn-11:active{
    box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
                inset -4px -4px 6px 0 rgba(255,255,255,.2),
                inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

nav{
    padding-bottom: 20px;

}

nav .nav-links{
    display: flex;

}

nav .nav-links li{
    list-style-type: none;
    width: 100%;
    text-align: center;
    margin: 2.3px 8px;
}
nav .nav-links .info{
    margin-top: 9px;
}

nav .nav-links li a i{
    background: linear-gradient(90deg, #d5ada1a0, #ad877b91);
    border-radius: 20px;
    margin-left: -10px;
    padding: 10px;
}
nav .nav-links li a i:hover{
    background: linear-gradient(90deg, #d5ada1f9, #ad877bee);
}

nav.sticky .nav-links li a i{
    background: linear-gradient(90deg, #d5ada1f9, #ad877bee);
}

nav .nav-links li a{
    text-decoration: none;
    color: #7e5c51;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #d5ada11e, #ad877b35);
    border-radius: 20px;
    padding: 10px;
    font-family: 'Raleway', sans-serif;
}
nav .nav-links li a:hover{
    background: linear-gradient(90deg, #d5ada1f9, #ad877bee);
    color: #fff1ec;
}
nav.sticky .nav-links li a{
    background: linear-gradient(90deg, #d5ada11e, #ad877b35);
}
nav.sticky .nav-links li a:hover{
    background: linear-gradient(90deg, #d5ada1f9, #ad877bee);
    color: #fff1ec;
}
nav .nav-links li a:active{
    box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
                inset -4px -4px 6px 0 rgba(255,255,255,.2),
                inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

@media all and (max-width: 945.99px) and (min-width: 0px){
    nav{
        display: none;
    }
}

@media all and (min-width: 946px){
    .fixed-bottom-menu{
        display: none;
    }
    .header-mobile{
        display: none;
    }
}

@media all and (max-width: 946px) and (min-width: 0px){

    .lang {
        position: fixed;
        bottom: 50%;
        right: 10px;
        display: block;
        z-index: 9999;
    }

    .header-mobile{
        position: fixed;
        width: 100%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.343);
        background: linear-gradient(90deg, #ececec, #ffffff);
        z-index: 999;
    }
    .header-mobile .header-content{
        display: flex;
        top: 0;
        left: 0;
        padding: 15px;
        transition: all 0.4s ease;  
    }
    
    .header-mobile .icon-contact{
        position: relative;
        padding-top: 35px;
        width: 35%;
    }

    .header-mobile .icon-contact a{
        border: none;
        position: relative;
        padding: 15px;
        font-size: 15px;
        color: white;
        cursor: pointer;
        border-radius: 100%;
        background: linear-gradient(90deg, #D5ADA1, #ad877b);
        outline: none;
    }

    .header-mobile .icon-contact a:active{
        box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3),
                    -4px -4px 6px 0 rgba(116, 125, 136, .2), 
                    inset -4px -4px 6px 0 rgba(255,255,255,.2),
                    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
    }

    .header-mobile .icon-contact a:hover{
        opacity: .7;
    }
    
    .header-mobile .logo{
        position: relative;
        text-align: center;
        width: 35%;
        margin-top: 10px;
    }
    .header-mobile .logo img{
        width: 120px;
    }
    
    .header-mobile .comment{
        position: relative;
        width: 30%;
        padding: 15px;
    }
    
    .header-mobile .comment .custom-btn{
        margin-top: 3px;
        margin-left: 20px;
        width: 40px;
        height: 50px;
        color: #fff;
        border-radius: 20px;
        font-family: 'Raleway', sans-serif;
        font-weight: 500;
        font-size: 12px;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .header-mobile .comment .btn-11{
        border: none;
        background: linear-gradient(90deg, #D5ADA1, #ad877b);
        color: #fff;
        overflow: hidden;
    }

    .header-mobile .comment .btn-11:hover{
        text-decoration: none;
        color: #fff;
    }

    .header-mobile .comment .btn-11:before{
        position: absolute;
        content: '';
        display: inline-block;
        top: -180px;
        left: 0;
        width: 30px;
        height: 100%;
        background-color: #fff;
        animation: shiny-btn1 8s ease-in-out infinite;
    }

    .header-mobile .comment .btn-11:hover{
        opacity: .7;
    }
    
    .header-mobile .comment .btn-11:active{
        box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3),
                    -4px -4px 6px 0 rgba(116, 125, 136, .2), 
                    inset -4px -4px 6px 0 rgba(255,255,255,.2),
                    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
    }

    .fixed-bottom-menu{
        overflow: hidden;
        background: linear-gradient(90deg, #D5ADA1, #ad877b);
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 999;
    }

    .table{
        display: table;
        margin: 0 auto;
    }

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

    li{
        float: left;
    }

    li a{
        display: block;
        color: white;
        text-align: center;
        padding: 14px 4px;
        margin: 5px 2px;
        text-decoration: none;
        font-size: 12px;
        font-family: 'Raleway', sans-serif;
    }

    li a i span{
        font-size: 10px;
        font-family: 'Raleway', sans-serif;
    }

    li a:hover:not(.active){
    background: linear-gradient(90deg, #c79d91, #9e766a);
    border-radius: 50%;
    }
}

/* HomeController */
.slider-content{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    z-index: 2;
  }
  
.slider{
    position: relative;
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider .slide{
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
}

.slider .slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s;
}

.slider .slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .slide .info{
    position: absolute;
    color: #222;
    background: rgba(255, 255, 255, 0.896);
    width: 75%;
    margin-top: 300px;
    margin-left: 50px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
}

.slider .slide .info h2{
    font-size: 2em;
    font-weight: 800;
    font-family: 'Charmonman', cursive;
}

.slider .slide .info p{
    font-size: 1em;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0.4px 0.7px 0.1px rgb(69, 69, 69);
}

.navigation{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider:hover .navigation{
    opacity: 1;
}

.prev-btn, .next-btn{
    z-index: 998;
    font-size: 2em;
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    cursor: pointer;
}

.prev-btn{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.next-btn{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.navigation-visibility{
    position: relative;
    z-index: 998;
    display: flex;
    justify-content: center;
}

.navigation-visibility .slide-icon{
    z-index: 998;
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 10px;
    transform: translateY(-50px);
    margin: 0 6px;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.navigation-visibility .slide-icon.active{
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
}

@media (max-width: 900px){
    .slider{
        width: 100%;
    }

    .slider .slide .info{
        position: relative;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 500px){
    .slider .slide .info h2{
        font-size: 1.8em;
        line-height: 40px;
    }

    .slider .slide .info p{
        font-size: 0.9em;
    }
}


.photo-container{
    display: block;
    position: relative;
    margin-top: -20px;
    margin-left: 40px;
    z-index: 996;
}

.photo-container .photo-content{
    position: absolute;
    padding: 10px;
    background: #fff;
}

.photo-container .photo-content #photo_1{
    width: 300px;
}

.desc-container{
    position: absolute;
    margin-top: 35px;
    margin-left: 130px;
    width: 80%;
    height: 450px;
    background: linear-gradient(90deg, #967971, #7c6158);
}

.desc-container .image-top-content{
    text-align: center;
    margin-left: -330px;
}

.desc-container .image-top-content #logo_5{
    position: absolute;
    width: 350px;
}

.desc-container .image-bottom-content{
    text-align: center;
    margin-top: -100px;
    margin-left: -330px;
}

.desc-container .image-bottom-content #logo_4{
    position: absolute;
    width: 350px;
}

@media all and (min-width: 1305px){
    .desc-container .image-bottom-content{
        text-align: center;
        margin-top: -50px;
        margin-left: -330px;
    }
    
    .desc-container .image-bottom-content #logo_4{
        position: absolute;
        width: 350px;
    }
}

.desc-container h3{
    font-size: 45px;
    margin-top: 55px;
    text-align: center;
    font-family: 'Charmonman', cursive;
    z-index: 997;
    color: #fff;
}

.desc-container .line{
    background-color: #fff;
    position: absolute;
    margin-left: 350px;
    margin-top: 35px;
    height: 150px;
    width: 1px;
}
.desc-container p{
    position: relative;
    margin-left: 380px;
    margin-right: 40px;
    margin-top: 30px;
    font-family: 'Raleway', sans-serif;
    color: #fff;
}
.desc-container .about-more a{
    margin-top: -20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    background: none;
    border: 1px solid #fff;
    text-decoration: none;
}

.desc-container .about-more a:hover{
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    color: #fff;
    border: none;
}
.desc-container .about-more a:active{
    box-shadow: 4px 4px 6px 0 rgba(140, 94, 94, 0.3),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
                inset -4px -4px 6px 0 rgba(255,255,255,.2),
                inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
.desc-container .about-more{
    position: relative;
    text-align: right;
    margin-right: 40px;
    margin-top: 50px;
}

.info-content{
    position: relative;
    margin-top: 540px;
    margin-left: 130px;
    margin-right: 130px;
}
.info-content h3{
    text-align: center;
    font-size: 45px;
    font-family: 'Charmonman', cursive;
}
.info-content p{
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0.4px 0.7px 0.1px rgb(171, 171, 171);
}

.info-content .info-more{
    margin-top: 30px;
    text-align: center;
}
.info-content .info-more a{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    color: white;
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    border: 0;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
}

.price-content{
    position: relative;
    margin-top: 60px;
    margin-left: 130px;
    margin-right: 130px;
}

.price-content h3{
    text-align: center;
    font-size: 45px;
    font-family: 'Charmonman', cursive;
}

.price-content p{
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0.4px 0.7px 0.1px rgb(171, 171, 171);
}

.price-content .price-more{
    margin-top: 30px;
    text-align: center;
}
.price-content .price-more a{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    color: white;
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    border: 0;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
}

.contact-content{
    position: relative;
    margin-top: 60px;
}

.contact-content h3{
    text-align: center;
    font-size: 45px;
    font-family: 'Charmonman', cursive;
    color: #fff;
}
.contact-content p{
    text-align: center;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0.4px 0.7px 0.1px rgb(171, 171, 171);
}

.contact-content .contact-more{
    margin-top: 30px;
    text-align: center;
}

.contact-content .contact-more a{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    color: white;
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    border: 0;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
}

@media all and (max-width: 945.99px) and (min-width: 0px){
    .slider .slide .info{
        margin-top: 200px;
    }

    .photo-container{
        position: relative;
        margin-top: -20px;
        margin-left: 0;
        z-index: 996;
    }

    .photo-container .photo-content{
        position: absolute;
        text-align: center;
        padding: 10px;
        width: 100%;
        background: #fff;
    }

    .photo-container .photo-content #photo_1{
        width: 200px;
    }

    .image-top-content{
        display: none;
    }

    .desc-container{
        position: relative;
        margin-left: 0;
        margin-top: -110px;
        width: 100%;
        height: 500px;
    }

    .desc-container h3{
        position: relative;
        font-size: 35px;
        padding-top: 60px;
        margin-top: 350px;
        margin-left: 0;
        text-align: center;
        font-family: 'Raleway', sans-serif;
        font-family: 'Zen Loop', cursive;
        z-index: 997;
    }

    .desc-container .line{
        display: none;
    }

    .desc-container p{
        position: relative;
        margin-top: 30px;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }

    .desc-container .about-more a{
        margin-top: -20px;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 40px;
        padding-right: 40px;
        background: none;
    }

    .desc-container .about-more a:hover{
        background: linear-gradient(90deg, #D5ADA1, #ad877b);
        color: #fff;
        border: none;
    }

    .desc-container .about-more a:active{
        box-shadow: 4px 4px 6px 0 rgba(140, 94, 94, 0.3),
                    -4px -4px 6px 0 rgba(116, 125, 136, .2), 
                    inset -4px -4px 6px 0 rgba(255,255,255,.2),
                    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
    }

    .desc-container .about-more{
        position: relative;
        text-align: center;
        margin-right: 0px;
        margin-top: 50px;
    }

    .info-content{
        position: relative;
        margin-top: 20px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .info-content h3{
        text-align: center;
        font-size: 35px;
        font-family: 'Zen Loop', cursive;
    }

    .info-content p{
        text-align: center;
        margin-top: 20px;
        margin-left: 30px;
        margin-right: 30px;
        font-size: 15px;
    }

    .info-content .info-more{
        margin-top: 30px;
        text-align: center;
    }

    .info-content .info-more a{
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 40px;
        padding-right: 40px;
        color: white;
        background: linear-gradient(90deg, #D5ADA1, #ad877b);
        border: 0;
    }

    .desc-container .image-bottom-content img{
        display: none;
    }

    .price-content{
        position: relative;
        margin-top: 60px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .price-content h3{
        text-align: center;
        font-size: 35px;
        font-family: 'Zen Loop', cursive;
    }

    .price-content p{
        text-align: center;
        margin-top: 20px;
        margin-left: 30px;
        margin-right: 30px;
        font-size: 15px;
    }

    .price-content .price-more{
        margin-top: 30px;
        text-align: center;
    }

    .price-content .price-more a{
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 40px;
        padding-right: 40px;
        color: white;
        background: linear-gradient(90deg, #D5ADA1, #ad877b);
        border: 0;
    }
    
    .contact-content h3{
        text-align: center;
        font-size: 35px;
        font-family: 'Zen Loop', cursive;
    }

    .contact-content p{
        text-align: center;
        margin-left: 30px;
        margin-right: 30px;
        font-size: 15px;
    }
    
    .contact-content .contact-more{
        text-align: center;
    }
    
    .contact-content .contact-more a{
        text-align: center;
        color: white;
        background: linear-gradient(90deg, #D5ADA1, #ad877b);
        border: 0;
    }
}

/* AboutController */
.about-photo-container{
    display: block;
    position: relative;
    margin-top: -20px;
    z-index: 996;
}

.about-photo-container .photo-content{
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: -300px;
}

.about-photo-container .photo-content #photo_2{
    width: 400px;
    padding: 10px;
    background: white;
}
    
.text-content{
    position: relative;
    background: linear-gradient(90deg, #c79d91, #9e766a);
    padding: 50px;
    text-align: center;
    margin-top: 30px;
    margin-left: 40px;
    margin-right: 40px;
    border-radius: 20px;
}

.text-content h4{
    font-size: 45px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Charmonman', cursive;

}

.text-content p{
    font-size: 20px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
}
    
.about-content{
    position: relative;
    margin-top: 10px;
    background: linear-gradient(90deg, #7c6158, #967971);
    padding: 50px;   
}
    
.about-content img{
    position: absolute;
    width: 300px;
    margin-top: -130px
}

.about-content h4{
    margin-left: 500px;
    font-size: 30px;
    color: white;
    font-family: 'Charmonman', cursive;
}

.about-content p{
    margin-left: 500px;
    margin-right: 30px;
    font-size: 15px;
    color: white;
    font-family: 'Raleway', sans-serif;
}

.text{
    padding-top: 70px;
    padding-bottom: 100px;
}
    
.text p{
    margin-left: 200px;
    margin-right: 200px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0.4px 0.7px 0.1px rgb(171, 171, 171);
}
.text p span{
    font-family: 'WindSong', cursive;
    text-shadow: 0.4px 0.7px 0.1px rgb(171, 171, 171);
}

.logo-formation{
    width: 150px;
    margin-top: 70px;
    margin-left: 100px;
    background: rgb(74, 62, 62);
}

@media all and (max-width: 945.99px) and (min-width: 0px){
    .about-photo-container .photo-content #photo_2{
        width: 200px;
        margin-top: 200px;
    }

    .text-content h4{
        font-size: 25px;
        margin-top: 20px;
    }

    .text-content p{
        font-size: 15px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .about-content{
        text-align: center;
    }

    .about-content img{
        display: none;
    }

    .about-content h4{
        margin-left: 0px;
        margin-bottom: 20px;
        font-size: 30px;
        color: white;
    }
    
    .about-content p{
        margin-left: 0px;
        margin-right: 0px;
        font-size: 15px;
        color: white;
    }

    .text{
        padding-top: 50px;
        padding-bottom: 10px;
    }
        
    .text p{
        margin-left: 30px;
        margin-right: 30px;
        text-align: center;
    }
    
}

/* KinesiologyController */
.background-kine{
    position: relative;
    padding-top: 210px;
    text-align: center;
}

.background-kine h4{
    font-size: 45px;
    color: #fff;
    font-family: 'Charmonman', cursive;
}

.kine-content{
    margin-top: 50px;
    text-align: center;
    padding: 10px;
}

.kine-content h4{
    font-size: 35px;
    font-family: 'Charmonman', cursive;
}

.kine-content .kine{
    width: 400px;
    padding-top: 50px;
}

.kine-content p{
    margin: 30px;
    font-family: 'Raleway', sans-serif;
}

.kine-content .tige{
    width: 100px;
}

.kine-info{
    position: relative;
    margin-top: 30px;
    background: linear-gradient(90deg, #7c6158, #967971);
    padding: 50px;   
    margin-bottom: 50px;
}
    
.kine-info img{
    position: absolute;
    width: 350px;
    margin-top: 10px
}

.kine-info h4{
    margin-left: 500px;
    font-size: 30px;
    color: white;
    font-family: 'Charmonman', cursive;
}

.kine-info h5{
    margin-left: 500px;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 18px;
    color: white;
    font-family: 'Raleway', sans-serif;

}
.kine-info p{
    margin-left: 500px;
    margin-right: 30px;
    font-size: 15px;
    color: white;
    font-family: 'Raleway', sans-serif;
}

.img-stress{
    position: relative;
    text-align: center;
}
.img-stress h4{
    font-size: 45px;
    color: #000;
    font-family: 'Charmonman', cursive;
}
.img-stress img{
    width: 400px;
    margin-left: -30px;
}

@media all and (max-width: 945.99px) and (min-width: 0px){
    .background-kine{
        font-size: 25px;
        color: #fff;
        padding-top: 200px;
        padding-bottom: 80px;
    }

    .background-kine h4{
        font-size: 25px;
        color: #fff;
    }

    .kine-content h4{
        font-size: 25px;
    }

    .kine-content .kine{
        width: 230px;
        padding-top: 50px;
    }    

    .kine-info{
        text-align: center;
    }

    .kine-info img{
        position: relative;
        width: 160px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .kine-info h4{
        margin-left: 0px;
        margin-bottom: 20px;
        font-size: 30px;
        color: white;
    }
    
    .kine-info h5{
        position: relative;
        margin-left: 0px;
        margin-right: 0px;
        font-size: 15px;
        color: white;
    }

    .kine-info p{
        margin-left: 0;
        margin-right: 0px;
        text-align: center;
    }

    .img-stress h4{
        font-size: 25px;
    }

    .img-stress img{
        width: 250px;
    }
}

/* ServicesController */
.background-tarifs{
    position: relative;
    padding-top: 220px;
    text-align: center;
}

.background-tarifs h4{
    font-size: 45px;
    color: #fff;
    font-family: 'Charmonman', cursive;
}

.presta{
    margin-top: 30px;
    text-align: center;
}

.presta h4{
    font-size: 45px;
    text-align: center;
    font-family: 'Charmonman', cursive;
}

.presta p{
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0.4px 0.7px 0.1px rgb(171, 171, 171);
}

.presta span{
    text-align: left;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0.4px 0.7px 0.1px rgb(171, 171, 171);
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

.img-price{
    text-align: center;
}

.img-price img{
    width: 300px;
    border-radius: 20px;
}

.price h4{
    margin-top: 10px;
    font-size: 45px;
    text-align: center;
    font-family: 'Charmonman', cursive;
}

.price p{
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0.4px 0.7px 0.1px rgb(171, 171, 171);
}

@media all and (max-width: 945.99px) and (min-width: 0px){
    .background-tarifs{
        padding-top: 100px;
    }

    .background-tarifs h4{
        font-size: 25px;
    }

    .presta h4{
        font-size: 25px;
    }

    .presta p{
        font-size: 15px;
    }

    .img-price img{
        width: 200px;
    }

    .price h4{
        font-size: 25px;
    }

    .price p{
        font-size: 15px;
    }

}

/* ContactController */
.title-contact{
    position: relative;
    padding-top: 250px;
}

.title-contact h4{
    font-size: 45px;
    text-align: center;
    margin-bottom: 100px;
    font-family: 'Charmonman', cursive;
}
  
.contact-content{
    position: relative;
    margin: 40px 20px;
    background: linear-gradient(90deg, #7c6158, #967971);
    padding: 20px 20px 50px;
    border-radius: 20px;
}

.contact-content p{
  color: #fff;
  font-family: 'Raleway', sans-serif;
}
  
.contact-content img{
    position: absolute;
    right: 0px;
    margin-right: 40px;
    width: 150px;
    margin-top: -90px;
    border-radius: 5px;
    border: 1px solid rgb(229, 229, 229);
}

@media (max-width:1210px){
    .contact-content img{
        display: none;
    }
}
.container-content{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #d5ada11e, #ad877b35);
    position: relative;
    margin-top: 60px;
}
.container-content::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    clip-path: polygon(86% 0, 100% 0, 100% 100%, 60% 100%);
}

.container{
    z-index: 12;
    max-width: 1050px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    margin: 0 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Raleway', sans-serif;
}

.container .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
}

.content .image-box{
    max-width: 55%;
}

.content .image-box img{
    width: 100%;
}

.content .topic{
    font-size: 22px;
    font-weight: 500;
    color: #7e5c51;
}

.content form{
    width: 40%;
    margin-right: 30px;
}

.content .input-box{
    height: 50px;
    width: 100%;
    margin: 16px 0;
    position: relative;
}

.content .input-box input{
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    padding-left: 16px;
    background: linear-gradient(90deg, #d5ada11e, #ad877b35);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.content .input-box input:focus,
.content .input-box input:valid{
    border-color: #7e5c51;
    background-color: #fff;
}

.content .message-box{
    min-height: 100px;
    position: relative;
}

.content .message-box textarea{
    position: absolute;
    padding-top: 15px;
    padding-left: 15px;
    font-size: 15px;
    height: 100%;
    width: 100%;
    resize: none;
    background: linear-gradient(90deg, #d5ada11e, #ad877b35);
    border: 2px solid transparent;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.content .message-box textarea:focus{
    border-color: #7e5c51;
    background: #fff;
}

.content .input-box input[type="submit"]{
    color: #fff;
    background: linear-gradient(90deg, #D5ADA1, #ad877b);
    padding-left: 0;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.content .input-box input[type="submit"]:hover{
    background-color: #db823d;
}

@media (max-width:1000px) {
    .content .image-box{
        max-width: 70%;
    }
        
    .content{
        padding: 10px 0;
    }
}

@media (max-width:900px) {
    .content .image-box{
        display: none;
    }

    .content form{
        width: 100%;
        margin-left: 30px;
    }
    .content .input-box input[type="submit"]{
        font-size: 15px;
    }
}

@media all and (max-width: 1048px) and (min-width: 0px){
    .title-contact h4{
        font-size: 35px;
        text-align: center;
        margin-bottom: 50px;
    }

    .contact-content{
        position: relative;
        background: linear-gradient(90deg, #7c6158, #967971);
        padding: 20px 20px 50px;
        text-align: center;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 20px;
    }

    .contact-content p{
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
      }
}

/*======= Background =======*/
.bg-slider{
    z-index: 777;
    position: relative;
    width: 100%;
    min-height: 100vh;
}
  
.bg-slider .swiper-slide{
    position: relative;
    width: 100%;
    height: 100vh;
}
  
.bg-slider .swiper-slide img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

/*======= Media icons =======*/
.media-icons{
    z-index: 997;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 90px;
}
  
.media-icons a{
    color: var(--white-color);
    font-size: 1.7em;
    margin: 10px 0;
}
  
/*======= Media queries (max-width: 1100px) =======*/
@media screen and (max-width: 1100px){
    header .nav-bar{
        padding: 0 50px;
    }
  
    .section{
        padding: 25px 50px;
    }
  
    .media-icons{
        right: 0;
        margin-right: 50px;
    }
  
    .swiper-slide .text-content{
        margin: 0 120px 0 50px;
    }
  
    .bg-slider-thumbs{
        bottom: 3em;
    }
  }
  
/*======= Media queries (max-width: 785px) =======*/
@media screen and (max-width: 785px){
    header .nav-bar{
        padding: 25px 20px;
    }
  
    .section{
        padding: 25px 20px;
    }
  
    .media-icons{
        margin-right: 20px;
    }
  
    .media-icons a{
        font-size: 1.5em;
    }
  
    .swiper-slide .text-content{
        margin: 0 70px 0 20px;
    }
  
    .swiper-slide .text-content .title{
        font-size: 3em;
    }
  
    .swiper-slide .text-content .title span{
        font-size: 0.35em;
    }
  
    .swiper-slide .text-content p{
        font-size: 0.9em;
    }
  
/*======= Navigation menu =======*/
    .nav-menu-btn{
        display: block;
        color: var(--white-color);
        font-size: 1.5em;
        cursor: pointer;
    }
  
    .nav-close-btn{
        display: block;
        color: var(--dark-color);
        position: absolute;
        top: 0;
        right: 0;
        font-size: 1.3em;
        margin: 10px;
        cursor: pointer;
        transition: 0.3s ease;
    }
  
    .navigation{
        z-index: 99999;
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.25);
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s ease;
    }
  
    .navigation.active{
        visibility: visible;
        opacity: 1;
    }
  
    .navigation .nav-items{
        position: relative;
        background: var(--white-color);
        width: 400px;
        max-width: 400px;
        display: grid;
        place-content: center;
        margin: 20px;
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
        transform: translateY(-200px);
        transition: 0.3s ease;
    }
  
    .navigation.active .nav-items{
        transform: translateY(0);
    }
  
    .navigation .nav-items a{
        color: var(--dark-color);
        font-size: 1em;
        margin: 15px 50px;
        transition: 0.3s ease;
    }
  
    .navigation .nav-items a:hover{
        color: var(--navigation-item-hover-color);
    }
  
    .navigation .nav-items > a > i{
        display: inline-block;
        font-size: 1.3em;
        margin-right: 5px;
    }
  
    .swiper-slide .text-content .read-btn{
        font-size: 0.9em;
        padding: 5px 15px;
    }
  
/*======= AboutController section =======*/
    .about h2{
      font-size: 2.5em;
    }
  
    .about p{
      font-size: 0.9em;
    }
}



footer{
    margin-top: 30px;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.343);
    background: linear-gradient(90deg, #ae8d82, #ab8a80);
    z-index: 100;
}

footer .footer-content ul{
    display: flex;
    margin-left: 100px;
    margin-right: 100px;
}

footer .footer-content ul li{
    list-style-type: none;
    color: #fff;
    width: 100%;
    text-align: center;
    margin: 0 0px;
    padding: 30px;
    font-family: 'Raleway', sans-serif;
}

footer .footer-content ul .phone{
    background: linear-gradient(90deg, #c7a296, #a47f73);
}
footer .footer-content ul .email{
    background: linear-gradient(90deg, #967971, #7c6158);
}
footer .footer-content ul .adresse{
    background: linear-gradient(90deg, #ad877b, #D5ADA1);
}

footer .footer-content ul li i{
    background: linear-gradient(90deg, #d5ada1a0, #ad877b91);
    color: #fff;
    border-radius: 20px;
    margin-left: -10px;
    margin-bottom: 10px;
    padding: 15px;
}

footer .footer-center{
    display: flex;
}
footer .footer-center #footer-info{
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    text-align: center;
    padding: 30px;
}

footer .footer-center h3{
    margin-top: 70px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    color: white;
}

footer .footer-center .footer-logo{
    position: relative;
    margin-left: 100px;
}

footer .footer-logo img{
    width: 120px;
    margin-top: 0px;
}

footer .footer-center .maps{
    position: relative;
    margin-top: 20px;
}
footer .footer-center .maps iframe{
    border-radius: 20px;
    width: 450px;
    height: 250px;
}

footer .footer-center .follow{
    margin-top: 130px;
}

footer .footer-center .follow i{
    position: relative;
    padding: 10px;
    margin: 3px;
    font-size: 20px;
    color: #fff;
    border-radius: 100%;
    background: linear-gradient(90deg, #9c7b72, #c9a79c);

}

footer .footer-line{
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #ab8a80, #D5ADA1);
}

footer .copyright-follow p{
    text-align: center;
    padding-bottom: 30px;
    padding-top: 10px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

footer .copyright-follow a{
    color: rgb(246, 241, 241);
    text-decoration: none;
}
footer .copyright-follow a:hover{
    color: rgb(73, 66, 66);
    text-decoration: none;
}

@media all and (max-width: 945.99px) and (min-width: 0px){
    footer .footer-content ul{
        display: block;
        margin-left: 0px;
        margin-right: 0px;
    }


    footer .footer-center{
        display: block;
    }

    footer .footer-center .footer-logo{
        position: relative;
        margin-left: 0px;
    }

    footer .footer-center .footer-logo h3{
        margin-top: 30px;
    }
    

    footer .footer-center .follow{
        margin-top: 30px;
    }

    footer .footer-center .maps iframe{
        border-radius: 20px;
        width: 250px;
        height: 150px;
    }
    
    footer .copyright-follow p{
        text-align: center;
        padding-bottom: 30px;
        padding-top: 10px;
        margin-bottom: 67px;
        font-size: 11px;
        margin-left: 20px;
        margin-right: 20px;
    }
}