/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--yellow);
    width: 60px;
    height: 60px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.8em;
    line-height: 50px;
    color: var(--black);
    transition: .3s ease-in-out;
  }
  #top:hover {
    cursor: pointer;
    color: var(--white);
    background-color: var(--blue);
  }
  #top:hover::after {
    color: var(--white);
  }
  #top:active {
    background-color: var(--blue);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

#navs .menu ul{
    justify-content: right;
    display: flex;
}
#navs .menu ul li{
    padding: 10px 15px;
    list-style: none;
}
#navs .menu ul li .menu-link{
    opacity: 1;
    font-size: 17px !important;
    font-weight: 700;
    text-decoration: none;
    color: var(--blue) !important;
    text-transform: uppercase;
    position: relative;
    transition: .4s ease-in-out;
}
#navs .menu ul li .menu-link::after{
    display: block;
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    border-radius: 30px;
    height: 2px;
    transition: .4s ease-in-out;
    background-color: var(--yellow);
}
#navs .menu ul li .menu-link:hover::after{
    width: 60%;
}
#navs .menu ul li .menu-link:hover{
    opacity: 1;
}
#navs{
    position: fixed;
    top: -100px;
    opacity: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 999999999;
    margin: 0 auto !important;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    transition: 1s ease-in-out !important;
}
.nav-down{
    opacity: 1 !important;
    top: 0 !important;
}
#navs img{
    transition: .4s height ease-in-out;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%); */
}
#navs .by{
    background-color: var(--blue);
}
#navs .yb{
    background-color: var(--white);
}
/* #nav .logo-wrap{
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
#nav .bord{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
} */
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
#navs .mcon span{
    font-size: 14px;
}
#navs .mcon i{
    color: var(--yellow);
    margin-right: 5px;
    margin-top: 40px !important;
    font-size: 16px;
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    /* height: 50px; */
    filter: none !important;
}
.heading span{
    color: var(--white);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 5px;
    text-transform: uppercase;
    background-color: var(--yellow);
    position: relative;
}
.heading span::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    width: 50px;
    height: 2px;
    background-color: var(--yellow);
}
#about h2{
    font-weight: 700;
    color: var(--blue);
}
#navs .ham .ham-wrap{
    display: block;
    width: 80px;
    height: 80px;
    font-size: 40px;
    color: var(--black);
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    background-color: var(--yellow);
}
#navs .ham-menu .ham-wrap{
    display: block;
    width: 80px;
    height: 80px;
    font-size: 40px;
    color: var(--black);
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    background-color: var(--yellow);
}
#nav .ham-menu .ham-wrap{
    display: block;
    width: 80px;
    height: 80px;
    font-size: 40px;
    color: var(--black);
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    background-color: var(--yellow);
}
#sub-menu{
    width: 100%;
    overflow: hidden;
}
.sub-menu{
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999;
    width: 450px;
    background-color: #f1f1f1;
    transition: 1s ease-in-out;
}
.sub-menu p{
    font-size: 16.5px;
    color: var(--blue);
    font-weight: 500;
}
.sub-menu h5{
    font-weight: 500;
    font-size: 16px;
    color: #585858;
    line-height: 1.5;
    margin-bottom: 0;
}
.sub-menu h3{
    color: var(--blue);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
.sub-menu .pad{
    padding: 40px 60px;
}
.sub-menu .close a{
    color: var(--black);
    background-color: var(--yellow);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}
.closed{
    right: -450px !important;
    opacity: 0 !important;
}
.opens{
    right: 0 !important;
    opacity: 1 !important;
}
.m-social ul{
    display: flex;
}
.m-social ul li {
    margin-right: 10px;
    list-style: none;
}
.m-social ul li a{
    width: 40px;
    height: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--blue);
    text-decoration: none;
    transition: .3s ease-in-out;
}
.m-social ul li a:hover{
    color: var(--blue);
    background-color: var(--yellow);
}

/********* Header Section Start *********/

#nav .bord ul li a{
    width: auto;
    height: auto;
    background-color: transparent;
    font-size: 14px !important;
}
#nav .bord ul li a:hover{
   color: var(--yellow);
}
#nav .bord ul li a::after{
   display: none;
}
#nav .menu ul{
    justify-content: right;
    display: flex;
}
#nav .menu ul li{
    padding: 10px 15px;
    list-style: none;
}
#nav .menu ul li .menu-link{
    opacity: 1;
    font-size: 17px !important;
    font-weight: 700;
    text-decoration: none;
    color: var(--blue) !important;
    text-transform: uppercase;
    position: relative;
    transition: .4s ease-in-out;
}
#nav .menu ul li .menu-link::after{
    display: block;
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    border-radius: 30px;
    height: 2px;
    transition: .4s ease-in-out;
    background-color: var(--yellow);
}
#nav .menu ul li .menu-link:hover::after{
    width: 60%;
}
#nav .menu ul li .menu-link:hover{
    opacity: 1;
}
#nav .menu ul li a.active{
    color: var(--yellow) !important;
}
#nav .menu ul li a.active::after{
    width: 60%;
}
#navs .menu ul li a.active{
    color: var(--yellow) !important;
}
#navs .menu ul li a.active::after{
    width: 60%;
}
#nav{
    position: relative;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 999999999;
    /* background-color: var(--white); */
    margin: 0 auto !important;
    transition: .4s ease-in-out;
    /* box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3); */
}
#nav img{
    transition: .4s height ease-in-out;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%); */
}
#nav .by{
    background-color: var(--blue);
}
#nav .yb{
    background-color: var(--white);
}
/* #nav .logo-wrap{
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
#nav .bord{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
} */
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
#nav .mcon span{
    font-size: 14px;
}
#nav .mcon i{
    color: var(--yellow);
    margin-right: 5px;
    margin-top: 40px !important;
    font-size: 16px;
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    /* height: 50px; */
    filter: none !important;
}
.heading span{
    color: var(--white);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 5px;
    text-transform: uppercase;
    background-color: var(--yellow);
    position: relative;
}
.heading span::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    width: 50px;
    height: 2px;
    background-color: var(--yellow);
}
#about h2{
    font-weight: 700;
    color: var(--blue);
}
#nav .ham .ham-wrap{
    display: block;
    width: 80px;
    height: 80px;
    font-size: 40px;
    color: var(--black);
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    background-color: var(--yellow);
}
#sub-menu{
    width: 100%;
    overflow: hidden;
}
#mobile-menu{
    width: 100%;
    overflow: hidden;
}
.sub-menu{
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999;
    width: 450px;
    background-color: #f1f1f1;
    transition: 1s ease-in-out;
}
.sub-menu p{
    font-size: 16.5px;
    color: var(--blue);
    font-weight: 500;
}
.sub-menu h5{
    font-weight: 500;
    font-size: 16px;
    color: #585858;
    line-height: 1.5;
    margin-bottom: 0;
}
.sub-menu h3{
    color: var(--blue);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
.sub-menu .pad{
    padding: 40px 60px;
}


#smenu2{
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999;
    height: 100vh;
    width: 250px;
    background-color: #f1f1f1;
    transition: 1s ease-in-out;
}
#smenu2 .pad{
    padding: 40px 60px;
}


.sub-menu .close a{
    color: var(--black);
    background-color: var(--yellow);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}
#smenu2 .close a{
    color: var(--black);
    background-color: var(--yellow);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}
#smenu2 ul li{
    list-style: none;
    margin-bottom: 15px;
}
#smenu2 ul li a{
    text-decoration: none;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    transition: .4s ease-in-out;
}
#smenu2 ul li a:hover{
    color: var(--yellow);
}
.closed{
    right: -450px !important;
    opacity: 0 !important;
}
.closed2{
    right: -250px !important;
    opacity: 0 !important;
}
.opens{
    right: 0 !important;
    opacity: 1 !important;
}
.m-social ul{
    display: flex;
}
.m-social ul li {
    margin-right: 10px;
    list-style: none;
}
.m-social ul li a{
    width: 40px;
    height: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--blue);
    text-decoration: none;
    transition: .3s ease-in-out;
}
.m-social ul li a:hover{
    color: var(--blue);
    background-color: var(--yellow);
}

/********* Header Section End *********/