/*
$breakpoints-up: (
  "medium": "640px",
  "large": "1024px",
  "xlarge": "1400px",
);
$breakpoints-down: (
  "small": "639px",
  "smallextra": "768px",
  "mediumExtra": "1200-px";
  "medium": "1023px",
  "large": "1399px",
);*/
html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #5c5c5c;
  line-height: 1.3;
  margin: auto;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

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

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button {
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  cursor: pointer;
  color: #ffffff;
  font-weight: 700;
  background-color: #612771;
  border: 0;
  font-size: 1.125rem;
  display: inline-block;
}

.button-pur {
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  cursor: pointer;
  color: #ffffff;
  font-weight: 700;
  background-color: #612771;
  border: 0;
  font-size: 1.125rem;
  display: inline-block;
}

@media (max-width: 64em) {
  .button-pur {
    font-size: 1rem;
    font-weight: 500;
    max-width: 11.7em;
  }
}

@media (max-width: 39.9375em) {
  .button-pur {
    margin: auto;
  }
}

.button-ama {
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  cursor: pointer;
  color: #ffffff;
  font-weight: 700;
  background-color: #faa819;
  border: 0;
  font-size: 1.125rem;
  display: inline-block;
}

@media (max-width: 64em) {
  .button-ama {
    font-size: 1rem;
    font-weight: 500;
    max-width: 11.7em;
  }
}

@media (max-width: 39.9375em) {
  .button-ama {
    margin: auto;
  }
}

.buttonInverse {
  padding: 0.3rem 1rem;
  border-radius: 0.3rem;
  cursor: pointer;
  color: #612771;
  font-weight: 500;
  background-color: #ffffff;
  border: 0.15rem solid #612771;
  text-align: center;
  font-size: 1rem;
}

@media (max-width: 39.9375em) {
  .buttonInverse {
    font-size: 0.8125rem;
    font-weight: 400;
    border: 0.1rem solid #612771;
  }
}

.buttonInverseSolid {
  padding: 0.3rem 1rem;
  border-radius: 0.3rem;
  cursor: pointer;
  color: #ffffff;
  font-weight: 500;
  background-color: #612771;
  border: 0.15rem solid #ffffff;
  text-align: center;
  font-size: 1rem;
}

@media (max-width: 39.9375em) {
  .buttonInverseSolid {
    font-size: 0.8125rem;
    font-weight: 400;
    border: 0.1rem solid #ffffff;
  }
}

/*
.button {
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  cursor: pointer;

  &__full {
    color: $white;
    font-weight: $weightBlack;
    background-color: $primary;
    border: 0;
    font-size: $fontRegular;
  }
  &__transparent {
    color: $primary;
    font-weight: $weightBlack;
    border: 0.125rem;
    font-size: $fontRegular;
  }*/
@media (max-width: 64em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.carousel {
  position: relative;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

@media (max-width: 64em) {
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (min-width: 64em) {
  .carousel-item {
    height: 30rem;
  }
}

@media (max-width: 64em) {
  .carousel-item {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 64em) {
  .carousel-item h1 {
    font-size: 0.9375rem;
  }
}

@media (max-width: 64em) {
  .carousel-item p {
    font-size: 1.375rem;
  }
}

.carousel-item img {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 64em) {
  .carousel-item img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: auto;
    left: auto;
    margin: auto;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

@media (max-width: 64em) {
  .carousel-item .desktop {
    height: 0rem;
    width: 0rem;
  }
}

@media (min-width: 40em) {
  .carousel-item .mobile {
    height: 0rem;
    width: 0rem;
  }
}

@media (min-width: 64em) {
  .carousel-item .tablet {
    height: 0rem;
    width: 0rem;
  }
}

@media (max-width: 39.9375em) {
  .carousel-item .tablet {
    height: 0rem;
    width: 0rem;
  }
}

.carousel-caption-am {
  position: absolute;
  right: 15%;
  top: 7rem;
  left: 15%;
  padding-top: 0rem;
  padding-bottom: 1.25rem;
  color: #612771;
  /*text-align: center;*/
  text-align: left;
}

@media (max-width: 64em) {
  .carousel-caption-am {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    right: 15%;
    top: 7rem;
    left: 15%;
    padding-top: 0rem;
    padding-bottom: 1.25rem;
    color: #612771;
    /*text-align: center;*/
    text-align: left;
  }
}

@media (max-width: 39.9375em) {
  .carousel-caption-am {
    position: absolute;
    right: 15%;
    top: 3rem;
    left: 15%;
    padding-top: 0rem;
    padding-bottom: 1.25rem;
    color: #612771;
    text-align: center;
  }
}

.carousel-caption-pur {
  position: absolute;
  right: 15%;
  top: 7rem;
  left: 15%;
  padding-top: 0rem;
  padding-bottom: 1.25rem;
  color: #faa819;
  /*text-align: center;*/
  text-align: left;
}

@media (max-width: 64em) {
  .carousel-caption-pur {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 39.9375em) {
  .carousel-caption-pur {
    text-align: center;
    top: 3rem;
  }
}

.Legales .textoPrimary {
  color: #501763;
}

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

@media (max-width: 39.9375em) {
  .Legales .imagenes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.Legales .imagenes img {
  width: 80%;
  max-width: 27rem;
  margin: 0 1rem;
}

@media (min-width: 40em) {
  .Legales .imagenes img {
    width: 50%;
  }
}

.Legales .imagen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Legales .imagen img {
  max-width: 55%;
}

.pasos {
  padding-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

@media (min-width: 64em) {
  .pasos {
    padding-left: 7rem;
    padding-right: 7rem;
    margin: 0rem;
    max-width: 93.75rem;
    margin: auto;
  }
}

.pasos h2 {
  font-size: 2rem;
  text-align: center;
  color: #501763;
}

@media (min-width: 64em) {
  .pasos h2 {
    font-size: 2.75rem;
    text-align: left;
  }
}

.pasos__grid {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 64em) {
  .pasos__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem;
  }
}

.pasos__item {
  padding: 0.9375rem;
  text-align: center;
  /*@include breakpoint-up(medium) {
      flex: 1 0 50%;
      flex-wrap: wrap;
    }*/
}

@media (min-width: 64em) {
  .pasos__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.pasos__icon {
  width: 6em;
  height: 5em;
  position: relative;
  margin: auto;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 0px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 0px rgba(0, 0, 0, 0.2) inset;
}

.pasos__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0.5rem;
}

.pasos__info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.pasos__info b {
  color: #501763;
}

.pasos__info .numero {
  margin: 0 0.5rem;
  font-weight: 800;
}

.pasos__info p {
  max-width: 11.25rem;
}

h1 {
  font-size: 1.125rem;
  font-weight: 500;
}

h1,
h2,
h3,
p {
  margin-top: 0px;
}

.secondTitle {
  font-size: 1.375rem;
  font-weight: 500;
}

.firstTitle {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.landingA {
  background-color: #ffcc37;
  color: #501763;
  padding-bottom: 1.8rem;
}

@media (min-width: 64em) {
  .landingA {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 7rem;
    padding-right: 7rem;
    padding-top: 2rem;
    padding-bottom: 0rem;
    max-width: 93.75rem;
    margin: auto;
  }
}

.landingA__image {
  /*background-image: url("/dist/images/celularBUSKO1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    //falta que se quede en el medio al agrandar la ventana*/
  margin-bottom: 1.3rem;
  margin-top: 0.7rem;
  position: relative;
  height: 25rem;
  width: 100%;
}

@media (min-width: 64em) {
  .landingA__image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 35rem;
    position: relative;
    margin-bottom: 0rem;
  }
}

.landingA__image img {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  height: auto;
  width: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 64em) {
  .landingA__image img {
    max-height: 30rem;
    min-height: 15rem;
    max-width: 40rem;
    position: relative;
    min-width: 25rem;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.landingA__info {
  text-align: center;
}

@media (min-width: 64em) {
  .landingA__info {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
  .landingA__info h1 {
    font-size: 1.375rem;
  }
  .landingA__info .firstTitle {
    font-size: 3.375rem;
  }
}

.landingB {
  padding-top: 1.5rem;
}

@media (min-width: 64em) {
  .landingB {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1rem;
    padding-left: 7rem;
    padding-right: 7rem;
    max-width: 93.75rem;
    margin: auto;
  }
}

.landingB__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.5rem;
  /*background-image: url("/dist/images/celularBUSKO1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    //falta que se quede en el medio al agrandar la ventana*/
}

@media (min-width: 64em) {
  .landingB__image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
  }
}

.landingB__image img {
  max-height: 15rem;
}

@media (min-width: 64em) {
  .landingB__image img {
    max-height: 20rem;
    min-height: 10rem;
  }
}

.landingB__info {
  text-align: center;
}

@media (min-width: 64em) {
  .landingB__info {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
    max-width: 40rem;
    min-width: 30rem;
  }
  .landingB__info h1 {
    font-size: 1.375rem;
  }
  .landingB__info .firstTitle {
    font-size: 2.75rem;
    color: #501763;
  }
}

@media (min-width: 64em) and (max-width: 39.9375em) {
  .landingB__info .firstTitle {
    max-width: 10rem;
    color: #501763;
  }
}

.landingC {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

@media (min-width: 64em) {
  .landingC {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 7rem;
    padding-right: 7rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 93.75rem;
    margin: auto;
  }
}

.landingC__image {
  /*background-image: url("/dist/images/celularBUSKO1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    //falta que se quede en el medio al agrandar la ventana*/
  margin-bottom: 1.3rem;
  margin-top: 0.4rem;
  position: relative;
  height: 25rem;
}

@media (min-width: 64em) {
  .landingC__image {
    -webkit-box-flex: 1.2;
        -ms-flex: 1.2;
            flex: 1.2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 30rem;
    position: relative;
    margin-bottom: 0rem;
  }
}

.landingC__image img {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  height: auto;
  width: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 64em) {
  .landingC__image img {
    max-height: 30rem;
    min-height: 15rem;
    max-width: 40rem;
    position: absolute;
    min-width: 15rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.landingC__info {
  text-align: center;
}

@media (min-width: 64em) {
  .landingC__info {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 3rem;
    max-width: 45rem;
  }
}

.landingC__info .regularText {
  font-size: 1.375rem;
}

.landingC__info .regularText b {
  color: #501763;
  font-weight: 500;
}

@media (max-width: 39.9375em) {
  .landingC__info .regularText {
    font-size: 1.125rem;
    padding: 0 2rem;
    padding-bottom: 1.5rem;
  }
}

.landingC__info .hashtag {
  color: #501763;
  font-size: 2.75rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

@media (max-width: 39.9375em) {
  .landingC__info .hashtag {
    font-size: 1.75rem;
  }
}

.landingC__info .tittle {
  font-size: 1.375rem;
  font-weight: 800;
  padding-bottom: 0.5rem;
}

.landingC__info .firstTitle {
  font-size: 2.75rem;
}

@media (max-width: 39.9375em) {
  .landingC__info .firstTitle {
    font-size: 2.25rem;
    padding: 0 0.4rem;
  }
}

.navbar .navbar-expand-lg {
  max-width: 93.75rem;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  padding: 5rem;
  text-align: center;
}

@media (min-width: 64em) {
  .footer {
    padding-left: 7rem;
    padding-right: 7rem;
    padding-top: 5rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr (1.2fr)[2] 0.5fr;
        grid-template-columns: 1fr 1fr repeat(2, 1.2fr) 0.5fr;
        grid-template-areas: "logoTagline links1 links2 links3 icono";
    max-width: 93.75rem;
    margin: auto;
  }
}

.footer a {
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 0 !important;
}

@media (min-width: 64em) {
  .footer a {
    font-weight: 400;
  }
}

.footer__background {
  background-color: #612771;
}

@media (min-width: 64em) {
  .footer__logoTagline {
    min-width: 13rem;
    grid-area: logoTagline;
  }
}

.footer__logo {
  display: inline-block;
}

.footer__logo img {
  width: 12em;
  height: 2.6em;
}

.footer__tagline {
  font-size: 1.625rem;
  font-weight: 500;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 64em) {
  .footer__tagline {
    text-align: left;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__links p {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1rem;
}

.footer__links .cuerpo {
  font-size: 0.8125rem;
  font-weight: 200;
}

@media (min-width: 64em) {
  .footer__links {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.footer__links.col1 a {
  margin-bottom: 0.4rem;
}

@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
    text-align: left;
    margin-right: 0.5rem;
  }
}

.footer__links.col2 {
  /*       a {
        display: inline-block;
        margin-bottom: 0.4rem;
      } */
}

@media (min-width: 64em) {
  .footer__links.col2 {
    grid-area: links2;
    margin-right: 0.5rem;
    text-align: left;
  }
}

.footer__links.col3 {
  /*     p {
        margin-bottom: 0.4rem;
        font-weight: $weightBlack;
      } */
}

.footer__links.col3 a {
  display: inline-block;
  margin-bottom: 0.4rem;
}

@media (min-width: 64em) {
  .footer__links.col3 {
    grid-area: links3;
    margin-right: 0.5rem;
    text-align: left;
  }
}

@media (min-width: 64em) {
  .footer__icono {
    grid-area: icono;
    -ms-grid-column-align: end;
        justify-self: end;
    padding-right: 0.5rem;
  }
}

.footer__icono img {
  margin-top: 2rem;
  width: 8rem;
  height: 5rem;
}

@media (min-width: 64em) {
  .footer__icono img {
    margin-top: 0;
  }
}

.footer__social a {
  display: inline-block;
}

.footer__social img {
  width: 1.5em;
  height: 1.5em;
  margin: 0.5rem 0.3rem 0.8rem 0.3rem;
}

.copyright {
  background-color: #d83941;
  max-width: 100% 150rem;
}

.copyright__text {
  background-color: #501763;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
}

#app-whatsapp {
  position: fixed;
  z-index: 500;
  display: none;
  display: block;
  right: 1.1rem;
  width: 3rem;
  bottom: 1rem;
}

@media (min-width: 64em) {
  #app-whatsapp {
    right: 3rem;
    width: 3.75rem;
    bottom: 3rem;
  }
}

.whatsapp {
  width: 3rem;
}

@media (min-width: 64em) {
  .whatsapp {
    width: 4rem;
  }
}

.direccion {
  color: #ffffff;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  width: 100%;
}

.direccion p {
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 2rem;
  font-weight: 300;
  font-size: 0.9375rem;
}

.direccion .legalesFooter {
  font-size: 0.5rem;
}

.direccion a {
  color: #ffffff;
  font-weight: 600;
}

.requisitos {
  color: #501763;
  padding-bottom: 1.8rem;
  padding-top: 1em;
  /*&__textoVideo{
        @include breakpoint-up(large) {
            display: flex;
            flex-direction:row;
        }
    }*/
}

@media (min-width: 64em) {
  .requisitos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 7rem;
    padding-right: 7rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
    max-width: 93.75rem;
    margin: auto;
  }
}

.requisitos__texto {
  padding-bottom: 1em;
}

@media (min-width: 64em) {
  .requisitos__texto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0.8;
        -ms-flex: 0.8;
            flex: 0.8;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 1.5em;
    margin: auto 0;
    padding-bottom: 0em;
    position: relative;
  }
}

.requisitos__texto .firstTitle {
  text-align: center;
  font-size: 2.25rem;
}

@media (min-width: 64em) {
  .requisitos__texto .firstTitle {
    text-align: left;
  }
}

@media (min-width: 64em) {
  .requisitos__texto .requisitosTexto {
    text-align: left;
  }
}

@media (min-width: 64em) {
  .requisitos__video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1.2;
        -ms-flex: 1.2;
            flex: 1.2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    width: 60%;
    margin-bottom: 0rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.requisitos__video video {
  width: 100%;
}

@media (min-width: 64em) {
  .requisitos__video video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    width: 60%;
    margin-bottom: 0rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
/*# sourceMappingURL=style.css.map */