/* Disable page scroll when popup is open */
html.popup-open,
body.popup-open {
  overflow: hidden;
  height: 100%;
}

/*header css*/

    .menu-icon {
    width: 50px;
    cursor: pointer;
    }
    .menu-icon span {
    display: block;
    height: 1px;
    background: #000;
    margin: 10px 0;
    transition: width 0.3s ease;
    }

	body.home .menu-icon span {background:#fff !important;}

    /* Normal state widths */
    .menu-icon .line1 {
    width: 100%;
    }

    .menu-icon .line2 {
    width: 50%;
    }

    .menu-icon .line3 {
    width: 100%;
    }

    /* Hover state */
    .menu-icon:hover .line1 {
    width: 50%;
    }

    .menu-icon:hover .line2 {
    width: 100%;
    }

    .menu-icon:hover .line3 {
    width: 50%;
    }
    
    /*--//--*/

.menu-overlay {
  position: fixed;
  top: -150%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e1e1e;
  color: #fff;
  z-index: 9999;
  transition: top 1s ease;
  padding: 60px 100px 100px;
  display: flex;
  flex-direction: column;
  font-family: "Lato", Sans-serif !important;
}

.menu-overlay.active {
  top: 0;
}



/* Header */
.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.overlay-logo img {width:80px;}
.overlay-close img {
  width: 50px;
  cursor: pointer;
}

.content-wrapper {display: flex;align-items:start;justify-content: space-between;margin-top:5rem;}
.overlay-menu ,
.overlay-contact-infos {width: fit-content;width: auto;}

/* Menu */
.popup-menu-list {
  list-style: none;
  padding: 0;
}

.popup-menu-list li {
  margin-bottom: 35px;
  line-height:0.8;
}

.popup-menu-list a {
  color: #fff;
  font-size: 40px;
  text-decoration: none;
  font-weight:300 ;
}

.popup-menu-list a:hover {
  color: #FA3E3E;
}


/* Footer */
.overlay-contact-infos p ,
.overlay-contact-infos a
{
  font-weight: 300;
    font-size: 16px;
    color: #fff8;
    margin-bottom: 5px !important;
}

.overlay-contact-infos a:hover {color:#fff !important;}
.overlay-contact-infos h6 {margin-top: 2.5rem;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;color: #fff8;}


@media (max-width: 1025px) {
.menu-overlay {padding: 40px;}
.overlay-logo img {width:60px;}
.overlay-close img {width: 40px;}
}    

@media (max-width: 576px) {

.menu-overlay {padding: 40px 20px;}
.content-wrapper {flex-direction: column;row-gap:2.5rem;}
.popup-menu-list a {font-size:30px;}
.popup-menu-list li {margin-bottom: 30px;}

.menu-icon {
    width: 40px;
    }
}