
nav .wrapper{
  position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    padding-left: 10%;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.menu-icon{
  font-size: 40px;
    margin-top: -45px;
    margin-right: -35px;
    color: #38B6FF;
}
.offcanvas.offcanvas-end {
  background: #37B6FF;
  width: 34%;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a,.menu-list a{
  font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 30px;
text-transform: capitalize;
color: #081125;
  padding: 9px 10px;
  border-radius: 0px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.nav-links li a:hover,.nav-links li a.active,.menu-list a:hover,.menu-list a.active{
  color: #FFAE1C;
 color: #C1FF72;
}
.nav-links li a.active:after, .menu-list a.active:after{

content: '';
    width: 8px;
    height: 4px;
    background: #FFAE1C;
    border-radius: 3px;
    position: absolute;
    bottom: 8px;
    left: 10px;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #fff;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 60px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 400;
  color: #36537F;
  border-radius: 0px;
  border-bottom: 1px solid #efefef;
}
.drop-menu li a:hover{
    color: #FE7161;
    border-bottom: 1px solid #efefef;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #fff;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row .heading{
    color: #36537F;
  font-size: 20px;
  font-weight: 500;
}
.content .row:nth-child(2) .mega-links{
  border-left: 0px solid rgb(0 0 0 / 23%);
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgb(0 0 0 / 23%);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0.5rem 1rem;
  color: #36537F;
  font-size: 14px;
  display: block;
  border-bottom: none;
}
.row .mega-links li a:hover{
  color: #FE7161;
  border-bottom: none;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;

}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}
.get-btn {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
    color: #0ABEFF;
    font-size: 30px;
    outline: none;
    border: 1px solid #0ABEFF;
    margin-bottom: 0;
    line-height: 0;
    padding: 10px 14px;
  }
  .call-email {
    position: absolute;
    right: 53px;
    top: 14px;
    font-size: 25px;
}
.call-email a{
  padding: 0 5px;
}
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: -100%;
    background: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
    z-index: 1;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 0px 10px;
  }
  .nav-links li a{
    display: block;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #36537F;
    text-decoration: none;
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    padding: 15px 15px;
    border-radius: 0px;
    transition: all 0.3s ease;
    margin-bottom: 0;
  }
  
  .nav-links .mobile-item:hover{
    
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;

  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 0px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row .heading{
    font-size: 20px;
    font-weight: 500;
  }
}
nav input{
  display: none;
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}


header{
  position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    background-image: url(../img/header-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    background-position-y: center;
    padding: 25px 0;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
    padding-top: 15px;
}
.offcanvas-header {
  position: relative;
  padding: 30px 88px;
  justify-content: center;
}
.menu-social {
 position: absolute;
    left: 88px;
    top: auto;
    right: 88px;
    bottom: 50px;
}
.menu-social .footer-social {
    justify-content: center;
}
.menu-social .footer-social a {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 8px;
  margin-right: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}
.menu-social .footer-social a:hover{
  color: #38B6FF;
}
button.close-menu {
      background: transparent;
    border: 0;
    outline: none;
    position: absolute;
    right: 0px;
    top: 0;
}
.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-style: normal;
  font-weight: 500;
  font-size: 46px;
  line-height: 69px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.menu-list {
  text-align: center;
  padding-top: 0px;
}
.menu-list a{
    font-style: normal;
    font-weight: 500;
    font-size: 45px;
    line-height: 40px;
    color: #FFFFFF;
    padding: 25px 30px;
}
.offcanvas .primary-btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
  margin: 7.5px;
  box-shadow: none;
}
.offcanvas .primary-btn:hover{
  color: rgba(7, 10, 12, 1);
  background-color: #C1FF72;
  border-color:#C1FF72;
}
.offcanvas .primary-btn.active-btn{
    color: rgba(7, 10, 12, 1);
    background-color: #fff;
}
.pt-30{
  padding-top: 30px;
}
.offcanvas-title:hover{
  color: #FFAE1C;
  color: #C1FF72;
}
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(56, 165, 238, 0.5);
}
.nav-links li a.login-btn{
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 11px 30px;
  background: #FE7161;
  border: 1px solid #FE7161;
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
  border-radius: 50px;
  margin-left: 13px;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  margin-top: 8px;
}
.nav-links li a.login-btn:hover{
    background-color: #36537F;
    border-color: #36537F;
    color: #fff;
}
.logo{
  font-style: normal;
font-weight: 500;
font-size: 26px;
line-height: 39px;
color: #38B6FF;
}

header.sticky {
    position: fixed;
    top: 0;
}
header.sticky .menu-icon img{
  filter: brightness(0) invert(1);
}
header.sticky .nav-links li a{
   color: #fff; 
}
header.sticky .nav-links li a:hover, header.sticky .nav-links li a.active, header.sticky .menu-list a:hover, header.sticky .menu-list a.active {
  color: #FFAE1C;
}

.logo-container{
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn{
    display: flex;
    align-items: center;
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn{
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
.overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.overlay .closebtn:hover {
    color: #ccc;
}
/************* Light Nav ***************/
header.light-nav {
    background-color: #fff;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
}
header.light-nav.sticky{
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}
header.light-nav .menu-search-btn{
    background: #F7F8FC;
}
header.light-nav .nav-links li:hover > a, header.light-nav .nav-links li a.active {
    color: #12043F;
    border-bottom: 2px solid #6440FA;
}

header.light-nav .nav-links li a {
    color: #12043F;
    border-bottom: 2px solid transparent;
}
header.light-nav .drop-menu li a {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 400;
    color: #010101;
    border-radius: 0px;
    border-bottom: 1px solid #efefef;
}
header.light-nav .drop-menu li a:hover {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 400;
    color: #6440FA;
    border-radius: 0px;
    border-bottom: 1px solid #efefef;
}
header.light-nav .row .mega-links li a {
    padding: 0.5rem 1rem;
    color: #010101;
    font-size: 14px;
    display: block;
    border-bottom: none;
}
header.light-nav .row .mega-links li a:hover {
    color: #6440FA;
}
header.light-nav .wrapper .btn {
    color: #6440FA;
}
header.light-nav .wrapper .btn.close-btn {
    color: #fff;
}
.light-nav .nav-link a.login-btn{
    border: 1px solid #Fff;

}
header.light-nav .login-btn{
    box-shadow: 0px 8px 8px rgba(100, 64, 250, 0.25);
    background: #6440FA;
    color: #fff;
}
header.light-nav .login-btn:hover{
    background-color: rgb(100 64 250 / 36%);
    color: #6440FA;
    box-shadow: none;
}
header.light-nav .menu-search-btn:hover{
    background-color: rgb(100 64 250 / 36%);
}
.breadcamp{
    background: #F7F8FC;
    padding-top: 160px;
    padding-bottom: 24px;
}
.breadcamp ul li,.breadcamp ul li a{
    color: #12043F;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
}
.breadcamp ul li a{
    color: #6440FA;
}
.breadcamp ul li i{
    font-size: 5px;
    margin: 6px;
}

@media (max-width: 920px) {

    header.light-nav .nav-links li a{
        color: #fff;
    }

    header.light-nav .nav-links li a:hover, header.light-nav .nav-links li a.active{
        color: #f0eff5;
        border-bottom: 2px solid #ffffff;
    }
}