#sliding-header{
  background-color: white;
  padding: 0px 12px;

  position: sticky;
  top:0px;

  z-index: 10000;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body.scrolled #sliding-header{
  -webkit-box-shadow: 0 5px 5px 1px rgba(0,0,0,0.1);
  box-shadow: 0 5px 5px 1px rgba(0,0,0,0.1);

  
}
#logo-home-link img{
  display: block;
  height: 100px;
  /*ask image logo without paddings*/
}
#sliding-header-top{
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sliding-header-hamburg{
  display: block;
  position: relative;
  width: 60px;
  height: 35px
}
#sliding-header-hamburg>div{
  position: absolute;
  width: 100%;
  height: 4px;
  left:0px;

  background-color: black;

  -webkit-border-radius: 2px;
  border-radius: 2px;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#sliding-header-hamburg>div:last-child{
  top:calc( 100% - 4px );
  left: auto;
  right: 0px;
  width: 70%;
  width: 50%;
}
#sliding-header-hamburg>div:nth-child(2),
#sliding-header-hamburg>div:nth-child(3){
  top: calc(50% - 2px);
  width: 75%;
  left: auto;
  right:0px;
}
#sliding-header-hamburg:hover>div{
  width:100%;
}

body.sliding-menu-opened{
  overflow: hidden;
}
body.sliding-menu-opened #sliding-header-hamburg>div{
  width: 100%;
}
body.sliding-menu-opened #sliding-header-hamburg>div:first-child,
body.sliding-menu-opened #sliding-header-hamburg>div:last-child{
  width:0%;
}
body.sliding-menu-opened #sliding-header-hamburg>div:nth-child(2){
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.sliding-menu-opened #sliding-header-hamburg>div:nth-child(3){
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}



#sliding-header-black-transparency-screen{
  position: fixed;
  left:0px;
  top:0px;
  width:100%;
  height: 100%;

  background-color: rgba(0,0,0,0.7);
  
  
  z-index: 10001;

  display: none;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;

  opacity: 0; 
  -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity= 0); /* // for IE8 */
  filter: alpha(opacity= 0); /* //for IE5-7 */
}
#sliding-header-black-transparency-screen.block{
  display: block;
}
#sliding-header-black-transparency-screen.opacity-100{
  opacity: 1; 
  -ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity= 100); /* // for IE8 */
  filter: alpha(opacity= 100); /* //for IE5-7 */
}

.menu-sliding-panel{
  position: fixed;
  width: 90%;
  max-width: 680px;
  left:0px;
  top:0px;
  height: 100%;
  background:white;

  z-index: 10002;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  
}



.menu-sliding-panel{
  display: none;
}
.menu-sliding-panel-display-block{
  display: block;
}
/*.menu-sliding-panel-opened{
  left: 0%;
}*/
.menu-sliding-panel-animated{
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;

  -webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
}







.menu-sliding-panel-close-button{
  position: absolute;

  top: 15px;
  right: 15px;

  padding: 0px !important;
  border: none !important;
  z-index: 10000;
}
.menu-sliding-panel-close-button img{
  display: block;
}



.menu-sliding-panel-content{
  position: absolute;

  top: 75px;
  bottom: 75px;
  left: 65px;
  right: 65px;
  padding: 0px 20px;

  right: 35px;
  left: 35px;
  padding: 0px 50px;


  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  overflow: hidden;
  overflow-y: auto;

}

.menu-sliding-panel-content-parent{
  /*top: 20px;*/
  bottom: 20px;
}



.menu-sliding-underline-parent_title{
  border-bottom: solid 2px black;
}
.menu-sliding-underline-parent_title a{
  cursor: default;
}
/*.menu-sliding-underline-parent_title a small{
  display: block;
  font-weight: bold;
}*/

.menu-sliding-panel-content::-webkit-scrollbar {
  width: 0.4em;
}
.menu-sliding-panel-content::-webkit-scrollbar-track {
  background-color: #edf6e5;
}
.menu-sliding-panel-content::-webkit-scrollbar-thumb {
  background-color: #98b57d;
  cursor: pointer;
}
.menu-sliding-panel-content::-webkit-scrollbar-thumb:hover{
  background-color: #ff925a;
}


.menu-sliding-panel-home-button{
  display: block;
  margin-bottom: 60px;
}
.menu-sliding-panel-home-button img{
  display: block;
  margin:0 auto;
  max-width: 294px;
  width: 100%;
}

.menu-sliding-orange-items ul,
.menu-sliding-orange-items ul li{
  padding:0px;
  margin:0px;
  list-style: none;
}
.menu-sliding-orange-items ul li:last-child {
  grid-column: span 2;
}
.menu-sliding-orange-items ul li:last-child a {
  background: #000000;
  color: #fff;
  font-weight:bold;
}
.menu-sliding-orange-items ul li:last-child a:hover {
  background-color: #333333 !important;
}
.menu-sliding-orange-items ul li a{
  display: block;
  font-size: 12px;
    font-family: 'acumin-pro-wide';
    text-transform: uppercase;
    letter-spacing: .12em;
  line-height: 1.1;
  text-align: center;
  font-weight: 400;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f2f2f2;
color:#000000;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.menu-sliding-orange-items ul li a:hover{
  background-color: #000000;
  color:white;
}
.menu-sliding-orange-items ul{
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 20px 20px; 
  grid-template-areas: 
    ". ."; 
}
.menu-sliding-orange-items{
  margin-bottom:35px;
}



.menu-sliding-underline-items{
  margin-bottom: 20px;
}
.menu-sliding-underline-items ul,
.menu-sliding-underline-items ul li{
  list-style: none;
  padding:0px;
  margin:0px;
}
.menu-sliding-underline-items li{
  position: relative;
}
.menu-sliding-underline-items li a{
  display: block;
  padding: 15px 20px;
  border-bottom: solid 1px #acacac;
  color: black;
  font-size: 18px;
  line-height: 1.1;

  font-family: 'acumin-pro-wide';
  font-weight: 300;
}
.menu-sliding-underline-items li:hover>a{
  color: #ff9159;
}


.menu-sliding-underline-items li a[href="#havechildren"]{
  position: absolute;
  right:0px;
  top:0px;
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border:none;
  padding:0px;
  font-family: 'FontAwesome'; font-weight:normal;font-style:normal;
  color: black !important;
}






.menu-sliding-social-icons {
  margin-bottom: 15px;
  margin-top: 50px !important;
}
.menu-sliding-social-icons ul,
.menu-sliding-social-icons ul li{
  padding:0px;
  margin:0px;
  list-style: none;
}
.menu-sliding-social-icons li a{
  display: block;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 42px;
  line-height: 1;

  color: #b2b2b2;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-sliding-social-icons li a:hover{
  color:black;
}
.menu-sliding-social-icons ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-sliding-social-icons ul li{
  margin:0px 1rem;
}
.menu-sliding-social-icons ul>li:first-child{
  margin-left: 0px;
}
.menu-sliding-social-icons ul>li:last-child{
  margin-right: 0px;
}

.menu-sliding-most-bottom-links ul,
.menu-sliding-most-bottom-links ul li{
  list-style: none;
  margin:0px;
  padding:0px;
}
.menu-sliding-most-bottom-links ul li a{
  display: block;
  font-size: 14px;

  font-family: 'acumin-pro-wide';
  font-weight: 300;

  color: #b2b2b2;
  text-align: center;
  padding: 0px 0.5rem;

  line-height: 1.1;
}
.menu-sliding-most-bottom-links ul li a:hover{
  color:black;
}
.menu-sliding-most-bottom-links ul{
  display: flex;
  align-items: center;
  justify-content: center;
}



@media only screen and (max-width: 650px) {
  .menu-sliding-panel-content{
    left: 0px;
    right: 0px;
    padding: 0 12px;
  }
}
@media only screen and (max-width:767px) {
  #sliding-header {
    max-height:70px;
  }
  #logo-home-link img {
    display: block;
    height: 80px;
  }
  .menu-sliding-underline-items,
  .menu-sliding-orange-items,
  .menu-sliding-panel-home-button{
    margin-bottom: 15px !important;
  }
  .menu-sliding-most-bottom-links ul{
    display: block;
  }
  .menu-sliding-most-bottom-links ul li{
    margin-bottom: .75rem;
  }

  .menu-sliding-orange-items ul{
    display: block;
  }
  .menu-sliding-orange-items ul li a{
    margin-bottom: .75rem;
  }
  .menu-sliding-orange-items ul li{
    margin-bottom: .75rem;
  }
  .menu-sliding-orange-items ul>li:last-child{
    margin-bottom: 0px;
  }
} 
@media only screen and (max-width: 767px) {
  .menu-sliding-panel-close-button {
    background:none;
  }
  .menu-sliding-panel-content {
    position: absolute;
    top: 20px;
    bottom: 20px;
  }
  .menu-sliding-panel-home-button img {
    display: block;
    max-width: 294px;
    width: 100%;
    height: 90px;
    margin-bottom: -20px;
    margin-top: -20px;
  }
  .menu-sliding-orange-items {
    margin-bottom:20px;
  }
  .menu-sliding-orange-items ul {
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-template-rows: 1fr;
    gap: 0px 10px;
    grid-template-areas: ". .";
  }
  .menu-sliding-orange-items ul li a {
    width:100%;
    height: 100%;
    font-size: 11px;
  }
  .menu-sliding-underline-items li a {
    padding-left: 0px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 16px;
  }
  .menu-sliding-panel-content {
    top:70px;
  }
  .menu-sliding-social-icons ul li {
    margin: 0px .75rem;
  }
  .menu-sliding-social-icons li a{
    font-size:28px;
  }
  .menu-sliding-orange-items ul li a {
    padding: 8px 10px !important;
  }
  .menu-sliding-orange-items ul li:last-child a {
    padding: 15px;
  }
  .menu-sliding-social-icons {
    margin-bottom: 10px !important;
    margin-top: 15px !important;
  }
}