/*--- Font Google ---*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/*--- Global ---*/

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: #747e74;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

h1,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #38424d;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #747e74;
  margin: 0;
}

span {
  display: contents;
  color: #e91e63;
}

/*--- all button css ---*/

.main-btn {
  display: inline-block;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 55px;
  border: 2px solid #0898ef;
  border-radius: 5px;
  background-color: #0898ef;
  color: #fff;
}

.main-btn:hover {
  background-color: rgba(8, 152, 231, 0.7);
  color: #fff;
  border-color: transparent;
}

/*--- all animation  ---*/

@keyframes video {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

@keyframes bounceTop-1 {
  0%,
  100% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(0px);
  }
}

@keyframes animation-1 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

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

/*--- navbar css ---*/

.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 9;
  transition: all 0.5s ease;
}

.navbar {
  position: relative;
  padding: 0;
}

.sticky {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
  text-transform: capitalize;
}

#span_verde {
  color: #bbd838;
}
#span_azul {
  color: #0f93fe;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 5px 12px;
    background-color: #fff;
    box-shadow: 0 15px 20px 0 rgb(0 0 0 / 10%);
  }

  .navbar-brand .image {
    max-width: 200px;
  }
}

.navbar-light .navbar-toggler {
  color: transparent;
  border-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

.navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 400;
  color: #38424d;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
  color: #e91e63;
}

.navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  bottom: 0;
  left: 50%;
  border-radius: 50%;
  background-color: #38424d;
  opacity: 0;
  transition: all 0.3 ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item .nav-link::before {
    position: relative;
  }
}

.navbar-nav .nav-item .nav-link.active::before,
.navbar-nav .nav-item .nav-link:hover::before {
  opacity: 1;
}

/*--- home css ----*/

.header-hero {
  position: relative;
  top: 0;
  height: 800px;
  background-position: bottom center;
}

.header-hero .shape {
  position: absolute;
}

.header-hero .shape.shape-1 {
  position: relative;
  width: 75px;
  height: 75px;
  left: 130px;
  top: 20%;
  border-radius: 50%;
  background-color: #bbd838;
  animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-2 {
  width: 39px;
  height: 39px;
  left: 150px;
  bottom: 40px;
  border-radius: 50%;
  background-color: #bbd838;
  animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-3 {
  width: 19px;
  height: 19px;
  left: 26px;
  bottom: 25%;
  border-radius: 50%;
  background-color: #0898ef;
  animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-4 {
  width: 39px;
  height: 39px;
  left: 40%;
  top: 175px;
  border-radius: 50%;
  background-color: #0898ef;
  animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-5 {
  width: 19px;
  height: 19px;
  left: 50%;
  bottom: 20%;
  border-radius: 50%;
  background-color: #bbd838;
  animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-6 {
  width: 14px;
  height: 14px;
  left: 45%;
  bottom: 70%;
  border-radius: 50%;
  background-color: #bbd838;
  animation: animation-1 2s linear infinite;
}

.header-hero-content {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 1198px),
  (max-width: 767px) {
  .header-hero-content {
    margin-top: 30%;
  }
}

.header-hero-content .header-title {
  font-size: 42px;
  color: #38424d;
}

.header-hero-content .text {
  margin-top: 30px;
}

.header-hero-content ul {
  margin-top: 30px;
}

.header-hero-content ul li .header-video {
  margin-left: 50px;
}

.header-hero-content .header-video {
  position: relative;
  margin-top: 6px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border-radius: 50%;
  background-color: #0898ef;
  color: #fff;
}

.header-hero-content .header-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgba(8, 152, 231, 0.8);
  z-index: -9;
  animation: video 2s linear infinite;
}

.header-image {
  position: relative;
  padding-top: 80px;
  animation: bounceTop-1 3s ease infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .header-image img {
    height: 0;
  }
}

.header-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url(../img/blob.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media only screen and (max-width: 1385px) {
  .header-hero .shape.shape-1 {
    left: 80px;
    top: 20%;
  }

  .header-hero .shape.shape-3 {
    left: 29px;
    bottom: 32%;
  }
}

@media only screen and (max-width: 1245px) {
  .header-hero .shape.shape-3 {
    left: 28px;
    bottom: 12%;
  }
}

@media only screen and (max-width: 991px) {
  .header-hero .shape.shape-5 {
    left: 60%;
    bottom: 12%;
  }
}

@media only screen and (max-width: 767px) {
  .header-shape-1 {
    width: 70%;
    height: 79%;
  }

  .header-hero .shape.shape-6 {
    left: 46%;
    bottom: 79%;
  }
}

@media only screen and (max-width: 645px) {
  .header-hero .shape.shape-1 {
    left: 42px;
    top: 22%;
  }
}

@media only screen and (max-width: 575px) {
  .header-shape-1 {
    width: 74%;
    height: 58%;
  }

  .header-hero .shape.shape-4 {
    left: 29%;
    top: 175px;
  }

  .header-hero .shape.shape-6 {
    left: 38%;
    bottom: 80%;
  }
}

@media only screen and (max-width: 525px) {
  .header-hero .shape.shape-5 {
    left: 72%;
    bottom: 1%;
  }

  .header-hero .shape.shape-4 {
    left: 28%;
    top: 146px;
  }

  .header-hero .shape.shape-3 {
    left: 101px;
    bottom: 9%;
  }
}

@media only screen and (max-width: 465px) {
  .header-hero .shape.shape-3 {
    left: 120px;
    bottom: -1%;
  }
  .header-hero .shape.shape-2 {
    left: 177px;
    bottom: 23px;
  }
}

@media only screen and (max-width: 372px) {
  .header-hero .shape.shape-5 {
    left: 85%;
    bottom: -2%;
  }
  .header-hero .shape.shape-4 {
    left: 30%;
    top: 134px;
  }

  .header-hero .shape.shape-6 {
    left: 44%;
    bottom: 83%;
  }

  .header-hero .shape.shape-2 {
    left: 177px;
    bottom: -65px;
  }
}

@media only screen and (max-width: 362px) {
  .header-hero .shape.shape-3 {
    left: 91px;
    bottom: -4%;
  }
}

@media only screen and (max-width: 349px) {
  .header-hero .shape.shape-5 {
    left: 88%;
    bottom: 3%;
  }
}

@media only screen and (max-width: 322px) {
  .header-hero .shape.shape-5 {
    left: 90%;
    bottom: 10%;
  }
}

.vbox-close {
  background: transparent;
  font-size: 50px;
  top: 0;
  right: 0;
}

/* --- Feature Css --- */

.feature-section .single-feature {
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 17px 0 rgb(154 154 154 / 16%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .feature-section .single-feature {
    box-shadow: none;
  }
}

.feature-section .single-feature .icon {
  position: relative;
  width: 75px;
  height: 75px;
  display: flex;
  margin: 0 auto 30px;
  background-color: #f5ae10;
  color: #fff;
  font-size: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.feature-section .single-feature .icon.color-2 {
  background-color: #0f93fe;
}

.feature-section .single-feature .icon.color-3 {
  background-color: #09d69c;
}

.feature-section .single-feature .icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: inherit;
  top: -8px;
  right: -8px;
  z-index: -1;
  opacity: 0.2;
  transition: all 0.3s ease-out 0s;
}

.feature-section .single-feature:hover .icon::after {
  top: 8px;
  right: 8px;
}

.feature-section .single-feature .content h3 {
  font-weight: 600;
  margin-bottom: 25px;
}

/*--- about css --- */

.about-area {
  overflow: hidden;
}

.about-image {
  display: inline-block;
  position: relative;
  text-align: center;
  margin-left: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-image .about-shape {
  position: relative;
  width: 394px;
  height: 394px;
  background-color: #0898e7;
  border-radius: 50%;
}

.about-image .about-shape::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid #0898e7;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: scale(1.1) rotate(25deg);
}

.about-image .app {
  max-width: 280px;
  position: absolute;
  top: 100px;
  left: 95px;
  transform: rotate(-25deg) translateY(-15%);
}

@media only screen and (max-width: 850px) {
  .about-image .app {
    max-width: 234px;
  }
}

@media only screen and (max-width: 467px) {
  .about-image .app {
    max-width: 193px;
  }
  .about-image .about-shape {
    width: 326px;
    height: 326px;
  }
}

@media only screen and (max-width: 401px) {
  .about-image .app {
    max-width: 158px;
    left: 79px;
  }

  .about-image .about-shape {
    width: 274px;
    height: 274px;
  }
}

@media only screen and (max-width: 330px) {
  .about-image .app {
    max-width: 142px;
    left: 70px;
  }

  .about-image .about-shape {
    width: 244px;
    height: 244px;
  }
}

/*.about-image .about-shape{
    margin-left: 238px;
     width: 353px;
    height: 353px;
}*/
.title {
  font-size: 35px;
  font-weight: 600;
}

.text {
  margin-top: 20px;
}

.about-content .main-btn {
  margin-top: 40px;
}

@media only screen and (max-width: 990px) {
  .about-content .main-btn {
    margin-left: 10px;
  }
}

/*---- Testimonial css ----*/

.testimonial-section {
  background: #bbd838;
  padding: 60px 0;
  min-height: 70vh;
}

.testi-img .img-box {
  max-width: 360px;
  margin: auto;
  text-align: center;
  position: relative;
}

.testi-img .circle {
  height: 360px;
  width: 360px;
  background-color: #0898e7;
  position: absolute;
  border-radius: 50%;
  left: 0;
  bottom: 0;
  transition: all 0.5s ease;
}

.testi-img .img-box-inner {
  position: relative;
  border-radius: 0 0 180px 180px;
  overflow: hidden;
}

.testi-img .img-box-inner img {
  max-width: 310px;
}

.testimonial-section .carousel-inner {
  margin-bottom: 20px;
}

.testimonial-section .carousel-control-prev {
  margin-right: 10px;
}

.testimonial-section .carousel-control-next,
.testimonial-section .carousel-control-prev {
  position: relative;
  height: 35px;
  width: 35px;
  background-color: #0898e7;
  display: inline-flex;
  border-radius: 50%;
}

.testimonial-section .carousel-control-prev img,
.testimonial-section .carousel-control-next img {
  width: 15px;
}

.testi-item h3,
.testi-item p {
  font-size: 18px;
}

.testi-item h3 {
  text-transform: capitalize;
}

.sliderParagraph {
  font-weight: 400;
  color: blueviolet;
  text-shadow: 1px 1px rgb(212, 249, 175);
}

/* Responsive slider */

@media (max-width: 991px) {
  .testi-img .img-box {
    max-width: 300px;
  }
  .testi-img .circle {
    height: 300px;
    width: 300px;
  }

  .testi-img .img-box-inner {
    border-radius: 0 0 150px 150px;
  }

  .testi-img .img-box-inner img {
    max-width: 230px;
  }
}

@media (max-width: 767px) {
  .testi-img {
    margin-bottom: 25px;
  }
}

/*---- faq css -----*/

.faq-section .accordion-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(142, 142, 142, 0.16);
}

.faq-section .accordion-item button {
  position: relative;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  background-color: #fff;
  color: #1d2a5d;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/accordion.svg);
}

.accordion-button:focus {
  box-shadow: none;
}

/*----- download css ------*/

.download-area {
  overflow: hidden;
}

.download-area .download-image .image-3 {
  position: relative;
  max-width: 750px;
  padding-top: 65px;
  padding-left: 60px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 1399px) {
  .download-area .download-image .image-3 {
    padding-top: 40px;
    max-width: 591px;
  }
}

@media only screen and (max-width: 1199px) {
  .download-area .download-image .image-3 {
    max-width: 505px;
  }
}

@media only screen and (max-width: 572px) {
  .download-area .download-image .image-3 {
    max-width: 445px;
  }
}

@media only screen and (max-width: 478px) {
  .download-area .download-image .image-3 {
    max-width: 395px;
    padding-left: 33px;
  }
}

.download-content ul {
  margin-top: 35px;
}

.download-content ul li {
  display: block;
  margin-top: 15px;
}

.download-content ul li a {
  width: 210px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: -15px 10px 30px 0 rgb(0 0 0 / 30%);
}

.download-content ul li a.play-store {
  margin-right: 28px;
  background-color: #0898e7;
}
.download-content ul li a.play-store2 {
  background-color: #0898e7;
}

@media only screen and (max-width: 990px) {
  .title,
  .text {
    padding: 0 10px;
  }
}

/*--- Footer  css--- */

footer {
  background-color: #0898e7;
  padding: 70px 0;
}

.fila {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  width: 33%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #bbd838;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #5aff9f;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #5aff9f;
  background-color: blue;
}

.contenedor_telefono::after {
  content: "(289) 407 9239";
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease;
  text-transform: lowercase;
}

.contenedor_email::after {
  content: "info@ontaclean.com";
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
  margin: 0;
  text-transform: lowercase;
  transition: all 0.3s ease;
}

.contenedor_web::after {
  content: "www.ontaclean.com/cleaner";
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 24px;
  margin: 0;
  transition: all 0.3s ease;
  text-transform: lowercase;
}

@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

.footer-copyright .copyright {
  border-top: 2px solid #bbd838;
  padding-top: 20px;
  margin-top: 20px;
  padding-bottom: 10px;
}
