:root {
  --blue: #0092E5;
  --orange: #FF8D00;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: var(--blue);
}

a:hover {
  color: var(--blue);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--blue);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background-color: transparent;
}

#header.header-scrolled, #header.header-inner-pages {
  padding: 12px 0;
  background-color: #fff;
  box-shadow: 0px 2px 15px rgba(34, 28, 28, 0.1);
}

#header .logo img {
  max-height: 60px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 60px;
  font-size: 15px;
  color: var(--orange);
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: var(--orange);
}

/* .navbar .getstarted, .navbar .getstarted:focus {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #5a5af3;
  border: 2px solid #5a5af3;
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #7272f5;
} */

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: var(--orange);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--orange);
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 141, 0, 0.8);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--orange);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
  color: var(--blue);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
  color: var(--orange);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
}

#hero .carousel-principal .swiper-slide img {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background: white;
}

.carousel-principal .swiper-button-next:after, .swiper-button-prev:after {
  color: #fff;
}

.custom-shape-divider-bottom-1689175513 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1689175513 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 63px;
}

.custom-shape-divider-bottom-1689175513 .shape-fill {
  fill: #F2AA00;
}

@media (max-width: 768px) {
  #hero {
    height: 350px;
  }

  #hero .carousel-principal .swiper-slide img {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-get-started,
.btn-get-quote {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: 0.5s;
  border-radius: 50px;
}

.btn-get-started {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  margin-right: 10px;
}

.btn-get-started:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn-get-quote {
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-get-quote:hover {
  background: var(--blue);
  color: #fff;
}

@media (max-width: 575px) {

  .btn-get-started,
  .btn-get-quote {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #F8F8F8;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--blue);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5a5af3;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-color: #F2AA00;
  padding: 90px 0;
}

.about .content h2 {
  font-weight: 700;
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 20px;
  color: #fff;
}

.about .content h3 {
  font-weight: 500;
  line-height: 27px;
  font-size: 16px;
  color: #fff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .modelos-piscinas h4 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 46px;
}

.services .modelos-piscinas h4 a {
  color: var(--blue);
  transition: ease-in-out 0.3s;
}

.services .modelos-piscinas p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Calll to action
--------------------------------------------------------------*/
.call-to-action {
  background-image: url('../img/call-to-action.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
}

.call-to-action .box-call {
  margin-top: 10%;
}

.call-to-action .box-call h2 {
  font-size: 46px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10%;
  text-shadow: #FF8D00 0.1em 0.1em 0.5em;
}

.call-to-action .btn-get-started {
  background-color: #03B427;
  border-color: #03B427;
}

.call-to-action .btn-get-started:hover {
  background-color: #4EC95A;
  border-color: #4EC95A;
}

@media (max-width: 768px) {
  .call-to-action {
    background-position: calc(90%);
    text-align: center;
    height: 60vh;
  }

  .call-to-action .box-call h2 {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Galeria
--------------------------------------------------------------*/
.galeria .carousel-galeria {
  width: 100%;
  height: 100%;
  padding: 10px 0 60px 0;
}

.galeria .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.galeria .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria .swiper-slide img {
  -webkit-box-shadow: 17px 19px 5px -6px rgba(255, 141, 0, 1);
  -moz-box-shadow: 17px 19px 5px -6px rgba(255, 141, 0, 1);
  box-shadow: 17px 19px 5px -6px rgba(255, 141, 0, 1);
}

.carousel-galeria .swiper-button-next:after, .swiper-button-prev:after {
  color: #fff;
}

@media (max-width: 768px) {
  .galeria .swiper-slide {
    padding: 30px;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 0;
  background-image: url('../img/background/b4.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
}

.features h2 {
  font-size: 46px;
  color: #fff;
  font-weight: 700;
  padding-top: 10%;
}

.features .features-box {
  margin-top: 15%;
}

.features .features-box h3 {
  font-size: 18px;
  color: var(--orange);
  margin-top: 15px;
  font-weight: 700;
}

.features .features-box p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/
.location {
  padding: 60px 0;
}

.location .info-box iframe {
  -webkit-box-shadow: -30px 26px 5px -18px rgba(255, 141, 0, 0.78);
  -moz-box-shadow: -30px 26px 5px -18px rgba(255, 141, 0, 0.78);
  box-shadow: -30px 26px 5px -18px rgba(255, 141, 0, 0.78);

}

.location .info-box h3 {
  font-size: 46px;
  font-weight: 700;
  color: var(--blue);
}

.location .info-box p {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-top: 5%;
}

@media (max-width: 768px) {
  .location .info-box h3 {
    font-size: 35px;
    padding-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: var(--orange);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}