/*=========== affix start =========*/
.affix {
    /* position: fixed !important; */
    top:0;
    width: 100%;
    opacity: 1;
    padding: 15px 0;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
  }
  
  .affix-top {
    position: static;
    opacity: 0.8;
  }
  header.affix .logo-wrapper img{
      height: 60px;
      transition: 0.3s;
      -webkit-transition: 0.3s ease-in;
      -o-transition: 0.3s ease-in;
      -moz-transition: 0.3s ease-in;
      width: auto;
  }

/*=========== affix end ===========*/
header{
    padding: 30px 0;
    background-color: #ffffff;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.2);
}
.menu-wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.menu-wrapper ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu-wrapper ul{
    display: flex;
    margin-left: auto;
    /* justify-content: space-around; */
}
.menu-wrapper ul li a{
    padding: 7px 20px;
    font-size: 15px;
    color: #000000;
    text-decoration: none;
    font-family: Poppins-Regular;;
}
a.theme-blue{
    color: #00aeef !important;
}
.menu-wrapper ul li a:hover,.menu-wrapper ul li a.active{
    color: #00aeef;
}
.collpase-menu-box{
    position: absolute;
    height: 33px;
    width: 33px;
    background-color: rgb(235, 235, 235);
    display: flex;
    align-items: center;
    right: 20px;
    top: 20px;
    cursor: pointer;
    border-radius: 2px;
}
.bar-1,.bar-2{
    position: absolute;
    height: 3px;
    width: 95%;
    background-color: #00aeef;
}
.bar-1{
    transform: rotate(45deg);
}
.bar-2{
    transform: rotate(-45deg);
}
.mobile-menu-wrapper{
    display: flex;
    justify-content: end;
    width: 100%;
    position: relative;
}
.bar-box{
    position: relative;
    width: 33px;
    height: 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.t-bar{
    width: 100%;
    height: 3px;
    background-color: #00aeef;
}
.menu-wrapper.show{
    right: 0;
    transition: 0.5s ease all;
}
@media(max-width: 1199px){
    .menu-wrapper ul li a{
        font-size: 13px;
        padding: 7px 12px;
    }
}
@media(max-width: 991px){
    
    .menu-wrapper{
        display: block;
        position: fixed;
        top: 0;
        background-color: #ffffff;
        height: 100%;
        right: -100vw;
        width: 33%;
        box-shadow: 7px 7px 13px 9px rgba(0,0,0,0.3);
        z-index: 1;
        transition: 0.5s ease all;
        overflow: auto;
    }
    .menu-wrapper ul{
        display: block;
        padding: 35px 15px 15px 15px;
        margin-top: 30px;
    }
    .menu-wrapper ul li a{
        padding: 10px 25px;
        display: flex;
        font-size: 15px;
    }
    .menu-wrapper ul:last-child{
        padding: 0 15px 0 0;
        margin-top: 0;
    }
    /* body::after{
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.2);
        display: none;
    } */
}
@media(max-width: 767px){
    .menu-wrapper{
        width: 50%;
    }
    .about-content{
        padding-left: 0;
        padding-top: 4rem;
    }
}
@media(max-width: 575px){
    .menu-wrapper{
        width: 67%;
    }
    .logo img{
        height: 35px;
    }
    .menu-wrapper ul{
        padding: 35px 15px 15px 0;
    }
}