*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
    
}

body {
    font-family: 'Tw Cen Mt';
    font-size: 14px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.overlay { 
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: color(white);
    background-size: cover;
    z-index: -100;
}

header {
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
}
content {
    background-color: black;
    color: black;
    flex-grow: 1;
}

/**
* Header
*/

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 0px 0 0px;
    background-color:white ;
}

nav .logo {
    width: 300px;
}

nav .menu-icon {
    width: 20px;
    cursor: pointer;
    margin-top: 5px;
    margin-right: 5px;

}

nav ul {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

nav ul li {
    list-style: none;
    margin-left: 26px;
}

nav ul li a {
    text-decoration: none;
    color: #003366;
    font-size: 0.9rem;
    transition: color .3s;
}

nav ul li a:hover{
    color: black;
}

nav .dropdown__menu {
    display: block;
    position: absolute;
    left: 0;
    top: 100;
    background-color: white;
}

nav .dropdown__menu ul{
    display: block;
    margin: 10px;
}

nav .dropdown__menu ul li {
    width: 150px;
    padding: 10px;
}

main{
    width: 90vw;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: calc(100vh - 211px - 58px) ;
    
}

.main-head {
    background: white;
}

.maps{
    position: absolute;
    right: 0;
    left: 0;
    overflow: hidden;
    height: 500px;
    width: 100%;
    margin: 0;
    object-fit: cover;
    z-index: -1;
}

/**
* main container 
*/

.line-container{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.line{
    width: 130px;
    height: 2px;
    background-color: #003366;
    margin-bottom: 0px;
}

.titlle{
    padding: 0 15px;
    color:#003366;
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}


.multi-column {
    display: flex;
    justify-content: space-between; 
    width: 100%; 
}

.column {
    width: 30%; 
    text-align: center; 
    font-size: 17px;
}

.text1{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 25px;
}

.text2{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 25px;
}

.text3{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 25px;
}

.text4{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 25px;
}

.st1{
    font-size: 25px;
    margin-bottom: 20px;
    color: black;
    text-align: center;
    margin-top: 10px;   
}

.diff-stunde {text-align: center;
font-size: 17px;
margin-bottom: 30px;
}

.fm1{
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
}

section#contact {
    background-color: white;
    padding: 100px 15;
    margin-bottom: 20px;
}

section#contact .container{
    max-width: 1100px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 30px 10px;
    border-radius: 15px;
    box-sizing: border-box;
    box-shadow: 0px 10px 50px -10px #d6d6d6;
}

section#contact .container .title {
    text-align: center;
    color: black;
    margin-bottom: 60px;
}

section#contact .container .title h6{
    font-size: 1.2em;
    color: black;
}

section#contact .container .title h3{
    font-size: 3em;
    color: #003366;
}

section#contact .container form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 600px;
}

section#contact .container form input{
    width: 47%;
}
    
section#contact .container form input:hover,
section#contact .container form textarea:hover{
    border-bottom: 2px solid #003366;
}

section#contact .container form input,
section#contact .container form textarea {
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-bottom: 2px solid #e4e4ec;
    transition: 0.2s;
}

section#contact .container form textarea {
    width: 100%;
    resize: none;
    height: 100px;
    margin-bottom: 35px;
}

section#contact .container form button {
    width: 192px;
    height: 50px;
    border-radius: 8px;
    border: none;
    background-color: #003366;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 30px;
    outline: none;
    margin: 0 auto;
    transition: 0.2s;
}

section#contact .container form button:hover{
    transform: translateY(-5px);
    box-shadow: #003366 0px 10px 40px 0px;
}

@media screen and (max-width:500px){
    section#contact .container form {
        flex-direction: column;
        width: 95%;
    }

    section#contact .container form input {
        width: 100%;
    }
    section#contact .container .title h6{
        font-size: 1em;
    }
    
    section#contact .container .title h3{
        font-size: 2em;
    }
}

/**
* footer
*/

footer {
    background-color: #003366;
    display: flex;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    min-height: 200px;
    
}
footer .transparent-text {
    color: white; /* Assure que le lien téléphone est en blanc */
}
footer p {
    color: white; /* Assurer que les paragraphes sont en blanc */

}

footer .list li a {
    color: white; /* Lien en blanc */
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-content{
    flex: 1;
    min-width: 200px;
    width: 33.3%;
    padding: 40px;
    text-align: center;
    color: white;
}

.footer-content1{
    width: 33.3%;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
}
.footer-content1 p{
    color: white;
}

.footer-content{
    width: 33.3%;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
}

.footer-content3{
    width: 33.3%;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
}


.footer-content3 .tex{
    color: white;
}
footer .tex {
    margin-bottom: 15px; /* Ajoute une petite marge en bas */
}

h3{
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
    color:white;
}

.footer-content p{
    width: 190px;
    margin: auto;
    font-size: 20px;
}

.footer-content ul{
    text-align: center;   
}

.list{
    padding: 0;
}

.list li{
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 7px;
    position: relative;
    font-size: 16px;
}

.list li::before{
    content: '';
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background:white;
    transition-duration: .3s;
}

.list li:hover::before{
    width: 70px;
}

a{
    text-decoration: none;
}

a:hover{
    color:white;
}

nav ul li ul{
    position: absolute;
    display: none;
    background-color:white;
    border-radius: 0px 0px 5px 5px;
}

nav ul li ul li{
    line-height: 1;
    width: 190px;
    border-radius: 5px;
    padding: 6px;
}

nav ul li ul li a {
    padding: 10px 16px;
    font-size: 12px;
}

nav ul li ul li a :hover{
    background-color:white;
}

nav ul li:hover ul{
    display: block;
}

.bottom-bar{
    background:white;
    align-items: center;
    padding: 8px 0px;
    display: flex;
    flex-wrap: wrap;
}

.bottom-bar .centered{
    color: #003366;
    font-size: 15px;
    margin: 0px;
    padding:7px;
    flex: 1;
    text-align: right;
   
}

.bottom-bar a{
    color: inherit; 
    text-decoration: none; 
}

.right-aligned{
    color: #003366;
    margin: 0px;
    font-size: 15px;
    padding:7px;
    text-align: right;
    flex: 1;
    margin-right: 15px;
}

.icon1 {
    width: 24px; 
    height: auto; 
    vertical-align: middle; 
    margin-right: 1px; 
    right: -20px;
}

.icon2 {
    width: 24px; 
    height: auto; 
    vertical-align: middle; 
    margin-right: 3px; 
    
}

.icon3 {
    width: 24px; 
    height: auto; 
    vertical-align: middle; 
    margin-right: 2px; 
}

.tex{margin-bottom: 8px; 
    text-align: center;  
    font-size: 18px;
}

.tex1{margin-left: 20px;
text-align: center;
margin-bottom: 10px;
font-size: 18px;
}

.tex2{margin-left:55px ;
    margin-bottom: 10px;
    font-size: 18px;
}

.tex3{margin-left:70px ;
    font-size: 18px;
}


.tex4 { font-size: 16px;
text-align: center;
}


@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
        width: 100%;
        text-align: center;
    }
   
    nav ul li.active > ul {
        display: block; 
    }

    nav ul.active {
        display: flex;
    }
    nav ul li ul {
        display: none; 

    }

    
    nav ul li:hover ul {
        display: block;
    }

    
    nav ul li ul li {
        text-align: left;
        padding: 10px;
        width: 100%;
    }

    .exp-title, .footer-content {
        text-align: center;
        width: 100%;
    }

    footer {
        padding: 20px; 
    }

    .footer-content1 {
        min-width: 100%; 
        margin-bottom: 20px; 
    }

    .footer-content3 {
        min-width: 100%; 
        margin-bottom: 20px; 
    }

    .footer-content {
        min-width: 100%; 
        margin-bottom: 20px; 
    }

    .bottom-bar {
        flex-direction: column; 
        padding: 5px 0; 
        text-align: center; 
    }

    .bottom-bar .right-aligned {
        font-size: 14px; 
        padding: 5px; 
        text-align: center; 
        width: 100%; 
        flex: none;
    }

    .bottom-bar .centered{
        font-size: 14px; 
        padding: 5px; 
        width: 100%; 
        text-align: center;
        flex: none;
        
    }
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px; 
    height: 50px;
    z-index: 1000;
    margin-bottom: 40px;
}

.whatsapp-icon img {
    width: 100%;
    height: auto;
}

.phone-icon {
    position: fixed;
    bottom: 20px;
    left: 80px; 
    width: 40px; 
    height: 50px;
    z-index: 1000;
    margin-bottom: 37px;
}

.phone-icon img {
    width: 100%;
    height: auto;
}

.contact-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px; 
    z-index: 1000;
}

@media (min-width: 800px) {
    nav .menu-icon {
        display: none;
    }
}

@media screen and (max-width: 768px) 
{ /* Ajustez la largeur selon vos besoins */
    nav ul li ul li a {
        display: none; /* Masque les liens des sous-menus sur mobile */
    }
    nav .dropdown__menu ul li {
        display: none; /* Masque les liens des sous-menus sur mobile */
    }
    nav .dropdown__menu
    {
        display: none; /* Masque les liens des sous-menus sur mobile */
        background-color: transparent !important;
    }
    nav ul li:hover ul {
        background-color: transparent !important;
    }
    nav .logo {
        width: 200px;
    }
}