/* Ausby CSS
Developed by ideacurl.com */

/*----------------------------------------------------------------------------------------
general-styles start
----------------------------------------------------------------------------------------*/

/* importing font url start */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* importing font url end */

/* setting font family to all the elemets in the website start */
* {
  font-family: "Roboto", sans-serif;
}

/* setting font family to all the elemets in the website end */

.contentsection {
  margin-top: 50px;
  margin-bottom: 50px;
}

.custom-hr {
  display: flex;
  flex-wrap: wrap;
  border: none;
  transition: 0.3s;
}

.custom-hr::before {
  content: "";
  flex: 0 0 50%;
  order: 1;
  margin: 10px 0;
  border-top: 3px solid #0f996d;
  transition: 0.8s;
}

.custom-hr::after {
  content: "";
  flex: 0 0 10%;
  order: 2;
  margin: 10px 5%;
  border-top: 3px solid #0f996d;
  transition: 0.8s;
}

@-webkit-keyframes arrow-movement {
  0% {
    transform: scale(0.5);
    opacity: 0;
    top: 40%;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }

  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes arrow-movement {
  0% {
    transform: scale(0.5);
    opacity: 0;
    top: 40%;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }

  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes fireworthree {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.55;
  }

  100% {
    opacity: 0;
  }
}

@keyframes elastic-pulse {
  0% {
    transform: scale(0.2);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes fireworthree {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.55;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes elastic-pulse {
  0% {
    transform: scale(0.2);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #b1ffe6b7;
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px #629b8949;
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 #629b8949;
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #b1ffe6b7;
    box-shadow: 0 0 0 0 #b1ffe6b7;
  }

  70% {
    -moz-box-shadow: 0 0 0 10px #629b8949;
    box-shadow: 0 0 0 10px #629b8949;
  }

  100% {
    -moz-box-shadow: 0 0 0 0 #629b8949;
    box-shadow: 0 0 0 0 #629b8949;
  }
}

/*----------------------------------------------------------------------------------------
general-styles end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
main-navbar start
----------------------------------------------------------------------------------------*/

#main-navbar .bg-light {
  z-index: 10000;
  background: #ffffff !important;
}

@media (min-width: 1200px) {
  #main-navbar .navbar-expand-lg {
    height: 100px;
  }
}

#main-navbar .navbar-brand img {
  width: 50%;
}

#main-navbar .navbar-collapse .navbar-nav .nav-item {
  padding: 15px 10px;
}

#main-navbar .navbar-collapse .nav-item .nav-link {
  display: inline;
  position: relative;
  overflow: hidden;
}

#main-navbar .navbar-collapse .nav-item .nav-link:after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  width: 0;
  bottom: 0;
  background: #0f996d;
  height: 2px;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

#main-navbar .navbar-collapse .nav-item .nav-link:hover:after,
#main-navbar .navbar-collapse .nav-item .nav-link:focus:after,
#main-navbar .navbar-collapse .nav-item .nav-link:active:after {
  left: 0;
  right: auto;
  width: 100%;
}

#main-navbar .navbar-collapse .nav-item.active .nav-link:after {
  left: 0;
  right: auto;
  width: 100%;
}

#main-navbar .navbar-collapse .navbar-btn-container {
  padding: 0 50px;
}

#main-navbar .navbar-collapse .navbar-btn {
  padding: 15px 30px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  background: #0f996d;
}

#main-navbar .navbar-collapse .navbar-btn:hover {
  background: #0b7251;
}

#main-navbar .nav-bottom-container {
  padding: 10px;
  text-align: center;
  background: #e6f2ee;
}

#main-navbar .nav-bottom-container .nav-bottom-nav {
  display: inline-block;
  margin-bottom: 0;
  padding-left: 0;
  width: 100%;
}

#main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item {
  float: left;
  list-style: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

#main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item:nth-child(1),
#main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item:nth-child(2),
#main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item:nth-child(3),
#main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item:nth-child(4),
#main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item:nth-child(5) {
  border-right: 2px solid #0f996d;
}

#main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item img {
  float: left;
  width: 30px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 30px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item span {
  margin-left: 45px;
  text-align: center;
  font-size: 15px;
  display: block;
  color: #000;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  #main-navbar .nav-bottom-container {
    display: none;
  }
}

@media (max-width: 991px) {
  #main-navbar .nav-bottom-container .nav-bottom-nav .nav-bottom-item {
    border-right: none !important;
  }
}

/*----------------------------------------------------------------------------------------
main-navbar end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
main-hero-carousel start
----------------------------------------------------------------------------------------*/

#main-hero-carousel .hero-text-container {
  position: absolute;
  top: 50%;
  left: 10%;
}

#main-hero-carousel .hero-carousel-container #hero-carousel .carousel-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0000008c;
}

#main-hero-carousel .hero-text-container h1 {
  font-weight: 700;
  color: #ffffff;
}

#main-hero-carousel .hero-text-container button.hero-btn {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  background: #0f996d;
  padding: 20px 50px;
  text-transform: uppercase;
  border-radius: 40px;
}

#main-hero-carousel .hero-text-container button.hero-btn:hover {
  background: #0b7251;
}

#main-hero-carousel .hero-text-container span.svg {
  position: absolute;
  left: -15%;
  top: -25%;
}

#main-hero-carousel .hero-text-container span.svg svg {
  width: 140px;
  transform: scale(1.1);
}

#main-hero-carousel .hero-text-container .firework-icon .cls-3 {
  opacity: 0;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#main-hero-carousel .hero-text-container .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#main-hero-carousel .hero-text-container .img-firework {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: elastic-pulse;
  animation-delay: 0s;
}

@media (max-width: 1199px) {
  #main-hero-carousel .hero-text-container {
    top: 20%;
  }
}

@media (max-width: 899px) {
  #main-hero-carousel .hero-text-container {
    top: 20%;
    transform: scale(0.8);
  }
}

@media (max-width: 591px) {
  #main-hero-carousel .hero-text-container {
    top: 15%;
    left: 0;
    transform: scale(0.5);
  }
}

@media (max-width: 415px) {
  #main-hero-carousel .hero-text-container {
    top: 20%;
    left: 0;
    transform: scale(0.5);
  }
}

@media (max-width: 412px) {
  #main-hero-carousel .hero-text-container {
    top: 15%;
    left: 0;
    transform: scale(0.5);
  }
}

@media (max-width: 380px) {
  #main-hero-carousel .hero-text-container {
    top: 15%;
    left: 0;
    transform: scale(0.4);
  }

  #main-hero-carousel .hero-text-container button.hero-btn {
    padding: 20px 18px;
  }
}

/*----------------------------------------------------------------------------------------
main-hero-carousel end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
our-services start
----------------------------------------------------------------------------------------*/

#our-services {
  padding: 90px 0;
}

#our-services .our-services-container .container {
  text-align: center;
}

#our-services .our-services-container .top-fireworks-container {
  position: absolute;
  margin-top: 10%;
  margin-left: 78%;
}

#our-services .our-services-container .top-fireworks-container svg {
  width: 70px;
  transform: scale(0.5);
}

#our-services .our-services-container .top-fireworks-container .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#our-services .our-services-container .bottom-fireworks-container {
  position: absolute;
  margin-top: -10%;
  margin-left: 5%;
}

#our-services .our-services-container .bottom-fireworks-container svg {
  width: 140px;
  transform: scale(0.5);
}

#our-services .our-services-container .bottom-fireworks-container .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#our-services .our-services-container .svg {
  position: absolute;
  margin-top: -70px;
  margin-left: -63px;
}

#our-services .our-services-container .svg svg {
  width: 140px;
  transform: scale(1.1);
}

#our-services .our-services-container .firework-icon .cls-3 {
  opacity: 0;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#our-services:hover .our-services-container .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#our-services .our-services-container .img-firework {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: elastic-pulse;
  animation-delay: 0s;
}

#our-services .our-services-container .title h1 {
  color: #0f996d;
  display: inline-block;
  line-height: 0.2 !important;
}

#our-services:hover .our-services-container .title .custom-hr::before {
  flex: 0 0 70%;
}

#our-services:hover .our-services-container .title .custom-hr::after {
  flex: 0 0 30%;
  margin: 10px 0;
}

#our-services .our-services-container .our-services-content {
  text-align: center;
}

#our-services .our-services-container .our-services-content p.our-services-desc {
  width: 50%;
  display: inline-block;
  margin-bottom: 0;
}

#our-services .our-services-container .our-services-content .vl {
  width: 50%;
  border-right: 3px solid #0f996d;
  height: 80px;
  margin: 15px 0;
}

#our-services .our-services-container .our-services-content .domestic-cleaning {
  cursor: pointer;
  color: #0f996d;
  transition: 0.3s;
}

#our-services .our-services-container .our-services-content .arrow-container {
  display: inline-block;
  width: 50%;
}

#our-services .our-services-container .our-services-content .arrow-container .fa-angle-down.arrow-0 {
  font-size: 20px;
  color: #0f996d;
  transition: 0.3s;
}

#our-services .our-services-container .our-services-content .arrow {
  opacity: 0;
  width: 50px;
  margin: 0 auto;
  text-align: center;
}

#our-services .our-services-container .our-services-content .arrow-first,
#our-services .our-services-container .our-services-content .arrow-second,
#our-services .our-services-container .our-services-content .arrow-third {
  opacity: 1;
  transition: 1s;
}

#our-services .our-services-container .our-services-content .arrow-first {
  transform: scale(1.5);
}

#our-services .our-services-container .our-services-content .arrow-second {
  transform: scale(1);
}

#our-services .our-services-container .our-services-content .arrow-third {
  transform: scale(0.5);
}

#our-services .our-services-container .our-services-content .arrow.arrow-first {
  -webkit-animation: arrow-movement 2s ease-in-out infinite;
  animation: arrow-movement 2s ease-in-out infinite;
}

#our-services .our-services-container .our-services-content .arrow.arrow-second {
  -webkit-animation: arrow-movement 2s 0.5s ease-in-out infinite;
  animation: arrow-movement 2s 0.5s ease-in-out infinite;
}

#our-services .our-services-container .our-services-content .arrow.arrow-third {
  -webkit-animation: arrow-movement 2s 1s ease-in-out infinite;
  animation: arrow-movement 2s 1s ease-in-out infinite;
}

#our-services .our-services-container .our-services-content .service-card-container {
  padding: 20px 0;
}

#our-services .our-services-container .our-services-content .service-card {
  cursor: pointer;
  border: none;
  margin: 0 auto;
  border-radius: 10px;
  transition: 0.3s;
  -webkit-box-shadow: 1px 2px 9px 0px #00000026;
  -moz-box-shadow: 1px 2px 9px 0px #00000026;
  box-shadow: 1px 2px 9px 0px #00000026;
}

#our-services .our-services-container .our-services-content .service-card:hover,
#our-services .our-services-container .our-services-content .service-card.active {
  background: #0f996d;
  color: #fff;
  -webkit-box-shadow: 1px 2px 9px 0px #0f996d86;
  -moz-box-shadow: 1px 2px 9px 0px #0f996d86;
  box-shadow: 1px 2px 9px 0px #0f996d86;
}

#our-services .our-services-container .our-services-content .service-content-card {
  border: none;
  border-radius: 30px;
  -webkit-box-shadow: 1px 2px 9px 0px #0f996d60;
  -moz-box-shadow: 1px 2px 9px 0px #0f996d60;
  box-shadow: 1px 2px 9px 0px #0f996d60;
}

#our-services .our-services-container .our-services-content .service-content-card img {
  width: 150px;
  margin: 0 auto;
  padding: 30px 0 0 0;
}

#our-services .our-services-container .our-services-content .service-content-card p.card-text {
  text-align: justify;
  padding: 20px 30px;
  transition: 0.3s;
}

#our-services .our-services-container .our-services-content .service-content-card a.btn-primary {
  margin: 10px 0 20px 0;
  padding: 7px 35px;
  border: #0f996d 1px solid;
  border-radius: 15px;
  background: #fff;
  color: #0f996d;
}

#our-services .our-services-container .our-services-content .service-cards .row {
  margin: 20% 0;
}

#our-services .our-services-container .our-services-content .service-card .card-title {
  font-size: 16px;
  margin-bottom: 0;
}

#our-services .our-services-container .our-services-content .service-cards .arrow-container {
  width: 50%;
}

#our-services .our-services-container .our-services-content .service-cards-left .arrow-container {
  transform: rotate(270deg);
}

#our-services .our-services-container .our-services-content .service-cards-right .arrow-container {
  transform: rotate(90deg);
}

@media(max-width: 767px) {
  #our-services .our-services-container .our-services-content .service-cards-left .arrow-container {
    transform: rotate(0deg);
    padding: 20px 0;
  }

  #our-services .our-services-container .our-services-content .service-cards-right .arrow-container {
    transform: rotate(180deg);
    padding: 20px 0;
  }

  #our-services .our-services-container .our-services-content .service-cards .row {
    margin: 5% 0;
  }
}

/*----------------------------------------------------------------------------------------
our-services end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
about-us start
----------------------------------------------------------------------------------------*/

#about-us {
  padding: 90px 0;
  background: #f0f6f4;
}

#about-us .row {
  margin-right: 0;
}

#about-us .about-us-container .title span.svg {
  position: absolute;
  margin-left: -60px;
  margin-top: -70px;
}

#about-us .about-us-container .title span.svg svg {
  width: 140px;
  transform: scale(1.1);
}

#about-us .about-us-container .title .firework-icon .cls-3 {
  opacity: 0;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#about-us:hover .about-us-container .title .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#about-us .about-us-container .title .img-firework {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: elastic-pulse;
  animation-delay: 0s;
}

#about-us .about-us-container {
  text-align: center;
}

#about-us .about-us-container .title {
  width: 70%;
  display: inline-block;
}

#about-us .about-us-container .title h1 {
  color: #0f996d;
  display: inline-block;
  line-height: 0.2 !important;
}

#about-us:hover .about-us-container .title .custom-hr::before {
  flex: 0 0 70%;
}

#about-us:hover .about-us-container .title .custom-hr::after {
  flex: 0 0 30%;
  margin: 10px 0;
}

#about-us .about-us-container .about-us-content .about-us-content-wrapper {
  width: 70%;
  margin: 0 auto;
  padding: 50px 0;
}

#about-us .about-us-container .about-us-content .overlap-1 {
  width: 60%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

#about-us .about-us-container .about-us-content .overlap-2 {
  width: 60%;
  position: relative;
  margin-top: -55%;
  left: 30%;
  z-index: 2;
}

#about-us .about-us-container .about-us-content .about-us-details h1 {
  text-align: left;
}

#about-us .about-us-container .about-us-content .about-us-details p.about-us-desc {
  padding: 50px 0;
  text-align: justify;
}

#about-us .about-us-container .about-us-content .about-us-details .about-detail {
  padding: 10px 5px;
  text-align: left;
}

#about-us .about-us-container .about-us-content .about-us-details .about-detail .col-4 {
  padding: 0 2px;
}

#about-us .about-us-container .about-us-content .about-us-details .about-detail .col-8 {
  padding: 0;
}

#about-us .about-us-container .about-us-content .about-us-details .about-detail img {
  width: 60%;
}

#about-us .about-us-container .about-us-content .about-us-details .about-detail p {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #0f996d;
}

#about-us .about-us-container .about-us-content .about-us-details button.about-us-view-more-btn {
  margin-top: 50px;
  padding: 15px 70px;
  font-weight: 500;
  color: #0f996d;
  background: transparent;
  border-radius: 15px;
  border: 2px solid #0f996d;
}

/*----------------------------------------------------------------------------------------
about-us end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
what-customer-say start
----------------------------------------------------------------------------------------*/

#what-customer-say {
  padding: 90px 0;
}

#what-customer-say .row {
  margin-right: 0;
}

#what-customer-say .what-customer-say-container .top-fireworks-container {
  position: absolute;
  margin-left: 15%;
}

#what-customer-say .what-customer-say-container .top-fireworks-container svg {
  width: 70px;
  transform: scale(0.5);
}

#what-customer-say .what-customer-say-container .top-fireworks-container .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#what-customer-say .what-customer-say-container .bottom-fireworks-container {
  position: absolute;
  margin-top: 20%;
}

#what-customer-say .what-customer-say-container .bottom-fireworks-container svg {
  width: 200px;
  transform: scale(0.5);
}

#what-customer-say .what-customer-say-container .bottom-fireworks-container .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#what-customer-say .what-customer-say-container .title span.svg {
  position: absolute;
  margin-left: -70px;
  margin-top: -75px;
}

#what-customer-say .what-customer-say-container .title span.svg svg {
  width: 140px;
  transform: scale(1.1);
}

#what-customer-say .what-customer-say-container .firework-icon .cls-3 {
  opacity: 0;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#what-customer-say:hover .what-customer-say-container .title .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#what-customer-say .what-customer-say-container .img-firework {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: elastic-pulse;
  animation-delay: 0s;
}

#what-customer-say .what-customer-say-container {
  text-align: center;
}

#what-customer-say .what-customer-say-container .title {
  padding: 70px 0 0 0;
  margin: 0 auto;
  display: inline-block;
}

#what-customer-say .what-customer-say-container .title h1 {
  color: #0f996d;
  display: inline-block;
  line-height: 0.2 !important;
}

#what-customer-say:hover .what-customer-say-container .title .custom-hr::before {
  flex: 0 0 70%;
}

#what-customer-say:hover .what-customer-say-container .title .custom-hr::after {
  flex: 0 0 30%;
  margin: 10px 0;
}

#what-customer-say .what-customer-say-container .what-customer-say-card {
  width: 80%;
  margin: 0 auto;
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: 1px 2px 9px 0px #0f996d60;
  -moz-box-shadow: 1px 2px 9px 0px #0f996d60;
  box-shadow: 1px 2px 9px 0px #0f996d60;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-details {
  text-align: left;
  color: #0f996d;
  width: 40%;
  margin: 0 auto;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-details .reviews {
  border-right: 2px solid #0f996d;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-details .ratings {
  text-align: end;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel {
  padding: 80px 100px;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details {
  padding: 25px 0;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details img {
  width: 90px;
  border: 1px solid #0f996d;
  border-radius: 100%;
  padding: 5px;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-data p {
  margin-bottom: 0;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details #rating-stars .rating-group {
  display: inline-flex;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details #rating-stars .rating-icon {
  pointer-events: none;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details #rating-stars .rating-radio {
  position: absolute !important;
  left: -9999px !important;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details #rating-stars .rating {
  padding: 0 0.1em;
  font-size: 2rem;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details #rating-stars .rating-icon-star {
  color: orange;
}

#what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details #rating-stars .rating-radio:checked~.rating .rating-icon-star {
  color: #ddd;
}

#what-customer-say .what-customer-say-container .what-customer-say-card button.btn-primary {
  color: #0f996d;
  background: transparent;
  border: 2px solid #0f996d;
  border-radius: 15px;
  padding: 15px 70px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {

  #what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details .customer-img,
  #what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details .customer-data {
    margin: 0;
  }
}

@media (max-width: 797px) {

  #what-customer-say .what-customer-say-container .bottom-fireworks-container,
  #what-customer-say .what-customer-say-container .top-fireworks-container {
    display: none;
  }

  #what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  #what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-details .reviews {
    border: none;
  }

  #what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-details {
    width: 100%;
    text-align: center;
  }

  #what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-details .ratings {
    text-align: center;
  }
}

@media (max-width: 587px) {
  #what-customer-say .what-customer-say-container .title h1 {
    font-size: 20px;
  }

  #what-customer-say .what-customer-say-container .what-customer-say-card button.btn-primary {
    padding: 15px 50px;
  }
}

@media (max-width: 360px) {
  #what-customer-say .what-customer-say-container .what-customer-say-card .what-customer-say-carousel .customer-details #rating-stars {
    transform: scale(0.6);
  }
}

/*----------------------------------------------------------------------------------------
what-customer-say end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
our-achievements start
----------------------------------------------------------------------------------------*/

#our-achievements {
  padding: 90px 0;
  background: linear-gradient(0deg, #0f996daf, #0f996daf),
    url(../../public/images/achievements.png) no-repeat;
  background-size: cover;
  background-position: center;
}

#our-achievements .row {
  margin-right: 0;
}

#our-achievements .our-achievements-container {
  text-align: center;
  color: #fff;
  width: 80%;
  margin: 0 auto;
}

#our-achievements .our-achievements-container .achievement {
  padding: 15px 0;
}

#our-achievements .our-achievements-container img {
  width: 20%;
}

/*----------------------------------------------------------------------------------------
our-achievements end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
get-in-touch start
----------------------------------------------------------------------------------------*/

#get-in-touch {
  padding: 90px 0;
}

#get-in-touch .row {
  margin-right: 0;
}

#get-in-touch .get-in-touch-container {
  width: 90%;
  margin: 0 auto;
}

#get-in-touch .get-in-touch-container .title span.svg {
  position: absolute;
  margin-left: -65px;
  margin-top: -70px;
}

#get-in-touch .get-in-touch-container .title span.svg svg {
  width: 140px;
  transform: scale(1.1);
}

#get-in-touch .get-in-touch-container .firework-icon .cls-3 {
  opacity: 0;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#get-in-touch:hover .get-in-touch-container .title .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#get-in-touch .get-in-touch-container .img-firework {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: elastic-pulse;
  animation-delay: 0s;
}

#get-in-touch .get-in-touch-container {
  text-align: center;
}

#get-in-touch .get-in-touch-container .title {
  padding: 70px 0 50px 0;
  margin: 0 auto;
  display: inline-block;
}

#get-in-touch .get-in-touch-container .title h1 {
  color: #0f996d;
  display: inline-block;
  line-height: 0.2 !important;
}

#get-in-touch:hover .get-in-touch-container .title .custom-hr::before {
  flex: 0 0 70%;
}

#get-in-touch:hover .get-in-touch-container .title .custom-hr::after {
  flex: 0 0 30%;
  margin: 10px 0;
}

#get-in-touch .get-in-touch-container .get-in-touch-details {
  text-align: left;
  display: grid;
  align-items: center;
}

#get-in-touch .get-in-touch-container .get-in-touch-details .row {
  padding: 20px 0;
}

#get-in-touch .get-in-touch-container .get-in-touch-details .get-in-touch-icon {
  width: 100%;
}

#get-in-touch .get-in-touch-container .get-in-touch-details .get-in-touch-mail,
#get-in-touch .get-in-touch-container .get-in-touch-details .get-in-touch-open-hours {
  display: flex;
  align-items: center;
}

#get-in-touch .get-in-touch-container .get-in-touch-details .get-in-touch-mail a {
  text-decoration: none;
  color: #212529;
}

#get-in-touch .get-in-touch-container .get-in-touch-map-container {
  background: url(../../public/images/map.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#get-in-touch .get-in-touch-container .get-in-touch-map-container .get-in-touch-map {
  text-align: center;
}

#get-in-touch .get-in-touch-container .get-in-touch-map-container .get-in-touch-map .get-in-touch-map-buttons {
  display: inline-block;
}

@media (max-width: 360px) {
  #get-in-touch .get-in-touch-container .get-in-touch-details h2 {
    font-size: 25px;
  }
}

/*----------------------------------------------------------------------------------------
get-in-touch end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
become-a-cleaner start
----------------------------------------------------------------------------------------*/

#become-a-cleaner .row {
  margin-right: 0;

}

#become-a-cleaner .become-a-cleaner-container .title span.svg {
  position: absolute;
  margin-left: -65px;
  margin-top: -75px;
}

#become-a-cleaner .become-a-cleaner-container .title span.svg svg {
  width: 140px;
  transform: scale(1.1);
}

#become-a-cleaner .become-a-cleaner-container .firework-icon .cls-3 {
  opacity: 0;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#become-a-cleaner:hover .become-a-cleaner-container .title .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#become-a-cleaner .become-a-cleaner-container .img-firework {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: elastic-pulse;
  animation-delay: 0s;
}

#become-a-cleaner .become-a-cleaner-container {
  text-align: center;
}

#become-a-cleaner .become-a-cleaner-container .title {
  padding: 30px 0 30px 0;
  margin: 0 auto;
  display: inline-block;
}

#become-a-cleaner .become-a-cleaner-container .title h1 {
  color: #0f996d;
  display: inline-block;
  line-height: 0.2 !important;
}

@media (max-width: 420px) {
  #become-a-cleaner .become-a-cleaner-container .title h1 {
    font-size: 28px !important;
  }
}

#become-a-cleaner:hover .become-a-cleaner-container .title .custom-hr::before {
  flex: 0 0 70%;
}

#become-a-cleaner:hover .become-a-cleaner-container .title .custom-hr::after {
  flex: 0 0 30%;
  margin: 10px 0;
}

#become-a-cleaner .become-a-cleaner-container .become-a-cleaner-card {
  margin: 0 auto;
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: 1px 2px 9px 0px #0f996d60;
  -moz-box-shadow: 1px 2px 9px 0px #0f996d60;
  box-shadow: 1px 2px 9px 0px #0f996d60;
}

#become-a-cleaner .become-a-cleaner-container form {
  text-align: left;
}

#become-a-cleaner .become-a-cleaner-container form .become-a-cleaner-btn {
  color: #0F996D;
  font-weight: 600;
  border: 2px solid #0F996D;
  background: transparent;
  border-radius: 15px;
  padding: 12px 30px;
  width: 220px;
  text-align: center;
  margin: 0 auto;
}

#become-a-cleaner .become-a-cleaner-container form .become-a-cleaner-btn:hover {
  background: #0F996D;
  color: #fff;
}

/*----------------------------------------------------------------------------------------
become-a-cleaner end
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
write-a-review start
----------------------------------------------------------------------------------------*/

#write-a-review .write-a-review-container .title span.svg {
  position: absolute;
  margin-left: -65px;
  margin-top: -75px;
}

#write-a-review .write-a-review-container .title span.svg svg {
  width: 140px;
  transform: scale(1.1);
}

#write-a-review .write-a-review-container .firework-icon .cls-3 {
  opacity: 0;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#write-a-review:hover .write-a-review-container .title .firework-icon .cls-3 {
  animation-name: fireworthree;
  animation-delay: 0.11s;
}

#write-a-review .write-a-review-container .img-firework {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: elastic-pulse;
  animation-delay: 0s;
}

#write-a-review .write-a-review-container {
  text-align: center;
}

#write-a-review .write-a-review-container .title {
  padding: 30px 0 30px 0;
  margin: 0 auto;
  display: inline-block;
}

#write-a-review .write-a-review-container .title h1 {
  color: #0f996d;
  display: inline-block;
  line-height: 0.2 !important;
}

@media (max-width: 420px) {
  #write-a-review .write-a-review-container .title h1 {
    font-size: 28px !important;
  }
}

#write-a-review:hover .write-a-review-container .title .custom-hr::before {
  flex: 0 0 70%;
}

#write-a-review:hover .write-a-review-container .title .custom-hr::after {
  flex: 0 0 30%;
  margin: 10px 0;
}

#write-a-review .write-a-review-container .write-a-review-card {
  margin: 0 auto;
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: 1px 2px 9px 0px #0f996d60;
  -moz-box-shadow: 1px 2px 9px 0px #0f996d60;
  box-shadow: 1px 2px 9px 0px #0f996d60;
}

#write-a-review .write-a-review-container form {
  text-align: left;
}

#write-a-review .write-a-review-container form .write-a-review-btn {
  color: #0F996D;
  font-weight: 600;
  border: 2px solid #0F996D;
  background: transparent;
  border-radius: 15px;
  padding: 12px 30px;
  width: 220px;
  text-align: center;
  margin: 0 auto;
}

#write-a-review .write-a-review-container form .write-a-review-btn:hover {
  background: #0F996D;
  color: #fff;
}

#write-a-review .write-a-review-container form .preview-rate {
  padding-left: 14px !important;
  height: 46px;
  padding: 0 10px;
}

#write-a-review .write-a-review-container form .preview-rate:not(:checked)>input {
  position: absolute;
  top: -9999px;
}

#write-a-review .write-a-review-container form .preview-rate:not(:checked)>label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}

#write-a-review .write-a-review-container form .preview-rate:not(:checked)>label:before {
  content: "★ ";
}

#write-a-review .write-a-review-container form .preview-rate>input:checked~label {
  color: #ffc800;
}

#write-a-review .write-a-review-container form .preview-rate:not(:checked)>label:hover,
#write-a-review .write-a-review-container form .preview-rate:not(:checked)>label:hover~label {
  color: #fffb00;
}

#write-a-review .write-a-review-container form .preview-rate>input:checked+label:hover,
#write-a-review .write-a-review-container form .preview-rate>input:checked+label:hover~label,
#write-a-review .write-a-review-container form .preview-rate>input:checked~label:hover,
#write-a-review .write-a-review-container form .preview-rate>input:checked~label:hover~label,
#write-a-review .write-a-review-container form .preview-rate>label:hover~input:checked~label {
  color: #fffb00;
}

/*----------------------------------------------------------------------------------------
write-a-review end
----------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------
footer start
----------------------------------------------------------------------------------------*/

#footer {
  background: #189d72;
}

#footer .row {
  margin-right: 0;
}

#footer .footer-container {
  margin: 0 auto;
}

#footer .footer-container {
  text-align: center;
}

#footer .footer-container .title {
  padding: 70px 0 50px 0;
  margin: 0 auto;
  display: inline-block;
}

#footer .footer-container .title h1 {
  color: #ffffff;
  display: inline-block;
  line-height: 0.2 !important;
}

#footer .footer-container .title .custom-hr::before {
  content: "";
  flex: 0 0 50%;
  order: 1;
  margin: 10px 0;
  border-top: 3px solid #ffffff;
  transition: 0.8s;
}

#footer .footer-container .title .custom-hr::after {
  content: "";
  flex: 0 0 10%;
  order: 2;
  margin: 10px 5%;
  border-top: 3px solid #ffffff;
  transition: 0.8s;
}

#footer:hover .footer-container .title .custom-hr::before {
  flex: 0 0 70%;
}

#footer:hover .footer-container .title .custom-hr::after {
  flex: 0 0 30%;
  margin: 10px 0;
}

#footer .footer-container .footer-contact-details-container {
  margin: 0 auto;
  width: 90%;
  padding: 50px 50px 0 50px;
}

#footer .footer-container .footer-contact-details-container .phone-pulse .pulse {
  background: url(../../public/images/phone.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 0 #0f996db7;
  animation: pulse 2s infinite;
}

#footer .footer-container .footer-contact-details-container .phone-detail {
  text-align: left;
  padding: 0 0 0 100px;
  display: grid;
  align-items: center;
  color: #fff;
}

#footer .footer-container .footer-contact-details-container .phone-detail a {
  color: #fff;
  text-decoration: none;
}

#footer .footer-container .footer-contact-details-container .hr-text {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 170px;
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
}

#footer .footer-container .footer-contact-details-container .hr-text:before {
  content: "";
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
}

#footer .footer-container .footer-contact-details-container .hr-text:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  content: attr(data-content);
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  line-height: 1.5em;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #189d72;
}

#footer .footer-container .footer-contact-details-container .footer-contact-btn {
  color: #ffffff;
  font-weight: 600;
  border: 2px solid #ffffff;
  background: transparent;
  border-radius: 15px;
  padding: 20px 70px;
}

#footer .footer-container .footer-contact-details-container .footer-contact-btn:hover {
  background: #0b7251;
}

#footer .footer-container .footer-content-container {
  text-align: left;
  font-size: 20px;
  padding: 150px 100px 0 100px;
  background: url(../../public/images/footer-bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

#footer .footer-container .footer-content-container .footer-logo {
  width: 50%;
}

#footer .footer-container .footer-content-container .sitemap-container ul li a {
  text-decoration: none;
  color: #000;
}

#footer .footer-container .footer-content-container ul {
  padding-left: 0;
}

#footer .footer-container .footer-content-container .sitemap-container ul li,
#footer .footer-container .footer-content-container .services-container ul li {
  list-style: none;
}

#footer .footer-container .footer-content-container .services-container-list-1 ul {
  margin-bottom: 0;
}

#footer .footer-container .footer-content-container .social-media-icons a {
  padding: 15px;
}

#footer .footer-container .footer-content-container .social-media-icons a i.fab,
#footer .footer-container .footer-content-container .social-media-icons a i.fas {
  color: #0f996d;
}

#footer .footer-container .footer-content-container .social-media-icons a:hover i.fab,
#footer .footer-container .footer-content-container .social-media-icons a:hover i.fas {
  color: #0b7251;
}

#footer .bottom-footer {
  background: #0f996d;
  padding: 10px 0;
}

#footer .bottom-footer .footer-copyright {
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

#footer .bottom-footer .footer-copyright a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

#footer .bottom-footer .footer-copyright a:hover {
  text-decoration: none;
  color: #ff0000;
  font-weight: 500;
}

#footer .bottom-footer ul {
  margin-bottom: 0;
}

#footer .bottom-footer ul li {
  float: left;
  color: #fff;
  list-style: none;
  text-decoration: none;
  padding: 0 20px;
}

#footer .bottom-footer ul li a {
  color: #fff;
  text-decoration: none;
}

#footer .bottom-footer ul li a:hover {
  color: #cfcfcf;
}

@media (max-width: 992px) {
  #footer .footer-container .footer-contact-details-container .phone-detail {
    text-align: center;
    padding: 30px 0 0 0;
  }

  #footer .footer-container .footer-contact-details-container .phone-pulse {
    display: flex;
    justify-content: center;
  }

  #footer .footer-container .footer-contact-details-container .phone-pulse .pulse {
    width: 50px;
    height: 50px;
  }

  #footer .footer-container .footer-contact-details-container .phone-detail h1 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  #footer .footer-container .footer-contact-details-container .hr-text {
    transform: rotate(0);
    width: 100%;
    padding: 30px 0;
  }

  #footer .footer-container .footer-contact-details-container .hr-text:after {
    transform: rotate(0);
    font-size: 15px;
  }

  #footer .footer-container .footer-content-container {
    padding: 150px 20px 0 20px;
  }
}

@media (max-width: 587px) {
  #footer .footer-container .title h1 {
    font-size: 25px;
  }

  #footer .footer-container .footer-contact-details-container .phone-detail h1 {
    font-size: 25px;
  }

  #footer .footer-container .footer-contact-details-container .footer-contact-btn {
    padding: 20px 5px;
  }
}

/*----------------------------------------------------------------------------------------
footer end
----------------------------------------------------------------------------------------*/