/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997; }
  .header .logo img {
    max-height: 100px;
    margin-top: 1rem;
    padding-left: 5rem; }
  .header .logo h1 {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-primary);
    font-family: var(--font-secondary); }
    .header .logo h1 span {
      color: var(--color-primary);
      font-weight: 500; }

.header.sticked {
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1); }

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: white;
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary); }

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85); }

@media (max-width: 1279px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px; } }

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative; }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center; }
  .navbar li {
    position: relative; }
  .navbar > ul > li {
    white-space: nowrap; }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: white;
    white-space: nowrap;
    transition: 0.3s;
    position: relative; }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px; }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s; }
  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7); }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-primary); }
  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover > a:before,
  .navbar .dropdown .active:before {
    visibility: hidden; }
  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover > a {
    color: var(--color-white);
    background: var(--color-secondary); }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s; }
  .navbar .dropdown ul li {
    min-width: 200px; }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5); }
  .navbar .dropdown ul a i {
    font-size: 12px; }
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary); }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible; }
  .navbar .megamenu {
    position: static; }
  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex; }
  .navbar .megamenu ul li {
    flex: 1; }
  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none; }
  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary); }
  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%; }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%; } }

/*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997; }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998; }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s; }
  .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(--color-white); }
  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3); }
  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block; }
  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px; }
  .mobile-nav-toggle.bi-x {
    color: var(--color-white); }
  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative; }
  .mobile-nav-active .navbar {
    left: 0; }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996; } }

@media (max-width: 1280px) {
  .header .logo img {
    margin-top: 0rem;
    padding-left: 0rem;
    width: 90px; } }

@media (max-width: 1024px) {
  .header .logo img {
    margin-top: 0rem;
    padding-left: 0rem;
    width: 80px; } }

@media (max-width: 768px) {
  .header .logo img {
    margin-top: 0rem;
    padding-left: 0rem;
    width: 70px; } }

@media (max-width: 425px) {
  .header .logo img {
    margin-top: 0rem;
    padding-left: 0rem;
    width: 50px; } }

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 80vh;
  background: url("../img/hero.jpeg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px; }

.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-black-rgb), 0.75);
  position: absolute;
  inset: 0; }

@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed; } }

.hero-fullscreen p {
  color: white;
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400; }

.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: white;
  font-family: var(--font-secondary); }
  .hero-fullscreen h2 span {
    color: var(--color-primary); }

@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px; }
  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px; } }

/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
  padding: 0; }
  .onfocus .video-play {
    min-height: 400px;
    background: linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)), url("../img/onfocus-video-bg.jpg") center center;
    background-size: cover; }
  .onfocus .content {
    background: linear-gradient(rgba(var(--color-black-rgb), 0.8), rgba(var(--color-secondary-rgb), 0.8)), url("../img/onfocus-content-bg.jpg") center center;
    background-size: cover;
    color: rgba(var(--color-white-rgb), 0.8);
    padding: 40px; }

@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px; } }

.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white); }

.onfocus .content ul {
  list-style: none;
  padding: 0; }
  .onfocus .content ul li {
    padding-bottom: 10px; }
  .onfocus .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary); }

.onfocus .content p:last-child {
  margin-bottom: 0; }

.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary); }

.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s; }

.onfocus .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px; }

.onfocus .content .read-more:hover i {
  margin-left: 10px; }

.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden; }

.onfocus .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0); }

.onfocus .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.onfocus .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0; }

.onfocus .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20); }

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1; }
  100% {
    transform: scale(1, 1);
    opacity: 0; } }

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1; }
  100% {
    transform: scale(1, 1);
    opacity: 0; } }

/*--------------------------------------------------------------
# Componentes
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%; }
  .featured-services .service-item .icon {
    margin-bottom: 10px; }
    .featured-services .service-item .icon i {
      color: var(--color-primary);
      font-size: 36px;
      transition: 0.3s; }
  .featured-services .service-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px; }
    .featured-services .service-item h4 a {
      color: var(--color-secondary);
      transition: ease-in-out 0.3s; }
  .featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0; }

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1); }

.featured-services .service-item:hover h4 a {
  color: var(--color-primary); }

@media screen and (max-width: 1200px) {
  .features .container {
    width: auto; }
    .features .container ul {
      width: 840px; }
      .features .container ul li a h4 {
        display: none; } }

@media screen and (max-width: 1024px) {
  .features {
    display: none; } }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px; }
  .footer .footer-content {
    background: var(--color-secondary);
    padding: 60px 0 30px 0; }
    .footer .footer-content .footer-info {
      margin-bottom: 30px; }
      .footer .footer-content .footer-info h3 {
        font-size: 28px;
        margin: 0 0 20px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase; }
        .footer .footer-content .footer-info h3 span {
          color: var(--color-primary); }
      .footer .footer-content .footer-info p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: var(--font-primary);
        color: var(--color-white); }
    .footer .footer-content h4 {
      font-size: 16px;
      font-weight: 600;
      color: var(--color-white);
      position: relative;
      padding-bottom: 12px;
      margin-bottom: 15px; }

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0; }

.footer .footer-content .footer-links {
  margin-bottom: 30px; }
  .footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer .footer-content .footer-links ul i {
      padding-right: 2px;
      color: var(--color-white);
      font-size: 12px;
      line-height: 1; }
    .footer .footer-content .footer-links ul li {
      padding: 10px 0;
      display: flex;
      align-items: center; }

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0; }

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1; }

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white); }

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px; }
  .footer .footer-content .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px); }
  .footer .footer-content .footer-newsletter form input[type="email"]:focus-visible {
    outline: none; }
  .footer .footer-content .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--color-primary);
    color: var(--color-white);
    transition: 0.3s;
    border-radius: 0 4px 4px 0; }
  .footer .footer-content .footer-newsletter form input[type="submit"]:hover {
    background: rgba(var(--color-primary-rgb), 0.85); }

.footer .footer-legal {
  padding: 30px 0;
  background: var(--color-secondary-dark); }
  .footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: var(--color-white); }
    .footer .footer-legal .credits a {
      color: var(--color-primary-light); }

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s; }

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-semillero {
  width: 100%;
  min-height: 40vh;
  background: url("../img/semillero.jpeg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px; }

.hero-semillero:before {
  content: "";
  background: rgba(var(--color-black-rgb), 0.75);
  position: absolute;
  inset: 0; }

@media (min-width: 1365px) {
  .hero-semillero {
    background-attachment: fixed; } }

.hero-semillero p {
  color: white;
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400; }

.hero-semillero h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: white;
  font-family: var(--font-secondary); }
  .hero-semillero h2 span {
    color: var(--color-primary); }

@media (max-width: 640px) {
  .hero-semillero h2 {
    font-size: 32px; }
  .hero-semillero p {
    font-size: 18px;
    margin-bottom: 30px; } }

/*--------------------------------------------------------------
--------------------------------------------------------------*/
.margin {
  margin-bottom: 40px; }

.card {
  border: 1px solid #0e72c4;
  margin: 0.5rem; }

.titulo-semillero {
  margin: 30px 0px 25px 0px; }

.parrafo-semillero {
  margin-bottom: 30px; }

@media screen and (max-width: 1440px) {
  .div-tarjetas {
    margin-bottom: 0px; }
    .div-tarjetas .card {
      margin: 5px 5px 5px 5px; } }

@media screen and (max-width: 1024px) {
  .div-tarjetas {
    margin-bottom: 0px; }
    .div-tarjetas .card {
      width: 250px;
      margin: 5px 0px 5px 0px; } }

@media screen and (max-width: 768px) {
  .div-tarjetas {
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: 0px; }
    .div-tarjetas .card {
      width: 300px;
      margin: 5px 0px 5px 0px; } }

@media screen and (max-width: 425px) {
  .div-tarjetas {
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: 0px; }
    .div-tarjetas .card {
      width: 200px;
      margin: 5px 0px 5px 0px; } }

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-contacto {
  width: 100%;
  min-height: 40vh;
  background: url("../img/contactanos.jpeg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px; }

.hero-contacto:before {
  content: "";
  background: rgba(var(--color-black-rgb), 0.75);
  position: absolute;
  inset: 0; }

@media (min-width: 1365px) {
  .hero-contacto {
    background-attachment: fixed; } }

.hero-contacto p {
  color: white;
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400; }

.hero-contacto h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: white;
  font-family: var(--font-secondary); }
  .hero-contacto h2 span {
    color: var(--color-primary); }

@media (max-width: 640px) {
  .hero-contacto h2 {
    font-size: 32px; }
  .hero-contacto p {
    font-size: 18px;
    margin-bottom: 30px; } }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px; }
  .contact .map iframe {
    border: 0;
    width: 100%;
    height: 400px; }

.contact .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden; }
  .contact .info p {
    color: var(--color-secondary-light);
    margin-bottom: 30px;
    font-size: 15px; }

.contact .contact .info h3 {
  font-weight: 600;
  font-size: 24px; }

.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15); }

.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px; }

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary); }

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light); }

.contact .php-email-form {
  width: 100%;
  background: var(--color-white); }
  .contact .php-email-form .form-group {
    padding-bottom: 8px; }
  .contact .php-email-form .error-message {
    display: none;
    color: var(--color-white);
    background: var(--color-red);
    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: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600; }

.contact .php-email-form .loading {
  display: none;
  background: var(--color-white);
  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 var(--color-green);
  border-top-color: var(--color-white);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite; }

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px; }

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-secondary-light); }

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
  height: 48px;
  padding: 10px 15px; }

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 159px; }

.contact .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 13px 50px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 0; }

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(var(--color-primary-rgb), 0.85); }

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

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

@media screen and (max-width: 1024px) {
  .contact .php-email-form textarea {
    height: 183px; } }

.hero-nosotros {
  width: 100%;
  min-height: 40vh;
  background: url("../img/nosotros-hero.jpeg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px; }

.hero-nosotros:before {
  content: "";
  background: rgba(var(--color-black-rgb), 0.75);
  position: absolute;
  inset: 0; }

@media (min-width: 1365px) {
  .hero-nosotros {
    background-attachment: fixed; } }

.hero-nosotros p {
  color: white;
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400; }

.hero-nosotros h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: white;
  font-family: var(--font-secondary); }
  .hero-nosotros h2 span {
    color: var(--color-primary); }

@media (max-width: 640px) {
  .hero-nosotros h2 {
    font-size: 32px; }
  .hero-nosotros p {
    font-size: 18px;
    margin-bottom: 30px; } }

/*--------------------------------------------------------------
# Txt   
--------------------------------------------------------------*/
.nosotros-txt {
  text-align: justify; }

.carousel-container {
  color: white; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000; }

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden; }

#hero .carousel-item::before {
  content: "";
  background-color: rgba(5, 12, 18, 0.768);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden; }

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden; }

#hero .carousel-content {
  text-align: left; }

@media (max-width: 992px) {
  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px); }
  #hero .carousel-content.container {
    padding: 0 50px; } }

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900; }

#hero p {
  width: 100%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff; }

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top; }

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0; }

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s; }

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0); }

#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 .carousel-indicators li {
  cursor: pointer; }

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #428bca; }

#hero .btn-get-started:hover {
  background: #1c5c93; }

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px; } }

@media (max-height: 500px) {
  #hero,
  #hero .carousel-item {
    height: 120vh; } }

@media (min-width: 1024px) {
  #hero p {
    width: 80%; }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%; } }

/*--------------------------------------------------------------
# Img nosotros
--------------------------------------------------------------*/
.img-nosotros {
  width: 10rem;
  height: 10rem; }

.img-end {
  text-align: end;
  padding-right: 2rem; }

.img-nosotros-time {
  width: 15rem;
  height: 15rem; }

.img-adaptacion {
  width: 15rem;
  height: 15rem; }

@media screen and (max-width: 991px) {
  .img-nosotros-time {
    display: none; } }

.bordes-componentes {
  border-style: solid;
  border-radius: 5px;
  padding: 10px; }

.why-us {
  display: none; }
  .why-us .content {
    padding: 60px 100px 0 100px; }
    .why-us .content h3 {
      font-weight: 400;
      font-size: 34px;
      color: #070505; }
    .why-us .content h4 {
      font-size: 20px;
      font-weight: 700;
      margin-top: 5px; }
    .why-us .content p {
      font-size: 15px;
      color: #848484; }

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center; }

.why-us .accordion-list ul {
  padding: 0;
  list-style: none; }

.why-us .accordion-list li {
  padding: 15px 0px;
  background: #fff;
  border-radius: 4px; }

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer; }

.why-us .accordion-list span {
  color: #0a0606;
  font-weight: 600;
  font-size: 18px;
  padding-left: 5px; }

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0; }

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0; }

.why-us .accordion-list .icon-show {
  display: none; }

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block; }

.why-us .accordion-list a.collapsed .icon-close {
  display: none; }

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0; } }

@media (max-width: 1024px) {
  .why-us {
    display: block; }
  .why-us .row {
    display: inline; }
  .why-us .img {
    min-height: 10px; }
  .why-us .content {
    padding-top: 30px; } }

@media (max-width: 575px) {
  .why-us {
    display: flex;
    padding-bottom: 0px; } }

.hero-merchandising {
  width: 100%;
  min-height: 40vh;
  background: url("../img/merchandising.jpeg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px; }

.hero-merchandising:before {
  content: "";
  background: rgba(var(--color-black-rgb), 0.75);
  position: absolute;
  inset: 0; }

@media (min-width: 1365px) {
  .hero-merchandising {
    background-attachment: fixed; } }

.hero-merchandising p {
  color: white;
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400; }

.hero-merchandising h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: white;
  font-family: var(--font-secondary); }
  .hero-merchandising h2 span {
    color: var(--color-primary); }

@media (max-width: 640px) {
  .hero-merchandising h2 {
    font-size: 32px; }
  .hero-merchandising p {
    font-size: 18px;
    margin-bottom: 30px; } }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
  padding: 0px; }

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 0 10px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out; }

.portfolio #portfolio-flters li::before {
  content: "[";
  margin-right: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out; }

.portfolio #portfolio-flters li::after {
  content: "]";
  margin-left: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out; }

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #0050ad; }

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: #0050ad; }

.portfolio .portfolio-item {
  margin-bottom: 30px; }

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden; }

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out; }

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px; }

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px; }

.portfolio .portfolio-item .portfolio-info p {
  color: #fedac0;
  font-size: 14px;
  margin-bottom: 0; }

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s; }

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fd9f5b; }

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px; }

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s; }

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s; }

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #fd9f5b; }

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2); }

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1; }

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px; }

.portfolio-details .portfolio-details-slider img {
  width: 100%; }

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative; }

.portfolio-details
.portfolio-details-slider
.swiper-pagination
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0050ad; }

.portfolio-details
.portfolio-details-slider
.swiper-pagination
.swiper-pagination-bullet-active {
  background-color: #0050ad; }

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 44, 57, 0.08); }

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee; }

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px; }

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px; }

.portfolio-details .portfolio-description {
  padding-top: 30px; }

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px; }

.portfolio-details .portfolio-description p {
  padding: 0; }

@media screen and (max-width: 425px) {
  .portfolio #portfolio-flters li {
    font-size: 11px; } }

@media screen and (max-width: 375px) {
  .portfolio #portfolio-flters li {
    font-size: 9px; } }

@media screen and (max-width: 320px) {
  .portfolio #portfolio-flters li {
    font-size: 9px; } }

.ajuste-left {
  left: auto !important; }

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh; }

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite; }

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s; }

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1; }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0; } }

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1; }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0; } }

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth; }

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary); }

.texto-justificado {
  text-align: justify; }

.modal {
  color: black; }

/*SECTION*/
section {
  padding: 60px 0;
  overflow: hidden; }
  section .section-header {
    text-align: center;
    padding-bottom: 40px; }
    section .section-header h2 {
      font-size: 48px;
      font-weight: 300;
      margin-bottom: 20px;
      color: var(--color-secondary); }
    section .section-header p {
      margin: 0 auto;
      color: var(--color-secondary-light); }

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%; } }

/*--------------------------------------------------------------
# Breadcrumbs (BORRAR)
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px; }
  .breadcrumbs h2 {
    font-size: 30px;
    font-weight: 300;
    margin: 0; }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px; }
    .breadcrumbs ol li + li {
      padding-left: 10px; }
      .breadcrumbs ol li + li:before {
        display: inline-block;
        padding-right: 10px;
        color: var(--color-secondary-light);
        content: "/"; }

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important; }
  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px; }
  .breadcrumbs ol {
    display: block; }
    .breadcrumbs ol li {
      display: inline-block; } }

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s; }
  .scroll-top i {
    font-size: 24px;
    color: var(--color-white);
    line-height: 0; }

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white); }

.scroll-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; } }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px; }

@media screen and (max-width: 1399px) {
  .actividad-section {
    display: flex;
    flex-direction: row-reverse; }
  .about .about-img {
    margin: 115px 0px 0px 0px; } }

@media screen and (max-width: 1199px) {
  .about .about-img {
    margin: 270px 0px 0px 0px; } }

@media screen and (max-width: 991px) {
  .about .about-img {
    display: none; } }

@media screen and (max-width: 700px) {
  .about .about-img {
    display: block;
    margin: 0px 0px 0px 0px; } }

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat; }

@media (max-width: 575px) {
  .about .about-img {
    margin: 0px 0 0 0px; }
  .about .about-img:before {
    inset: -30px 0 0 -30px; } }

.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px; }

@media (max-width: 768px) {
  .about h3 {
    font-size: 28px; } }

.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2); }
  .about .nav-pills li + li {
    margin-left: 40px; }

@media (max-width: 425px) {
  .about .nav-pills {
    display: flex;
    justify-content: space-around; }
    .about .nav-pills li + li {
      margin-left: 0px; } }

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary); }

.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary); }

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px; } }

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary); }

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary); }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features div ul {
  display: flex;
  flex-wrap: nowrap;
  width: 960px; }

@media (max-width: 425px) {
  .features div ul {
    flex-wrap: wrap;
    width: auto; } }

.features .nav-tabs {
  border: 0; }

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%; }
  .features .nav-link i {
    font-size: 32px;
    line-height: 0; }
  .features .nav-link h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: var(--color-secondary); }

.features .nav-link:hover {
  color: var(--color-primary); }

.features .nav-link.active {
  transition: 0.3s;
  background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
  border-color: var(--color-primary); }

.features .nav-link.active h4 {
  color: var(--color-white); }

.features .nav-link.active i {
  color: var(--color-white) !important; }

.features .tab-content {
  margin-top: 30px; }

.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out; }

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary); }

.features .tab-pane ul {
  list-style: none;
  padding: 0; }
  .features .tab-pane ul li {
    padding-bottom: 10px; }
  .features .tab-pane ul i {
    font-size: 24px;
    margin-right: 4px;
    color: var(--color-primary); }

.features .tab-pane p:last-child {
  margin-bottom: 0; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden; }
  .services .img img {
    transition: 0.6s; }

.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1); }
  .services .details h3 {
    color: var(--color-default);
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s; }
  .services .details p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0; }

.services .services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white); }

.services .service-item:hover .details h3 {
  color: var(--color-primary); }

.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary); }
  .services .service-item:hover .details .icon i {
    color: var(--color-primary); }

.services .service-item:hover .img img {
  transform: scale(1.2); }
