@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&family=Inter:wght@400;700&display=swap);

html {
  color: var(--text-color);
  font: normal 10px/1.45rem "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal
}

h1,
h2,
h3 {
  font-family: Inter, sans-serif
}

h1 {
  font-size: 3rem;
  line-height: 4.5rem
}

h2 {
  font-size: 2.2rem;
  line-height: 4rem
}

h3 {
  font-size: 1.8rem;
  line-height: 3.5rem
}

p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8rem
}

:root {
  --primary-color: #705ced;
  --medium-primary-color: #9089f7;
  --light-primary-color: #eae7ff;
  --secondary-color: #47bafb;
  --text-color: #23173d;
  --ok-color: #33d2ac;
  --ko-color: #f30645;
  --grey0-color: #f0f0f0;
  --grey1-color: #c1d3dd;
  --grey2-color: #b3d4e7;
  --grey3-color: #5485a0
}

.violet {
  color: #705ced;
}

.header {
  padding: 20px 150px;
  box-shadow: 0 4px 4px rgba(112, 92, 237, .2);
  display: block
}

.header .navbar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between
}

.header .navbar .logo {
  height: 50px
}

.header .navbar .counter {
  background-color: var(--grey0-color);
  padding: 0 10px;
  border-radius: 50px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center
}

.navbar ul {
  font-size: 1.8rem;
  list-style: none;
  display: flex;
  align-items: center;
  overflow-y: hidden;
  transition: 1s cubic-bezier(.68, -.55, .27, 10.55)
}

.navbar ul li {
  padding: 20px
}

.navbar ul li a {
  color: var(--text-color);
  text-decoration: none;
  position: relative
}

.navbar ul li a::after {
  content: "";
  width: 0%;
  height: 1.7px;
  border-radius: 99px;
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .3s ease
}

.navbar ul li a:hover {
  color: var(--primary-color)
}

.navbar ul li a:hover::after {
  width: 100%
}

.navbar .menu {
  width: 22px;
  height: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 20px
}

.navbar .menu span {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--primary-color);
  transition: .3s ease;
  transform-origin: left
}

.navbar .menu.active span {
  background: var(--secondary-color)
}

.navbar .menu.active span:nth-child(1) {
  transform: rotate(40deg)
}

.navbar .menu span:nth-child(3) {
  transform-origin: left
}

.navbar .menu.active span:nth-child(3) {
  transform: rotate(-40deg)
}

.navbar .menu.active span:nth-child(2) {
  transform: scale(0)
}

.form {
  background: linear-gradient(180deg, #705ced 3.04%, rgba(121, 116, 233, 0) 74.35%)
}

.form__wrap {
  padding: 20px;
  flex-direction: column
}

.form__content {
  width: 100%;
  padding-top: 0
}

.content__subtitle,
.content__title {
  display: none
}

.content__title_resp {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 20px
}

.form__content>.content__title_resp {
  color: #fff
}

.content__subtitle_resp {
  font-size: 18px;
  line-height: 22px;
  color: var(--text-color)
}

.formulario-wrap {
  display: block;
  width: 100%
}

.formulario__container {
  min-width: 100%
}

.formulario__top {
  display: none
}

.formulario__bottom {
  padding: 30px 20px 60px 20px
}

.formulario_p-titles {
  font-size: 1.6rem
}

.form-btn,
.form__select {
  font-size: 1.6rem
}

.form__select {
  border: 2px solid #a1c3d7;
  border-radius: 5px;
  width: 100%;
  color: #5485a0;
  outline: 0;
  background: #fff;
  font-size: 18px;
  padding: 13px 15px;
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "DM Sans";
  -webkit-appearance: none;
  background-image: url(../img/svg/select_arrow.svg);
  background-size: 14px 8px;
  background-repeat: no-repeat;
  background-position: center right 15px
}

.select_margin-b {
  margin-bottom: 20px
}

.formulario__container {
  border-radius: 15px 15px 50px 15px
}

.cards {
  padding: 20px 0;
  margin: 0 auto;
  -webkit-box-shadow: inset 0 -400px 0 0 rgba(71, 186, 251, 1);
  box-shadow: inset 0 -400px 0 0 rgba(71, 186, 251, 1)
}

.cards .title h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8rem;
  text-align: center
}

.tinder {
  height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity .1s ease-in-out
}

.loaded.tinder {
  opacity: 1
}

.tinder--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none
}

.tinder--status i {
  font-size: 100px;
  opacity: 0;
  transform: scale(.3);
  transition: all .2s ease-in-out;
  position: absolute;
  width: 100px;
  margin-left: -50px
}

.tinder_love .fa-heart {
  opacity: .7;
  transform: scale(1);
  background-color: #705ced
}

.tinder_nope .fa-remove {
  opacity: .7;
  transform: scale(1)
}

.tinder--cards {
  flex-grow: 1;
  padding-top: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 1
}

.tinder--card {
  display: inline-block;
  width: 94%;
  max-width: 400px;
  height: auto;
  background: #fff;
  padding-bottom: 0;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  transition: all .3s ease-in-out;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
  box-shadow: 0 10px 22px 5px rgba(90, 86, 118, .15);
  border-radius: 15px
}

.moving.tinder--card {
  transition: none;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing
}

.tinder--card>div {
  pointer-events: none
}

.tinder--card .info {
  background: #fff
}

.tinder--card .stars {
  background: var(--light-primary-color);
  padding: 20px
}

.tinder--card .stars .value {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  margin-bottom: 10px
}

.tinder--card .stars .value:last-child {
  margin-bottom: 0
}

.tinder--card .stars .value p {
  font-weight: 700
}

.tinder--card .stars .value .stars__wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start
}

.heart,
.star {
  width: 25px;
  height: 25px;
  border: none;
  margin: 7px 4px
}

.star--active {
  background-image: url(../images/icons/ui-star-active.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.star--inactive {
  background-image: url(../images/icons/ui-star-inactive.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.heart--active {
  background-image: url(../images/icons/ui-heart-active.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.heart--inactive {
  background-image: url(../images/icons/ui-heart-inactive.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.tinder--card .info img {
  max-width: 200px;
  pointer-events: none
}

.tinder--card .info h3 {
  font-size: 2.8rem;
  font-weight: 700;
  padding: 30px 15px 0 15px;
  pointer-events: none
}

.tinder--card .info p {
  font-size: 1.6rem;
  pointer-events: none;
  padding: 0 0 20px 0
}

.tinder--buttons {
  text-align: center;
  padding-top: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center
}

.tinder--buttons button {
  border-radius: 50%;
  line-height: 60px;
  width: 60px;
  height: 60px;
  padding: 20px;
  border: 0;
  background: #fff;
  display: inline-block;
  margin: 0 8px;
  box-shadow: 0 2px 14px 2px rgb(90 86 118 / 28%)
}

.tinder--buttons button:focus {
  outline: 0
}

.tinder--buttons .nope--static {
  background-image: url(../images/icons/ui-cross-active.png);
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto
}

.tinder--buttons .nope--inactive {
  background-image: url(../images/icons/ui-cross-inactive.svg);
  background-color: var(--grey2-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto
}

.tinder--buttons .nope--static:hover,
.tinder--buttons .nope--transition {
  transition: all .5s ease;
  line-height: 80px;
  width: 80px;
  height: 80px;
  background-image: url(../images/icons/ui-cross-inverted.svg);
  background-color: var(--ko-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto
}

.tinder--buttons .nope--static:hover+button.tinder--buttons .love--static {
  opacity: .5
}

.tinder--buttons .love--static {
  background-image: url(../images/icons/ui-heart-active.svg);
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto
}

.tinder--buttons .love--active {
  background-image: url(../images/icons/ui-heart-inactive.svg);
  background-color: var(--grey2-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto
}

.tinder--buttons .love--static:hover,
.tinder--buttons .love--transition {
  transition: all .5s ease;
  line-height: 80px;
  width: 80px;
  height: 80px;
  background-image: url(../images/icons/ui-heart-inverted.svg);
  background-color: var(--ok-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto
}

.resoults {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 20px 150px
}

.resoults h2 {
  font-family: Inter, sans-serif;
  font-size: 2.8rem;
  line-height: 3rem;
  font-weight: 700;
  padding-top: 40px
}

.resoults h2 span {
  font-family: Inter, sans-serif;
  color: var(--primary-color)
}

.resoults__wrapper {
  display: flex;
  flex-flow: row-reverse nowrap;
  justify-content: space-between;
  width: 100%;
  padding: 50px 0
}

.resoults .text {
  padding-bottom: 80px
}

.resoults .text p {
  line-height: 2.8rem
}

.resoults__wrapper .resoults__list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center
}

.resoults__wrapper .resoults__list ul li {
  display: none;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center
}

.resoults__wrapper .resoults__list ul li .heart {
  margin-right: 10px
}

.resoults__wrapper .resoults__animation {
  width: 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center
}

.resoults__wrapper .resoults__animation img {
  width: 100%;
  max-width: 300px;
  padding: 40px
}

.opinion {
  background: var(--secondary-color);
  height: 400px;
  padding: 60px 150px;
  color: #fff
}

.opinion span {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block
}

.opinion h4 {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 700
}

.footer p {
  color: var(--primary-color);
  text-align: center;
  padding: 20px 0
}

.news {
  position: relative
}

.breadcrumbs {
  height: 38px;
  width: 100%;
  padding: 0 150px;
  box-shadow: inset 0 4px 4px rgba(112, 92, 237, .2);
  background-color: var(--light-primary-color);
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center
}

.breadcrumbs ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start
}

.breadcrumbs ul li {
  padding: 0 0 0 1rem
}

.breadcrumbs ul li a {
  font-size: 1.4rem;
  color: var(--medium-primary-color)
}

.breadcrumbs ul li span {
  font-size: 1.4rem;
  color: var(--medium-primary-color);
  padding: 0 0 0 1rem;
  display: inline
}

.breadcrumbs ul li a:hover,
.breadcrumbs ul li:last-child a:hover {
  text-decoration: none;
  color: var(--secondary-color)
}

.breadcrumbs ul li:last-child a {
  color: var(--primary-color)
}

.news .articles {
  padding: 40px 150px 90px 150px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start
}

.news .articles .article {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 64%
}

.news .articles .aside {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 32%
}

.news .articles .aside .news-banner img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  border-radius: 15px
}

.news .articles .article .article__image {
  height: auto;
  width: 100%
}

.news .articles .article .article__title {
  font-family: "DM Sans", sans-serif;
  font-size: 4rem;
  line-height: 4.3rem;
  font-weight: 700;
  padding: 50px 0 40px 0
}

.news .articles .article .article__intro {
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-align: justify;
  font-weight: 700;
  margin-bottom: 15px
}

.news .articles .article .article__subtitle {
  font-family: "DM Sans", sans-serif;
  color: var(--primary-color);
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 700;
  padding: 30px 0 20px 0
}

.news .articles .article .article__subtitle-2 {
  font-family: "DM Sans", sans-serif;
  color: var(--text-color);
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 700;
  padding: 20px 0 15px 0
}

.news .articles .article .article__text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: justify;
  margin-bottom: 15px
}

.opinionWidget--xs {
  padding: 0;
  width: 100%
}

.opinionWidget--xs__wrap {
  padding: 0
}

.opinionWidget--xs__block {
  padding: 30px 35px;
  background: var(--light-primary-color);
  width: 100%;
  display: flex;
  flex-flow: column nowrap
}

.opinionWidget--xs__wrap {
  justify-self: baseline;
  padding: 0 0 20px 0
}

.opinionWidget--xs__title {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--text-color);
  margin-bottom: 10px
}

.opinionWidget--xs__btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  border: 2px solid transparent
}

.opinionWidget--xs__btn:hover {
  background-color: var(--primary-color)
}

.starsWidget__wrapper {
  display: flex;
  justify-content: space-around;
  gap: 10px
}

.star--filled {
  background-image: url(../img/svg/estrella_full-desk.svg) !important;
  width: 39px !important;
  height: 37px;
  border: none
}

.star--empty {
  background-image: url(../img/svg/estrella_low-desk.svg);
  background-color: var(--light-primary-color);
  width: 39px;
  height: 37px;
  border: none
}

.newsWidget {
  padding: 80px 150px;
  -webkit-box-shadow: inset 0 -400px 0 0 rgba(71, 186, 251, 1);
  box-shadow: inset 0 -400px 0 0 rgba(71, 186, 251, 1)
}

.newsWidget__title {
  color: var(--text-color);
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.4rem;
  margin-bottom: 20px
}

.newsWidget__wrap {
  padding: 0
}

.newsWidget__card {
  background: #fff;
  -webkit-box-shadow: 0 5px 10px 6px rgba(2, 24, 57, .08);
  box-shadow: 0 5px 10px 6px rgba(2, 24, 57, .08);
  border-radius: 20px;
  min-width: 245px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden
}

.newsWidget__card:hover .newsWidget__card__pic {
  transition: all ease .3s;
  filter: brightness(1);
  transform: scale(1.04)
}

.newsWidget__card:hover .newsWidget__card__text {
  transition: all ease .3s;
  color: var(--primary-color)
}

.newsWidget__card__pic {
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0 0;
  filter: brightness(.9)
}

.newsWidget__card__wrap {
  padding: 25px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: var(--text-color)
}

.newsWidget__card__text {
  padding: 25px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: var(--text-color)
}

.newsWidget__card__calendar {
  padding: 0 25px 15px 25px;
  display: flex;
  gap: 10px;
  align-items: center
}

.newsWidget__card__calendar__pic {
  width: 20px !important
}

.newsWidget__card__calendar__date {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 600
}

@media (max-width:1200px) {
  .header {
    padding: 15px
  }

  .news .articles {
    padding: 40px 15px
  }

  .newsWidget {
    padding: 40px 15px
  }
}

@media (max-width:767px) {
  .header {
    padding: 15px
  }

  .navbar .menu {
    display: flex
  }

  .navbar ul {
    height: 0;
    flex-direction: column;
    background: var(--primary-color);
    position: absolute;
    width: 100%;
    left: 0;
    top: 87px;
    background-color: var(--light-primary-color);
    transition: 1s cubic-bezier(.68, -.55, .27, 1.55)
  }

  .navbar ul.active {
    transition: all 1s ease;
    height: calc((((20 * 2) + (16 * 1.5))) * var(--childenNumber));
    background-color: var(--primary-color);
    z-index: 1
  }

  .navbar ul li {
    width: 100%;
    text-align: center
  }

  .navbar ul li:hover {
    background-color: var(--medium-primary-color)
  }

  .navbar ul li a {
    color: #fff;
    width: 100%;
    text-transform: capitalize
  }

  .tinder {
    height: 640px
  }

  .tinder--card .info img {
    max-width: 150px
  }

  .resoults {
    padding: 15px
  }

  .resoults__wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start
  }

  .resoults__wrapper .resoults__animation {
    width: 100%
  }

  .opinion {
    padding: 50px 15px
  }

  .breadcrumbs {
    display: none
  }

  .news .articles {
    padding: 40px 15px;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start
  }

  .news .articles .article,
  .news .articles .aside {
    width: 100%
  }

  .newsWidget {
    padding: 40px 15px
  }

  .news .articles .article .article__title {
    font-size: 3rem;
    line-height: 3.4rem;
    padding: 40px 0 25px 0
  }

  .news .articles .aside .news-banner img {
    margin-top: 40px
  }
}