:root {
  --sub-color: #f3f9ec;
  --primary-color: #8bc53f;
  --secondary-color: #004f64;
  --third-color: #013d70;
  --fourth-color: #004785;
  --black-dark-color: #212529;
  --white-color: #ffffff;
  --black-color: #000;
  --bg-light-color: #f3f9ec;
  --bg-gray-light-color: #f0f0f0;
  --bg-gray2-light-color: #f4f5f7;
  --bg-gray3-light-color: #ebf1f5;
  --bg-gray4-light-color: #f3f0f0;
  --bg-gray5-light-color: #ccb9b9;
  --bg-gray6-light-color: #f4f4f4;
  --bg-gray7-light-color: #e0edcc;
  --bg-gray8-light-color: #eaeaea;
  --bg-gray9-light-color: #d4d2d2;
  --bg-gray10-light-color: #e6edf2;
  --bg-gray11-light-color: #c7c8c7;
  --bg-gray12-light-color: #e4e5e7;
  --bg-gray13-light-color: #f5f3f3;
  --bg-gray14-light-color: #e8e8e8;
  --bg-secondary-color: #035184;
  --bg-secondary2-color: #035266;
  --bg-secondary3-color: #004f63;
  --border-color: #ddd;
  --border2-color: #f3ebeb;
  --border3-color: #e2e2e2;
  --border4-color: #eee;
  --border5-color: #ced4da;
  --border6-color: #dddddd;
  --placeholder-color: #f3ebeb;
  --box-shadow-color: #c0bdbd;
  --box-shadow2-color: #d3cece;
  --box-shadow3-color: #ccc;
  --box-shadow4-color: #cfc8c8;
  --box-shadow5-color: #dbd8d8;
  --label-color: #ccb9b9;
  --hover-color: #218838;
  --primary-bg-color: #9ac566;
    --primary-bg-color2: #4CAF50;
  --bg-black-light-color: #393636;
  --bg-black-light2-color: #242222;
  --red-color: #ff0000;
  --bg-primary-color: #006278;
} 



/* :root {
  --primary-color: #268283;
  --secondary-color: #820263;
  --third-color: #013d70;
  --fourth-color: #004785;
  --sub-color: #ffe4f3;
  --black-dark-color: #212529;
  --white-color: #ffffff;
  --black-color: #000;
  --bg-gray-light-color: #f0f0f0;
  --bg-gray2-light-color: #f4f5f7;
  --bg-gray3-light-color: #ebf1f5;
  --bg-gray4-light-color: #f3f0f0;
  --bg-gray5-light-color: #ccb9b9;
  --bg-gray6-light-color: #f4f4f4;
  --bg-gray7-light-color: #e0edcc;
  --bg-gray8-light-color: #eaeaea;
  --bg-gray9-light-color: #d4d2d2;
  --bg-gray10-light-color: #e6edf2;
  --bg-gray11-light-color: #c7c8c7;
  --bg-gray12-light-color: #e4e5e7;
  --bg-gray13-light-color: #f5f3f3;
  --bg-gray14-light-color: #e8e8e8;
  --bg-secondary-color: #820263;
  --bg-secondary2-color: #035266;
  --bg-secondary3-color: #004f63;
  --border-color: #ddd;
  --border2-color: #f3ebeb;
  --border3-color: #e2e2e2;
  --border4-color: #eee;
  --border5-color: #ced4da;
  --border6-color: #dddddd;
  --placeholder-color: #f3ebeb;
  --box-shadow-color: #c0bdbd;
  --box-shadow2-color: #d3cece;
  --box-shadow3-color: #ccc;
  --box-shadow4-color: #cfc8c8;
  --box-shadow5-color: #dbd8d8;
  --label-color: #ccb9b9;
  --hover-color: #218838;
  --primary-bg-color: #9ac566;
  --primary-bg-color2: #4CAF50;
  --bg-black-light-color: #393636;
  --bg-black-light2-color: #242222;
  --red-color: #ff0000;
  --bg-primary-color: #006278;
} */


*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}


a,
button {
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  box-shadow: none;
}




.menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 1rem;
  height: 3rem;
  margin: 0 auto;
}

.nav-img-resp img{
  display: none;
}

/* .nav-img img {
  display: none;
 
} */
.submenu-main{
  display: flex;
}

.main-site{
  display: block;
}

.responsive-site{
  display: none;
}



@media screen and (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    text-align: left;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: hsl(206, 5%, 100%);
    transition: all 0.5s ease;
  }

  .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }

  .menu {
    /* display: grid; */
    display: flex;
    flex-direction: column;
  }
  .nav-img-resp img{
    width: 140px;
    margin-left: 22px;
    display: block;
  }
  .nav-link-about{
    width: 80%;
    
  }

  .main-site{
    display: none;
  }

  .responsive-site{
    display: block;
  }


  /* 
   .nav-img img {
    display: block !important;
    max-width: 120px;
    height: auto;
  } */


}

.menu-item {
  position: relative;
  display: inline-block;
}

.menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: hsl(220, 18%, 3%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.menu-link>i.bx {
  font-size: 1.35rem;
  line-height: 0.5rem;
  color: inherit;
}

.menu-link:hover {
  text-decoration: none;
  outline: none;
  color: var(--bg-secondary2-color);
}


@media only screen and (min-width: 993px) {
  .menu-dropdown:hover>.submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

}

@media only screen and (max-width: 992px) {
  .menu {
    width: 100%;
    height: auto;
    padding: 2rem 0;
    align-items: baseline;
  }

  .menu-item {
    display: block;
    text-align: left;
  }

  .menu-link a{
    text-align: left;
    padding: 0.5rem 1.25rem;
  }
  .menu-item{
    text-align: left;
  }
  
 

}

.submenu {
  position: absolute;
  top: 45px;
  left: -2rem;
  min-width: 13rem;
  height: auto;
  padding: 0 1rem 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  border-radius: 0 0 0.25rem 0.25rem;
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: var(--white-color);
  transition: all 0.3s ease-in-out;
  z-index: 4;
}

.submenu-item {
  display: block;
  margin-top: 0.75rem;
}

.submenu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  color: hsl(220, 18%, 3%);
  transition: all 0.35s ease;
}

.submenu-link:hover {
  outline: none;
  color: var(--bg-secondary-color);
}

.menu-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  display: none;
  position: absolute;
  top: 103%;
  left: -0.5%;
  background-color: var(--white-color);
  border-top:2px solid var(--primary-color) ;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 4;
}

.dropdown-1 {
  display: none;
  position: absolute;
  top: 103%;
  left: 8.5%;
  background-color: var(--white-color);
  border-top:2px solid var(--primary-color) ;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 4;
}

.dropdown-2 {
  display: none;
  position: absolute;
  top: 103%;
  left: 26.5%;
  background-color: var(--white-color);
  border-top:2px solid var(--primary-color) ;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 4;
}

.dropdown-3 {
  display: none;
  position: absolute;
  top: 103%;
  left: 39%;
  background-color: var(--white-color);
  border-top:2px solid var(--primary-color) ;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 4;
}

.dropdown-4 {
  display: none;
  position: absolute;
  top: 103%;
  left: 69%;
  background-color: var(--white-color);
  border-top:2px solid var(--primary-color) ;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 4;
}
.dropdown-5 {
  display: none;
  position: absolute;
  top: 103%;
  left: 82%;
  background-color: var(--white-color);
  border-top:2px solid var(--primary-color) ;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 4;
}

.dropdown-6{
  display: none;
  position: absolute;
  top: 103%;
  left: 50%;
  background-color: var(--white-color);
  border-top:2px solid var(--primary-color) ;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 4;
}

.dropdown-columns,
.dropdown-1-columns,
.dropdown-2-columns,
.dropdown-3-columns,
.dropdown-4-columns,
.dropdown-5-columns,
.dropdown-6-columns{
  display: flex;
}

.dropdown-columns,
.dropdown-1-columns,
.dropdown-2-columns,
.dropdown-3-columns,
.dropdown-4-columns,
.dropdown-5-columns,
.dropdown-6-columns{
  flex: 1;
  padding: 10px;
 
}
#nav-main-coloum{
  border-left: 2px solid;
  border-image: linear-gradient(to bottom, white, #0074d9 , white) 1;
}

.nav-link {
  position: relative; /* Ensure positioning context for absolute dropdown */
  padding: 0px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black-color);
  font-size: 14px;
}

/* Show dropdown on hover */
.nav-link:hover + .dropdown 
 {
  display: block ;
}

/* Hide dropdown when mouse leaves */
.dropdown:hover ,
.dropdown-1:hover,
.dropdown-2:hover,
.dropdown-3:hover,
.dropdown-4:hover,
.dropdown-5:hover,
.dropdown-6:hover{
  display: block;
}

/* Style the links within the dropdown */
.dropdown a,
.dropdown-1 a,
.dropdown-2 a,
.dropdown-3 a,
.dropdown-4 a,
.dropdown-5 a,
.dropdown-6 a{
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #333;
  transition: background-color 60s ease;
}

.dropdown a:hover,
.dropdown-1 a:hover,
.dropdown-2 a:hover,
.dropdown-3 a:hover,
.dropdown-4 a:hover,
.dropdown-5 a:hover,
.dropdown-6 a:hover {
  background-color: var(--bg-gray-light-color);
  color: var(--bg-secondary-color);
}
@media only screen and (max-width: 992px) {
  .submenu {
    position: relative;
    top: -0.5rem;
    left: 2.5rem;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transform: translateY(0px);
    box-shadow: none;
    background: transparent;
  }
  .dropdown,
  .dropdown-1,
  .dropdown-2,
  .dropdown-3,
  .dropdown-4,
  .dropdown-5,
  .dropdown-6{
    position: static;
    display: none;
    box-shadow: none;
    border-top: none;
    background-color: transparent;
  }
  
.dropdown-columns,
.dropdown-1-columns,
.dropdown-2-columns,
.dropdown-3-columns,
.dropdown-4-columns,
.dropdown-5-columns,
.dropdown-6-columns{
    display: block;
  }
  
.dropdown-column,
.dropdown-1-columns,
.dropdown-2-columns,
.dropdown-3-columns,
.dropdown-4-columns,
.dropdown-5-columns,
.dropdown-6-columns  {
    flex: none;
    background-color: var(--bg-light-color);
    width: 100% !important;
    padding: 10px;
    min-width: 0;
  }
  
  .nav-link {
    display: block;
    color: var(--black-color);
    
  }
  
  .nav-link:hover + .dropdown {
    width: 100% !important;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--bg-secondary-color);
    border-top: 1px solid var(--primary-color);
  }
  #nav-main-coloum{
    border: none;
  }
  
  

}


@media only screen and (min-width: 1025px) and (max-width: 1110px) {
  .menu {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 0px;
    padding-right: 0px;
    justify-content: space-around;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1rem;
    height: 3rem;
    margin: 0 auto;
}
.nav-link{
  font-size: 12px;
}
.menu-link{
  font-size: 12px;
}

.menu-item a{
  font-size: 12px;
}

}

.burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1.6rem;
  height: 1.15rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 1rem;
  background: hsl(220, 18%, 3%);
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

@media only screen and (max-width: 992px) {
  .burger {
    display: block;
        opacity: 1;
        visibility: visible;
        float: right;
        margin-right: 20px;
        margin-top: -27px;
    }
 
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 992px) {
  .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

}

