
/* general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

/* colors */
:root {
    --pls-red: #D93743;
    --pls-yellow: #F0CA30;
    --pls-orange: #CA7645;
    --pls-blue: #8199CF;
    --pls-grape: #A080C7;
    --pls-black: #000;
    --pls-white: #fff;
}

/* body fonts */
body {
    .montserrat-font {
    font-family: "Montserrat", sans-serif;
}
}

/* paragraph font */
p {
    font-size: 22px;
}

/* colores bg rlc*/
.bg-pls-red {
    background: #D93743;
}
.bg-pls-yellow {
    background: #F0CA30;
}
.bg-pls-orange {
    background: #CA7645;
}
.bg-pls-blue {
    background: #8199CF;
}
.bg-pls-grape {
    background: #A080C7;
}
.bg-gradient {
    /*background: #2A7B9B;
    background: linear-gradient(90deg,rgba(42, 123, 155, 1) 50%, rgba(87, 199, 133, 1) 50%);
    background: linear-gradient(90deg in oklab, #A080C7, #8199CF);
    background: linear-gradient(rgba(150, 195, 232, 1.5), rgba(231, 184, 211, 0.7)), url("../img/kindnesstreeIMG.png");
    background: linear-gradient(#e66465, #9198e5);
    background: linear-gradient(in oklab, blue, red);*/
    background: linear-gradient(90deg in oklab, blue, red);
}

/* colores text rlc*/
.text-pls-red {
    color: #D93743;
}
.text-pls-yellow {
    color: #F0CA30;
}
.text-pls-orange {
    color: #CA7645;
}
.text-pls-blue {
    color: #8199CF;
}
.text-pls-grape {
    color: #A080C7;
}


/* transp bg text */
.transp {
    background: rgba(255, 255, 255, 0.5);
}

/* transpdark bg text */
.transpdark {
    background: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*background: linear-gradient(0deg, rgb(177, 220, 79) 20%, rgb(177, 220, 79) 80%);*/ /*abajo - arriba*/
  background: url("../img/banner/littleStepsBannerHome.png") fixed center center; /*linear-gradient(rgba(177, 220, 78, 0.5), rgba(177, 220, 79, 0.5)), */
  padding: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 90vh;
  padding-top: 60px;
}

#hero h2 {
  color: var(--pls-red);
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--pls-black);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--pls-white);
  background: var(--pls-grape);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--pls-white);
  text-decoration: none;
}

#hero .btn-get-started:hover {
  background: var(--pls-white);
  color: var(--pls-grape);
  border: 2px solid var(--pls-grape);
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero .carousel-container {
    height: 90vh;
  }

  #hero h2 {
    font-size: 28px;
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*background: linear-gradient(0deg, rgb(177, 220, 79) 20%, rgb(177, 220, 79) 80%);*/ /*abajo - arriba*/
  background: url("../img/banner/littleStepsBannerAbout.png") fixed center center;
  padding: 0;
  background-repeat: no-repeat;

  /*
  background-attachment: fixed;
  max-height: 780px;
  object-fit: contain;
  background-size: contain;
*/
}

#about .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 78vh;
  padding-top: 60px;
}

#about h2 {
  color: var(--pls-red);
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#about p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--pls-black);
}

#about .carousel-control-prev,
#about .carousel-control-next {
  width: 10%;
}

#about .carousel-control-next-icon,
#about .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#about .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--pls-white);
  background: var(--pls-grape);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--pls-white);
  text-decoration: none;
}

#about .btn-get-started:hover {
  background: var(--pls-white);
  color: var(--pls-grape);
  border: 2px solid var(--pls-grape);
  text-decoration: none;
}

/*
@media (min-width: 1024px) {
  #about p {
    width: 60%;
  }

  #about .carousel-control-prev,
  #about .carousel-control-next {
    width: 5%;
  }
}
*/
/*
@media (max-width: 768px) {

  #about .carousel-container {
    height: 78vh;

  }

  #about h2 {
    font-size: 28px;
  }
}

.about-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}
*/


/* X-Small devices (portrait phones, less than 576px) - No media query for `xs` since this is the default in Bootstrap*/
@media (min-width: 440px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .img-logo {
        width: 30%;
        padding-top: 100px;
    }
     #about h1 {
        font-size: 50px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .img-logo {
        width: 60%;
        padding-top: 100px;
    }
    #about h1 {
        font-size: 70px;
    }
}

/* X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }*/

/* XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }*/


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*background: linear-gradient(0deg, rgb(177, 220, 79) 20%, rgb(177, 220, 79) 80%);*/ /*abajo - arriba*/
  background: url("../img/banner/littleStepsBannerContact.png") fixed center center;
  padding: 0;
  background-repeat: no-repeat;

  /*
  background-attachment: fixed;
  max-height: 780px;
  object-fit: contain;
  background-size: contain;
*/
}

#contact1 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 78vh;
  padding-top: 60px;
}

#contact1 h2 {
  color: var(--pls-red);
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#contact1 p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--pls-black);
}

#contact1 .carousel-control-prev,
#contact1 .carousel-control-next {
  width: 10%;
}

#contact1 .carousel-control-next-icon,
#contact1 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#contact1 .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--pls-white);
  background: var(--pls-grape);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--pls-white);
  text-decoration: none;
}

#contact1 .btn-get-started:hover {
  background: var(--pls-white);
  color: var(--pls-grape);
  border: 2px solid var(--pls-grape);
  text-decoration: none;
}


/* X-Small devices (portrait phones, less than 576px) - No media query for `xs` since this is the default in Bootstrap*/
@media (min-width: 440px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .img-logo {
        width: 30%;
        padding-top: 100px;
    }
     #contact1 h1 {
        font-size: 50px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .img-logo {
        width: 60%;
        padding-top: 100px;
    }
    #contact1 h1 {
        font-size: 70px;
    }
}

/* X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }*/

/* XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }*/


/*--------------------------------------------------------------
# Tour Section
--------------------------------------------------------------*/
#tour {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*background: linear-gradient(0deg, rgb(177, 220, 79) 20%, rgb(177, 220, 79) 80%);*/ /*abajo - arriba*/
  background: url("../img/banner/littleStepsBannerTour.png") fixed center center;
  padding: 0;
  background-repeat: no-repeat;

  /*
  background-attachment: fixed;
  max-height: 780px;
  object-fit: contain;
  background-size: contain;
*/
}

#tour .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 78vh;
  padding-top: 60px;
}

#tour h2 {
  color: var(--pls-red);
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#tour p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--pls-black);
}

#tour .carousel-control-prev,
#tour .carousel-control-next {
  width: 10%;
}

#tour .carousel-control-next-icon,
#tour .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#tour .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--pls-white);
  background: var(--pls-grape);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--pls-white);
  text-decoration: none;
}

#tour .btn-get-started:hover {
  background: var(--pls-white);
  color: var(--pls-grape);
  border: 2px solid var(--pls-grape);
  text-decoration: none;
}


/* X-Small devices (portrait phones, less than 576px) - No media query for `xs` since this is the default in Bootstrap*/
@media (min-width: 440px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .img-logo {
        width: 30%;
        padding-top: 100px;
    }
     #tour h1 {
        font-size: 50px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .img-logo {
        width: 60%;
        padding-top: 100px;
    }
    #tour h1 {
        font-size: 70px;
    }
}

/* X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }*/

/* XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }*/


/*--------------------------------------------------------------
# Policies Section
--------------------------------------------------------------*/
#policies1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*background: linear-gradient(0deg, rgb(177, 220, 79) 20%, rgb(177, 220, 79) 80%);*/ /*abajo - arriba*/
  background: url("../img/banner/littleStepsBannerPolicies.png") fixed center center;
  padding: 0;
  background-repeat: no-repeat;

  /*
  background-attachment: fixed;
  max-height: 780px;
  object-fit: contain;
  background-size: contain;
*/
}

#policies1 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 78vh;
  padding-top: 60px;
}

#policies1 h2 {
  color: var(--pls-red);
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#policies1 p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--pls-black);
}

#policies1 .carousel-control-prev,
#policies1 .carousel-control-next {
  width: 10%;
}

#policies1 .carousel-control-next-icon,
#policies1 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#policies1 .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--pls-white);
  background: var(--pls-grape);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--pls-white);
  text-decoration: none;
}

#policies1 .btn-get-started:hover {
  background: var(--pls-white);
  color: var(--pls-grape);
  border: 2px solid var(--pls-grape);
  text-decoration: none;
}


/* X-Small devices (portrait phones, less than 576px) - No media query for `xs` since this is the default in Bootstrap*/
@media (min-width: 440px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .img-logo {
        width: 30%;
        padding-top: 100px;
    }
     #policies1 h1 {
        font-size: 50px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .img-logo {
        width: 60%;
        padding-top: 100px;
    }
    #policies1 h1 {
        font-size: 70px;
    }
}

/* X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }*/

/* XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }*/



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*background: linear-gradient(0deg, rgb(177, 220, 79) 20%, rgb(177, 220, 79) 80%);*/ /*abajo - arriba*/
  background: url("../img/banner/littleStepsBannerGallery.png") fixed center center;
  padding: 0;
  background-repeat: no-repeat;

  /*
  background-attachment: fixed;
  max-height: 780px;
  object-fit: contain;
  background-size: contain;
*/
}

#gallery .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 78vh;
  padding-top: 60px;
}

#gallery h2 {
  color: var(--pls-red);
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#gallery p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--pls-black);
}

#gallery .carousel-control-prev,
#gallery .carousel-control-next {
  width: 10%;
}

#gallery .carousel-control-next-icon,
#gallery .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#gallery .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--pls-white);
  background: var(--pls-grape);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--pls-white);
  text-decoration: none;
}

#gallery .btn-get-started:hover {
  background: var(--pls-white);
  color: var(--pls-grape);
  border: 2px solid var(--pls-grape);
  text-decoration: none;
}


/* X-Small devices (portrait phones, less than 576px) - No media query for `xs` since this is the default in Bootstrap*/
@media (min-width: 440px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .img-logo {
        width: 40%;
        padding-top: 100px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .img-logo {
        width: 30%;
        padding-top: 100px;
    }
     #gallery h1 {
        font-size: 50px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .img-logo {
        width: 60%;
        padding-top: 100px;
    }
    #gallery h1 {
        font-size: 70px;
    }
}

/* X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }*/

/* XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }*/




/*--------------------------------------------------------------
# Buttom Get Started Plus
--------------------------------------------------------------*/


.btn-get-started-plus {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--pls-white);
  background: var(--pls-grape);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--pls-white);
  text-decoration: none;
}

.btn-get-started-plus:hover {
  background: var(--pls-white);
  color: var(--pls-grape);
  border: 2px solid var(--pls-grape);
  text-decoration: none;
}


/*--------------------------------------------------------------
# Story Section
--------------------------------------------------------------*/

.margin-banner {
    margin-top: 36em;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background: rgba(160, 128, 199, 0.25);
  padding: 50px 0;
  color: var(--pls-blue);
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  /*max-height: 40px;*/
  margin-right: 6px;
  margin-left: 25px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  /*font-family: var(--font-primary);*/
}

.footer .footer-info p {
  font-size: 14px;
  /*font-family: var(--font-primary);*/
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(129, 153, 207, 0.9);
  font-size: 16px;
  color: var(--pls-white);
  background: rgba(129, 153, 207, 0.9);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: rgba(129, 153, 207, 0.9);
  border-color: rgba(129, 153, 207, 0.9);
  background: var(--pls-white);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 10px;
}

.footer .footer-links a {
    text-decoration: none;
}

.footer .footer-links ul {
  list-style: none;
  /*padding: 0;
  margin: 0;*/
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(19, 82, 135, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
    font-size: 14px;
    line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}





/*
.fondo-construc {
  background: linear-gradient(rgba(150, 195, 232, 1.5), rgba(231, 184, 211, 0.7)), url("../img/kindnesstreeIMG.png");
  background-size: cover;

  background-repeat: no-repeat;

  padding-top: 500px;

}
*/

@media only screen and (max-width:786px) {
 .fondo-construc {
   width: 100%;
 }  
 .fondo-construc {
   height: 70px;
 }
}


/* text around img */
.alinetext {
    text-align: justify;
}

.centrado {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical {
    display: flex;
    align-items: center;
}


.textaround img{
    display: flex;
    width: 40%;
    height: 40%;
    float: left;
    margin-right: 15px;
}

/* barra de redes sociales */
.social {
    position: fixed;
    top: 200px;
    z-index: 9999;
    left: 0;
}

#facebook a {
    background: rgba(59, 89, 152, 0.6);
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    width: 55px;
    transition: .4s ease all;
}
#facebook a:hover {
    background: #f9aaca;
    padding: 8px 23px;
}
#instagram a {
    background: rgba(195, 42, 163, 0.6);
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    width: 55px;
    transition: .4s ease all;
}
#instagram a:hover {
    background: #8ecd95;
    padding: 8px 23px;
}
#youtube a {
    background: rgba(196, 48, 43, 0.6);
    padding: 8px 17.5px;
    color: #fff;
    text-decoration: none;
    width: 55px;
    transition: .4s ease all;
}
#youtube a:hover {
    background: #f9aaca;
    padding: 8px 20.5px;
}
#whatsapp a {
    background: rgba(0, 187, 45, 0.6);
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    width: 55px;
    transition: .4s ease all;
}
#whatsapp a:hover {
    background: #8ecd95;
    padding: 8px 23px;
}
#email a {
    background: rgba(219, 74, 59, 0.6);
    padding: 8px 19px;
    color: #fff;
    text-decoration: none;
    width: 55px;
    transition: .4s ease all;
}
#email a:hover {
    background: #f9aaca;
    padding: 8px 22px;
}

.boton-menu {
    background: #BC1785;
    border-width: 2px;
    border-radius: 10px;
    border-color: #fff;
    color: #fff;
}

.boton-menu:hover {
    background: #fff;
    border-width: 2px;
    border-radius: 10px;
    border-color: #fff;
    color: #BC1785;
}

.boton-programa1 {
    background: #fff;
    border-width: 2px;
    border-radius: 10px;
    border-color: #333399;
    color: #333399;
}

.boton-programa1:hover {
    background: #333399;
    border-width: 2px;
    border-radius: 10px;
    border-color: #333399;
    color: #fff;
}

.boton-programa4 {
    background: #333399;
    border-width: 2px;
    border-radius: 10px;
    border-color: #333399;
    color: #fff;
}

.boton-programa4:hover {
    background: #fff;
    border-width: 2px;
    border-radius: 10px;
    border-color: #333399;
    color: #333399;
}

.boton-programa3 {
    background: #fff;
    border-width: 2px;
    border-radius: 10px;
    border-color: #BC1785;
    color: #BC1785;
}

.boton-programa3:hover {
    background: #BC1785;
    border-width: 2px;
    border-radius: 10px;
    border-color: #BC1785;
    color: #fff;
}

.boton-programa2 {
    background: #BC1785;
    border-width: 2px;
    border-radius: 10px;
    border-color: #BC1785;
    color: #fff;
}

.boton-programa2:hover {
    background: #fff;
    border-width: 2px;
    border-radius: 10px;
    border-color: #BC1785;
    color: #BC1785;
}

.boton-grande {
    background: #6B6B6B;
    border-width: 2px;
    border-radius: 10px;
    border-color: #6B6B6B;
    color: #fff;
}

.boton-grande:hover {
    background: #fff;
    border-width: 2px;
    border-radius: 10px;
    border-color: #6B6B6B;
    color: #6B6B6B;
}

/* trabajando header */
.trabajando-header {
    width: 100%;
    height: 105vh;
    background-image: url(../img/todosparauno2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}


/* contenido header */
.contenido-header {
    width: 100%;
    height: 80vh;
    background-image: url(../img/todosparauno2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.contenido-header .fondo {
    width: 0%;
    height: 120%;
    max-width: 100%;
    background-image: url(../img/bienvenidos3.png);
    background-position: center;
    background-size: cover;
    padding-bottom: 100px;

}


/* Navbar */
.menu {
    background-color: var(--purple-medium);
    width: 100%;
    position: sticky;
    top: 0;
    padding: 5px;
    z-index: 999;
    text-align: center;
    display: flex;
    justify-content: center;
    font-style: italic;
    margin-bottom: 60px;
}

.menu a{
    display: inline-block;
    padding: 10px 30px;
    font-size: 26px;
    background-color: var(--puerple-medium);
    margin: 0 10px;
    transition: .5s ease all;
    color: var(--gray-light);
    text-decoration: none;
}

.menu a:hover {
    transform: translateY(18px);
    background-color: var(--purple-light);
}

/* Nosotros */
.nosotros {
    margin-bottom: 60px;
}

.subtitulo {
    font-size: 20px;
    color: var(--grape);
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    /*margin-bottom: 20px;*/
}

.subtitulo span {
    background-color: #BC1785;
    /*padding: 0 15px;*/
    z-index: 99;
    position: relative;
}

.subtitulo::after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 100%;
    background: #4db2e3;
    position: relative;
    top: -29px;
    z-index: 1;
}

.nosotros .titulo {
    width: 70%;
    font-size: 44px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 50px;
}

.nosotros .enlace {
    display: inline-block;
    margin-top: 40px;
    color: var(--purple-light);
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: .3s ease all;
}

.nosotros .enlace:hover {
    text-decoration: none;
    letter-spacing: 3px;
    border-bottom: 1px solid var(--purple-light);
}

/*productos */
.productos {
    background: var(--gray-light);
    padding: 20px;
    margin-bottom: 60px;
}

.productos .titulo {
    width: 70%;
    font-size: 44px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 50px;
}

.productos .producto {
    position: relative;
    width: 100%;
}

.productos .overlay {
    width: 0%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--purple-light);
    overflow: hidden;
    transition: .5s ease;
}

.productos .producto:hover .overlay {
    width: 100%;
    opacity: .8;
}

.productos .producto .overlay-texto {
    top: 50%;
    left: 50%;
    position: absolute;
    white-space: nowrap;
    color: var(--white);
    font-size: 18px;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.productos .btn-productos {
    background-color: var(--purple-light);
    color: #fff;
    padding: 7px 20px;
    text-transform: uppercase;
    font-size: 16px;
    border: 2px solid transparent;
    transition: .3s ease;
}

.productos .btn-productos:hover {
    background-color: transparent;
    border: 2px solid var(--purple-light);
    color: var(--purple-light);
}

/* separador */
.separador {
    width: 100%;
    height: 250px;
    background-image: url(../img/marazul.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 60px;
}

.separador p {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    /*font-family: 'Noto Serif', serif;*/
    padding: 10px;
}

/* separador2 */
.separador2 {
    width: 100%;
    height: 250px;
    background-image: url(../img/disfrutartrabajo.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 60px;
}

.separador2 p {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    /*font-family: 'Noto Serif', serif;*/
    padding: 10px;
}

/* fondocontacto */
.fondocontacto {
    width: 90%;
    height: 100%;
    background-image: url(../img/bg_formularioEVL2023.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 10px;
}

/* fijar textarea */
textarea {
    min-height: 100px;
    max-height: 158px;
}


/* media screen fondocontacto (xs <576px, sm ≥576px, md ≥768px, lg ≥992px, xl ≥1200px, xxl ≥1400px) */

/*
@media (max-width: 767px) {
    .fondocontacto {
        height: 100%;
    }

}
*/


/* acerca de */
.acerca-de {
    margin-bottom: 60px;
}

/* galeria */
.galeria {
    margin-bottom: 60px;
}

.galeria img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contacto {
    margin-bottom: 60px;
}

.redes-sociales {
    padding: 10px;
    background-color: var(--purple-light);

}

.redes-sociales svg {
    padding: 5px;
    border-radius: 100%;
    width: 50px;
    transition: .3s ease all;
}

.redes-sociales svg:hover {
    transform: scale(1.2);
}

.nav div li:hover {
    transform: scale(1.2);
    color: #blue;
}

/* media query */
@media screen and max-width 992px {
    p {
        font-size: 18px;
    }
    .contenido-header .texto {
        font-size: 60px;
    }
    .menu a {
        font-size: 20px;
    }
    .nosotros .titulo,
    .productos .titulo {
        font-size: 30px;
    }
}



/* tarjetas equipo */
.card-pos {
    /*position: relative;*/
    transition: all ease .5s;
    transform-style: preserve-3d;
    transform: perspective(600px) rotateY(0deg);
}

.card-pos:hover  {
    -webkit-transform: perspective(600px) rotateY(180deg);
    -ms-transform: perspective(600px) rotateY(180deg);
    -o-transform: perspective(600px) rotateY(180deg);
    transform: perspective(600px) rotateY(180deg);

}

.card-pos .frontal, .card-pos .trasera {
    width: 100%;
    height: 100%;
    transition: all ease .5s;
}

.card-pos .frontal {
    display: block;
   backface-visibility: hidden;
}

.card-pos .trasera {
    /*position: absolute;*/
    transform: perspective(600px) rotateY(180deg);
    backface-visibility: hidden;
    /*overflow: auto;*/
}



/*  Tarjeta 3d modelo */
.contenedor {
    height: 370px;
    width: 270px;
    margin: auto;
    -webkit-perspective: 700;
}

.carta {
    height: 100%;
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: .5s;
}

.carta:hover {
    transform: rotateY(180deg);
}

.Lado {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    position: absolute;
}

.frente {
    /*background: crimson;*/
}

.atras {
    /*background: green;*/
    transform: rotateY(180deg);
}

.img-equipo {
    width: 100%;
    height: 100%;
}

/* imagenes en programas */

.programa_diario {
    display: flex;
    width: 100%;
    max-height: 175px;
    justify-content: space-around;
    background-image: url(../img/uni/programa_diario.jpg);
    flex-wrap: wrap;
    object-fit: contain;

}

.card-wrapper {
    height:350px;
    width: 280px;
    border-radius: 10%;
    background-color: #fff;
    position:relative;
    margin: auto;
    border-color: blue;
    top: -70px;
    -webkit-perspective: 600px;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10%;
    transition: transform 0.3s;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-wrapper:hover .content {
    transform: rotateY(180deg);
    transition: 0.3s;
}

.face-front, .face-back {
    position: absolute;
    width: 92%;
    height: 92%;
    border-radius: 10%;
    background-color: #fff;
    color: black;
    backface-visibility: hidden;
}

.face-back {
    transform: rotateY(180deg);
}

.btn-tour {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--pls-white);
  background: var(--pls-black);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--pls-grape);
  text-decoration: none;
}

.btn-tour:hover {
  background: var(--pls-grape);
  color: var(--pls-black);
  border: 2px solid var(--pls-black);
  text-decoration: none;
}

