/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #585a61;
  margin: 0;
  padding: 0;
}

a {
  color: #5777ba;
  text-decoration: none;
}

a:hover {
  color: #7b94c9;
  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: #0a182a;
  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: #585858;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: transparent;
  border-top: 8px solid #0b3667;
}

#header.header-transparent {
  background: #010912;
}

#header.header-scrolled {
  background: #010912;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .logo img {
  margin: 0 auto;
  max-height: 190px;  
}

#header .logo2 img {
  margin: 0;
  max-height: 44px;
}

#header .logo2 .camacho-img {
  margin-right: 10px;
  max-height: 120px;
}

#header .fabricantes-img-2 {
  display: none;
}

#header .logo2 .telephone {
  font-family: "Montserrat";
  font-size: 30px;
  font-weight: 500;
  color: white;
  letter-spacing: 2px;
  margin-top: -10px;
  text-decoration: none;
}

#header .logo2 .telephone2 {
  font-family: "Montserrat";
  font-size: 30px;
  font-weight: 500;
  color: #5ddbff;
}

@media (max-width: 768px) {
  #header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

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

  #header .logo,
  #header .logo2 {
    display: flex;
    align-items: center;
  }

  #header .logo2 {
    margin-left: 15px;
  }

  #header .asesoramiento-block {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {  
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 2%;
  padding-bottom: calc(100vh - 600px);
}

#hero::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 0%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    #010912 10%,
    #010912 0%,
    #0b3667 30%,
    #0b3667 100%
  );
  transform: skewY(180deg);
}

#hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  line-height: 50px;
  color: #ffff;
  font-family: "Montserrat", sans-serif;
}

#hero h1 span {
  margin: 0 0 10px 0;
  font-size: 35px;
  line-height: 50px;
  color: #ffc600;
  font-family: "Montserrat", sans-serif;
}

#hero h2,a {
  color: #5ddbff;
  margin-top: 10px;
  margin-bottom: 35px;
  font-size: 22px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
}

#hero h2,a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#hero .mapa {
  width: 120px;
  margin-bottom: 20px;
  display: block;
}

#hero .btn-link {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 25px;
  display: inline-block;
  padding: 12px 30px 12px 30px;
  border-radius: 17px;
  transition: 0.5s;
  color: #000000;
  background: #ffc600;
  position: relative;
  text-decoration: none;
}

#hero .btn-link:hover {
  background: #ffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#hero .btn-link + .btn-link {
  margin-left: 20px;
}

@media (max-width: 768px) {

  #hero {
    background: linear-gradient(
      to bottom,
      #010912 0%,
      #010912 10%,
      #0b3667 78%,
      #0b3667 100%
    );
    width: 100%;
    padding-top: 0px;
    position: relative;
    overflow: hidden;    
    padding-bottom: calc(100vh - 750px);
    text-align: center;
  }

  #hero .btn-link {    
    font-size: clamp(20px, 3vw, 28px);    
    padding: 12px clamp(25px, 6vw, 50px);
    white-space: nowrap;
  }

  #hero h1 {
    font-size: 24px;
    line-height: 30px;
  }

  #hero h1 span {
    font-size: 24px;
    line-height: 30px;
  }

  #hero h2,
  #hero h2 span {
    font-size: 19px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #hero .mapa {
  width: 120px;
  margin-bottom: 0;
  display: block;
}

  .asesoramiento-text {
    display: none !important;    
  }

  .img-desktop-hero {
    display: none;
  }

  .fabricantes-img-mobile {
    justify-self: center;
    display: block;
    width: 80%;
    margin: 15px auto;
  }

  .img-mobile-hero {
    margin: 20px auto;
    display: block;
    width: 100%;
    justify-self: center;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  position: relative; 
  overflow: hidden;
}

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

#features2 .row .no-gutters {
  margin: 0;
}

#features2 .row.no-gutters .col-md-6 {
  padding: 3px;
}

#features2 .row.no-gutters img {
  display: block;
  width: 120px;
  height: auto;
}

#features2 .specs {
  background: #ffffff;
  margin: 0;
  margin-bottom: 5px; 
  padding-bottom: 40px;
  width: 100%;   
  position: relative; 
}

#features2 .specs h2 {
  text-align: center;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  margin-bottom: 20px;
  padding: 20px 0 20px 0;
}

#features2 .specs h2 strong {
  color: #0b3667;
}

#features2 .specs h4 {
  padding-top: 15px;
  margin-bottom: 3px;
  color: #0b3667;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

#features2 .specs .alquileres {
  padding-top: 15px;
  margin-bottom: 3px;
  color: #0695e8;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

#features2 .specs h4 span {
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: normal;
}

#features2 .btn-link {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  padding: 10px 24px 10px 24px;
  border-radius: 7px;
  transition: 0.5s;
  color: #ffffff;
  background: #0b3667;
  position: relative;
  text-decoration: none;
}

#features2 .btn-alquileres {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  padding: 10px 24px 10px 24px;
  border-radius: 7px;
  transition: 0.5s;
  color: #ffffff;
  background: #0695e8;
  position: relative;
  text-decoration: none;
}

#features2 .btn-link:hover {
  background: #ffffff;
  color: #0b3667;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.icon-text-container {
  display: flex;
  align-items: center;
}

.icon-text-container img {
  margin-right: 10px;
}

@media (max-width: 767.98px) {
  section {
    padding-top: 10px;
    height: fit-content;
    overflow: hidden;
  }
  
  #features2 .specs h2 {
  text-align: center;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 24px !important;
  margin-bottom: 20px;
  padding: 20px 0 20px 0;
  }

  #features2 .specs .info-box {
    padding-bottom: 30px;
  }
  
  #features2 .specs p {    
    margin-bottom: 5px;    
  }

  .icon-text-container {
    flex-direction: column;
    text-align: center;
  }

  .icon-text-container img {
    margin-bottom: 0px;
    width: 80px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px 0;
  background: linear-gradient(
    to bottom,
    #010912 15%,
    #010912 15%,
    #0b3667 70%,
    #0b3667 100%
  );
}

#contact h2 {
  text-align: center;
  font-size: 35px;
  font-family: "Montserrat";
  color: #ffff;
}

#contact h2 .hablemos {
  text-align: center;
  font-weight: bold;
  font-size: 35px;
  font-family: "Montserrat";
  color: #5ddbff;
}

#contact p {
  color: #ffff;
  text-align: left;
  font-size: 20px;
  font-family: "Montserrat";
}

#contact .reduce-space {
  margin-bottom: 0px;
}

#contact span {
  color: #5ddbff;
  font-size: 20px;
}

#contact .divider {
  width: 100%;
  height: 1.7px;
  background: linear-gradient(
    to right,
    rgba(89, 156, 175, 0),
    #ffffff,
    rgba(89, 156, 175, 0)
  );
  position: relative;
  margin: 30px 0;
}

#contact .php-email-form {
  width: 100%;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #ffff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form label {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  color: #fff;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 7px;
  border: 1px solid #000000;
  box-shadow: none;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: #ffffff;
}

#contact .btn-link:focus {
  outline: none; 
  box-shadow: 0 0 0 3px rgb(255, 255, 255);
  color: #000000;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

@media (max-width: 1024px) {
  #contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  #contact h2 {
    text-align: center;
    font-size: 24px !important;
    font-family: "Montserrat";
    color: #ffff;
  }

  #contact h2 .hablemos {
    text-align: center;
    font-weight: bold;
    font-size: 24px !important;
    font-family: "Montserrat";
    color: #5ddbff;
  }

  #contact h2 span {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    font-family: "Montserrat";
    color: #9cf36e;
  }

  #contact .php-email-form {
    padding: 15px 0 0 0;
  }

  #contact .footer-image{
    display: none;
  }

  #contact .btn-link {  
  font-size: 15px !important;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#contact .btn-link {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 19px;
  display: inline-block;
  padding: 10px 100px 10px 100px;
  border-radius: 15px;
  transition: 0.5s;  
  background: #ffc600;
  color: #000000;
  position: relative;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

#contact .btn-link:hover {
  background: #ffffff;
  color: #000000;
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  position: relative;
  width: 100%;
  height:   60px;
  overflow: hidden;
  background: #0b3667;
}

.copyright {
  position: relative;  
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #76849d;
  text-align: center;
  margin: 0;
}

.whatsapp-button {
  position: fixed;
  bottom: 12px;
  right: 70px;
  z-index: 1000;
  display: none;
  animation: bounce 2s infinite;
}

.whatsapp-button img {
  width: 60px;
  height: 60px;
  transition: all 0.4s;
}

.whatsapp-button img:hover {
  width: 70px;
  height: 70px;
}

@media (max-width: 768px) {
  #footer {
  position: relative;
  width: 100%;
  height:   60px;
  overflow: hidden;
  background: #0b3667;
  }  
  .copyright {
    font-size: 13px;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
