:root {
  --dialog-display: block;
}

@media (max-width: 766.98px) {
  :root {
    --dialog-display: none;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "cairo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.tooltip-inner {
  background-color: #4caf50 !important; /* green background */
  color: #fff !important; /* white text */
  font-weight: 500;
}

.tooltip.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-right-color: #4caf50 !important;
}

.component-section {
  text-align: center;
  position: relative;
  padding-bottom: 100px;
}
.component-section h1 {
  font-weight: 700;
  margin-bottom: 15px;
}
.component-section p {
  font-size: 18px;
}
.component-section::after {
  content: " ";
  background-color: #fa0204;
  position: absolute;
  width: 200px;
  height: 2px;
  transform: translate(-50%, -50%);
  left: 50%;
  margin-top: 5px;
}

.call-btn {
  background-color: #fa0204;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  animation: pulse 1.5s infinite;
  transition: background-color 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 #fa0204;
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}
@keyframes slideShow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  43.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 8;
  min-height: 90px;
  display: flex;
  align-items: center;
  background-color: white;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.header .navbar .container {
  justify-content: space-between !important;
}
.header .navbar .container img {
  max-height: 75px;
}
.header .navbar .container .navbar-toggler {
  border: 2px solid #fa0204;
}
.header .navbar .container .navbar-toggler svg {
  font-size: 25px;
  color: #fa0204;
}
.header .navbar .container .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar .container .nav-list ul {
  display: flex;
  margin: 0;
}
.header .navbar .container .nav-list ul .nav-item {
  position: relative;
  padding-inline: 15px;
}
.header .navbar .container .nav-list ul .nav-item .nav-link {
  font-size: 18px;
  font-weight: 700;
  color: #0d0d0d;
}
.header .navbar .container .nav-list ul .nav-item::after {
  content: " ";
  position: absolute;
  width: calc(100% - 20px);
  height: 2px;
  background-color: #fa0204;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 35px;
  display: none;
}
.header .navbar .container .nav-list ul .nav-item:hover::after {
  display: block;
}
.header .navbar .container .nav-list ul .nav-item.active {
  position: relative;
}
.header .navbar .container .nav-list ul .nav-item.active::after {
  content: " ";
  position: absolute;
  width: calc(100% - 20px);
  height: 2px;
  background-color: #fa0204;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 35px;
  display: block;
}

.side-menu {
  position: fixed;
  background-color: white;
  padding-top: 60px;
  height: 100%;
  width: 0;
  overflow-x: hidden;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: 0.3s;
}
.side-menu img {
  margin-bottom: 40px;
  margin-right: 20px;
  height: 90px;
}
.side-menu .close-btn {
  font-size: 18px;
  position: absolute;
  left: 20px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.431372549);
  top: 20px;
  padding: 1px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.side-menu a {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: black;
  margin-left: 40px;
  margin-right: 10px;
  border-radius: 5px;
}
.side-menu a:hover {
  background-color: #fa0204;
  color: white;
}

.over-lay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 109, 151, 0.3098039216);
  z-index: 999;
}

.hidden {
  display: none;
}

.landing {
  padding-bottom: 30px;
  height: calc(100vh - 90px);
}
.landing .landing-slider {
  position: absolute;
  height: 100%;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.landing .landing-slider > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.landing .landing-slider > img:nth-child(1) {
  animation: slideShow 30s infinite;
}
.landing .landing-slider > img:nth-child(2) {
  animation: slideShow 30s infinite 10s;
}
.landing .landing-slider > img:nth-child(3) {
  animation: slideShow 30s infinite 20s;
}
.landing .landing-slider > img:nth-child(4) {
  animation: slideShow 30s infinite 30s;
}
.landing .landing-slider .slid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.landing .landing-slider .text-content {
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
.landing .landing-text {
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  width: 50%;
}
.landing .landing-text h1 {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .landing .landing-text h1 {
    font-size: 32px;
    right: 20%;
  }
}
.landing .landing-text p {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .landing .landing-text p {
    right: 20%;
  }
}
.landing .landing-text > p:nth-of-type(2) {
  margin-bottom: 40px;
}
.landing .landing-text button {
  padding: 20px 40px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 7px;
  background-color: transparent;
  border: 2px solid #fa0204;
}
.landing .landing-text button a {
  text-decoration: none;
  color: white;
}

.services {
  padding-top: 50px;
  margin-top: 100px;
}
.services .service-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid #ddd;
  padding: 7px 0px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.services .service-item h5 {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.pest-control {
  padding-top: 50px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.pest-control .pest-control-item {
  height: 300px;
  margin-bottom: 50px;
  background-color: #f3f3f3;
  border-radius: 30px;
}
.pest-control .pest-control-item .pest-control-item-icon {
  background-color: rgba(255, 0, 0, 0.2509803922);
  padding: 20px;
  margin: 30px 40px 25px 0px;
  display: inline-block;
  border-radius: 50%;
  font-size: 20px;
  color: #fa0204;
}
@media (max-width: 992px) {
  .pest-control .pest-control-item .pest-control-item-icon {
    margin-bottom: 10px;
  }
}
.pest-control .pest-control-item .pest-control-item-text h3 {
  font-weight: 700;
  padding-right: 40px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .pest-control .pest-control-item .pest-control-item-text h3 {
    margin-bottom: 10px;
  }
}
.pest-control .pest-control-item .pest-control-item-text p {
  font-size: 18px;
  padding-inline: 40px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .pest-control .pest-control-item .pest-control-item-text p {
    margin-bottom: 0px;
  }
}
.pest-control .pest-control-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.choose-us {
  padding-top: 100px;
  padding-bottom: 30px;
  background-image: url("/images/bedbug_slider.jpg");
  background-size: cover;
  min-height: 460px;
}
.choose-us .choose-us-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: 40px;
}
.choose-us .choose-us-title h1 {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .choose-us .choose-us-title h1 {
    font-size: 32px;
  }
}

.choose-us-content {
  margin-top: -120px;
}
.choose-us-content .choose-us-item {
  min-height: 240px;
  background-color: white;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: -2px -1px 10px 7px rgba(0, 0, 0, 0.0901960784);
}
@media (max-width: 992px) {
  .choose-us-content .choose-us-item {
    margin-bottom: 30px;
  }
}
.choose-us-content .choose-us-item span {
  display: inline-block;
  font-size: 40px;
  color: #fa0204;
  margin-bottom: 10px;
}
.choose-us-content .choose-us-item h5 {
  font-weight: 700;
  margin-bottom: 10px;
}
.choose-us-content .choose-us-item p {
  line-height: 25px;
  font-size: 15px;
}

.fqa {
  padding-top: 100px;
  padding-bottom: 30px;
}
.fqa .fqa-item {
  background-color: #f3f3f3;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .fqa .fqa-item {
    margin-bottom: 0px;
    padding: 20px;
  }
}
.fqa .fqa-item .fqa-item-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #fa0204;
  margin-right: 15px;
}
.fqa .fqa-item .fqa-item-title h3 {
  font-weight: 700;
  margin-bottom: 30px;
  padding-right: 10px;
}
@media (max-width: 992px) {
  .fqa .fqa-item .fqa-item-title h3 {
    margin-bottom: 15px;
  }
}
.fqa .fqa-item .fqa-item-content .accordion .accordion-item {
  background-color: #f3f3f3;
  border: none;
}
.fqa .fqa-item .fqa-item-content .accordion .accordion-item .accordion-header {
  padding-bottom: 25px;
}
@media (max-width: 992px) {
  .fqa .fqa-item .fqa-item-content .accordion .accordion-item .accordion-header {
    padding-bottom: 20px;
  }
}
.fqa .fqa-item .fqa-item-content .accordion .accordion-item .accordion-header .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f3f3f3;
  padding: 25px;
  border-radius: 15px;
  font-size: 18px;
  color: #313131;
  border: 1px solid #c2c2c2;
}
@media (max-width: 992px) {
  .fqa .fqa-item .fqa-item-content .accordion .accordion-item .accordion-header .accordion-button {
    padding: 10px 5px;
  }
}
.fqa .fqa-item .fqa-item-content .accordion .accordion-item .accordion-header .accordion-button::after {
  content: none;
  display: none;
}
.fqa .fqa-item .fqa-item-content .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  background-color: #ebebeb;
}
.fqa .fqa-item .fqa-item-content .accordion .accordion-item .accordion-body {
  padding-inline: 40px;
  line-height: 30px;
}
.fqa .fqa-video {
  height: 305px;
  margin-bottom: 30px;
}
.fqa .fqa-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.footer {
  padding-top: 60px;
  padding-bottom: 5px;
  margin-top: 40px;
  background-color: #222222;
  position: relative;
}
.footer .footer-content {
  margin-bottom: 80px;
}
.footer .footer-content .footer-about .footer-logo {
  margin-bottom: 20px;
  margin-top: -10px;
}
.footer .footer-content .footer-about p {
  color: #b7b7b7;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .footer .footer-content .footer-widget {
    padding-right: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.footer .footer-content .footer-widget h3 {
  color: white;
  padding-right: 40px;
  margin-bottom: 15px;
}
.footer .footer-content .footer-widget ul {
  color: #b7b7b7;
}
.footer .footer-content .footer-widget ul img {
  margin-left: 10px;
}
.footer .footer-content .footer-widget ul li {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .footer .footer-content .footer-social {
    padding-right: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.footer .footer-content .footer-social h3 {
  color: white;
  padding-right: 40px;
  margin-bottom: 15px;
}
.footer .footer-content .footer-social ul {
  color: #b7b7b7;
}
.footer .footer-content .footer-social ul img {
  margin-left: 10px;
}
.footer .footer-content .footer-social ul li {
  margin-bottom: 15px;
}
.footer .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b7b7b7;
}
.footer .footer-copyright .copyright-text {
  text-align: center;
  padding-top: 20px;
}
.footer .footer-copyright .copyright-text a {
  text-decoration: none;
  color: #fa0204;
  margin-right: 10px;
}
.footer .footer-copyright .copyright-text a svg {
  margin-right: 5px;
  color: red;
}
.footer .whatsapp {
  position: fixed;
  bottom: 90px;
  left: 30px;
  z-index: 6;
}
.footer .whatsapp a svg {
  font-size: 50px;
  color: #45c441;
}
.footer .fixed-call-us {
  position: fixed;
  bottom: 85px;
  right: 40px;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
  border-radius: 50%;
  background-color: #fa0204;
  animation: pulse 1.5s infinite;
}
.footer .fixed-call-us svg {
  font-size: 25px;
  color: white;
}/*# sourceMappingURL=main.css.map */