:root {
  --blue-main: #091a64;
  --very-dark-blue: #3b5a8f;
  --green: #8dc63f;
  --violet: #a06da0;
  --celeste: #008eca;
  --orange: #dc9510;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}

html {
  background: #fff;
}

body {
  background: rgb(3, 6, 19);
  background: linear-gradient(
    0deg,
    rgba(3, 6, 19, 1) 0%,
    rgba(15, 32, 97, 1) 100%
  ) !important;
}

.container {
  width: 100%;
  max-width: 1224px;
  padding: 0 1rem;
  margin: 0 auto;
  @media screen and (min-width: 768px) {
    padding: 0;
  }
}

.container--full {
  max-width: 1920px;
  padding: 0;
  position: relative;
}

.container--overlap {
  margin-top: 0;

  @media screen and (min-width: 768px) {
    margin-top: -200px;
  }
}

.container--counter-overlap {
  margin-top: 0;

  @media screen and (min-width: 768px) {
    margin-bottom: 200px;
  }
}

.spacer {
  margin: 4rem 0;
}

/* HEADER */

#header {
  &.open {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: #fff;
    overflow: auto;
    &::-webkit-scrollbar {
      display: none;
    }
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    .header__wrapper {
      display: block;
    }
    .logo {
      width: 150px;
      margin: 0 auto;
    }
    .nav {
      margin: 2rem 0;
      li {
        border-bottom: 1px dashed var(--very-dark-blue);
      }
    }
    .mendi-search {
      display: none;
    }
    .mendi-search-container {
      margin: 0;
    }
    .mendi-search-form {
      opacity: 1;
      visibility: unset;
      position: static;
      width: 100%;
      border-bottom: 2px solid var(--very-dark-blue);
      input {
        background: none;
        padding: 0;
      }
    }
    .header__main {
      border: none;
    }
  }
}

#mendi-masthead {
  padding: 0 !important;
}

.logo__wrapper {
  position: relative;
  z-index: 100;
  .logo {
    a {
      display: block;
      background: url("../images/new/logo_author_white.svg");
      background-repeat: no-repeat;
      background-position: center;
      width: 150px;
      height: 50px;
      background-size: contain;
      @media (min-width: 768px) {
        width: 208px;
        height: 59px;
      }
      #header.open & {
        background: url("../images/new/logo_author_blue.svg");
        width: 150px;
        height: 50px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
      }
    }
    &.executive {
      a {
        background: url("../images/executive/logo_executive_white.svg");
        width: 150px;
        height: 50px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        @media (min-width: 768px) {
          width: 257px;
          height: 57px;
        }
        #header.open & {
          background: url("../images/executive/logo_executive_blue.svg");
          width: 150px;
          height: 50px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
        }
      }
    }
  }
}

.divider--dashed {
  border-bottom: 1px dashed var(--very-dark-blue);
  margin: 3rem 0 0;
}

.nav__wrapper {
  display: none;
  gap: 2.5rem;
  align-items: center;
  @media (min-width: 1000px) {
    display: flex;
  }
  #header.open & {
    background-color: #fff;
    display: block;
  }
}

ul.nav__main {
  padding: 0;
  display: flex;
  gap: 2rem;
  > li {
    position: relative;
    &.open {
      .nav__sub-menu {
        display: block;
      }
    }
    float: none;
    padding: 2.5rem 0;
    #header.open & {
      padding: 10px 0;
      /* &:hover {
        .nav__sub-menu {
          display: none;
        }
      } */
    }
    &.current_page_item {
      a {
        color: var(--green);
      }
    }
    > a,
    > div {
      color: var(--White, #fff);
      cursor: pointer;
      text-decoration: none;
      /* Rethink Sans 22 Semibold */
      font-family: "Rethink Sans";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      text-transform: capitalize;
      #header.open & {
        color: #333;
        cursor: pointer;
        padding: 10px 0;
        display: block;
      }
    }
  }
  #header.open & {
    display: block;
  }
}

.header__top {
  padding: 1.5rem 0;
  display: none;
  @media (min-width: 1000px) {
    display: block;
  }
}

.header__main {
  border-bottom: 1px dashed var(--very-dark-blue);
  padding: 1rem 0;
}

.nav__sub-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  width: 220px;
  left: -60px;
  top: 90px;
  z-index: 2;
  #header.open & {
    position: static;
    width: auto;
    left: auto;
    top: auto;
    &::before {
      display: none;
    }
  }
  &::before {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-12px);
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--green);
  }
  li {
    border-bottom: 1px dashed #849bc5;
    padding: 0 0.85rem;
    &:last-child {
      border-bottom: none;
    }
    #header.open & {
      border: none;
      padding: 0;
    }
  }
  a {
    color: var(--Blue-main, #091a64);
    font-family: "Rethink Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px; /* 277.778% */
    text-decoration: none;
  }
}

.button__mobile {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  left: 2rem;
  padding: 0;
  background: url("../images/new/ham_menu.svg");
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 101;
  #header.open & {
    background: url("../images/new/icon_close.svg");
    width: 35px;
    height: 35px;
    background-size: contain;
    transform: translateY(5px);
  }
  @media (min-width: 1000px) {
    display: none;
  }
}

.header__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  @media (min-width: 1000px) {
    justify-content: space-between;
  }
}

.header__contact {
  display: flex;
  gap: 2.5rem;
  padding: 0;
  justify-content: flex-end;
  li {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    a {
      color: var(--Dark-blue, #849bc5);
      text-align: center;
      text-decoration: none;
      /* Rethink Sans 14 Medium */
      font-family: "Rethink Sans";
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }
  }
}

/* HOME */

.video-container {
  padding: 0;
  background: rgba(0, 0, 0, 0.15);
  video,
  iframe {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
  }
  @media (min-width: 1000px) {
    padding: 0 113.5px;
  }
}

.products__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 1rem;
  padding-bottom: 5rem;
  @media screen and (min-width: 768px) {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
  }
  .product__image {
    max-width: 234px;
  }
}

.product__item {
  flex: 1;
  text-align: center;
  position: relative;
  a {
    text-decoration: none;
  }
  &::before {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    position: absolute;
    bottom: -30px;
    z-index: 20;
    left: 50%;
    transform: translateX(-35px);
  }
  @media screen and (min-width: 768px) {
    bottom: -40px;
  }
}

.product__image {
  img {
    width: 100%;
  }
}
[data-border="70G/M2DuplicationA4"],
[data-product="70G/M2DuplicaciónA4"] {
  &::before {
    background-color: var(--violet);
  }
}
[data-product="75G/M2MultifunctionA4"],
[data-product="75G/M2MultifunctionLetter"],
[data-product="75G/M2MultifunctionLegal"],
[data-product="20lbsMultifunciónCarta"],
[data-product="20lbsMultifunciónA4"],
[data-product="20lbsMultifunciónOficio"],
[data-product="20lbsMultifunciónLegal"],
[data-product="75G/M2MultifunciónA4"] {
  &::before {
    background-color: var(--green);
  }
}

[data-product="80G/M2MultifunctionA3"],
[data-product="80G/M2MultifunctionLegal"],
[data-product="80G/M2MultifunctionA4"],
[data-product="80G/M2MultifunctionOficio"],
[data-product="80G/M2MultifunctionLetter"],
[data-product="80G/M2MultifunciónA3"],
[data-product="21.3lbsMultifunciónA4"],
[data-product="80G/M2MultifunciónA4"] {
  &::before {
    background-color: var(--celeste);
  }
}
[data-product="90G/M2MultifunctionA4"],
[data-product="90G/M2MultifunciónA4"] {
  &::before {
    background-color: var(--orange);
  }
}

.product__info {
  color: var(--White, #fff);

  /* Rethink Sans 18 Semibold */
  font-family: "Rethink Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 10px;
  @media screen and (min-width: 768px) {
    margin-top: 0;
  }
}

.wrapper__futuremodule {
  display: flex;
  flex-direction: column;

  @media screen and (min-width: 768px) {
    margin-top: 200px;
  }
  @media screen and (min-width: 1000px) {
    padding: 0 50px 0 280px;
  }
}

.mask-image {
  width: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 25px;
  background: url("../images/adobe_stock_mobile.jpg") no-repeat;
  background-size: 100%;
  background-position: top center;
  height: 528px;
  display: block;
  @media screen and (min-width: 768px) {
    height: auto;
    margin: 0;
    width: 100%;
    background: none;
  }
}

.futuremodule__image {
  position: relative;
  z-index: 1;
  margin-bottom: -200px;
  &::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #080f2c 10%, rgba(0, 0, 0, 0) 99.68%);
    z-index: 2;
  }
  img {
    display: none;
  }
  @media screen and (min-width: 768px) {
    background: none;
    margin-bottom: 0;
    height: auto;
    &::after {
      content: "";
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #080f2c 10%, rgba(0, 0, 0, 0) 99.68%);
      z-index: 2;
    }
    img {
      display: block;
      width: 100%;
    }
  }
}

.futuremodule__heading {
  display: flex;
  gap: 0;
  flex-direction: column;
  order: 2;
  .title {
    font-size: 2rem;
    text-align: center;
  }
  img {
    width: 250px;
    margin: auto;
  }
  @media screen and (min-width: 768px) {
    .title {
      text-align: left;
      font-size: 48px;
    }
  }
  @media screen and (min-width: 1000px) {
    flex-direction: row;
    gap: 2rem;
    img {
      width: auto;
    }
  }
}

.futuremodule__info {
  z-index: 2;
  opacity: 0;
  left: 10%;
  top: 15%;
  order: 1;
  scale: 0.76;
  strong {
    color: var(--very-dark-blue);
  }
  @media screen and (min-width: 1000px) {
    position: absolute;
    scale: 0.8;
    top: 10%;
    left: 7%;
  }
  @media screen and (min-width: 1300px) {
    position: absolute;
    scale: 1;
    left: 5%;
    top: 15%;
  }
}

.futuremodule__text {
  color: #fff;
  width: 100%;
  max-width: 450px;
  font-family: Rethink Sans;
  font-size: 20px;
  font-weight: 500;
  line-height: 31.25px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: auto;
  position: relative;
  &::before {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    position: absolute;
    bottom: -60px;
    z-index: 20;

    background-color: var(--green);
    left: 50%;
    transform: translateX(-45px);
  }
  p {
    max-width: 250px;
  }

  @media screen and (min-width: 1000px) {
    text-align: left;
    margin: 0;
    font-size: 24px;
    &::before {
      left: 0;
      transform: translateX(0);
    }
  }
}

/* SLIDER */

.swiper {
  width: 100%;
  height: calc(100svh - 83px);
  border-bottom: 1px dashed var(--very-dark-blue);
  @media screen and (min-width: 768px) {
    height: 500px;
  }
}

.swiper-wrapper {
}

.swiper-slide {
  display: flex;
  align-items: center;
  @media screen and (min-width: 768px) {
    align-items: center;
  }
}

.slide__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    text-align: left;
    gap: 5rem;
    align-items: center;
  }
  .container {
    height: fit-content;
  }
}

.slide__center {
  display: flex;
}

.slide__productimage {
  width: 180px;
  height: 230px;
  margin-bottom: 1rem;
  opacity: 0;
  position: relative;
  top: -50px;
  img {
    width: 100%;
  }
  @media screen and (min-width: 768px) {
    width: 311px;
    height: 370px;
    margin: 0;
  }
}

.slide__productimage--executive {
  width: 200px;
  height: 220px;
  margin-bottom: 2rem;
  margin-top: -3rem;
  img {
    width: 90%;
  }
  @media screen and (min-width: 768px) {
    width: 311px;
    height: 365px;
    margin: 0;
  }
}

.slide__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  flex: 1;

  .title {
    font-size: 36px;
    line-height: 41px;
    text-align: left;
    @media screen and (min-width: 1100px) {
      font-size: 75px;
      line-height: 86px;
    }
  }
  .button {
    width: 100%;
    @media screen and (min-width: 768px) {
      width: fit-content;
    }
  }
}

.slide__sello {
  opacity: 0;
  @media screen and (min-width: 768px) {
    background-image: url("../images/aniversario_ledesma.svg");
    background-repeat: no-repeat;
    background-size: 115px 110px;
    background-position: right bottom;
  }
}

.slide__label {
  font-family: Rethink Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 31.25px;

  color: #fff;
  @media screen and (min-width: 768px) {
    font-size: 24px;
  }
}

.slide__paragraph {
  font-family: Rethink Sans;
  font-size: 18px;
  font-weight: 600;
  line-height: 23.44px;
  color: #fff;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.slide__tagline {
  font-family: Rethink Sans;
  font-size: 18px;
  font-weight: 600;
  line-height: 23.44px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(132, 155, 197, 1);
  display: block;
  @media screen and (min-width: 768px) {
    margin-bottom: 2rem;
  }
}

.slide__padded {
  padding: 0 2rem;
}

.swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-2 {
  background-image: url("../images/slider_2.jpg");
}
.slide-3 {
  background-image: url("../images/slider_3.jpg");
}

.swiper-pagination-bullet {
  border: 1px solid #fff;
  opacity: 1;
  background-color: transparent;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  border: none;
  background-color: var(--green);
}

/* PRODUCTO */

.product-old-info {
  color: #fff;
}

.wrapper__productintern {
  padding: 2rem 0;
  border-bottom: 1px dashed var(--very-dark-blue);
}

.product__internbody {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    gap: 4rem;
  }
}

.product__interninfo {
  flex: 1;
}

.product__wrapper-custom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  @media screen and (min-width: 1000px) {
    flex-direction: row;
  }
}

.product__imageintern {
  width: 349px;
  img {
    width: 100%;
  }
  @media screen and (min-width: 768px) {
    margin: none;
  }
}

.product__imageinside {
  width: 349px;
  margin: 0 auto;
  img {
    width: 100%;
  }
  @media screen and (min-width: 768px) {
    margin: none;
  }
}

.product__header {
  padding-left: 2rem;
  margin-bottom: 4rem;
  opacity: 0;
  position: relative;
  left: 100px;
}

.product__table {
  span {
    font-family: Rethink Sans;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #849bc5;
    display: block;
    margin-bottom: 1rem;
  }
  @media screen and (min-width: 768px) {
    font-size: 24px;
    font-weight: 500;
    line-height: 31.25px;
  }
  div {
    font-family: Rethink Sans;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    opacity: 0;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    @media screen and (min-width: 768px) {
      font-size: 48px;
      font-weight: 600;
      line-height: 55px;
    }
  }
}

.product__row {
  border-bottom: 1px dashed var(--very-dark-blue);
  display: flex;
  width: 100%;
  padding: 1rem 0;
}

.product__table {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product__datafooter {
  padding: 2rem 0 0;
  strong {
    font-family: Rethink Sans;
    font-weight: 600;
    line-height: 28px;
    font-size: 12px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #849bc5;
    @media screen and (min-width: 768px) {
      font-size: 18px;
    }
  }
  span {
    font-family: Rethink Sans;
    font-weight: 600;
    line-height: 28px;
    font-size: 12px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    @media screen and (min-width: 768px) {
      font-size: 18px;
    }
  }
  li {
    display: flex;
    gap: 10px;
  }
  font-size: 0.85rem;
}

[data-border="70G/M2DuplicationA4"],
[data-border="70G/M2DuplicaciónA4"] {
  .product__header {
    border-left: 8px solid var(--violet);
  }
  .product--color {
    color: var(--violet);
  }
}
[data-border="75G/M2MultifunctionA4"],
[data-border="75G/M2MultifunctionLetter"],
[data-border="75G/M2MultifunctionLegal"],
[data-border="75G/M2MultifunciónLegal"],
[data-border="75G/M2MultifunciónA4"],
[data-border="75G/M2MultifunciónOficio"],
[data-border="75G/M2MultifunciónCarta"] {
  .product__header {
    border-left: 8px solid var(--green);
  }
  .product--color {
    color: var(--green);
  }
}
[data-border="80G/M2ColorA4"],
[data-border="80G/M2MultifunctionA3"],
[data-border="80G/M2MultifunctionLegal"],
[data-border="80G/M2MultifunctionA4"],
[data-border="80G/M2MultifunctionOficio"],
[data-border="80G/M2MultifunctionLetter"],
[data-border="80G/M2MultifunciónA3"],
[data-border="80G/M2MultifunciónLegal"],
[data-border="80G/M2MultifunciónA4"],
[data-border="80G/M2MultifunciónOficio"],
[data-border="80G/M2MultifunciónCarta"],
[data-border="A380gr"],
[data-border="80GrColor"] {
  .product__header {
    border-left: 8px solid var(--celeste);
  }
  .product--color {
    color: var(--celeste);
  }
}
[data-border="90G/M2MultifunctionA4"],
[data-border="90G/M2MultifunciónA4"] {
  .product__header {
    border-left: 8px solid var(--orange);
  }
  .product--color {
    color: var(--orange);
  }
}

.product__taginfo {
  font-family: Rethink Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 23.44px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #849bc5;
  text-transform: uppercase;
}

/* CERTIFICACIONES */

.certificacion__container {
  padding: 3rem 1rem 0;
  @media screen and (min-width: 768px) {
    padding: 3rem 1rem;
  }
}

.certificacion__grid {
  display: grid;
  gap: 5rem;
  margin: 4rem 0;
}

.certificacion__grid--three-cols {
  @media screen and (min-width: 768px) {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.certificacion__grid--two-cols {
  @media screen and (min-width: 768px) {
    grid-template-columns: 1fr 1fr;
  }
}

.cerfificacion__grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  p {
    font-family: Rethink Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.44px;
    text-align: center;
    color: #fff;
  }
  .image {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* CICLOS DEL PAPEL */

.papercicle__wrapper {
  padding: 3rem 0 0;
}

.papercicle__grafico {
  margin-top: 4rem;
}

.content--paragraph {
  font-family: Rethink Sans;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.44px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 1rem 0;
  color: #fff;
}

/* DESCARGAS */

.downloads__wrapper {
  padding: 3rem 0 0 0;
  .title {
    margin-bottom: 2rem;
    font-size: 36px;
    text-transform: capitalize;
  }
}

.downloads__row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.downloads__image {
  img {
    width: 100%;
  }
}

/* CONTACT */

.contact__wrapper {
  padding: 3rem 1rem 0;
  @media screen and (min-width: 1200px) {
    padding: 3rem 0rem 0;
  }
}

.contact__body {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contactform__wrapper {
  background: linear-gradient(292.99deg, #647696 -27.78%, #ffffff 45.54%);
  padding: 2rem;
  border-radius: 25px;
  flex: 1;
  @media screen and (min-width: 768px) {
    padding: 3rem;
  }
}

.contactform__title {
  font-family: "Rethink Sans";
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: #091a64;
  @media screen and (min-width: 768px) {
    font-size: 36px;
  }
}

.contactform__row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 0;
  flex-wrap: wrap;
}

.contactform__input {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;

  label {
    font-family: Rethink Sans;
    font-size: 18px;
    font-weight: 600;
    line-height: 23.44px;
    color: var(--very-dark-blue);
  }
  input {
    border: none;
    border-bottom: 2px solid var(--very-dark-blue);
    background: transparent;
    padding: 0.7rem 0;

    @media screen and (min-width: 768px) {
      max-width: 200px;
    }
    &:focus {
      outline: none;
    }
    font-family: Rethink Sans;
    font-size: 18px;
    font-weight: 600;
    line-height: 23.44px;
    color: #091a64;
    font-size: 1.2rem;
    &::placeholder {
      opacity: 0.7;
      color: #091a64;
    }
  }
  @media screen and (min-width: 1000px) {
  }
}

.contactform__textarea {
  textarea {
    resize: none;
    border: none;
    border-bottom: 2px solid var(--very-dark-blue);
    background: transparent;
    width: 100%;
    font-family: Rethink Sans;
    font-size: 18px;
    font-weight: 600;
    line-height: 23.44px;
    color: #091a64;
    min-height: 100px;
    &:focus {
      outline: none;
    }
    &::placeholder {
      opacity: 0.7;
      color: #091a64;
    }
  }
  flex: 1;
}

.contactform__info {
  flex: 1;
  @media screen and (min-width: 768px) {
    flex: none;
  }
}

.contactform__inforow {
  display: flex;
  gap: 2rem;
  border-bottom: 1px dashed var(--very-dark-blue);
  padding: 30px 0;
  align-items: center;
}

.contactform__infoicon {
  img {
    width: 50px;
    max-width: 50px;
  }
}

.contactform__infodata {
  p,
  a {
    color: #fff;
    font-family: Rethink Sans;
    font-size: 18px;
    font-weight: 600;
    line-height: 23.44px;
    display: block;
  }
  span {
    font-family: Rethink Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.23px;
    color: #849bc5;
  }
}

/* SEARCH */

.search__wrapper {
  padding: 3rem 0;
  display: flex;
  gap: 100px;
}

.search__content {
  flex: 2;
}

.search__sidebar {
  flex: 1;
}

.search__result {
  display: flex;

  a {
    color: #fff;
    text-decoration: none;
    font-family: "Rethink Sans";
    font-size: 22px;
  }
}

.widget__title {
  color: #fff;
  font-family: "Rethink Sans";
}

.widget__recententries {
  ul {
    display: flex;
    flex-direction: column;
  }
  li {
    border-bottom: 1px dashed var(--very-dark-blue);
    padding: 1rem 0;
  }
  a {
    color: var(--very-dark-blue);
    text-decoration: none;
    font-family: "Rethink Sans";

    &:hover {
      text-decoration: underline;
    }
  }
  .post-date {
    display: block;
    font-family: "Rethink Sans";
    color: #fff;
    font-style: italic;
    font-size: 12px;
  }
}

.post-thumbnail {
  border-radius: 50px;
}

.posted-on {
  color: #fff;
  font-family: "Rethink Sans";
  display: flex;
}

.search__contentbody {
  color: #fff;
  font-family: "Rethink Sans" !important;
  line-height: 1.8 !important;

  p {
    font-size: 1rem;
    margin: 1rem 0;
    font-family: "Rethink Sans" !important;
    span {
      font-family: "Rethink Sans" !important;
      line-height: 1.8 !important;
    }
    b {
      font-size: 1.3rem;
    }
  }
}

.related-articles {
  a {
    color: var(--very-dark-blue);
    font-family: "Rethink Sans";
    font-size: 1.6rem;
  }
}

/* FOOTER */

.footer {
  display: flex;
  flex-direction: column;
  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.footer__wrapper__form {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-basis: 40%;
  padding: 0;
  flex-grow: 1;
  @media (min-width: 1500px) {
    flex-basis: 80%;
    margin-top: 300px;
  }
  @media (min-width: 1920px) {
    padding: 0 100px;
  }
}

.footer__form {
  width: 100%;
  padding: 0 1rem;
  @media (min-width: 768px) {
    max-width: 550px;

    padding: 80px 120px 80px 60px;
  }
  @media (min-width: 1500px) {
    max-width: 733px;
  }
}

.footer__wrapper__info {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-basis: 20%;
  scale: 0.9;
}

.footer__info {
  display: flex;
  margin: 80px 0 0;
  padding: 90px 30px 40px 30px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  width: auto;
  @media (min-width: 1000px) {
    width: 615px;
    padding: 0px 100px 50px 100px;
  }
}

.footer__logo {
  margin-bottom: 60px;
  span {
    color: var(--blue-main, #091a64);
    font-family: "Rethink Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-bottom: 1rem;
  }
}

.footer__data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  > li {
    color: var(--blue-main, #091a64);
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    font-family: "Rethink Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    a {
      color: var(--blue-main);
      text-decoration: none;
    }
  }
}

.footer__copy {
  color: var(--Blue-main, #091a64);
  font-family: "Rethink Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 90px;
  span {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
}

.alert {
  font-family: "Rethink Sans";
  padding: 0 0 1rem 0;
}

.alert-danger {
  color: red;
}

.alert-success {
  color: var(--green);
}

.logo__footer--dark {
  margin-bottom: 1rem;
}

.hoja {
  background-image: url("../images/hoja_autor_alta.png");
  background-repeat: no-repeat;
  width: 100%;
  background-size: 800px;
  background-position: -300px bottom;
  height: auto;

  @media (min-width: 768px) {
    background-position: bottom right;
    background-size: contain;
    height: 900px;
  }
  @media (min-width: 1365px) {
    background-size: 860px;
  }
  @media (min-width: 1700px) {
    height: 1043px;
    background-size: 1000px;
  }
}

.title {
  /* Rethink Sans 48 Semibold */
  font-family: "Rethink Sans";
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  @media screen and (min-width: 768px) {
    font-size: 48px;
    line-height: 55px; /* 114.583% */
  }
}

.title--center {
  text-align: center;
}

.title--white {
  color: var(--White, #fff);
  font-family: "Rethink Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 166.667% */
}

.title--cool {
  background: linear-gradient(90deg, #647696 0%, #fff 70.02%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title--cooltwo {
  background: linear-gradient(90deg, #647696 0%, #ffffff 52.02%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title--large {
  font-size: 36px;
  line-height: 36px;
  @media screen and (min-width: 768px) {
    font-size: 76px;
    line-height: 76px;
  }
}

.form-group {
  label {
    color: var(--very-dark-blue);
    /* Rethink Sans 18 Semibold */
    font-family: "Rethink Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
  }
  input,
  textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    /* Rethink Sans 18 Semibold */
    font-family: "Rethink Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-bottom: 2px solid var(--very-dark-blue);
    &::placeholder {
      color: #fff;
      opacity: 0.6;
    }
  }
  textarea {
    resize: none;
    overflow: hidden;
  }
}

.button {
  display: flex;
  width: 147px;
  padding: 10px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  cursor: pointer;
  color: var(--Blue-main, #091a64);
  width: fit-content;
  font-family: "Rethink Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #8dc63f;
  border: none;
  text-decoration: none;
}

.btn-social {
  font-size: 32px !important;
  color: #fff;
  border-radius: 5px;
  width: 50px;
  text-align: center;
  padding: 10px;
  display: inline-block;
  margin-right: 3px;
  text-decoration: none;
}

.btn-social:hover {
  color: #fff;
}

.btn-color-fb {
  background: #3b5998;
}
.btn-color-tw {
  background: #55acee;
}
.btn-color-lk {
  background: #007bb5;
}

.comparte {
  font-size: 12px;
  color: #000;
  background: #eee;
  border-radius: 5px;
  width: 96px;
  text-align: center;
  padding: 14px 10px;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  top: -7px;
  text-transform: uppercase;
  font-family: "Rethink Sans";
}
