@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --brand: #1d309a;
  --secondary: #FF6456;
  --secondary-light: #FF7b70;
  --dark: #0C111D;
  --black: #0C111D;
  --grey: #bac1b8;
  --bg-light: #F4F8FB;
  --link-color: #1D242E;
  --heading-color: #212121;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #212529;
  --radius: 1.5rem;
  --white: #ffffff;
  --body-font: "DM Sans", sans-serif;
  --gradient-1: linear-gradient( 145deg, hsl(350deg 100% 93%), hsl(47deg 100% 87%) 40%, hsl(47deg 100% 87%) 60%, hsla(47, 100%, 52.9%, 0.45) );
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
 
  
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  padding-right: 0 !important;
}

.fw-black {
  font-weight: 900;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
  text-align: justify;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-orange {
  background-color: var(--secondary);
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: #f4fbfe !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: #00605c;
}

.text-dark {
  color:#00605c;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: #000;
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
  padding-left: 85px;
      
}

@media (max-width: 767.98px) {
  .link {
    padding-left: 0;
  }
}

.link:hover {
  color: var(--dark);
}

.link__orange {
  color: #00605c;
}
.link__orange:hover {
  text-decoration: underline;
  color: var(--brand);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
  text-align: justify;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
}

.btn-gradient {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border: 0;
  color: var(--white);
}
.btn-gradient:hover, .btn-gradient:focus, .btn-gradient:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.btn-dark {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-dark:is(:hover, :focus, :active) {
  background-color: var(--brand);
  border-color: var(--brand);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
  .res__no__padding {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.navbar {
  z-index: 999;
}
.navbar .navbar-brand img {
  max-height: 6rem;
}
.navbar .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--dark);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--secondary);
}
.navbar .nav-item .nav-link:hover .caret {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--secondary);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .navbar-toggler {
  width: 2.875rem;
  height: 2.875rem;
  margin-left: 1rem;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
  height:100px;
}
.navbar.fixed-top .navbar-brand img {
  filter: none;
}
.navbar.fixed-top .nav-item .nav-link {
  color: var(--dark);
}

@keyframes mymove {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
.contact__btn {
  --color: 29, 48, 154;
  border-radius: 0.5em;
  transition: 0.3s;
  color: rgb(var(--color));
  fill: rgb(var(--color));
  font-weight: bolder;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 2px solid rgb(var(--color));
  box-shadow: 0 0 10px rgba(var(--color), 0.4);
  outline: none;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}

.contact__btn:hover {
  box-shadow: 0 0 0 5px rgba(var(--color), 0.5);
}

.contact__btn span {
  transform: scale(0.8);
  transition: 0.3s;
}

.contact__btn:hover span {
  transform: scale(1);
}

.contact__btn svg {
  font-size: 0;
  transform: scale(0.5) translateX(0%) rotate(-180deg);
  transition: 0.3s;
}

.contact__btn:hover svg {
  font-size: 20px;
  transform: scale(1) translateX(20%) rotate(0deg);
}

.contact__btn:active {
  transition: 0s;
  box-shadow: 0 0 0 5px rgb(var(--color));
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown .dropdown-menu .dropdown .dropdown-menu {
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    right: -100%;
    left: auto;
    top: 0%;
  }
  .navbar .dropdown .dropdown-menu .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-brand img {
    max-height: 5rem;
    width: auto;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0%;
    background-color: #fff;
    padding: 1.5rem;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .navbar .navbar-collapse .nav-item .nav-link {
    color: var(--dark);
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 3rem;
    width: auto;
  }
}
footer {
  background-color: var(--brand);
  padding: 4rem 0 0rem 0;
}
footer a {
  color: var(--white);
  text-transform: capitalize;
  font-size: 0.937rem;
}
footer a:hover {
  text-decoration: underline;
  color: var(--secondary);
}
footer .divider {
  width: 40%;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 1rem;
}
footer .icon__box {
  width: 2rem;
}
footer .border-top {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
footer .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}

.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.5rem;
  border: 1px solid var(--white);
  background-color: var(--white);
  height: 2.5rem;
  border-radius: 50%;
}
.social__links li a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.social__links li a svg path {
  fill: var(--dark);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
}
.social__links li a:hover svg path, .social__links li a:focus svg path {
  fill: var(--white);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  .backTop {
    bottom: 2rem;
    right: 1rem;
  }
  .backTop svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.phone__btn {
  background-color: #81d654;
  z-index: 999;
  left: 2rem;
  bottom: 11rem;
  width: 4rem;
  height: 4rem;
}
.phone__btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.phone__btn svg path {
  fill: var(--white);
}
.phone__btn:hover, .phone__btn:focus, .phone__btn:active {
  background-color: #65a742;
  color: var(--white);
}

.whatsapp {
  background-color: #2eb843;
  z-index: 999;
  left: 2rem;
  bottom: 5rem;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  width: 4rem;
  height: 4rem;
  color: var(--white);
}
.whatsapp svg {
  width: 2rem;
  height: 2rem;
}
.whatsapp:hover, .whatsapp:focus, .whatsapp:active {
  background-color: #149a28;
  color: var(--white);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -webkit-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #2eb843;
    box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -moz-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@media (max-width: 576px) {
  .phone__btn {
    left: 1rem;
    bottom: 7rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .phone__btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .whatsapp {
    left: 1rem;
    bottom: 2rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .whatsapp svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.owl-carousel .owl-item img {
  width: auto;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 16px;
  border-radius: 8px;
}

.header__wrapper {
  padding: 4rem 0 4rem 0;
  min-height: calc(100vh - 4rem);
}
.header__wrapper .text-dark {
  color: #240029 !important;
}
.header__wrapper .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
}

.form__wrapp {
  background: linear-gradient(168.36deg, #DAF3FF 3.91%, #FFF3DA 96.09%);
  max-width: 450px;
  border-top: 5px solid var(--secondary);
}

.form-control, .form-select {
  height: 3.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.form-control::placeholder, .form-select::placeholder {
  color: #aaa;
  font-weight: 400;
  font-size: 1rem;
}

.service__card {
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.059);
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid #F2F5FA;
  background-color: #fff;
}
.service__card img {
  width: 100%;
  aspect-ratio: 3/2;
}
.service__card .title {
  transition: all 0.3s ease-in-out;
}
.service__card .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.service__card:hover {
  background-color: #303030;
}
.service__card:hover .pb-4.mt-3 h3 a,
.service__card:hover .pb-4.mt-3 p,
.service__card:hover .pb-4.mt-3 a {
  color: #ffffff !important;
}

.choose__card::after {
  background-color: rgba(69, 82, 154, 0.5411764706);
  backdrop-filter: blur(10px);
  content: "";
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  display: block;
  position: absolute;
}

@media (min-width: 992px) {
  .choose__card {
    padding: 3rem 2rem !important;
  }
}
.bg-orange {
  background-color: var(--secondary);
}

.contact__form__box {
  background: linear-gradient(167.39deg, #EFFAFF 35.47%, #FFF3DA 95.81%);
}

.testi__card {
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.0588235294);
  border: 1px solid #F2F5FA;
}
.testi__card .author__thumbnail {
  width: 4rem;
  height: 4rem;
}

.testimonailCarousel .owl-nav {
  text-align: center;
  padding-top: 1rem;
}
.testimonailCarousel .owl-nav button {
  margin: 1rem;
}
.testimonailCarousel .owl-nav button.disabled {
  opacity: 0.15;
}

.boxshadow__cutof .owl-stage-outer {
  height: calc(100% + 30px);
  margin: -15px;
  padding: 15px;
  width: calc(100% + 30px);
}

.blog__card {
  background-color: #f9f9f9;
}
.blog__card .thumbnail:hover img {
  transform: scale(1.2);
}
.blog__card .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: #747474;
}

/*------------ Contact Page ----------------*/
.contact__form__wrapper .form-select, .contact__form__wrapper .form-control {
  border-radius: 0.45rem;
  height: 3.75rem;
  border: 1px solid #707070;
  padding-left: 1rem;
  font-size: 1.125rem;
  color: var(--dark);
  font-family: var(--body-font);
}
.contact__form__wrapper .form-select:hover, .contact__form__wrapper .form-select:focus, .contact__form__wrapper .form-control:hover, .contact__form__wrapper .form-control:focus {
  border-color: var(--dark);
}
.contact__form__wrapper .main__content {
  padding-bottom: 5rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
}

.galleryItem img {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.pest__icon {
  width: 6.75rem;
  height: 6.75rem;
  background: #F4F4F4;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}
.pest__icon img {
  width: 3.375rem;
  height: 3.375rem;
}
.pest__icon:hover {
  border-radius: 1rem;
}

.cms__wrapper ul {
  padding-left: 1rem;
}
.cms__wrapper ul li {
  list-style-type: disc;
}/*# sourceMappingURL=style.css.map */
/* Gradient Button */
.btn-gradient {
    background: linear-gradient(135deg, #3ad4cd, #3ad4cd);
    color: #fff;
    padding: 12px 24px;
    border: none;
    transition: background 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #3ad4cd, #3ad4cd);
}

/* Outline Light Button */
.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    background-color: linear-gradient(135deg, #9e009b, #7f007d);
    transition: all 0.3s ease;
	
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #7f007d;
}
#courseSlider {
  position: relative;
}