.header.active {

  background-color: #128FF3;

}

.head-flex {

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  align-items: center;

}

.gap30 {
    gap: 30px;
}
.flx {
    display: flex;
}
.logo a {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.in-logo {
  width: 100%;
}

.in-logo img {
  max-width: 180px;
  margin-top: 10px;
}

.menu>ul>li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
  list-style: none;
}

.menu>ul>li>a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.wht-txt a {
  background: #fff;
  color: #128FF3;
  border-radius: 4px;
  padding: 10px 12px !important;
  font-size: 15px;
  display: flex;
  margin-left: 40px;
}

.menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #fff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

.sub-menu ul {
  padding: 0;
}

@media(min-width:1300px) {
  .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}

.menu>ul>li .sub-menu>ul>li {
  line-height: 1;
  list-style: none;
}

.menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 5px 0;
  font-size: 15px;
  color: #128ff3;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.menu>ul>li .single-column-menu {
  max-width: max-content;
}

.menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1;
  display: block;
}

.menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}

.menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
  font-size: 16px;
  color: #ea4636;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}

.menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}

.menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.menu>ul>li .sub-menu>ul>li>a:hover {
  color: #128ff3;
}

/* banner section */
.banner-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: block;
}

li.m-hding {
  color: #fff;
  padding: 15px 0 15px;
  font-weight: 700;
  text-decoration: underline;
}

/*responsive*/
  header .hd-btn {

    display: none;

  }

  .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-trigger span {
    display: block;
    height: 3px;
    background-color: #fff;
    width: 24px;
    position: relative;
  }

  .mobile-menu-trigger span:before,
  .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }

  .mobile-menu-trigger span:before {
    top: -8px;
  }

  .mobile-menu-trigger span:after {
    top: 8px;
  }

  .menu {
    position: fixed;
    width: 320px;
    background-color: rgba(65, 183, 90, 1);
    left: 0;
    top: 0;
    height: 100%;
    overflow-y: scroll;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .menu.active {
    transform: translate(0%);
  }

  .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .menu>ul>li>a, .menu>ul>li>a:hover {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
	text-decoration: none;
	color:#fff;
  }

  .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .menu .mobile-menu-head {
    display: flex;
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: rgba(71, 201, 99, 1);
    top: 0;
  }

  .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    font-family: 'lato';
    margin: auto;
  }

  .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(255, 255, 255, .4);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    font-size: 25px;
  }

  .menu .menu-main {
    /* height: 100%; */
    overflow-x: hidden;
    overflow-y: auto;
  }

  .menu>ul>li .sub-menu.mega-menu,
  .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .menu>ul>li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
  }

  .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
  }

  .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .menu>ul>li .sub-menu>ul>li>a,
  .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
  }

  .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 15px;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

/*  */
.flx-mbl .flx-mbl .flx.f-icon,
.flx-mbl .cnt-sec .sec .flx,
.flx-mbl .c-info .flx {
  flex-direction: row;
  justify-content: initial;
  margin-bottom: 10px;

}

.flx-mbl p,
.flx-mbl a,
.flx-mbl span,
.flx-mbl li {
  color: #fff !important;
}

.flx-mbl {
  padding: 15px 15px 30px;
}

.flx-mbl .add_mbl {
  margin-top: 15px;
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 600;
}

.flx-mbl .flx img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(14%) saturate(2%) hue-rotate(264deg) brightness(107%) contrast(101%) !important;
}

.menu .mnu_none{
  display: none;
}
.fix-me{
  overflow-y: hidden;
}
@media(max-width:1300px){
  .menu .mnu_none{
    display: block;
  }
  .mnu_mob_none{
    display: none !important;
  }
}
.bld a{
  font-weight: 600;
}