body,
html {
  overflow-x: hidden !important;
}

.index_1 {
  z-index: 1;
}

.cross_btn {
  top: 42px;
  right: 15%;
}

nav li a:hover {
  opacity: 1 !important;
}

nav li a::after {
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 1px;
  width: 0;
  background-color: black;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.5px;
  transition: all 0.3s linear;
}

nav li a:hover::after {
  width: 100%;
}

.line1,
.line2,
.line3 {
  content: "";
  height: 3px;
  width: 30px;
}

.menu {
  cursor: pointer;
  width: 30px;
  height: 20px;
  right: 10px !important;
  z-index: 1;
}

.show_nav {
  top: 0% !important;
  left: 0% !important;
  opacity: 1 !important;
  z-index: 77 !important;
}

.overflow_hidden {
  overflow: hidden !important;
}

/* HERO SECTION */
.hero_circle {
  left: 15%;
  z-index: -1;
}

/* WE ARE  SECTION */
.we_are_dots {
  z-index: -1;
  right: -30px;
  bottom: -180px !important;
}

/* CERTIFICATE SECTION */
.certificate_bgi {
  background-image: url("../img/certificate_bgi.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.certificate_box {
  background-color: white;
  border-radius: 12px;
  padding: 28px 35px;
}

.certificate_img {
  width: 100px;
  height: 100px;
}

/* MEDIA QUERY */
@media (min-width: 1200px) {
  .certificate_box {
    width: 180px;
    height: 200px;
    margin: 0 auto;
  }

  .certificate_bgi {
    margin-bottom: 130px !important;
  }
}

@media (min-width: 1400px) {
  .transform_hero_img {
    transform: translateX(80px);
  }

  .certificate_img {
    width: 111px;
    height: 111px;
  }

  .certificate_box {
    width: 201px;
    height: 208px;
  }
}

@media (max-width: 767.98px) {
  .overlay {
    position: absolute;
    background: rgba(0, 66, 37, 1);
    width: 100%;
    height: 100vh;
    top: -150%;
    left: -100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s all linear !important;
    -o-transition: 0.3s all linear !important;
    transition: 0.3s all linear !important;
    z-index: 9999;
  }

  nav li a::after {
    background: var(--color-white) !important;
  }
}

@media (max-width: 575.98px) {
  .cross_btn {
    top: 35px;
    right: 30px;
  }

  .nav_logo {
    max-width: 50px !important;
    max-height: 50px !important;
  }

  .certificate_box {
    max-width: 250px;
    max-height: 250px;
    margin: 0 auto;
  }

  .hero_mobile_padding {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* BACK-TO-TOP-CSS-START ====================*/
#scroll svg {
  height: 25px;
  width: 22px;
}

#scroll {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 50;
  cursor: pointer;
  font-size: var(--font_lg);
  color: var(--white_color);
  padding: 10px 12px;
  border-radius: 50% !important;
  border: 1px solid var(--color-white);
  background: #004225;
  animation: moves 3s infinite;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out !important;
}

@keyframes moves {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

#scroll:hover {
  background: #004225;
  color: var(--color-black) !important;
  -webkit-box-shadow: 0px 0px 10px #004225;
  box-shadow: 0px 0px 10px #004225;
}

/* BACK-TO-TOP-CSS-ENDS */