*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-collapse: separate;
}
::placeholder {
  font-family: "Poppins", sans-serif;
}
:root {
  font-family: "Poppins", sans-serif;
}
* {
  scroll-margin-top: 200px;
}
body {
  /* scroll-margin-top: 200px; */
}
html {
}
/* //container */

.maxWidth {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid red;
}

.width {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/* // colors  */
:root {
  --first: #ee5a2a;
  --second: #1db2ad;
  --white: #fff;
  --lg_1: linear-gradient(
    190deg,
    rgba(0, 95, 138, 1) 37%,
    rgba(29, 178, 173, 1) 100%
  );
  --black: #000;
  --black-1: #fafafa;
  --black-2: #f0f0f0;
  --black-3: #e6e6e6;
  --black-4: #dbdbdb;
  --black-5: #d1d1d1;
  --black-6: #c7c7c7;
  --black-7: #bdbdbd;
  --black-8: #b3b3b3;
  --black-9: #a8a8a8;
  --black-10: #9e9e9e;
  --black-11: #949494;
  --black-12: #8a8a8a;
  --black-13: #808080;
  --black-14: #757575;
  --black-15: #6b6b6b;
  --black-16: #616161;
  --black-17: #4d4d4d;
  --black-18: #424242;
  --black-19: #383838;
  --black-20: #2e2e2e;
  --black-21: #242424;
  --mx_width: 1600px;
  --m_height: 20px;
  --bg: #f2f2f2;
}
/* @link https://utopia.fyi/type/calculator?c=320,15,1.09,1770,16.7,1.1,10,10,650-1280-400&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */

:root {
  --step--10: clamp(0.396rem, 0.3946rem + 0.0071vi, 0.4024rem);
  --step--9: clamp(0.4317rem, 0.4292rem + 0.0121vi, 0.4427rem);
  --step--8: clamp(0.4705rem, 0.4669rem + 0.0181vi, 0.4869rem);
  --step--7: clamp(0.5128rem, 0.5078rem + 0.0251vi, 0.5356rem);
  --step--6: clamp(0.559rem, 0.5523rem + 0.0333vi, 0.5892rem);
  --step--5: clamp(0.6093rem, 0.6008rem + 0.0428vi, 0.6481rem);
  --step--4: clamp(0.6641rem, 0.6534rem + 0.0538vi, 0.7129rem);
  --step--3: clamp(0.7239rem, 0.7106rem + 0.0665vi, 0.7842rem);
  --step--2: clamp(0.7891rem, 0.7728rem + 0.0811vi, 0.8626rem);
  --step--1: clamp(0.8601rem, 0.8405rem + 0.098vi, 0.9489rem);
  --step-0: clamp(0.9375rem, 0.9141rem + 0.1172vi, 1.0438rem);
  --step-1: clamp(1.0219rem, 0.994rem + 0.1393vi, 1.1481rem);
  --step-2: clamp(1.1138rem, 1.0809rem + 0.1645vi, 1.2629rem);
  --step-3: clamp(1.2141rem, 1.1754rem + 0.1933vi, 1.3892rem);
  --step-4: clamp(1.3234rem, 1.2782rem + 0.226vi, 1.5282rem);
  --step-5: clamp(1.4425rem, 1.3898rem + 0.2632vi, 1.681rem);
  --step-6: clamp(1.5723rem, 1.5112rem + 0.3054vi, 1.8491rem);
  --step-7: clamp(1.7138rem, 1.6431rem + 0.3533vi, 2.034rem);
  --step-8: clamp(1.868rem, 1.7865rem + 0.4076vi, 2.2374rem);
  --step-9: clamp(2.0361rem, 1.9424rem + 0.4689vi, 2.4611rem);
  --step-10: clamp(2.2194rem, 2.1117rem + 0.5383vi, 2.7072rem);
}
html {
  scroll-behavior: smooth;
}
/* //images  */
img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  cursor: pointer;
  display: block;
}

/* //margins  */
.margin {
  margin: 70px 0;
}

.marginTop {
  margin-top: 70px;
}

.marginBottom {
  margin-bottom: 70px;
}
@media (max-width: 650px) {
  .width {
    width: 95%;
  }
  /* //margins  */
  .margin {
    margin: 35px 0;
  }

  .marginTop {
    margin-top: 35px;
  }

  .marginBottom {
    margin-bottom: 35px;
  }
}
/* //Header items Start */
header {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.header_items {
  /* border: 2px solid red; */
  padding: 10px 0;
  display: grid;
  grid-template-columns: 200px calc(100% - 200px);

  /* display: none; */
}

.header_logo {
  display: flex;
  align-items: center;
}
.header_logo img {
  width: 200px;
}
.header_logo p {
  color: var(--first);
  font-size: var(--step-5);
}
.navigation {
  display: grid;
  grid-template-columns: 80% 20%;
  align-items: center;
}

.navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.navigation li {
  font-size: var(--step--1);
  font-weight: 500;
}
.navigation li a {
  color: var(--first);
}
.navigation > div > a {
  height: fit-content;
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  border: 1px solid var(--black-14);
  padding: 10px 15px;
  border-radius: 0.5rem;
  font-size: var(--step-0);
  transition: 0.3s;
}
.navigation > div > a:hover {
  color: var(--white);
  background-color: var(--first);
}
.navigation a p {
  display: inline;
}
.navigation a i {
  color: var(--first);
}
.navigation a:hover i {
  color: var(--white);
}
.header_hamberger {
  display: none;
}
@media (max-width: 650px) {
  .header_logo {
    display: grid;
    place-items: center;
  }
  .header_logo img {
    width: 100%;
  }
  .header_items {
    overflow: hidden;
    padding: 0;
    display: grid;
    justify-content: space-between;
    grid-template-columns: 35% 55%;
  }
  .navigation {
    display: flex;
    flex-direction: row-reverse;
  }

  .navigation > div > a {
    padding: 10px 5px;
    border-radius: 5px;
    font-size: var(--step-0);
  }
  .navigation ul {
    display: none;
  }
  .header_hamberger {
    padding: 20px;
    display: block;
  }
  .header_hamberger i {
    font-size: var(--step-5);
  }
}

@media (max-width: 400px) {
  .navigation > div > a {
    border: none;
  }
  .navigation > div > a i {
    font-size: var(--step-5);
  }
  .navigation > div > a p {
    /* display: none; */
  }
}
/* //Header items End */
/* //sidebar items start */
.sidebar_wrapper {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  transition: 0.5s;
  visibility: hidden;
}

.sidebar_wrapper_active {
  width: 100%;
  visibility: visible;
}

.sidebar_wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
}

.sidebar_bg {
  background-color: var(--first);
  opacity: 0.5;
}

.sidebar_content {
  /* border: 2px solid red; */
  background-color: var(--white);
  padding: 20px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}
.sidebar_content i {
  color: var(--first);
  font-size: var(--step-5);
}
.sidebar_content ul {
  list-style: none;
}
.sidebar_content ul li {
  color: var(--first);
  font-size: var(--step-1);

  font-weight: bold;
  margin-bottom: 15px;
}
/* //sidebar items End */

/* //Banner items Start */
.banner {
  background: url("./public/assets/images/banner/1520-541.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
  position: relative;
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner_items {
  display: flex;
  gap: 1%;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.banner_items > section {
  width: 45%;
}
.header_content > div h1 {
  /* border: 2px solid red; */
  font-size: var(--step-10);
  font-weight: 700;
  margin: 70px 0;
  color: var(--white);
}
.header_content ul {
  /* border: 2px solid red; */
  list-style-position: inside;
  /* margin: 20px 0; */
}
.header_content ul li {
  font-size: var(--step-2);
  font-weight: 500;
  color: var(--white);
}
/* .typed {
  display: flex;
  align-items: center;
  min-height: calc(var(--step-10) * 1.6);
  max-height: calc(var(--step-10) * 1.6);
  margin-top: -10px;
} */

/* .typed span {
  border: 3px solid var(--first);
  display: block;
  margin-left: var(--step-2);
  height: calc(var(--step-10) * 1.6);
} */

.cards_items p {
  font-size: var(--step-0);
  line-height: calc(var(--step-0) + 7px);
  font-weight: 500;
}

@media (max-width: 650px) {
  .banner_items {
    flex-direction: column;
  }
  .banner_items > section {
    width: 100%;
  }
  .header_content ul {
    margin-top: -60px;
  }
}
/* //Banner items End */

/* form */
.form_wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}
.form {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 50px;
  background-color: var(--white);
  border-top: 5px solid var(--first);
}

.form p {
  text-align: center;
}

.form_title p {
}
.form_title span {
  display: block;
  font-size: var(--step-4);
  font-weight: bold;
}

.form div {
  margin: 10px 0px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border-radius: 5px;
  padding: 10px 10px 10px 15px;
  font-size: 15px;
  outline: none;
  border: 1px solid var(--black-10);
  color: var(--black-15);
}
.form select option {
  color: var(--black-15);
}
.form textarea {
  height: 100px;
}
.form input[type="submit"] {
  font-weight: bold;
  font-size: var(--step-0);
  cursor: pointer;
  background-color: var(--first);
  color: var(--white);
  width: fit-content;
  margin: 0 auto;
  display: block;
}
.form select {
  width: 100%;
}
@media (max-width: 650px) {
  .form {
    width: 90%;
  }
}

/* SERVICES START */
.rest_title {
  background-color: var(--first);
  padding: 30px 0px 200px;
}
.rest_title h2 {
  font-size: var(--step-7);
  color: var(--black);
  text-align: center;
  color: var(--white);
  padding: 30px 0;
}
.rest_title p {
  color: var(--first);
  text-align: center;
  color: var(--white);
}

.rest_items {
  margin-top: -150px;
  background-color: var(--white);
  padding: 30px 0px 0px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.rest_items > article {
  background-color: var(--first);
  width: 31%;
  margin-bottom: 60px;
}
.rest_items > article > div {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.rest_items img {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s;
}
.rest_items img:hover {
  transform: scale(1.5);
  opacity: 0.5;
}
.rest_items h3 {
  font-size: var(--step-1);
  font-weight: 600;
  margin: 10px 0px 10px;
  padding: 10px;
  text-align: center;
  z-index: 2;
  color: var(--white);
}

@media (max-width: 650px) {
  .rest_items {
    flex-direction: column;
    width: 100%;
  }
  .rest_items > article {
    width: 90%;
  }
}
/* SERVICES END */

/* pest control  */
.pest_title {
  background-color: var(--first);
  padding: 30px 0px 200px;
}
.pest_title h2 {
  font-size: var(--step-7);
  color: var(--black);
  text-align: center;
  color: var(--white);
  padding: 30px 0;
}
.pest_title p {
  color: var(--first);
  text-align: center;
  color: var(--white);
}
.pest_item {
  margin-top: -150px;
  background-color: var(--white);
  padding: 30px 0px 0px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.pest_item > article {
  width: 31%;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.pest_item img {
  width: 100%;
}
.content {
  /* border: 2px solid blue; */
  color: var(--white);
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.pest_item h3 {
  font-size: var(--step-1);
  padding: 10px 0;
}
.pest_item p {
}
@media (max-width: 650px) {
  .pest_item {
    flex-direction: column;
    /* width: 100%; */
  }
  .pest_item > article {
    width: 90%;
  }
}
/* pest control end  */

/* //counters start  USP*/
.counters {
  /* border: 2px solid red; */
  background-image: url(./public/assets/images/services/img1.jpg);
  padding: 70px 0px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.counters_items {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}
.counters_items > article {
  width: 23%;
}
.counters_items h3 {
  font-size: calc(var(--step-10) + var(--step-0));
  color: var(--white);
}
.counters_items p {
  margin-top: 5px;
  font-size: var(--step-3);
  color: var(--black-1);
  font-weight: 600;
}

.counter_item > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.counter_item span {
  color: var(--white);
  font-size: var(--step-8);
  font-weight: bold;
}
@media (max-width: 650px) {
  .counter_item > div {
    justify-content: center;
  }
  .counters_items {
    /* border: 2px solid red; */
    flex-wrap: wrap;
    text-align: center;
  }
  .counters_items h3 {
    font-size: var(--step-10);
    color: var(--white);
  }
  .counters_items > article {
    width: 48%;
    margin-bottom: 30px;
  }
}
/* //counters end USP */

/* cards items  start*/
.card_item_wrapper {
  background-color: var(--black-2);
}
.card_item {
  padding: 70px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 2%;
}
.card_item > article {
  width: 23%;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  text-align: center;
}
.card_item img {
  border: 5px solid var(--first);
  border-radius: 50%;
  padding: 30px;
  width: 50%;
  margin: 20px auto;
}
.card_item img:hover {
  border: 5px solid var(--second);
}
.card_item h3 {
  font-size: var(--step-1);
  padding: 10px 0;
}
.card_item p {
  padding: 10px;
}
@media (max-width: 650px) {
  .card_item {
    flex-direction: column;
  }
  .card_item > article {
    width: 100%;
  }
}
/* cards iten end */

/* swiper start */

.testimonial_items {
  position: relative;
  margin-top: 30px;
}

.testimonialsSwiper {
  width: 80%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.testimonials_btn_container {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}
.testimonials_btn_container > div {
  width: 30px;
  height: 30px;
  background-color: var(--black-17);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.testimonials_btn_container i {
  color: var(--white);
}
.testimonials .swiper-slide {
  padding: 20px 0px;
  height: auto;
}
.testimonial_item_content img {
  /* border: 2px solid red; */
  border: 1px solid var(--black-10);
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 650px) {
  .swiper-slide-next .testimonial_swiper_item {
  }
}
/* //testimonial end  */

/* //about  */
.partners {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  gap: 2%;
}
.partners_content h2 {
  font-size: var(--step-7);
  color: var(--black-20);
}
.partners_content p {
  padding: 10px 0;
  color: var(--black-16);
}
.partners_items h2 {
  font-size: var(--step-3);
  color: var(--black-20);
  padding: 10px 0;
}
.partners_items ul {
  color: var(--black-16);
  list-style-position: inside;
  list-style-type: square;
}
.partners_items ul li {
  line-height: 30px;
}
.partners_img {
}

.partners_content a {
  background-color: var(--first);
  font-size: var(--step-0);
  color: var(--white);
  width: fit-content;
  padding: 1rem 2rem;
  border-radius: 0.2rem;
  margin: 0 auto;
}
.partners_items {
  margin: 30px 0px;
}

.partner_item_row {
  /* border: 2px solid red; */
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  justify-content: space-between;
  border-bottom: 1px solid var(--black-15);
}

.partner_item_row:last-child {
  border-bottom: none;
}

.partner_item_row > section {
  width: 19%;
  border-right: 1px solid var(--black-15);
  padding-bottom: 10px;
}

.partner_item_row section:last-child {
  border: none;
}

.partners_items img {
  width: 80%;
  object-fit: contain;
  margin: 0 auto;
}

.partners_items img {
  filter: grayscale(100%);
}

.partners_items img:hover {
  filter: grayscale(0);
}
@media (max-width: 650px) {
  .partners {
    display: flex;
    flex-direction: column;
  }
  .partners_content h2 {
    font-size: var(--step-5);
  }
}

/* //partners  */

/* footer */
.locations {
  background-color: var(--black);
  color: var(--black-1);
  margin-top: 20px;
}

.footer_container {
  display: grid;
  grid-template-columns: 30% 30% 35%;
  justify-content: space-between;
  /* gap: 2%; */
  padding: 50px 0;
  width: 80%;
  margin: 0 auto;
}
.footer_content {
  color: var(--black-7);
}
.footer_content h2 {
  padding: 20px 0;
  font-size: var(--step-2);
  font-weight: 600;
}
.footer_content p {
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.5;
}
.footer_content span {
  color: var(--black-7);
}
.footer_content a {
  color: var(--white);
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
}
.footer_icons {
  display: flex;
  margin-top: 10px;
}

.footer_icons .icons {
  margin-right: 10px;
  font-size: var(--step-4);
}

.footer_icons .icons a {
  color: inherit;
}
.footer_content iframe {
  width: 100%;
  height: 200px;
}
.footer_content a:hover {
  color: #007bff;
}
@media (max-width: 650px) {
  .locations {
    margin-bottom: 20px;
  }
  .footer_icons {
    gap: 2%;
  }
  .footer_container {
    display: flex;
    flex-direction: column;
  }
}

/* //thank you  */
.thank_you {
  height: 60vh;

  display: flex;
  align-items: center;
  justify-content: center;
}
.thank_you h1 {
  font-size: var(--step-10);
  color: var(--first);
}

/* //mobile sidebar  */
.mobile-bottom-container {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: none;
  z-index: 999;
}
.mobile-bottom {
  display: flex;
}
.mobile-bottom > div {
  /* flex-basis: 50%; */
  height: 70px;
  padding: 5px;
}
.mobile-bottom-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-bottom-img {
  /* border: 2px solid red; */
  flex: 2;
  text-align: center;
}
.mobile-bottom-img img {
  width: 40%;
  margin: 0 90%;
}
.mobile-bottom-text {
  flex: 5;
  text-align: left;
  color: white;
  font-weight: bold;
  font-size: 15px;
}
.bottomcall {
  background-color: #43bcc4;
}

.bottomwhatsapp {
  background-color: #128c7e;
}
.mobile-bottom-text a {
  /* border: 2px solid red; */
  color: var(--white);
  width: fit-content;
  margin: 0 20%;
}
@media (max-width: 600px) {
  .mobile-bottom-container {
    display: block;
  }
}

/* //sidebar  */

#mysidenavassam a {
  /* border: 2px solid red; */
  margin-top: 15%;
  position: fixed;
  right: -220px;
  transition: 0.3s;
  padding: 15px;
  width: 280px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  border-radius: 0 5px 5px 0;
  z-index: 9999;

  font-weight: bold;
}
#mysidenavassam i {
  text-align: left !important;
  margin-right: 25px;
  font-size: 30px;
}
#mysidenavassam a:hover {
  right: 0;
}

#sidenavphone {
  top: 80px;
  background-color: #2196f3;
}
#sidenavappiontment {
  top: 140px;
  background-color: #128c7e;
}

@media (max-width: 650px) {
  #mysidenavassam {
    display: none;
  }
}
