* {
  box-sizing: border-box;
}

:root {
  --color-p: #5573a1;
  --color-s: #bccee4;
  --color-white: #ffffff;
  --color-red: #ac1921;
  --font-p: Helvetica, "Roboto", sans-serif;
  --font-s: Helvetica, "Roboto", sans-serif;
  --mx-w-gen: 1400px;
  --padding-gen: 80px 25px;
}

html {
  font-size: 16px;
  text-wrap: balance;
  scroll-behavior: smooth;
}

html div {
  transition: all 0.5s ease-in-out;
}

body {
  font-family: var(--font-p);
  margin: 0;
  padding: 0;
}

h1 {
  padding-top: 50px;
  margin: 0;
  font-size: 5rem;
  font-weight: 400;
  line-height: 5rem;
  color: var(--color-p);
}

h2 {
  color: var(--color-red);
  font-size: 1.7rem;
  font-weight: 500;
}

h4 {
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--color-p);
  margin-bottom: 0;
}

h5 {
  font-size: 1.8rem;
  font-family: var(--font-p);
  color: var(--color-white);
}

p {
  font-size: 1.5rem;
  font-weight: 300;
}

li {
  font-size: 1.5rem;
  font-weight: 300;
}

a {
  font-weight: bold;
  color: var(--color-p);
  text-decoration: none;
  position: relative;
}

a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: 2px solid var(--color-red);
}

img {
  width: 100%;
  height: auto;
}

.mx-w-container {
  max-width: var(--mx-w-gen);
  display: flex;
  flex-flow: row;
}

/* LOGOS */
.cnt-logos {
  width: 100%;
  background: var(--color-white);
  display: flex;
  justify-content: space-between;
  padding: var(--padding-gen);
  padding-top: 10px;
  padding-bottom: 10px;
}

.cnt-logos-01 {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

.cnt-logos-01 a {
  padding-right: 20px;
  display: inline-flex;
}

.cnt-logos a:hover::after {
  content: unset;
}

.cnt-logos img {
  width: 100%;
  height: 100%;
  max-height: 50px;
  object-fit: contain;
}

/* MENÚ */
.contenedormenu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 65985;
  transition: all 0.3s ease-in-out;
}

.bg-menu-scroll {
  background-color: #e8e8e8;
  transition: all 0.3s ease-in-out;
}

.bg-menu-scroll .menuprincipal {
  padding-top: 0;
  transition: all 0.3s ease-in-out;
}

.menuprincipal {
  max-width: 500px;
  margin: auto;
  padding-top: 20px;
  transition: all 0.3s ease-in-out;
}

.menuprincipal ul {
  height: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.menuprincipal a {
  text-decoration: none;
  display: block;
  color: var(--color-p);
  align-items: baseline;
  font-size: 14px;
  letter-spacing: 1.3px;
  
}
.mw700{
  max-width: 720px;
}

.menumovil {
  background-color: var(--color-white);
  display: none;
  position: fixed;
  width: 100%;
  height: 60px;
  overflow: hidden;
  text-align: right;
  transition: all 0.5s ease-in-out;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50px;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--color-p);
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham8 .top {
  stroke-dasharray: 40 160;
}

.ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

.ham8.active .top {
  stroke-dashoffset: -64px;
}

.ham8.active .middle {
  transform: rotate(90deg);
}

.ham8.active .bottom {
  stroke-dashoffset: -64px;
}

.menumovilabierto {
  height: 100%;
  width: 100%;
  background-color: #fffffff7;
  position: relative;
  overflow: visible !important;
}

.menumovilabierto::after {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  top: -150px;
  right: 0;
  background: var(--color-white);
  z-index: -72;
}

.menumovil ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.menumovil a {
  text-decoration: none;
  color: var(--color-p);
  padding: 20px;
  display: block;
  font-size: 32px;
  text-align: center;
}

.menumovil button {
  border: none;
  background-color: var(--color-white);
  padding-top: 1vh;
}

@media (min-width: 769px) {
  .cnt-logos-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .contenedormenu {
    display: none;
  }

  .cnt-logos-mobile {
    display: flex;
    flex-flow: row;
    position: fixed;
    top: 0;
    z-index: 5684945769856;
    padding: 10px 20px 0;
  }

  .cnt-logos-mobile img {
    width: 100%;
    height: auto;
  }

  .menumovil {
    display: flex;
    position: fixed;
    top: 50px;
    z-index: 98765498;
  }
}

/* LANGUAGE */
.lang {
  position: fixed;
  top: 85px;
  left: 20px;
  z-index: 8768767;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.lang-icon {
  height: 35px;
  width: 35px;
  margin-right: 8px;
}

.lang-icon a::after {
  content: none;
}

.lang-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid var(--color-p);
  border-radius: 200px;
  transition: transform .3s ease-in-out;
}

.lang-icon img:hover {
  transform: scale(1.1);
  transition: transform .3s ease-in-out;
}

@media (max-width: 800px) {
  .lang {
    top: 11vw;
  }
}

@media (max-width: 768px) {
  .lang {
    position: absolute;
  }
}

/* HEADER */
header {
  width: 100%;
  height: fit-content;
  background: rgb(231, 231, 231);
  background: linear-gradient(90deg, #e7e7e7 0%, #f7f7f7 30%, #e7e7e7 100%);
  padding: var(--padding-gen);
  display: flex;
  justify-content: space-around;
  align-items: end;
  position: relative;
  overflow: hidden;
}

header::after {
  content: "";
  background: url(../img/pattern.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
}

header>div {
  padding-top: 140px;
  padding-bottom: 40px;
  align-items: flex-end;
  position: relative;
  z-index: 450;
}

.col-1 {
  width: 65%;
}

.col-2 {
  width: 35%;
}

.col-2 img {
  object-fit: contain;
  width: 100%;
  height: auto;
}

.s00 {
  background: rgb(231, 231, 231);
  background: linear-gradient(90deg, #e7e7e7 0%, #f7f7f7 30%, #e7e7e7 100%);
}

video {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: block;
  padding: 0px 0 100px;
}

@media (max-width: 1540px) {
  .s00 {
    padding: 0 60px;
  }
}

@media (max-width: 1200px) {
  :root {
    --padding-gen: 80px 60px;
  }

  header .mx-w-container {
    flex-flow: column;
    padding: 0;
  }

  header .mx-w-container>div {
    width: 100%;
    text-align: center;
  }

  header .col-2 img {
    max-width: 450px;
    padding-top: 50px;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  header {
    padding-top: 180px;
  }
}

@media (max-width: 768px) {
  :root {
    --padding-gen: 80px 25px;
  }

  header {
    padding-bottom: 40px;
  }

  h1 {
    font-size: 3rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h4 {
    font-size: 2.2rem;
    margin-top: 40px;
  }

  header .col-2 img {
    width: 80%;
  }

  .col-1 {
    width: 100%;
  }

  .col-2 {
    width: 100%;
  }
}

@media (max-width: 560px) {
  header h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-top: 50px;
  }

  header h4 {
    font-size: 2rem;
  }

  header .col-2 img {
    padding-top: 30px;
  }

  .s00 {
    padding: 0 25px;
  }

  video {
    padding-bottom: 40px;
  }
}

/* CONTENIDO */
.container {}

.cnt-s01 {
  background-color: var(--color-p);
  padding: 20px;
  margin: 0;
  width: 100%;
  color: var(--color-white);
}

.cnt-s01 .wrapper {
  max-width: 800px;
  margin: auto;
}

.s01 {
  padding: var(--padding-gen);
}

.s01 h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  padding-bottom: 20px;
  text-align: center;
}

.s01 ul {
  margin: 0;
  margin-left: 80px;
  padding-left: 0;
  list-style-image: url(../img/list-star.png);
}

.s01 li {
  padding-left: 20px;
  padding-bottom: 20px;
}

.cnt-s02 {
  background: var(--color-s);
  color: var(--color-p);
  display: flex;
  flex-flow: row;
  justify-content: center;
}

.cnt-s02 .mx-w-container {
  align-items: center;
}

.cnt-s02 h2 {
  color: var(--color-p);
  font-weight: 400;
  font-size: 2.2rem;
  font-weight: 800;
}

.s02-1,
.s02-2 {
  padding: var(--padding-gen);
}

.s02-1 ul {
  list-style-image: url(../img/list-plus.png);
  margin-bottom: 0;
  padding-left: 20px;
}

.s02-1 li {
  padding-bottom: 20px;
  padding-left: 10px;
  font-weight: 500;
}

.s02-2-border {
  border: 4px solid var(--color-white);
  border-radius: 30px;
  padding: 45px 35px;
  max-width: 500px;
  position: relative;
}

.s02-2-border::after {
  content: "";
  background: url(../img/icon-s02.png) no-repeat;
  background-size: contain;
  width: 120px;
  height: 100%;
  position: absolute;
  top: -60px;
  right: -30px;
}

.s02-2 h5 {
  margin-top: 0;
  margin-bottom: 20px;
}

.s02-2 p {
  margin-bottom: 0;
}

.s02-2 a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: 2px solid var(--color-red);
}

.s03 {
  background: white;
  height: auto;
  width: 100%;
  padding: var(--padding-gen);
  display: flex;
  flex-flow: column;
  align-items: center;
}

.s03 h2 {
  color: var(--color-p);
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  max-width: 800px;
  margin: auto;
}

.s03 img {
  margin: auto;
  display: block;
}

.s03 a {
  font-size: 1.5rem;
  text-align: center;
}

.s03-img {
  transition: transform .3s ease-in-out;
  width: 100%;
}

.s03 a, .s03-3 {
  width: 60%;
  max-width: 1000px;
}

.s03-img:hover {
  transform: scale(1.03);
  transition: transform .3s ease-in-out;
}

.s03-3:hover {
  transform: scale(1);
}

.s03-img:hover::after {
  content: none;
}

.s03-1 {
  padding-top: 50px;
}

section .s03-5 {
  padding-top: 20px;
  width: fit-content;
}

.s04 {
  margin: auto;
  padding-bottom: 100px;
  padding-left: 40px;
  max-width: 900px;
}

.s04 a {
  padding-right: 40px;
}

.s04 a:hover::after {
  content: unset;
}

@media (min-width: 1278px) {
  .s02-2-border {
    transform: translateY(20px);
  }
}

@media (max-width: 1200px) {
  .s02-1 {
    padding: 80px 60px;
  }

  .s02-2-border {
    max-width: calc(100% - 50px);
    padding-right: 80px;
  }
}

@media (max-width: 1000px) {
  .cnt-s02 .mx-w-container {
    flex-flow: column;
  }

  .s01 ul {
    margin-left: 20px;
  }

  .cnt-s02 .mx-w-container>div {
    width: 100%;
  }

  .s02-1 {
    padding: 80px 60px;
  }

  .s02-2 {
    padding: 50px 10px 80px 60px;
  }
}

@media (max-width: 768px) {
  .menumovil button {
    padding: 0 8% 0 0;
    width: 61px;
    height: 61px;
  }

  .menumovil {
    border: 2px solid var(--color-p);
    background: transparent;
    border-radius: 200px;
    width: 60px;
    height: 60px;
    top: 35px;
    right: 0;
    margin: 10px;
    transition: all 0.3s ease-in-out;
  }

  .menumovil .menumobilabierto-li {
    opacity: 0;
  }

  .menumovilabierto {
    border: none;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 0;
    margin: 0;
    padding: 10px;
    transition: all 0.3s ease-in-out;
  }

  .menumovilabierto .menumobilabierto-li {
    opacity: 1;
  }

  .cnt-s01 {
    padding: 40px 20px;
  }

  .cnt-s02 {
    flex-flow: column;
  }

  .s02-1 {
    width: 100%;
  }

  .s02-2 {
    width: 100%;
  }

  .s03 {
    width: 100%;
  }

  .s03 img,
  .s03 a {
    width: 90%;
  }

  .s03 a img {
    width: 100%;
  }

  .s03 a {
    padding-bottom: 0px;
  }

  .s04 {
    padding-left: 20px;
    padding-bottom: 50px;
  }

  .s04 a {
    padding-right: 20px;
  }

  .s04 img {
    width: 100%;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .menumovil {
    margin-top: 20px;
  }

  .menumovilabierto {
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  h5 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1.2rem;
  }

  a:hover::after {
    content: unset;
  }

  .s01 {
    padding: 0;
  }

  .s01 h2,
  .s02-1 h2,
  .s03 h2 {
    font-size: 1.6rem;
    padding-bottom: 0;
  }

  .s01 ul {
    margin-left: 40px;
    list-style-image: url(../img/list-star-small.png);
  }

  .s01 li,
  .s02-1 li {
    padding-left: 10px;
    font-size: 1.2rem;
  }

  .s02-1 {
    padding: 40px 40px;
  }

  .s02-2 {
    padding: 50px 0px 50px 50px;
  }

  .s02-2-border {
    padding: 30px 30px;
  }

  .s02-2-border::after {
    width: 80px;
    top: -50px;
  }

  .s03 {
    padding-top: 50px;
  }
}