/*================================================
Default CSS
=================================================*/

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway+Alternates&display=swap");

html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}
body {
  padding: 0;
  margin: 0;
  color: #000000;
  font-family: 'Raleway';
  font-size: 15px;
  background-color: #ffffff;
  height: 100%;
}
:root {
  --verde: #84AF24;
  --verdeoscuro: #244C26;
  --azul: #0E90E0;
  --azulfuerte: #1072ae;
  --azulclaro:#b3e3fa;
  --verdeclaro: #D3EAA6;
  --beige:#C1B48A;
}
.bg-black-color {
  background-color: #002e5b;
}

.bg-f8f8f8 {
  background-color: #f8f8f8;
}

.bg-fafafa {
  background-color: #fafafa;
}

.bg-green{
  background-color: #92d050;
}

.panel-gray{
  background-color: #f7f7f7;
  padding: 40px 20px;
  border-radius: 10px;
}
.panel-contact{
  background-color: var(--verde);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--verdeoscuro);
  margin-top: 60px;
}
/*default-btn*/

.btn-default {
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px 13px 30px;
}

.btn-default:hover,
.btn-default:focus {
  color: #000000;
  background: #ffffff;
}
.btn-rosa{
  background-color: var(--rosa);
  color:var(--rojo);
}
.btn-rosa:hover{
  background-color: #fff;
  color: var(--rojo);
  border: 2px solid var(--rosa);
}
.btn-black{
  background-color: #000;
  color:#fff;
}
.btn-esgblue{
  background-color: var(--azulfuerte);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
}
.btn-secondary-blue{
  background-color: none;
  border: 1px solid var(--azulfuerte);
  color: var(--azulfuerte);
  font-weight: 700;
  font-size: .8rem;
}
/*section-title*/

.section-title {
  text-align: center;
  max-width: 700px;
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #4d4c4c;
}
.section-title span{
  color: var(--naranja);
}

.section-title .sub-title {
  color: #4e4e4e;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  text-transform: initial;
}

small{
  color: var(--amarillo);
}
/*form-control*/

.line-div {
  text-align: center;
  margin: 10px auto 10px auto;
  border-top: 1px solid #632f6f;
  width: 120px;
  padding: 0px 0px 0px 0px;
}
a:link,
a:visited,
a:active {
  text-decoration: none;
}
.line{
  margin: 0 auto;
  text-align: center;
  width: 500px;
  border:2px solid var(--rosa);
}
.txt-center{
  text-align: center !important;
}
.txt-right{
  text-align: right;
}
.txt-orange{
  color: var(--naranja) !important;
}
.mt-20{
  margin-top: 20px;
}
.mt-30{
  margin-top: 30px;
}
.mt-35{
  margin-top: 35px;
}
.mt-40{
  margin-top: 40px;
}
.mt-50{
  margin-top: 50px;
}
.mt-60{
  margin-top: 60px;
}
.mt-80{
  margin-top: 80px;
}
.mb-60{
  margin-bottom: 60px;
}
.pb-60{
  padding-bottom: 60px;
}
.btn-white{
  background-color: #fff;
  color:#000;
}
.btn-white:hover{
  background-color: var(--amarillo);
  color:#fff;
  font-weight: 800;
}
.form-group{
  margin: 10px 0px;
}
.txt-green{
  color: var(--verde) !important;
}
@media only screen and (max-width: 991px) {
  h2{
    font-size: .5rem;
  }
  small{
    font-size: .8rem;
  }
}

/*================================================
Navbar Area CSS
=================================================*/
.header-area {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    background-color: transparent;
    transition: 0.5s;
}
.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    margin-bottom: 0;
    list-style: none;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    margin:0px 10px;
    font-weight: 700;
    font-size: 14px;
}
.nav-link:hover{
    color:var(--rojo);
    font-weight: 700;
}
.navbar-collapse.show {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    border-radius: 10px;
}
.navbar-toggler {
    margin-top: 10px;
}
.navbar-brand img{
  display: none;
}
.header-area.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        -webkit-box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
        box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
        background-color: #fff !important;
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        color: var(--verde) !important;
}
.header-area.is-sticky .nav-link {
  color: var(--azulfuerte);
}
.header-area.is-sticky .navbar-brand img {
  display: block;
  width: 50px;
}
@media only screen and (max-width: 991px) {
    .header-area {
        background-color: #fff;
    }
    .nav-link{
        color: var(--rojo);
    }
}

/*================================================
Coming Soon Area CSS
=================================================*/
#comingsoon {
  background-image: url(../img/bg-productos.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;  /* horizontal por defecto */
}

#comingsoon img {
  max-width: 300px;
  width: 30%;
  margin: 0 20px;
}

/* En pantallas pequeñas, cambia a vertical */
@media (max-width: 600px) {
  #comingsoon {
    flex-direction: column;
  }
  
  #comingsoon img {
    margin: 10px 0;
    width: 60%;
  }
}
/*================================================
Banner Area CSS
=================================================*/

.main-banner {
  position: relative;
  height: 70vh;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 20px solid var(--verdeoscuro);
}

.main-banner .container {
  height: 100%;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.main-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,#022703 ,#001d01);
  opacity: 0.7;
  z-index: -1;
}

.main-banner-content {
  width: 100%;
  text-align: center;
}

.main-banner-content .row {
  width: 100%;
  align-items: center;
}

.main-banner-content .logo-banner {
  color: #ffffff;
  text-align: center;
}

.main-banner-content .logo-banner img {
  width: 350px;
}

.main-banner-content .subtitle {
  color: #ffffff;
}

.main-banner-content .subtitle img {
  width: 330px;
}

.main-banner-content .subtitle h2 {
  font-size: 1.8rem;
  color: var(--azul);
  font-weight: 800;
}

.main-banner-content .subtitle p {
  font-size: 1.2rem;
  color: #fff;
}

.main-banner-content .subtitle p span {
  color: var(--naranja);
  font-weight: 600;
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .main-banner {
    height: 90vh;
  }
  
  .main-banner .container {
    height: auto;
  }

  .main-banner-content .subtitle h2 {
    font-size: 1.3rem;
    color: var(--azul);
    font-weight: 800;
  }

  .main-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .main-banner-content .logo-banner img {
    width: 150px;
  }

  .main-banner-content .subtitle {
    margin-top: 20px;
  }

  .main-banner-content .subtitle p {
    font-size: 0.9rem;
  }
}

/*================================================
ESG Area CSS
=================================================*/
#esg{
  height: 700px;
  font-family: 'Raleway', sans-serif;
  
}
#esg h2{
  color: var(--azulfuerte);
  font-size: 2rem;
  font-weight: 700;
}
#esg small{
  color: var(--verdeoscuro);
}
#esg .esgcol{
  align-items: center;
  margin: 20px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#esg .esgcol img{
  width: 70px;
  margin: 30px 0px;
}
#esg .esgcol h3{
  text-align: center;
  color: var(--azulfuerte);
  font-size: 1.5rem;
  font-weight: 700;
}
#esg .esgcol p{
  text-align: center;
  font-size: .8rem;
  font-weight: 400;
  flex-grow: 1;
  margin-bottom: 0px;
}
#esg .maincontentesg {
  height: 700px; /* mismo alto que la sección */
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra verticalmente */
  transition: width 0.2s ease;
}
#esg .masinformacion img{
  width: 100%;
}
#esg .masinformacion span{
  cursor: pointer;
  color: var(--azulfuerte);
  text-decoration: underline;
}
#esg .masinformacion{
    height: 700px;
    display: flex;
    align-items: center;
}
#esg .masinformacion .row {
    width: 100%;
}
#esg .masinformacion h5{
  font-size: 1.2rem;
  color: var(--azulfuerte);
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .maincontentesg.col-lg-12 {
    width: 100%;
  }

  .maincontentesg.col-lg-6 {
    width: 50%;
  }

  #esg{
    height: 1650px;
    display: inline-flex;
    padding: 20px 0px;
  }
  #esg h2{
    color: var(--verde);
    font-size: 2rem;
    font-weight: 700;
  }
  #esg p{
    font-size: .9rem;
  }
  #esg .esgcol{
    padding:10px;
    text-align: center;
    border-radius: 10px;
    margin: 20px 30px;
    min-height: 200px;
  }
  #esg .esgcol img{
    width: 50px;
    margin: 10px 0px;
  }
  #esg .esgcol h3{
    color: var(--azul);
    font-size: 1rem;
    font-weight: 700;
  }
  #esg .esgcol p{
    font-size: .9rem;
    font-weight: 400;
    margin-top: 10px;
  }

  #esg .maincontentesg {
    height: 700px; /* mismo alto que la sección */
    display: block;
    flex-direction: column;
    justify-content: center; /* centra verticalmente */
    transition: width 0.2s ease;
  }

  #esg .moreinfobtn{
    margin-top: 20px;
  }

  .separator{
    display: block;
  }

  #esg .masinformacion{
      padding-top: 40px;
      display: block;
  }

  #esg .masinformacion img{
    width: 100%;
    margin-top: 20px;
  }
}
/*================================================
Sostenibilidad Area CSS
=================================================*/
#sostenibilidad{
  height: 700px;
}
#sostenibilidad h2{
  color: var(--verde);
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
}
#sostenibilidad small{
  padding-top: 60px;
  color: var(--verdeoscuro);
  text-align: right !important;
  display: block;
}
#sostenibilidad p{
  color:#4e4e4e;
  text-align: right;
}
#sostenibilidad img{
  width: 100%;
  padding: 0px 40px;
}
#sostenibilidad h3{
  color: var(--verdeoscuro);
  font-weight: 800;
  font-size: 1.2rem;
  text-align: center;
}
#sostenibilidad ul li{
  font-size: .75rem;
  text-align: justify;
  margin: 10px 0px;
}
#sostenibilidad ul li b{
  color: var(--verde);
}
@media only screen and (max-width: 991px) {
  #sostenibilidad{
    height: 1400px;
  }
  #sostenibilidad img{
    width: 250px;
    padding: 0px 40px;
  }
}
/*================================================
Producto Area CSS
=================================================*/
#producto {
  height: 1000px;
  background-color: var(--azulfuerte);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center; /* opcional, si quieres que todos los textos estén centrados */
}
#producto h2{
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
#producto small{
  color: #e4e4e4;
}
#producto h3{
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}
#producto ul{
  text-align: left;
}
#producto ul li{
  color: #fff;
  font-size: .9rem;
}
#producto h4{
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
}
#producto p{
  color: #fff;
}
#producto img{
  width: 30%;
}
#producto .imgproduct{
  width: 300px;
  margin-bottom: 30px;
  border: 5px solid #fff;
  border-radius: 10px;
}
#producto .txtbenclave{
  font-size: 1rem;
  font-weight: 700;
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  #producto {
    height: 1700px;
    background-color: var(--azulfuerte);
    display: block;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center; /* opcional, si quieres que todos los textos estén centrados */
    padding:30px 0px;
  }
}
/*================================================
Greenwashing Area CSS
=================================================*/
#greenwashing{
  height: 1100px;
  background-color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center; /* opcional, si quieres que todos los textos estén centrados */
}
#greenwashing h2{
  color: var(--verde);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
#greenwashing .casogw h3{
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--verdeoscuro);
  margin-top: 20px;
}
#greenwashing .casogw p{
  margin-top: 20px;
}
#greenwashing small{
  padding-top: 60px;
  color: var(--verdeoscuro);
  text-align: center !important;
  display: block;
}
#greenwashing p{
  color:#4e4e4e;
  text-align: center;
}
#greenwashing img{
  width: 100%;
  padding: 0px 40px;
}
@media only screen and (max-width: 991px) {
  #greenwashing{
    height: 2500px;
    padding-top: 40px;
    background-color:#fff;
    display: block;
  }
}
/*================================================
Servicios Area CSS
=================================================*/
#servicios {
  height: auto;
  min-height: 300px;
  font-family: 'Raleway';
  position: sticky;
  z-index: 1;
  background-position: center;
  background-size:100%;
  background-repeat: no-repeat;
  background-image: url(../img/bg-servicios.jpg);
  background-attachment: fixed;
}
#servicios::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  /* For browsers that do not support gradients */
  background-image: linear-gradient(0deg, #000);
  /* Standard syntax (must be last) */
  opacity: 0.7;
}
#servicios h2{
  color: var(--verde);
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
}
#servicios small{
  padding-top: 60px;
  color: #fff;
  text-align: right !important;
  display: block;
}
#servicios p{
  color:#fff;
  text-align: right;
}
#servicios .serviciosall{
  margin-top: 40px;
}
#servicios .serviciosall .servicio{
  height: auto;
  min-height: 200px;
  font-family: 'Raleway';
  position: sticky;
  z-index: 1;
  background-size:cover;
  background-repeat: no-repeat;
    /* Añadir Flexbox para centrar contenido */
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center;     /* Centrado vertical */
  text-align: center;      /* Alineación de texto en caso de varias líneas */
  margin-top: 20px;
}
#servicios .serviciosall .servicio::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  /* For browsers that do not support gradients */
  background-image: linear-gradient(0deg, #000);
  /* Standard syntax (must be last) */
  opacity: 0.7;
}
.serviciosall .row > .col-lg-4:nth-child(1) .servicio {
  background-image: url(../img/bg-servicio1.jpg);
}
.serviciosall .row > .col-lg-4:nth-child(2) .servicio {
  background-image: url(../img/bg-servicio2.jpg);
}
.serviciosall .row > .col-lg-4:nth-child(3) .servicio {
  background-image: url(../img/bg-servicio3.jpg);
}
.serviciosall .row > .col-lg-4:nth-child(4) .servicio {
  background-image: url(../img/bg-servicio4.jpg);
}
.serviciosall .row > .col-lg-4:nth-child(5) .servicio {
  background-image: url(../img/bg-servicio5.jpg);
}
.serviciosall .row > .col-lg-4:nth-child(6) .servicio {
  background-image: url(../img/bg-servicio6.jpg);
}
.serviciosall .row > .col-lg-4:nth-child(7) .servicio {
  background-image: url(../img/bg-servicio7.jpg);
}
.serviciosall .row > .col-lg-4:nth-child(8) .servicio {
  background-image: url(../img/bg-servicio8.jpg);
}
#servicios .serviciosall .servicio h4{
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  #servicios {
    height: auto;
    font-family: 'Raleway';
    position: sticky;
    z-index: 1;
    background-position: center;
    background-size:cover;
    background-repeat: no-repeat;
    background-image: url(../img/bg-servicios.jpg);
    background-attachment: fixed;
  }
  #servicios::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    /* For browsers that do not support gradients */
    background-image: linear-gradient(0deg, #000);
    /* Standard syntax (must be last) */
    opacity: 0.7;
  }
  #servicios h2{
    color: var(--verde);
    font-size: 2rem;
    font-weight: 700;
    text-align: right;
  }
  #servicios small{
    padding-top: 60px;
    color: #fff;
    text-align: right !important;
    display: block;
  }
  #servicios p{
    color:#fff;
    text-align: right;
    font-size: .9rem;
  }
  #servicios .serviciosall .servicio h4{
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
  }
  #servicios .serviciosall .servicio{
    height: auto;
    min-height: 100px;
    font-family: 'Raleway';
    position: sticky;
    z-index: 1;
    background-size:cover;
    background-repeat: no-repeat;
      /* Añadir Flexbox para centrar contenido */
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center;     /* Centrado vertical */
    text-align: center;      /* Alineación de texto en caso de varias líneas */
    margin-top: 20px;
  }
  #servicios .serviciosall .servicio::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    /* For browsers that do not support gradients */
    background-image: linear-gradient(0deg, #000);
    /* Standard syntax (must be last) */
    opacity: 0.7;
  }
  #servicios .serviciosall{
    margin-top: 10px;
  }
}
/*================================================
Ventajas Area CSS
=================================================*/
#ventajas {
  height: 700px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-top: 10px solid var(--azulfuerte);
}
#ventajas .row.justify-content-center {
  align-items: center; /* esto alinea verticalmente los col-* */
  display: flex;       /* asegúrate de que sea flex para que funcione */
}
#ventajas h2{
  color: var(--azulfuerte);
  font-size: 2rem;
  font-weight: 700;
}
#ventajas small{
  color: var(--azul);
}
#ventajas h3{
  color: var(--azulfuerte);
  font-weight: 800;
  font-size: 1.2rem;
}
#ventajas img{
  width: 100%;
  text-align: center;
}
#ventajas .ventaja{
  padding: 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
}
#ventajas .ventaja p{
  font-size: .9rem;
  font-weight: 600;
  color: var(--azulfuerte);
  text-align: left;
}
#ventajas .ventaja img{
  width: 100px;
  padding-right: 20px;
}
@media only screen and (max-width: 991px) {
  #ventajas {
    height: 1300px;
    background-color: #fff;
    display: block;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-top: 10px solid var(--azulfuerte);
    border-bottom: 10px solid var(--azulfuerte);
    padding: 30px 0px;
  }
  #ventajas h2{
    color: var(--azulfuerte);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
  }
  #ventajas .ventaja p{
    font-size: .8rem;
    font-weight: 600;
    color: var(--azulfuerte);
    text-align: left;
  }
  #ventajas img{
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }
}
/*================================================
FAQS Area CSS
=================================================*/
#faqs{
  height: auto;
  background: radial-gradient(circle, #D3EAA6, #84AF24);
  padding: 40px 0px 40px 0px;
}
#faqs h2{
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}
#faqs .faq{
  margin: 20px 0px;
}
#faqs .faq .panel-title{
  background-color: var(--azulfuerte);
  padding: 10px;
  color: #fff;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 800;
}
#faqs .faq .panel-title i {
  float: right;
  margin-left: auto;
}
#faqs .faq h3{
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}
#faqs .faq p{
  font-size: .8rem;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  #faqs{
    height: auto;
    padding-top: 40px;
    background-color:#fff;
    display: block;
  }
}
/*================================================
Grupo Area CSS
=================================================*/
#grupo{
  position: relative; /* antes era sticky */
  font-family: 'Raleway';
  z-index: 1;
  overflow: hidden; /* importante para recortar el video */
  background-image: url('../img/bg-5.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
#grupo::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,#000 ,#000);
  opacity: 0.7;
  z-index: -1;
}
#grupo small{
  font-size: 1rem;
  color: var(--verde);
  font-weight: 600;
  text-align: right;
  display: block;
}
#grupo h3{
  font-size: 2rem;
  color: var(--azul);
  font-weight: 700;
  text-align: right;
}
#grupo p{
  font-size: 1rem;
  margin-top: 20px;
  text-align: right;
  color: #fff;
}
#grupo img{
  width: 300px;
}
#grupo h4{
  color: #fff;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  #grupo h3{
    font-size: 2rem;
    color: var(--azul);
    font-weight: 700;
    text-align: right;
  }
  #grupo p{
    font-size: 1rem;
    margin-top: 20px;
    text-align: right;
    color: #fff;
  }
  #grupo img{
    width: 150px;
  }
  #grupo h4{
    color: #fff;
    font-weight: 700;
  }
}
/*================================================
Contacto Area CSS
=================================================*/
#contacto{
  padding: 60px 0px;
  font-family: 'Raleway', sans-serif;
  text-align: right;
  border-top: 5px solid var(--verdeclaro);
}
#contacto h2{
  color: var(--verde);
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
}
#contacto small{
  color:var(--verdeoscuro) ;
  text-align: right !important;
  display: block;
}
#contacto p{
  color:#000;
  text-align: right;
}
#contacto .contactform{
  text-align: left;
}
#contacto .contactform p{ 
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
}
#contacto .contactform label{
  color: #fff;
  font-size: .7rem;
}
#contacto iframe{
  width: 100%;
  height: 400px;
  padding: 0px 50px;
}
@media only screen and (max-width: 991px) {
  #contacto{
    padding: 20px 0px;
    font-family: 'Raleway', sans-serif;
    text-align: right;
    border-top: 5px solid var(--verdeclaro);
  }
  #contacto h2{
    color: var(--verde);
    font-size: 2rem;
    font-weight: 700;
    text-align: right;
  }
  #contacto small{
    color:var(--verdeoscuro) ;
    text-align: right !important;
    display: block;
  }
  #contacto p{
    color:#000;
    text-align: right;
    font-size: .9rem;
  }
  #contacto .contactform{
    text-align: left;
  }
  #contacto .contactform p{ 
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
  }
  #contacto .contactform label{
    color: #fff;
    font-size: .9rem;
  }
  #contacto .contactform .form-control{
    color: #000;
    font-size: .9rem;
  }
  #contacto iframe{
    width: 100%;
    height: 200px;
    padding: 0px 0px;
  }
  .panel-contact{
    margin-top: 10px;
  }
}
/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color:var(--verdeoscuro);
  padding: 20px 0px 0px 0px;
  position: relative;
  z-index: 1;
  border-top: 20px solid var(--verde);
}
.widget-footer{
  color:#ffffff;
  text-align: center;
}
.widget-footer p{
  font-size:.6rem;
  padding-top: 5px;
  margin-bottom: 0px;
}
.widget-footer img{
  width: 120px;
}
.widget-footer small{
  font-size: .5rem;
}
.widget-footer-contact{
  color: #ffffff;
  padding-top: 130px;
}
.widget-footer-social{
  color: #ffffff;
}
.widget-footer-social i{
  font-size: 1.8rem;
  padding: 60px 10px 0px 10px;
}
.widget-footer-social p{
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  padding-top: 10px;
}
.widget-footer-social a{
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}
@media only screen and (max-width: 991px) {
  .footer-area {
    background-color:var(--verdeoscuro);
    padding: 20px 0px 20px 0px;
    position: relative;
    z-index: 1;
    border-top: 20px solid var(--verde);
  }
  .widget-footer{
    color:#ffffff;
    text-align: center;
  }
  .widget-footer p{
    font-size:.6rem;
    padding-top: 5px;
    margin-bottom: 0px;
  }
  .widget-footer img{
    width: 120px;
  }
  .widget-footer small{
    font-size: .5rem;
  }
  .widget-footer-contact{
    display: none;
  }
  .widget-footer-social{
    color: #ffffff;
    display: none;
  }
  .widget-footer-social i{
    font-size: 1rem;
    padding: 60px 10px 0px 10px;
  }
  .widget-footer-social p{
    color: #ffffff;
    font-size: .5rem;
    font-weight: 800;
    padding-top: 10px;
  }
  .widget-footer-social a{
    color: #ffffff;
    font-size: .5rem;
    font-weight: 800;
  }
}
/*================================================
Go Top CSS
=================================================*/

.go-top {
  position: fixed;
  cursor: poRaleway;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #000;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover,
.go-top:focus {
  color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}