.section-top {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-top .section-tit {
  color: #38515c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
}
.section-top .section-sub {
  color: #105E80;
  font-weight: 400;
}
@media (min-width: 768px) {
  .section-top .section-sub {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (max-width: 767px) {
  .section-top .section-sub {
    font-size: 36px;
    line-height: 40px;
  }
}

.hero {
  position: relative;
}
.hero .swiper {
  height: var(--viewportHeight);
}
.hero .swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.hero .swiper .swiper-slide > picture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero .swiper .swiper-slide > picture:before {
  content: "";
  background-color: #000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero .swiper .swiper-slide > picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero .swiper .swiper-slide > picture.no-content:before {
  content: none;
}
.hero .swiper .swiper-slide .container {
  position: relative;
}
.hero .swiper .swiper-slide .slide-cont {
  border-radius: 12px;
  color: #FFFFFF;
}
.hero .swiper .swiper-slide .hero-tit {
  margin-bottom: 20px;
  font-weight: 700;
}
.hero .swiper .swiper-slide .hero-sub {
  padding: 4px 8px;
  border-radius: 100px;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  color: #062633;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  display: inline-flex;
}
.hero .swiper .swiper-slide .hero-txt ul {
  padding-left: 25px;
  margin-bottom: 20px;
}
.hero .swiper .swiper-slide .hero-txt ul li {
  margin-bottom: 0;
}
.hero .swiper .swiper-slide .hero-txt > *:last-child {
  margin-bottom: 0;
}
.hero .swiper .swiper-slide .btn {
  margin-top: 32px;
}
.hero .swiper .swiper-button-prev,
.hero .swiper .swiper-button-next {
  color: #FFFFFF;
  font-size: 28px;
}
.hero .swiper.swiper-initialized .swiper-slide .slide-img,
.hero .swiper.swiper-initialized .swiper-slide .slide-cont {
  opacity: 0;
  transition: opacity 0.5s;
}
.hero .swiper.swiper-initialized .swiper-slide.swiper-slide-loaded .slide-img,
.hero .swiper.swiper-initialized .swiper-slide.swiper-slide-loaded .slide-cont {
  opacity: 1;
}
@media (min-width: 1440px) {
  .hero .swiper .swiper-pagination-wrapper {
    right: calc(50% - 688px);
  }
  .hero .swiper .slide-img,
  .hero .swiper .slide-cont {
    width: 836px;
  }
  .hero .swiper .slide-cont {
    padding: 32px 112px 32px 32px;
  }
  .hero .swiper .slide-cont .hero-tit {
    width: 640px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .hero .swiper .swiper-pagination-wrapper {
    right: calc(50% - 472px);
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .hero .swiper .slide-img,
  .hero .swiper .slide-cont {
    width: 688px;
  }
  .hero .swiper .slide-cont {
    padding: 32px 92px 32px 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero .swiper .swiper-pagination-wrapper {
    right: calc(50% - 344px);
  }
}
@media (min-width: 768px) {
  .hero .swiper .swiper-slide {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .hero .hero-tit {
    font-size: 48px;
    line-height: 52px;
  }
  .hero .hero-txt {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .hero .swiper .swiper-slide {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero .swiper .swiper-pagination-wrapper {
    right: 20px;
  }
  .hero .slide-cont {
    padding: 20px;
  }
  .hero .slide-cont .hero-tit {
    font-size: 36px;
    line-height: 40px;
  }
  .hero .slide-cont .hero-txt {
    font-size: 14px;
    line-height: 20px;
  }
  .hero .slide-cont .btn {
    width: 100%;
    display: flex;
  }
}

.featured {
  padding-top: 40px;
}
.featured .section-cont {
  display: grid;
}
.featured .section-cont .item {
  min-height: 204px;
  border-radius: 10px;
  background-color: #105E80;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 24px;
}
.featured .section-cont .item picture {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.featured .section-cont .item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.featured .section-cont .item .item-cont {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured .section-cont .item .item-cont .item-tit {
  font-weight: 700;
}
.featured .section-cont .item .item-cont .item-sub {
  color: #8FDDFF;
}
@media (max-width: 1439px) {
  .featured .section-cont .item {
    flex-direction: column;
  }
  .featured .section-cont .item .item-cont {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .featured .section-cont {
    gap: 16px;
  }
  .featured .section-cont .item {
    padding: 20px;
  }
  .featured .section-cont .item .item-cont .item-tit {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 1023px) {
  .featured .section-cont {
    gap: 10px;
  }
  .featured .section-cont .item {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .featured .section-cont {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .featured .section-cont {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fp {
  padding-top: 40px;
  margin-top: 20px;
}
.fp .section-cont {
  display: grid;
  gap: 24px;
}
.fp .section-cont .item {
  border-radius: 10px;
  background-color: #D2F2FF;
  color: #062633;
  text-transform: uppercase;
  overflow: hidden;
}
.fp .section-cont .item .item-cont {
  padding: 30px;
}
.fp .section-cont .item .item-tit {
  margin-bottom: 32px;
  color: #0B3F55;
  font-weight: 700;
}
.fp .section-cont .item .item-sub {
  padding: 4px 8px;
  border-radius: 100px;
  margin-bottom: 20px;
  background-color: #105E80;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  display: inline-flex;
}
.fp .section-cont .item .item-txt {
  font-size: 20px;
  line-height: 24px;
}
.fp .section-cont .item .item-txt ul {
  list-style-type: none;
}
.fp .section-cont .item .item-txt ul li {
  padding-block: 8px;
  border-bottom: 1px solid;
  margin-bottom: 0;
}
.fp .section-cont .acceso {
  display: flex;
}
.fp .section-cont .acceso picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fp .section-cont .materias {
  padding: 30px;
}
.fp .section-cont .materias .item-cont {
  padding: 0;
}
@media (min-width: 1440px) {
  .fp .section-cont .acceso > * {
    width: 50%;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .fp .section-cont .acceso {
    flex-direction: column;
    justify-content: space-between;
  }
  .fp .section-cont .acceso picture {
    height: 320px;
  }
}
@media (min-width: 1024px) {
  .fp .section-cont {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp .section-cont .materias {
    grid-column: span 2/span 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .fp .section-cont .materias .item-tit {
    width: 100%;
  }
  .fp .section-cont .materias .item-cont {
    width: calc(50% - 40px);
  }
}
@media (max-width: 1023px) {
  .fp .section-cont {
    grid-template-columns: repeat(1, 1fr);
  }
  .fp .materias .item-cont + .item-cont {
    margin-top: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fp .section-cont .acceso > * {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .fp .section-cont .item .item-tit {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .fp .section-cont .item .item-tit {
    font-size: 28px;
    line-height: 32px;
  }
  .fp .section-cont .acceso {
    flex-direction: column;
  }
}

.nosotros {
  padding-top: 40px;
  margin-top: 40px;
}
.nosotros .container .section-top {
  text-align: left;
}
.nosotros .container .section-cont {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
}
.nosotros .container .section-cont .section-btn {
  margin-top: 24px;
}
@media (min-width: 1440px) {
  .nosotros .container {
    display: flex;
    justify-content: space-between;
  }
  .nosotros .container .section-top {
    width: 622px;
  }
  .nosotros .container .section-cont {
    width: 724px;
    margin-top: 44px;
  }
}
@media (max-width: 767px) {
  .nosotros .section-cont .section-btn .btn {
    width: 100%;
    display: flex;
  }
}

.contacto {
  margin-top: 60px;
  background-color: #105E80;
  color: #FFFFFF;
}
.contacto a {
  color: #FFFFFF;
}
.contacto a:focus, .contacto a:hover {
  color: #D2F2FF;
}
.contacto .container {
  padding-block: 90px;
}
.contacto form .form-group .control-label {
  color: #FFFFFF;
}
.contacto form .form-group .form-control {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.contacto form .form-group:not(.form-group-static).form-group-focused .control-label, .contacto form .form-group:not(.form-group-static).form-group-filled .control-label {
  background-color: #105E80;
}
.contacto form .form-group:not(.form-group-static).form-group-filled .control-label {
  color: #D2F2FF;
}
.contacto form .form-group.form-group-focused .control-label {
  color: #D2F2FF;
}
.contacto form .form-group.form-group-focused .form-control {
  border-color: #D2F2FF;
  box-shadow: 0 0 0 1px #D2F2FF inset;
}/*# sourceMappingURL=inicioFront.css.map */