﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.inner-color
{
	color: #152435 !important;
}

nav{
    position: fixed;
    z-index: 1;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 10px;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 55px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.wrapper .nav-links{
   text-align:center;
  /* text-align: right;
    padding-right: 13%;*/
}
.nav-links li{
  list-style: none;
  display:inline-block;
}
.nav-links li a{
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
 /* padding: 10px 15px 25px 15px;*/
     padding: 10px 10px 23px 1px;
}


.nav-links li a:hover{
  color:#fff;
  border-bottom:3px #fff solid;
}


.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #254C75;
  width: 180px;
  padding: 0px 10px;
  line-height: 45px;
/*  top: 65px;*/
  top: 47px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 6px  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:67px;*/
  top:51px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 0px;
  font-weight: 400;
  font-size:15px;
  border-radius: 0px;
}

.drop-menu li {
    display: block;
    width: 100%;
}

.mega-box{
  position:fixed;
  left: 0;
  width: 100%;
  padding: 0 75px;
  top: 65px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background:#254C75;
  padding: 25px 40px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 6px 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
    width: calc(25% - 65px);
    text-align: center;
    line-height: 30px;}
.content .row img{
  width: 100%;
  height:330px;
  object-fit: cover;
	border-radius: 20px;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: 0px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 0px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 0px;
  color: #d9d9d9;
  font-size: 16px;
  display: block;
}
.row .mega-links li a:hover{
  color: #000;
}

.wrapper .btn {
color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    position: fixed;
    left: 25px;
    top: 22px;
    padding: 5px 11px;
    z-index: 9999;
    border: 2px #254c75 solid;
    border-radius: 10px;
    background-color: #254c75;
}

.wrapper .btn.close-btn{
  position: absolute;
  left: 15px;
  top: 30px;
  color:#FFFFFF;    
  width: 40px;
  height: 40px;
	border: 2px #FFFFFF solid;
}



@media screen and (max-width: 991px) {

	.wrapper .btn{
    display:  inline-block;
  }
  .wrapper .nav-links{
    position:fixed;
    height: 100vh;
    width: 100%;
    /*max-width: 350px;*/
    top:-10px;
    right: -100%;
    background: #254C75;
    display: block;
    padding: 115px 0px 50px 10px;
    line-height: 40px;
    color:#FFFFFF;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  custom scroll bar
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  } 
  #menu-btn:checked ~ .nav-links{
    right:0px;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display:  inline-block;
  }
  .nav-links li{
    margin: 0px 10px;        
    display: block;
  }
  .nav-links li lable{
    margin: 0px 10px;
    color:#FFFFFF;
  }
    .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size:16px;
    color:#FFFFFF;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 0px;
    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;
    color: #f2f2f2;
    font-size: 16px;
    font-weight: 500;
    padding-right:15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .nav-links .mobile-item:hover{
    background: #08AF9A;
  }
  .nav-links li a:hover {
    color: #08AF9A;
    border-bottom:0px #08AF9A solid;
    /*background: #3A3B3C;*/    
    border-radius: 5px;
}
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 0px;
    font-size: 14px;
    
  }
  .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;
    /*margin:auto;*/
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
  
  nav .wrapper {
    position: absolute;
}  
  
}
nav input{
  display: none;
}

@media (max-width: 991px) {

.mega-box .content
{
	display: inline-block;
}

.mega-box .content .row {
        width: 49%;
        margin-bottom: 15px;
        display: inline-block;
        margin: 0;
}
nav .wrapper {
    padding: 0px 0px;
}
	
}

@media (max-width: 480px) {

.mega-box .content
{
	display: block;
}

.mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        display: block;
}
		
}
@media screen and (max-width: 991px) {
    /* Hide submenu by default */
    .drop-menu {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    /* Show submenu when toggle is checked */
    .toggle-sub:checked ~ .drop-menu {
        max-height: 500px; /* or auto if you prefer */
    }

    /* Show label that acts as toggle */
    .mobile-item {
        display: block;
        cursor: pointer;
    }
}