* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.desktop_nav {
  font-weight: 600 !important;
  font-size: 1.1rem !important;
}

.nav {
  position: sticky;
  width: 100%;
  top: 0px;
  background-color: transparent;
  padding: 10px;
  transition: background-color 0.3s;
  z-index: 1000;
}
.nav .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}
.nav.sticky {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.nav .wrapper {
  padding: 1rem 0rem;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a img {
  text-decoration: none;
  width: auto;
  height: 4rem;
}

.wrapper .nav-links {
  margin: 0;
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #051441;
  text-decoration: none;
  font-size: 16px!important;
  font-weight: 500 !important;
  padding: 9px 15px;
  /* border-radius: 5px; */
  transition: all 0.3s ease;
}

/* .nav-links li a:hover {
    background: #3a3b3c1b;
} */

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: #242526;
  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 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 1rem;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  z-index: 1000;
  background: #fff;
  padding: 25px 20px;
  /* display: flex; */
  width: 100%;
  height: auto;
  overflow-y: auto;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.companyprofile {
  cursor: pointer;
  border-radius: 5px;
}

.wrapper .btn {
  color: #000;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

.navbar_btn {
  line-height: normal;
  background-color: #0a78be !important;
  color: #fff !important;
  padding: 0.8rem 1rem !important;
  border-radius: 30px;
  transition: 0.7s ease-in-out;
}

.navbar_btn:hover {
  background-color: transparent !important;
  color: #000 !important;
  border: 1px solid #000;
  padding: 0.8rem 1rem !important;
  transition: 0.7s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar_btn:hover img {
  filter: invert(1);
}
.content img {
  width: 100%;
  height: auto;
}

.content .heading_content,
.content .heading_content a,
.content h3 {
  color: #0a78be;
  line-height: normal;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600!important;
  margin-bottom: 0;
}

.mega_menu_list .list_item {
  line-height: normal;
  padding: 5px 0;
  font-size: 14px;
  display: inline-block;
  background-color: #fff;
  border-radius: 9px;
  margin-top: 5px;
  color: #000 !important;
}
.mega_menu_list a:hover {
  color: #006eb2  !important;
}
.mega_menu_list li {
  margin-left: 10px;
  line-height: normal;
}

/* .mega_menu_list .list_item:hover {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
} */

.content ul li a img {
  width: auto;
  height: 20px;
}

.navbar_list_img {
  display: flex;
}

.navbar_list_img img {
  width: auto;
  border-radius: 5px;
  margin-right: 1rem;
  height: 4rem;
  margin-top: 3rem;
}

@media screen and (max-width: 970px) {
  .nav .wrapper {
    padding: 0;
  }

  .wrapper .btn {
    display: block;
  }

  .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;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #fff;
  }

  ::-webkit-scrollbar-thumb {
    background: #fff;
  }

  #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 {
    padding: 0px;
    display: block;
    font-size: 20px;
  }

  .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,
  #showMega2:checked ~ .mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    background: #fff;
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 0;
  }
}

.nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}

/*whatsapp button*/
.btn-whatsapp-pulse {
  margin-right: 10px;
  z-index: 1000;
  background: #25d366;
  color: white;
  font-size: 20px;
  padding: 16px 13px!important;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse i {
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
}

.btn-whatsapp-pulse img {
  width: 25px;
  height: 25px;
}
.btn-whatsapp-pulse a {
  align-items: center;
  text-align: center;
}

.btn-whatsapp-pulse a:hover {
  display: block !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/*whatsapp button end*/

 .mt-5 .pt-5{
   margin-top:0!important;  
 }

@media only screen and (max-width: 500px) {
  .btn-whatsapp-pulse {
    border-radius: 30px !important;
    padding: 12px 30px !important;
    display: inline !important;
  }
  .btn-whatsapp-pulse img {
    width: 30px;
    height: auto;
  }
  .navbar_btn {
    text-align: center;
    line-height: normal !important;
    font-size: 15px !important;
    width: 180px !important;
    margin-top: 10px;
  }
  .cp p{
      margin: 0 20px;
      
  }
  .content h3 {
    display: none;
  }

.content .heading_content, .content h3 {
  margin-left: 10px;
}
.mega_menu_list .list_item {
  line-height: normal;
  padding: 3px 0 !important;
  font-size: 14px !important;

}

  .nav-links li label {
    margin-bottom: 0;
  }

  .nav-links .mobile-item {
    line-height: 2.2rem;
    display: block;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links li a {
    font-size: 1.2rem !important;

    line-height: 2.2rem;
    padding: 0px;
    display: block;
  }


  .navbar_list_img {
    display: none;
  }

  .mega-box .col-lg-3,
  .mega-box .col-md-6,
  .mega-box .col-sm-6,
  .mega-box .col-xs-12 {
    padding: 0 0px 0px 10px;
  }

  .mega_menu_list .list_item {
    border: none;
    padding: 0;
  }

  .social_icon {
    margin: 1.2rem 0;
  }

  .footer_section {
    padding: 2rem 0 1rem 0 !important;
  }

  .mega-box .container {
    padding: 0;
  }
}
