@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;600;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;600;700;800&amp;display=swap');

* {
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

:root {
  --heading-color: #A11120;
  --para-color: black;
  --color-head: #6c757d;
}

a {
  text-decoration: none;
}

#popup {
  display: none;
}

.my-popup {
  position: relative;
  position: fixed;
  background: linear-gradient(rgba(3, 3, 3, 0.856), rgba(0, 0, 0, 0.833));
  height: 100vh;
  width: 100%;
  z-index: 9999;
}

.form-section {
  width: 72%;
  top: 0%;
  left: 0%;
  transform: translate(90%, 10%);
  box-shadow: rgba(90, 89, 89, 0.733) 0px 5px 15px;
  padding: 20px 20px;
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--heading-color);
}

.form-content {
  font-size: 18px;
  color: var(--heading-color);
}

.form-section .fa-xmark {
  position: absolute;
  right: -10px;
  top: -10px;
  height: 35px;
  width: 35px;
  font-size: 25px;
  padding-top: 5px;
  color: #fff;
  background: var(--heading-color);
  border: 2px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 999;
}

.learn-btn-1 {
  background: var(--heading-color);
  color: #fff;
  border: none;
  padding: 6px 20px;
}

@media screen and (max-width:992px) {
  .form-section {
    width: 55%;
    top: 60%;
    left: 60%;
    transform: translate(-60%, 25%);
  }
}

@media screen and (max-width:576px) {
  .form-section {
    width: 93%;
    top: 60%;
    left: 60%;
    transform: translate(-60%, 5%);
  }
}

/* modal button css */
.modal-btn1 {
  background-color: var(--heading-color);
  border: 1px solid transparent;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  position: fixed;
  left: 1%;
  bottom: 20%;
  z-index: 22222222;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  animation: rotate linear 3.5s 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
    left: 0;
  }

  25% {
    transform: rotate(30deg);
    left: 0;
  }

  60% {
    transform: rotate(0deg);
    left: 80%;
  }

  70% {
    transform: rotate(0deg);
    left: 80%;
    background: #47576b;
  }

  100% {
    transform: rotate(-360deg);
    left: 0;
  }
}

@media screen and (max-width:460px) {
  .modal-btn1 {
    animation: none;
  }

  .navbar .navbar-brand img {
    width: 200px !important;
    height: 50px !important;
  }
}

/* mobile icon */
.main-mbl-icn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 978769;
  display: none;
}

.mbl-icn {
  background-color: var(--heading-color);
  padding: 10px;
}

.mbl-icn1 {
  background-color: rgb(37, 211, 102);
  padding: 10px;
}

.mbl-icn2 {
  background-color: var(--heading-color);
  padding: 10px;
}

.mbl-icn .modal-btn3 {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.mbl-icn1 a {
  background-color: rgb(37, 211, 102);
  color: #fff;
  font-size: 25px;
}

.mbl-icn2 a {
  background-color: var(--heading-color);
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width:767px) {
  .main-mbl-icn {
    display: block;
  }

  .modal-btn1,
  .whatsapp-icon,
  .phone-icon {
    display: none;
  }

  .footer-section-1 {
    margin-bottom: 55px;
  }
}


.modal-btn {
  background-color: var(--heading-color);
  border-radius: 5px;
  outline: none;
  border: 1px solid transparent;
  padding: 10px 18px;
  margin-top: 10px !important;
}

.modal-header h5 {
  font-weight: bold;
  font-size: 25px;
  color: var(--heading-color);
}

.x-btn i {
  color: #fff;
}

.modal-header .x-btn {
  padding: 5px;
  font-size: 14px;
  height: 30px;
  width: 30px;
  color: #fff;
  background-color: var(--heading-color);
  border: 1px solid var(--heading-color);
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

.btn-sub {
  background-color: var(--heading-color);
  border: 1px solid transparent;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.5px;
}

.btn-sub:hover {
  border: 1px solid var(--heading-color);
  color: var(--heading-color);
  background-color: transparent;
}


/* topbar start */
.topbar {
  background: #fff;
  border-bottom: 1px solid rgba(114, 106, 106, 0.151);
  padding: 10px 0;
}

.ct-sec i:hover {
  color: var(--heading-color);
}

.top-cont a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.top-cont i {
  font-size: 18px;
  color: var(--heading-color);
}

.so {
  margin-top: 17px;
}

.ct-sec i {
  color: var(--heading-color);
  font-size: 18px;
}

.ct-sec a {
  font-size: 16px;
  color: var(--heading-color);
  font-weight: 600;
}

.ct-sec i {
  color: var(--heading-color);
}


.t-right {
  margin-right: 16px;

}

.tp-sec2 {
  text-align: right;
}


.so-icon img {
  height: 70px;
}

.top-icon i {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background-color: #FFF;
  align-items: center;
  padding: 5px;
  border: 1px solid #29ab87;
  color: var(--heading-color);
  font-size: 23px;
}

.nav-link {
  position: relative;
}

.tp-sec2 {
  margin-top: 10px;
}

.so-icon ul {
  display: flex;
  padding: 0px;
  justify-content: center;
}

.so-icon ul li {
  list-style: none;
  padding: 3px 3px;
}

.t-left {
  display: none;
}


@media (min-width:1200px) {
  .tp-sec2 {
    margin-top: 38px;
  }
}

@media (max-width:1200px) {


  .nav-item .info::before {
    display: none !important;
  }

}

@media (max-width:575px) {
  .so {
    margin: auto !important;
  }
}

@media screen and (max-width:991px) {
  .tp-sec2 {
    display: none;
  }

  .topbar {
    background: #fff;
  }

  .ct-sec {
    font-size: 16px;
  }

  .nav-logo {
    display: block !important;
  }
}

@media screen and (max-width: 303px) {

  .nav-logo {
    width: 170px;
  }

  .ct-sec i {
    font-size: 20px;
  }

  .ct-sec a {
    font-size: 20px;
  }
}

@media screen and (max-width:575px) {
  #logo {
    display: block;
  }

  .so-icon {
    display: flex;
    justify-content: end;

  }

  .t-left {
    display: block;
  }

  .so-icon img {
    height: 60px;
  }
}

@media screen and (max-width:420px) {
  .so-icon img {
    height: 50px;
  }

  #logo {
    height: 50px;
    width: 160px;
  }
}

@media screen and (max-width:345px) {
  .so-icon img {
    height: 40px;
  }

  #logo {
    height: 40px;
    width: 125px;
  }
}



/* navigation */
.navbar {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
}

.navbar .navbar-brand img {
  width: 270px;
  height: 80px;
}

.navbar .navbar-light .navbar-toggler {
  color: #111 !important;
}

.navbar-toggler {
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

.navbar .nav-link {
  margin-right: 10px;
}

.menu {
  position: relative;
}

.menu::after {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url('../images/menu.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.5em;
  height: 1.5em;

}

.nav-light {
  background-color: #FFFFFF;
}

.nav-item .info {

  color: var(--heading-color);
  font-size: 18px;
  position: relative;
  font-weight: 700;
}

.abtsec {
  width: 100%;
  overflow: hidden;
}

.nav-item .info:hover::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: 7px;
  left: 8px;
  background-color: var(--heading-color);
  display: block;
  transition: all 0.3s ease-in-out 0s;
}

.dropdown-menu {
  border-top: 5px solid var(--heading-color);
}

.dropdown-menu .dropdown-item {
  color: var(--heading-color);
  transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--heading-color);
  color: #fff;
}

/* carousel */
.pre-1 {
  font-size: 29px;
  color: #fff;
}

.next-1 {
  font-size: 29px;
  color: #fff;
}

.log {
  margin-bottom: 30px;
}

/* about sectin */


.ab-head {
  margin-bottom: 42px;
}

.ab-eff {
  position: relative;
  margin: 0 auto;
  width: 200px;
}

.ab-eff1 {
  width: 290px;
}

.ab-eff2 {
  width: 240px;
}

.ab-eff3 {
  width: 225px;
}

.ab-eff h2 {
  font-size: 32px;
  color: var(--heading-color);
  font-weight: bold;
  text-align: center;
}

.ab-eff h2::before {
  position: absolute;
  content: ' ';
  border: 1px solid var(--heading-color);
  width: 24px;
  top: 50%;
  left: -12px;
  margin: 0 auto;
}

.ab-eff h2::after {
  position: absolute;
  content: "";
  border: 1px solid var(--heading-color);
  width: 24px;
  top: 50%;
  right: -12px;
}

.ab-eff h2 span::before {
  position: absolute;
  content: ' ';
  border: 1px solid var(--heading-color);
  height: 20px;
  top: 25%;
  left: 12px;
  margin: 0 auto;
}

.ab-eff h2 span::after {
  position: absolute;
  content: "";
  border: 1px solid var(--heading-color);
  height: 20px;
  top: 25%;
  right: 12px;
}

.about-con p {
  text-align: justify;
  font-size: 16px;
  margin: 10px 0;
}

.btn-2 {
  background-color: var(--heading-color);
  border: 1px solid transparent;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 8px 8px 4px #999;
}

.btn-2:hover {
  color: #fff;
}

.btn-2:active {
  box-shadow: 5px 5px 2px #666;
  transform: translate(6px, 4px);
}

.pro-1 h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--heading-color);

}

.pro-1 p {
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 500;
}

.main-pro {
  border: 5px solid var(--heading-color);
  min-height: 195px;
  border-radius: 10px;
}

.icon-png {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  background-color: var(--heading-color);


}

.icon-png img {
  padding: 10px;
}

.cont-pro h4 {
  font-size: 20px;
  font-weight: bold;

  color: var(--para-color);
  padding-top: 30px;
}

.cont-pro p {
  font-weight: 400;
  font-size: 15px;
}

.div-hi h3 {
  font-size: 41px;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 37px;
}

.serv-sec {
  background-size: cover;
  background-repeat: no-repeat;
}

.servi-main {
  background-color: #FFFFFF;
  margin-bottom: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.img-sec img {
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out;


}

/* counter start */
.counting-head {
  padding: 60px 0;
  background: var(--heading-color);
  margin: 40px 0;
}

.counting-head i {
  font-size: 50px;
  color: #fff;
}

.counting-head .aa {
  margin: 10px;
  border: 3px dotted #fff;
  padding: 20px;
}

.counting-head span {
  color: #E6E6E6;
  font-size: 60px;
}

.counting-head p {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 10px;
}

/* counter end */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ testimonial start */
.testimonial {
  padding: 50px 0;
}

.testimonial h2 a img {
  width: 50px;
}

.testimonial .testimonial-head {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 20px;
  margin: 30px 0;
  min-height: 250px;
}

.testimonial .testimonial-head i {
  color: #F8B805;
}

.testimonial .testimonial-head p {
  font-size: 20px;
  margin-top: 20px;
}

.testimonial .testimonial-head h3 {
  color: var(--blue);
  font-size: 18px;
  text-transform: uppercase;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ testimonial end */


.img-sec img:hover {
  transform: translateY(8px);
}

.serv-con h4 {
  font-size: 20px;
  font-weight: bold;
  color: var(--heading-color);
  margin-top: 10px;
  margin-bottom: 10px;
}

.serv-con .pest {
  text-decoration: none;
  font-size: 14px;
  color: var(--para-color);
  font-weight: 400;

}

.serv-con .view {
  font-size: 16px;
  font-weight: bold;
  color: var(--heading-color);
  text-decoration: none;

}

.per-3 {
  background: #FFF;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.rating-box {
  width: 140px;
  height: 140px;
  margin: auto;
  background: var(--heading-color);
  color: #fff;

}

.rating-box>h1 {
  font-size: 50px;
  font-weight: bold;
}

.rating-box>h6 {
  font-size: 20px;
  font-weight: bold;
}

.start-act {
  color: #111;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
}

.start-act:hover {
  color: var(--heading-color);
}

.inactive {
  color: #e1e1e1;
}

td {
  padding-top: 6px;
  padding-bottom: 6px;
}

td:last-child {
  padding-bottom: 0 !important;
}

.rating-bar {
  width: 300px;
  padding: 0 10px;
}

.bar-container {
  width: 100%;
  background-color: #e1e1e1;
  text-align: center;
}

.bar {
  height: 16px;

}

.bar-5 {
  width: 70%;
  background: var(--heading-color);
}

.bar-4 {
  width: 40%;
  background: var(--heading-color);
}

.rat-1 h3 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.bar-3 {
  width: 20%;
  background: var(--heading-color);
}

.bar-2 {
  width: 10%;
  background: var(--heading-color);
}

.bar-1 {
  width: 2%;
  background: var(--heading-color);
}

.rating-lable {
  font-size: 14px;
  font-weight: bold;
}

.rating-img {
  overflow: hidden;
  border: 5px solid var(--heading-color);

}

.rating-img img {
  transition: .5s;

}

.rating-img:hover img {
  transform: scale(1.1);

}

.client-main-heading h3 {
  font-weight: 800;
  position: relative;
  color: var(--heading-color);

}

.main-client {
  margin: 0px 0px 39px 0px;
  padding: 29px;
  border-radius: 5px 40px 40px 40px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
  position: relative;
  overflow: hidden;
}

.main-client::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--heading-color);
  z-index: -1;
  top: -56px;
  left: -55px;

}

.content-client {
  margin-left: 26px;
  margin-top: 45px;
}

.name-rating {
  margin-left: 12%;
  margin-top: 19px;
}

.name-rating h3 {
  font-weight: bold;
  font-size: 17px;
}

.name-rating .name-1 {
  color: var(--heading-color);
  font-weight: 400;
}

.img-pro {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: var(--heading-color);
  position: absolute;
  top: 8px;
  left: 13px;
}

.img-pro img {
  border-radius: 100%;
}

.cir-btn {
  color: var(--heading-color);
}

.carousel-indicators {
  bottom: -37px !important;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--heading-color) !important;
  border-radius: 100%;
  width: 10px !important;
  height: 10px !important;
}

@media screen and (max-width:991px) {
  .name-rating {
    margin-left: 18%;
    margin-top: 19px;
  }

  .main-client::before {
    top: -63px;
    left: -61px;

  }

  .img-pro {
    top: 3px;
    left: 14px;
  }

  .so {
    margin-top: 27px;
  }

}

@media screen and (max-width: 768px) {
  .name-rating {
    margin-left: 30%;
    margin-top: 19px;
  }

  .top-cont {}
}

@media screen and (max-width: 454px) {
  .name-rating {
    margin-left: 35%;
    margin-top: 19px;
  }

  .main-client::before {
    top: -84px;
    left: -80px;
  }

  .img-pro {
    top: 12px;
    left: 36px;
  }
}

@media screen and (max-width: 395px) {
  .img-pro {
    display: none !important;
  }
}

/* end */
/* footer bottom */
.footer-section-end {

  background-color: var(--heading-color);
}

.trade-link {
  text-decoration: none;
  color: #fff;
}

.trade-link:hover {
  color: orangered !important;
}

.footer-section-1 {
  color: #fff;
}

.footer-section-1 a:hover {
  color: #111;
}

.foot-para {
  margin-top: 0;
  margin-bottom: 0 !important;
  padding: 7px 0;
}

.lang {
  padding: 7px 0;
}

.language {
  color: #fff;
  text-decoration: none;

}

.company-1 {
  font-size: 14px;
  color: #fff;
}

.footer-1 {
  background: var(--heading-color);
  border-bottom: 1px solid #6c757d;
}

.footer-2 {
  background: var(--heading-color);
}

.footer-2 .oracle-logo {
  width: 250px;
}

.footer-2 .footer-para {
  margin-top: 20px;
}

.footer-2 .social-icons a i {
  font-size: 32px;
  margin: 0 6px;
  color: #fff;
}

.footer-2 .social-icons a i:hover {
  color: #fff;
}

.footer-2 .footer-heading {
  color: #fff;
}

.footer-2 p a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
}

.footer-2 p a:hover {
  color: #fff;
}

.foot-con ul li a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
}

.foot-con ul li a:hover {
  color: #fff;

}

.foot-con ul li i {
  color: #fff;
  background-color: var(--heading-color);
  border-radius: 50%;
  padding: 7px;
  font-size: 15px;
}

.fo-item li {
  list-style: none;
  display: inline-block;
  padding-left: 12px;
  padding-right: 12px;
}

.fo-item a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
}

.para-foot {
  color: #fff;
}

.para-foot a {
  text-decoration: none;
  color: #fff;
  padding: 10px 3px;
  font-size: 14px;
}

.para-foot h2 {
  padding-bottom: 15px;
  color: var(--heading-color);
}

.para-foot a:hover {
  color: #3d83df;
  text-decoration: underline;

}

@media screen and (min-width:480px) and (max-width:767px) {
  .para-foot img {
    width: 60%;
  }
}

@media screen and (max-width:330px) {
  .mail-foot {
    display: none;
  }
}

.foot-con ul {
  list-style: none;
  padding: 0;

}

.foot-con ul li {
  line-height: 30px;
  padding: 5px;
}


.footer-3 .aa {
  border-right: 2px solid #000;
}

.icon-foot {
  margin-right: 11px;
}

.icon-foot i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--heading-color);
  color: #fff;
  padding: 10px;
  font-size: 18px;
  text-align: center;
}

.fo-1 a {
  color: var(--heading-color);

  text-decoration: none;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
}

.fo-2 a {
  color: var(--heading-color);
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
}

.fo-1 span {
  color: var(--heading-color);
  font-weight: bold;
  text-align: justify;
  font-size: 15px;
}

.bo-icon ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.bo-icon ul li {
  padding: 0 12px;

}

.bo-icon ul li a i:hover {
  transform: translateY(-9px);


  transition-duration: 0.2s;

}

.bo-icon h4 {
  color: #fff;
}

.city01 ul li {
  padding: 0 10px;
  display: inline-flex;
  color: #fff;
  border-right: 2px solid #fff;
  margin-top: 10px;

}

@media screen and (max-width: 380px) {
  .bo-icon h4 {
    display: none;
  }

  .bo-icon ul li {
    padding: 0 6px;

  }
}

@media screen and (max-width:512px) {
  .fo-item li {

    padding: 0 10px;
  }

  .fo-item a {

    font-size: 10px;
  }
}

@media screen and (max-width:992px) {
  .footer-3 .aa {
    border-right: none;
  }
}

/* WHATSAPP ICON SECTION */

.whatsapp-icon a {
  position: fixed;
  bottom: 140px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  color: white;
  text-decoration: none;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.whatsapp-icon a i {
  font-size: 40px;
}

.icon.active {
  opacity: 1;
}

.whatsapp-icon a:hover {
  color: #fff;
}


/* phone-icon */

.phone-icon a {
  position: fixed;
  bottom: 70px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: rgb(0, 132, 255);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 30px;
  color: white;
  text-decoration: none;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.phone-icon a i {
  font-size: 30px;
  color: #fff;
}

.phone-icon a:hover {
  color: #fff;
}

/* our clients */
.ou-cl h1 {
  font-weight: bold;
  font-size: 36px;
}

/* service start section */
/* ----------------------------------------------services pageo-------------------------------------------------------- */

.serv-banner {
  background: linear-gradient(rgba(57, 58, 57, 0.863), rgba(0, 0, 0, 0.692)), url(../images/banner-service.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 220px;
}

.serv-cont {
  padding-top: 30px;
  padding-bottom: 30px;
}

.serv-cont h4 {
  color: #fff;
  font-weight: bold;
  font-size: 35px;
}

@media screen and (max-width:455px) {
  .serv-cont {
    padding-top: 0px;
    padding-bottom: 10px;
  }
}

.sidebar {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 12.036px 15.973px 80px 0px rgb(37 59 112 / 12%);
  padding: 30px 20px;
}

.sidebar ul {
  padding: 0;
}

.sidebar h3 {
  font-size: 26px;
  font-weight: bold;
}

.list li {

  list-style-type: none;
  padding: 11px 0;
  border-bottom: 1px solid #e5e5e5;
}

.list li:hover {
  background: var(--heading-color);
  color: #fff;
}

.list li:hover a {
  color: #fff;
}

.list li a {

  text-decoration: none;
  font-size: 18px;
  color: #111;
  padding: 12px;
}

.activ {
  background-color: var(--heading-color);
  color: #fff;
  position: relative;
}

.activ a {
  color: #fff !important;
  margin-left: 10px;
}

.list .activ::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 8px;
  font-size: 23px;
}

.ter-content img {
  margin-bottom: 20px;
}

.ter-content p {
  font-size: 20px;
}

.ter-content h4 {
  font-weight: bold;
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.extra-img-service {
  padding: 20px 0 40px;
}

.extra-img-service img {
  border-radius: 10px;
}

.extra-service {
  padding: 50px 0;
}

.extra-service h3 {
  text-align: center;
  color: var(--heading-color);
  font-weight: 600;
}

.extra-service p {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: -50px;
  margin-top: .125rem;
}

.extra-service .extra-service-head {
  background: var(--heading-color);
  text-align: center;
}


.extra-service .extra-service-head a {
  display: block;
  color: #fff;
  padding: 10px;
  font-size: 18px;
}

.why-termite h4 {
  font-size: 20px;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.oder-list {
  margin-left: 21px;
  margin-top: 33px;
}

.oder-list li p {
  font-size: 15px;
}

/* service end section */
/* contact start */

.con-banner {
  background: linear-gradient(rgba(12, 12, 12, 0.644), rgba(1, 3, 20, 0.836)), url('../images/contact_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.contact-cont {
  padding-top: 30px;
  padding-bottom: 30px;
}

.contact-cont h4 {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}

/* breadcrumb start */
.breadcrumb-sec {
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.767), rgba(42, 42, 43, 0.904)), url(../images/banner/all-banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 30px;
  border-bottom: 5px dotted #999;
}

.breadcrumb-sec .breadcrumb .breadcrumb-item a {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.breadcrumb-sec .brd-title {
  color: #fff;
  font-size: 40px;
  margin-bottom: 0;
}

/* breadcrumb end */
.page_header_bottom ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 15px 0;
  font-size: 18px;

}

.sub_title li {
  color: var(--heading-color);
  padding-left: 6px;
}

.sub_title li a {
  color: #fff;
}

.sub_title li a:hover {
  color: var(--heading-color);
}

.cont-top-sec {

  padding: 20px 0;
}

.cont-card {
  border: 2px solid rgba(0, 0, 0, 0.11);
  position: relative;
  min-height: 214px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cont-card:hover i {
  border: 4px solid var(--heading-color);
  background-color: #fff;
  color: var(--heading-color);
  transition: 0.3s;
}

.cont-card:hover {
  border: 2px solid var(--heading-color);
  transform: translateY(-2px);
}

@media screen and (max-width:575px) {
  .cont-card {
    margin-left: 20px !important;

  }
}

.cont-card p a {
  font-size: 17px;
  color: #000;
}

.cont-card i {
  color: #fff;
  font-size: 23px;
  background-color: var(--heading-color);
  padding: 19px;
  border-radius: 50%;
}

.cont-card div {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(-50%, -50%);
}

.cont-card p {
  display: block;

  align-items: center;
}

.contact-box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-box h1 {
  color: var(--heading-color);
}

.contact-box input {
  padding: 17px 10px;
}

.con-but button {
  background-color: var(--heading-color);
  color: #fff;
  border: 2px solid var(--heading-color) !important;
}

.con-but button:hover {
  background-color: #fff;
  color: var(--heading-color);
  border: 2px solid var(--heading-color) !important;
}

.contact-box input:hover,
.contact-box textarea:hover {
  border: 1px solid var(--heading-color);
}

.prof-ban {
  background: linear-gradient(rgba(0, 0, 0, 0.767), rgba(42, 42, 43, 0.904)), url(../images/banner/all-banner.avif);
  background-attachment: fixed;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 270px;
}

.abt-effd {
  padding: 30px 0;
}

.abt-head h1 {
  color: var(--heading-color);
  font-weight: 600;
}

.para-abt h3 {
  color: var(--heading-color);
  font-weight: 600;
}

.abt-icon p i {
  color: var(--heading-color);
}

/* end */
/* principlee */
.work_services_img i {
  font-size: 80px;
  color: var(--heading-color);
  border: 1px solid transparent;
  background-color: #f6f7f8;
  border-radius: 61% 39% 52% 48% / 44% 59% 41% 56%;
  padding: 60px;
  box-shadow: 4px 4px 8px var(--heading-color);
  margin: 20px 0;
  animation: water linear 1s infinite;
}

@keyframes water {

  0%,
  100% {
    border-radius: 61% 39% 52% 48% / 44% 59% 41% 56%;
  }

  50% {
    transform: rotate(5deg);
    border-radius: 44% 59% 41% 56% / 61% 39% 52% 48%;
  }
}

.work_services_box {
  min-height: 20px;
}

.pst_bottompadder10 a {
  color: #000;
  text-transform: capitalize;
  font-weight: 600;

}

.pst_bottompadder100 {
  font-weight: 600;
  text-align: justify !important;
  color: #353333;
}

.work_services_img {
  padding-bottom: 30px;
  width: 100%;
  height: 300px;
}

.pst_bottompadder50 h1 {
  color: var(--heading-color);
  font-weight: 700;
  padding: 15px 0;
}

.sp_choose_heading_main_wrapper {
  line-height: 100px;
}

/* end */
.certi-sec h3 {
  font-weight: 700;
  color: var(--heading-color);
}

.black-sec {
  background: rgba(0, 0, 0, 0.854);
  background-position: center;
  background-size: cover;
  padding: 100px;
}

.black-sec h1 {
  color: #fff;
  font-weight: 800;
  font-size: 45px;

}

.black-sec p {
  color: rgb(163, 163, 163);
  padding-top: 10px;
  font-weight: 800;
  font-size: 20px;
}

.card-sec i {
  color: #fff;
  font-size: 30px;
  background-color: var(--heading-color);
  border-radius: 50%;
  padding: 25px;
}

.card-sec span {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  font-size: 45px;
  padding-top: 15px;
}

@media screen and (max-width:340px) {
  .card-sec span {
    font-size: 35px;
  }
}

@media screen and (max-width:307px) {
  .card-sec span {
    font-size: 22px;
  }
}


/* client start */
.client-seec {
  padding: 40px 0;
}

.client-seec .client-img {
  padding: 20px;
}

.client-seec .client-img img {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* service enquiry start */
.service-form-oris {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  margin-top: 40px;
}

.service-form-oris form {}

.service-form-oris form input,
.service-form-oris form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 5px 10px;
  outline: none;
}

.service-form-oris form button {
  background: var(--heading-color);
  color: #fff;
  padding: 10px;
  outline: none;
  border: none;
  width: 100%;
}

/* service enquiry end */