.loader_bg {
    position: fixed;
    z-index: 999999;
    background: #fff;
    width: 100%;
    height: 100%
 }
 
 .loader {
     border: 0 solid transparent;
     border-radius: 50%;
     width: 150px;
     height: 150px;
     position: absolute;
     top: calc(50vh - 75px);
     left: calc(50vw - 75px);
  }
 
  .loader:before, .loader:after {
     content: '';
     border: 1em solid rgb(233, 194, 108);
     border-radius: 50%;
     width: inherit;
     height: inherit;
     position: absolute;
     top: 0;
     left: 0;
     animation: loader 2s linear infinite;
     opacity: 0;
  }
 
  .loader:before {
     animation-delay: .5s;
  }
  @keyframes loader {
     0% {
         transform: scale(0);
         opacity: 0;
     }
 
     50% {
         opacity: 1;
     }
 
     100% {
         transform: scale(1);
         opacity: 0;
     }
  }

:root {
    --primary-color: rgb(233, 194, 108);
    --white-color: #fff;
    --light-color: #ced6e0;
    --dark-color: darkgray;
    --box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px -10px;
} 

*,::before,::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

a, button, div[role="button"] {
    -webkit-tap-highlight-color: transparent;
}

ul {list-style: none}
h1,h2,h3,h4 {font-weight: 500;line-height: normal;}
h1 {font-size: 2.5em}
h2 {font-size: 2em}
h3 {font-size: 1.5em}
h4 {font-size: 1em}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} 
    
.body{
    width: 100%;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.containere {
    max-width: 1460px;
    margin: 0 auto;
} 

.nav {
    position: absolute;
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
} 

.nav .containere {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
} 


header nav a ul{
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;
  }

header nav a {
    display: flex;
    color: rgb(233, 194, 108);
    text-decoration: none;
    padding: 7px 15px;
    transition: all 0.3s ease-in-out;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
   }

  .nav a.current,
  .nav a:hover{
    color: darkgray;
  }

  header nav .onglets ul{
    display: flex;
  }

  header nav a i{
    display: none;
   }

  header nav .menu-level {
    display: none;
    position: absolute;
    top: 49px;
    right: 22px;
    width: 35px;
   }

  @media screen and (max-width: 768px){
    .nav {
      padding: 48px;
     }

     header nav .logo {
      position: absolute;
      top: 20px;
      left: 22px;
     }

    header nav .menu-level {
        z-index: 3;
        display: block;
        font-size: 22px;
        color: rgb(233, 194, 108);
        }

    nav .onglets{
      top: 0;
      left: 0;
      position: absolute;
      background-color: rgba(0,0,0,.2);
      backdrop-filter: blur(8px);
      width: 100%;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-left: -100%;
      transition: all 0.5s ease;
    }

    header nav .onglets ul{
      flex-direction: column;
    }

    header nav .mobile-menu {
      z-index: 2;
      margin-left: 0;
     }

    nav .onglets a {
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 15px 15px;
      font-size: 15px;
      font-weight: 600;
    }

    nav .onglets i {
      font-size: 1.3em;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
    }
  }


  .container {
    background-repeat: no-repeat;
    background-size:cover;
    background-position: bottom center;
    background-color: whitesmoke;
    width: 100%;
    min-height: 100vh;
    color: darkgray;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 8%;
} 

.container .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
} 

.row section.col {
    display: flex;
    flex-direction: column;
} 

.row section.left {
    margin-top: 150px;
    margin-bottom: 50px;
    flex-basis: 35%;
    min-width: 320px;
    margin-right: 60px;
} 

.row section.right {
    margin-top: 150px;
    margin-bottom: 50px;
    flex-basis: 60%;
} 


section.left .contactTitle h1 {
    position: relative;
    font-size: 40px;
    font-weight: 800;
    color: darkgray;
    display: inline-block;
    margin-bottom: 25px;
} 

@media screen and (max-width: 900px){

    section.left .contactTitle h1 {
        margin-top: 150px;
    } 
  }

section.left .contactTitle h1::before{
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: white;
    top: 120%;
    left: 0;
} 

section.left .contactTitle h1::after{
    content: "";
    position: absolute;
    width: 39%;
    height: 4px;
    background-color: rgb(233, 194, 108);
    top: calc(120% - 1px);
    left: 0;
} 

section.left .contactTitle p {
    font-size: 17px;
    color: darkgray;
    letter-spacing: 1px;
    line-height: 1.2;
    padding-bottom: 22px;
} 

section.left .contactInfo {
    margin-bottom: 14px;
}

.contactInfo .iconGroup {
    display: flex;
    align-items: center;
    margin: 14px 0px;
}

.iconGroup .icon {
    width: 45px;
    height: 45px;
    border: 2px solid rgb(233, 194, 108);
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
} 

.iconGroup .icon i {
    font-size: 17px;
    color: darkgray;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} 

.iconGroup .details span {
    display: block;
    color: darkgray;
    font-size: 17px;
}

.iconGroup .details span:nth-child(1) {
    text-transform: uppercase;
    color: darkgray;
} 

section.left .SocialMedia {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 14px 0px 12px;
} 

.SocialMedia a {
    width: 35px;
    height: 35px;
    text-decoration: none;
    text-align: center;
    margin-right: 15px;
    border-radius: 5px;
    background-color: rgb(233, 194, 108);
    transition: 0.4s;
    transition: transform 0.2s ease;
} 

.SocialMedia a i {
    color: darkgray;
    font-size: 20px;
    line-height: 30px;
    border: 1px solid transparent;
    transition-delay: 0.4s;
    transition: transform 0.2s ease;
} 

.SocialMedia a:hover {
    transform: translateY(-5px);
    background-color: burlywood;
    color: #fff;
    border: 1px solid white;
} 

.SocialMedia a:active i {
    transform: scale(0.96);
} 

.SocialMedia a:hover i {
    color: #fff;
} 

.SocialMedia a:active {
    transform: scale(0.96);
} 

/* Code for the right section (column) */
  
.maps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}
  @media(max-width: 900px){
    .container .row {
       flex-wrap: wrap;
    }
    .row section.left, .row section.right {
       flex-basis: 100%;
       margin: 10px;
    } 

    .maps {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 10px;
    } 
    
    .maps iframe {
          width: 100%;
          object-fit: cover;
    } 
  }  
    /*:::::footer*/

   .footers{
    background-color: white;
    color:darkgray;
    padding: 4px;
    margin-left: none;
    margin-bottom: 1px;
   }

   .footers .group-1 {
    background-color:#fff;
    color:darkgray;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .footers .group-1 .boite {
    background-color: none;
    color: none;
    padding: 21px;
    height: 100px;
    width: 32%;
   } 

   .footers .group-1 .boite img {
    height: 65px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
   }  

   .footers .group-1 .boite h3 {
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1px;
   }  

   .footers .group-1 .boite .Social-network a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: 7px;
    height: 7px;
    line-height: 1px;
    padding: 13px 13px;
    margin-right: 0.1px;
    margin-top: 1px;
    cursor: pointer;
    transition: all 300ms ease;
    transition: transform 0.2s ease;
   }  

   .footers .group-1 .boite .Social-network a:hover{
    color:rgb(233, 194, 108);
    transform: scale(1.05);
   } 
   
   .footers .group-1 .boite .Social-network a:active{
    transform: scale(0.96);
   }  

   .footers .group-1 .boite small {
    padding: 18px;
    text-align: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
   }

   @media screen and (max-width:800px){
    .footers .group-1 {
       width: 90%;
       grid-template-columns: repeat(1, 1fr);
       grid-gap: 20px;
       padding: 25px 0px;
       }
    
   }