/* :root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Marcellus", sans-serif;
    --nav-font: "Marcellus", sans-serif;
}

p,span,strong{
    font-family:  "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Marcellus", sans-serif;;
} */

a {
  text-decoration: none !important;
}

.navmenu .dropdown ul {
  border-radius: 15px;
}

.navmenu .dropdown ul li:hover {
  padding-left: 16px;
  transition: all 0.7s ease;
  border-radius: 14px;
}

.nav-hover a {
  margin-right: 6px;
  padding: 10px;
  transition: all 0.7s ease;
}

.nav-hover a:hover {
  color: #fff !important;
}

.dropdown.nav-hover ul li a:hover {
  color: green !important;
}

.navmenu a {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: capitalize;
  margin-right: 20px;
}

.navmenu>ul>li>a:before {
  content: '';
  height: 3px;
  width: 0;
  background-color: green;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.navmenu>ul>li>a:hover:before {
  width: calc(100% + 24px);
  right: unset;
  left: -12px;
}

.navmenu>ul>li>a:before {
  height: 40px;
  top: calc(50% - 20px);
  right: -12px;
  border-radius: 20px;
  z-index: -1;
}

.navmenu>ul>li>a:hover:before {
  width: 100%;
  right: unset;
  left: 0;
}

.service-item-content {
  border: 1px solid #fff;
  padding: 6px;
  border-radius: 6px;
  color: #fff;
  height: 100%;
}

.contact-process-wrap {
  background-color: #116530;
  padding: 48px;
  border-radius: 24px;
  width: 100%;
}

.contact-process .box-number {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin-right: 30px;
  border: 1px solid;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: green;
}

.contact-process .box-title {
  color: #fff;
  margin-bottom: 12px;
}

.contact-process .box-text {
  font-size: 14px;
  color: #fff;
}

.contact-process {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-card {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 24px;
  padding: 32px;
}

.service-card .box-number {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--title-font);
  color: #E1E4E5;
  position: absolute;
  right: 32px;
  top: 32px;
}

.navmenu .dropdown ul {
  left: -8px !important;
}

.footer-email {
  width: 230px;
}

.footer-email input {
  width: 100%;
  background-color: #fff;
  border-radius: 28px;
}

.border-btn-footer {
  border: 1px solid #116530;
  padding: 15px;
  width: 230px;
  display: flex;
  justify-content: center;
  border-radius: 28px;
  background: #116530;
  color: white;
}

/* From Uiverse.io by Randdose */
.custom-cta-btn {
  all: unset;
  display: flex;
  width: 200px;
  align-items: center;
  position: relative;
  padding: 0.6em 2em;
  border: #116530 solid 0.15em;
  border-radius: 0.25em;
  color: #116530;
  font-size: 1.5em;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: border 300ms, color 300ms;
  user-select: none;
}

.custom-cta-btn p {
  z-index: 1;
}

.custom-cta-btn:hover {
  color: #212121;
}

.custom-cta-btn:active {
  border-color: teal;
}

.custom-cta-btn::after,
.custom-cta-btn::before {
  content: "";
  position: absolute;
  width: 9em;
  aspect-ratio: 1;
  background: #116530;
  opacity: 50%;
  border-radius: 50%;
  transition: transform 500ms, background 300ms;
}

.custom-cta-btn::before {
  left: 0;
  transform: translateX(-8em);
}

.custom-cta-btn::after {
  right: 0;
  transform: translateX(8em);
}

.custom-cta-btn:hover:before {
  transform: translateX(-1em);
}

.custom-cta-btn:hover:after {
  transform: translateX(1em);
}

.button:active:before,
.button:active:after {
  background: teal;
}

.modal_banner {
  /* background:
        linear-gradient(90deg, #116530 0%, #121212 100%); */
  /* background: linear-gradient(90deg, #0096ff 0%, #121212 100%); */

  background: #0096ff;
}

.modal_banner .text_box_banner {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #fff;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.modal_banner .text_box_banner h2 {
  font-size: 60px;
  font-weight: 700;
}

.modal_banner .text_box_banner .input_banner_search {
  padding: 5px 15px;
  height: 49px;
  border-radius: 13px;
  border: 1px solid #fff;
  width: 100%;
}

.modal_banner .input_banner_box {
  display: flex;
  gap: 18px;
}

.modal_banner .input_banner_btn {
  background-color: #fff;
}

.modal_banner .input_banner_btn {
  background-color: #fff;
  height: 35px;
  padding: 5px 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 134px;
  font-size: 15px;
}

.modal_banner .inside_white_banner {
  background: #fff;
  border-radius: 25px;
  padding: 25px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #121614;
}

.modal_banner .inside_white_banner h5 {
  font-size: 24px;
  font-weight: 600;
}

.modal_banner .inside_white_banner p {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
}

.modal_last_line {
  position: relative;
  margin: 0 !important;
  z-index: 1000 !important;
  cursor: pointer;
  text-decoration: underline;
  padding: 0 10px;
  font-weight: 600;
}

.modal_last_line.link {

  padding: 13px 7px;

}

.modal_last_line:hover {
  color: #fff;
}

.modal_last_line:hover::before {
  width: 100%;
  right: unset;
  left: 0;
}

.modal_last_line::before {
  height: 40px;
  top: 0;
  right: -12px;
  border-radius:
    20px;
  z-index: -1;
}

.modal_last_line::before {
  content: '';
  height: 3px;
  width: 0;
  background-color: #0096ff;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition:
    0.4s ease-in-out;
  transition:
    0.4s ease-in-out;
  z-index: -1;
  height: 100%;

}

.wifirouterModal .modal-dialog {
  max-width: 900px;
}

.wifirouterModal .modal-dialog #exampleModalLabel {
  font-size: 27px !important;
  font-weight: 600;
  text-align: center !important;
  width: 100%;
}

.wifirouterModal .modal_body_head {
  font-size: 16px;
  margin-bottom: 33px;
  margin-top: 7px;
}

.wifirouterModal .card .card-img-top {
  height: 91px;
  object-fit: contain;
  margin:
    18px 0;
}

.wifirouterModal .card .card-body {
  text-align: center;
  padding: 10px;

}

.wifirouterModal .card {
  cursor: pointer;
}

.wifirouterModal .card .card-body .card-title {
  margin:
    0;
  font-size: 16px;
  color: #00375e;
}

.wifirouterModal .card:hover {
  box-shadow: #1165309c 0 0 13px 1px;
}

.wifirouterModal .card {
  box-shadow: none;
  transition:
    all .5s ease;
}

.category_modal h4 {
  font-size: 35px;
  font-size: 30px;
  margin-bottom: 36px;
  text-align: center;
  color: #00375e;
  font-weight: 900;
}

.category_modal .wifirouterModal .card:hover {
  box-shadow: none;
  background-color: #0096ff59;
  border:
    1px solid #0096ff;
}

.wifi_router {
  /* background:
  linear-gradient(90deg, #116530 0%, #121212 100%); */
  background:
    #0096ff;
}

.wifi_router h4 {
  font-size: 45px;
  margin-bottom: 47px;
  text-align: center;
  color: #fff;
  font-weight: 900;
}

.wifi_router .wifirouterModal .card:hover {
  box-shadow: #ffffff8f 0 0 13px 1px;
}

.looking_for .box_looking {
  padding:
    45px 34px;
  border:
    3px solid #003154;
  border-radius:
    34px;
}

.looking_for .box_looking .lookimg_text h6 {
  font-size: 35px;
  font-weight: 600;
  color: #004f86;
}

.looking_for .box_looking p {
  font-size: 15px;
  margin-top: 14px;
  margin-bottom: 0;
  color: #004f86;

}

.modal_banner .text_box_banner p {
  font-size: 20px;
  font-weight: 500;
}

.modal_banner .text_box_banner p .banner_call  , .new_pricing_btn{
  display: flex;
  margin-top: 23px;
  justify-content: center;
  align-items: center;
  gap:
    11px;
  font-size: 31px;
  color: #fff;
  border:
    1px solid #fff;
  padding:
    9px;
  border-radius:
    14px;
  width: auto;
  background-color: #ffffff40;
}

.modal_banner .text_box_banner p .banner_call:hover ,.new_pricing_btn:hover{
  background-color: #fff;
  color: #003154;
}

.modal_banner .text_box_banner p .banner_call:hover::after .new_pricing_btn:after,.new_pricing_btn:before,
.modal_banner .text_box_banner p .banner_call:hover::before {

  background:
    #1165307d;

}
.new_pricing_btn {
  max-width: 264px;
  margin: auto;
}

@media(max-width:1200px) {
  .modal_banner .text_box_banner h2 {
    font-size: 40px;
  }

  .modal_banner .text_box_banner p {
    font-size: 15px;
  }

  .modal_banner .inside_white_banner {
    margin-left: 0;
  }

  .modal_banner .inside_white_banner img {
    max-height: 250px;
  }

  .modal_banner .inside_white_banner p {
    font-size: 13px;
  }

  .looking_for .box_looking .lookimg_text h6 {
    font-size: 31px;
  }

  .looking_for .box_looking .custom-cta-btn {
    width: 130px;
    font-size: 18px;
  }
}

@media(max-width:767px) {
  .modal_banner .text_box_banner h2 {
    font-size: 31px;
  }

  .modal_banner .text_box_banner {

    padding-bottom: 82px;
    padding-top: 58px;
  }

  .modal_banner .input_banner_box {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap:
      11px;
  }

  .modal_banner .inside_white_banner h5 {
    font-size: 20px;
  }

  .modal_banner .inside_white_banner p {
    margin-top: 3px;
  }

  .category_modal h4 {
    font-size: 23px;
    line-height: 34px;
  }

  .looking_for .box_looking {
    margin:
      0;
  }

  .looking_for .box_looking {
    padding:
      38px 16px;
  }

  .looking_for .box_looking .lookimg_text h6 {
    font-size: 25px;
  }

  .looking_for .box_looking p {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 26px;
  }

  .category_modal .card,
  .wifi_router .card {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .wifirouterModal .modal-dialog #exampleModalLabel {
    font-size: 20px !important;

  }

  .modal_banner .text_box_banner p .banner_call {
    font-size: 22px;
  }
}

.custom-cta-btn::after,
.custom-cta-btn::before {

  background:
    #0484dd !important;

}

.custom-cta-btn {
  border-color:
    #003154;
  color: #003154;
}

.border-btn-footer {

  background:
    #0096ff;
}

.footer h4::after {

  background: #0096ff;


}

.footer .social-links a {
  color: #0096ff;

}

.footer .social-links a:hover {
  background:
    #0096ff;

}