@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
}

a {
    text-decoration: none;
    color: black;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-family: 'Montserrat';
    padding-top: 2%;
    padding-bottom: 2%;
}

.main-logo {
    height: 72px;
}

.nav-ul {
    display: flex;
    align-items: center;
    font-size: 15px;
}


@media only screen and (max-width: 600px) {
    .nav-ul {
        display: none;
    }
  }

#menu__toggle {
    opacity: 0;
  }
  #menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
  }
  #menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    left: 0 !important;
  }
  .menu__btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 2;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }
  .menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #ECEFF1;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .25s;
    z-index: 1;
  }
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
  }
  .menu__item:hover {
    background-color: #CFD8DC;
  }

  .menu-icon-container {
      display: flex;
      padding-top: 5%;
  }

  @media only screen and (min-width: 600px) {
    .hamburger-menu {
        display: none;
    }
  }

.nav-li {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-left: 56px;
    margin-right: 57px;
}

.nav-li:after {
    content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #E96548;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  margin-top: 3px;
}

.nav-li:hover:after{
  transform: scaleX(1);
  transform-origin: bottom left;
}

.right-icon-container{
    position: absolute;
    right: 75px;
}


@media only screen and (max-width: 600px) {
    .right-icon-container{
        display: none;
    }
  }

.right-icon {
    height: 25px;
    cursor: pointer;
    margin-left: 20px;
}

.ligne-orange {
  border-top: #E96548 solid 1px;
}
.contact-bg{
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(./assets/img/pexels-photo-6195275.jpeg);
    background-position: 50% 5%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-bg h3{
    font-size: 1.3rem;
    font-weight: 400;
}
.contact-bg h2{
    font-size: 3rem;
    text-transform: uppercase;
    padding: 0.4rem 0;
    letter-spacing: 4px;
}
.line div{
    margin: 0 0.2rem;
}
.line div:nth-child(1),
.line div:nth-child(3){
    height: 3px;
    width: 70px;
    background: #E96548;
    border-radius: 5px;
}
.line{
    display: flex;
    align-items: center;
}
.line div:nth-child(2){
    width: 10px;
    height: 10px;
    background: #E96548;
    border-radius: 50%;
}
.text{
    font-weight: 300;
    opacity: 0.9;
}
.contact-bg .text{
    margin: 1.6rem 0;
}
.contact-body{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
.contact-info{
    margin: 2rem 10;
    text-align: center;
    padding: 2rem 0;
}
.contact-info span{
    display: block;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 1rem;
}
.contact-info span .fas{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: #E96548;
}
.contact-info div span:nth-child(2){
    font-weight: 500;
    font-size: 1.1rem;
}
.contact-info .text{
    padding-top: 0.4rem;
}
.contact-form{
    padding: 2rem 0;
    border-top: 1px solid #c7c7c7;
}
.contact-form form{
    padding-bottom: 1rem;
}
.form-control{
    width: 90%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    outline: 0;
}
.form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}
.send-btn{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    background: #E96548;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
}
.send-btn:hover{
    opacity: 0.8;
}
.contact-form > div img{
    width: 85%;
}
.contact-form > div{
    margin: 0 auto;
    text-align: center;
}
.contact-footer{
    padding: 2rem 0;
    background: #F6EAD4;
}
.contact-footer h3{
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

@media screen and (min-width: 768px){
    .contact-bg .text{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px){
    .contact-bg .text{
        width: 50%;
    }
    .contact-form{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px){
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }
}

  .social-buttons a{
    display: inline-flex;
    text-decoration: none;
    font-size: 18px;
    width: 30px;
    height: 60px;
    color: #c27500 ;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 36%;
    margin: 0 80px;
    margin-right: 0px;
  }
  
  .social-buttons a::before{
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg,#22a6b3,#30336b);
    border-radius: 50%;
    z-index: -1;
    transition: 0.3s ease-in;
    
  }
  
  .social-buttons a:hover::before{
    transform: scale(0);
  }
  
  .social-buttons a i{
    transition: 0.3s ease-in;
  }
  
  .social-buttons a:hover i{
    background: linear-gradient(45deg,#22a6b3,#30336b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(2.2);
  }

  .footer {
    background-color: #222222;
    height: 256px;
    width: 100%;
  }
  
  .footer_logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    height: 70px;
  }
  
  .footer_content {
    display: flex;
    justify-content: center;
    color: white;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 300;
    padding-top: 16px;
  }
  
  .footer_content_text_mid{
  margin-left: 32px;
  margin-right: 32px;
  }
  
  .footer_line {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-top: #ffff solid 1px;
    opacity: 0.8;
    width: 86%;
    margin-top: 48px;
  }
  
  .footer_sub_line {
    margin-left: 100px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    height: 20px;
  }
  
  @media only screen and (max-width: 600px) {
    .footer_sub_line {
      margin-left: 0px;
      text-align: center;
      margin-top: 24px;
      display: block;
      justify-content: space-between;
      height: 20px;
    }
  }
  
  .footer_sub_text {
    color: white;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 300;
  }
  
  .footer_logo_container{
    display: flex;
  }
  