@font-face {
  font-family: "benton-medium";
  src: url("/assets/front/fonts/BentonSansBBVA-Medium.otf") format("openType");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "benton-light";
  src: url("/assets/front/fonts/BentonSansBBVA-Light.otf") format("openType");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "benton-bold";
  src: url("/assets/front/fonts/BentonSansBBVA-Bold.otf") format("openType");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "tiempos-bold";
  src: url("/assets/front/fonts/TiemposHeadline-Bold.ttf") format("trueType");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  font-family: benton-medium, sans-serif;
  font-size: 17px;
  background-color: #f7f8f8;
  color: #001391;
}

body {
  width: 100vw;
  height: 100vh;
}

.landing {
  max-width: 1900px;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.landing__left {
  width: 39%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin: 0 0 0 5em;
}
.landing__text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.landing__title {
  font-size: 3.2em;
  font-family: benton-light;
  line-height: 50px;
}
.landing__title--span {
  font-family: tiempos-bold;
  font-size: 0.9em;
}
.landing__paragraph {
  margin-top: 1em;
}
.landing__paragraph--span {
  font-family: benton-bold, sans-serif;
}
.landing__info-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3em;
}
.landing__info-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
}
.landing__info-icon {
  width: 30px;
  background-color: #8be1e9;
  border-radius: 50%;
  padding: 0.5em;
}
.landing__info-text {
  font-family: benton-bold, sans-serif;
}
.landing__speakers-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.landing__speaker-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
  width: 30%;
  text-align: center;
}
.landing__speaker-image {
  width: 50%;
}
.landing__speaker-name {
  font-family: tiempos-bold;
  font-size: 1.3em;
  font-weight: bold;
}
.landing__speaker-divider {
  width: 40%;
  border: solid 1px #001391;
}
.landing__right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}
.landing__image {
  width: 90%;
  height: 100%;
  margin: 3em 0 3em 0.5em;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  display: block;
  border-radius: 20px;
}

.speakers-container-1 {
  justify-content: space-between;
}

@media (max-width: 1300px) {
  * {
    font-size: 12px;
  }
  .landing__title {
    line-height: 35px;
  }
}
@media (max-width: 800px) {
  .landing {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin: auto;
  }
  .landing__left {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin: 1em;
  }
  .landing__logo {
    margin: 2em 0;
  }
  .landing__text-container {
    margin-bottom: 2em;
  }
  .landing__info-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 2em 0;
  }
  .landing__speaker-image {
    width: 80%;
  }
  .landing__image {
    display: none;
  }
}