/***************************************************/
/* Font-face *****/
/***************************************************/

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.eot");
  src: url("../fonts/Poppins-Medium.woff") format("woff"),
    url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Light";
  src: url("../fonts/Poppins-Light.eot");
  src: url("../fonts/Poppins-Light.woff") format("woff"),
    url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.eot");
  src: url("../fonts/Poppins-Bold.woff") format("woff"),
    url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-border: #000000;
  --font-family: "Poppins", Arial, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;

  --hero-max-width: 706px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: #fff;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

h2 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.5em;
}

section,
article {
  width: 100%;
}

/* ---------------------------------------------------
   Block: hero
--------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  padding: var(--space-6) var(--space-3);
}

.hero__decor {
  position: absolute;
  bottom: -10px;
  width: 812px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero__decor--left {
  left: -400px;
}

.hero__decor--right {
  right: -400px;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--hero-max-width);
  text-align: center;
}

.hero__logo {
  width: 100px;
  height: auto;
  margin-bottom: var(--space-5);
}

.hero__title {
  margin: 0 0 var(--space-5);
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 700;
}

.hero__media {
  width: 100%;
  max-width: 400px;
  margin-bottom: var(--space-5);
}

.hero__media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eeeeee;
  box-shadow:
    0 0 24px 12px rgba(0, 0, 0, 0.28), 0 4px 10px 4px rgba(0, 0, 0, 0.18);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: block;
}

.hero__video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.hero__video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.hero__video:hover .hero__play,
.hero__video:focus-visible .hero__play {
  transform: translate(-50%, -50%) scale(1.06);
}

.hero__video:focus-visible {
  outline: 2px solid var(--color-border);
  outline-offset: 4px;
}

.hero__play-icon {
  margin-left: 3px;
}

.hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border: 3px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.3;
  background-color: #eeeeee;
  margin-bottom: 24px;
}

.hero__cta:hover {
  background-color: #eeeeee;
}

.hero__cta:focus-visible {
  outline: 2px solid var(--color-border);
  outline-offset: 4px;
}

.hero__cta-line {
  font-size: 1rem;
  font-weight: 700;
}

/*================================================*/
/* FOOTER ******/
/*================================================*/

.wrapper {
  width: calc(100% - 48px);
  max-width: 1125px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
}

footer p {
  font-size: 14px;
}

footer ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer li {
  flex: 1;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-shrink: 1;
  -webkit-flex-grow: 1;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  justify-content: center;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

footer ul ul {
  margin-top: 20px;
}

footer ul li ul li {
  width: 100%;
  text-transform: initial;
  float: left;
  flex: inherit;
}

.footer-title {
  height: 40px;
  display: inline-block;
}

.footer_links,
.footer_logos {
  padding: 3% 0 3% 0;
  background-color: #f1f1eb;
}

.footer_links li {
  border-right: 1px solid #e7e7e7;
  padding-left: 20px;
}

.footer_links li:last-child {
  border-right: none;
}

.footer_links li li {
  border-right: none;
  padding-left: 0px;
}

.footer_links a {
  color: #5a5a5a;
  text-decoration: none;
  line-height: 1.5;
}

.footer_logos {
  background-color: #23282d;
  text-align: center;
}

.footer_logos li {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}

.footer_logos p {
  color: #ffffff;
}

.copyright {
  width: 400px;
  margin: 50px auto 15px auto;
  display: inline-block;
}

.copyright li {
  display: inline-block;
  padding: 0 10px;
}

.copyright a {
  font-family: "Poppins-Bold";
  font-size: 14px;
}

.none {
  display: none;
  visibility: hidden;
}

.block {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mobileOnly {
  display: none;
  visibility: hidden;
}

.flex-between {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*Solventar flotaciones de elementos*/

.clearfix:after {
  content: " ";
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: block;
  float: none !important;
  clear: both;
}


/* ---------------------------------------------------
   Responsive
--------------------------------------------------- */

@media (max-width: 640px) {
  .hero {
    padding: var(--space-6) var(--space-3) var(--space-7);
  }

  .hero__decor {
    width: 812px;
  }

  .hero__decor--left {
    left: -520px;
  }

  .hero__decor--right {
    right: -520px;
  }

  .hero__media {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
  }
  footer ul {
    flex-direction: column;
  }

  footer li {
    flex: 0 0 45%;
    padding: 2% 0;
    text-align: center;
  }

  .footer_links li {
    border-right: none;
    padding-left: 0;
  }

  .footer_links li li {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer_links li a {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .footer_links li li a {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .footer_logos li {
    flex: 0 0 25%;
  }

  .flex-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 680px) {
  footer li {
    flex: 0 0 50%;
  }

  .footer_links {
    text-align: center;
  }

  .copyright {
    padding: 20px 0;
    width: 100%;
  }

  .copyright p {
    float: initial;
    text-align: center;
  }

  .copyright ul {
    float: initial;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 420px) {
  footer ul ul {
    margin-top: 0;
  }

  footer li {
    flex: 0 0 100%;
  }

  .footer_logos li {
    flex: 0 0 50%;
  }

  .footer_links li {
    border-bottom: 1px solid #d3d8d5;
    padding-left: 0;
  }

  .footer_links li:last-child {
    border-bottom: none;
  }
}

@media only screen and (max-width: 320px) {
  .copyright ul {
    padding: 10px 0 5px 0;
  }

  .copyright ul li {
    padding-left: 10px;
  }
}