@charset "UTF-8";
/**
*   style.scss
*   @description: Constructor de la hoja de estilos
*   @variables: dev: boolean: Activa las opciones de desarrollo
*/
/*  
* 1.- Componentes: Todos los elementos posibles
*/
/*      Core       */
/**
*   dev.scss
*   @description: Todas las opciones de desarrollo
*/
/*  INFORMATION
   =============================
    
	- File:           trejocode.css
	- Versión:        1.2
	- Licence:        Mozilla Public Licence. 
	- Author:         TrejoCode
    - Update:         11/06/2019
    - Client:         iGate
*/
/* RESET
   =============================
   - These properties able the cross compatibility for browsers and removes default properties from browsers.
*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,700&display=swap");

* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
}

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

body {
  overflow-x: hidden;
  background-color: #F5F4F4;
}

input, textarea, select, option, button {
  margin: 0;
  border: 0;
  padding: 0;
  outline: none;
}

table {
  border-spacing: 0;
  overflow-x: auto;
}

table th {
  white-space: nowrap;
}

input:focus, select:focus {
  outline: none;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  word-break: keep-all;
  text-decoration: none;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

img {
  max-width: 100%;
  height: auto;
}

/* CLASES
   =============================
	1. = FLEX LAYOUT
	2. = ALIGNMENT
    3. = WHITE SPACES
    4. = TABLES
    5. = IMAGES
    6. = DECORATORS & COLORS
*/
/*    FLEX LAYOUT
    - This stylesheet is based on flexbox.
    - W3 CSS Flexible Box Layout Module:
       https://www.w3.org/TR/css-flexbox-1
    
*/
.flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.responsive-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.row-responsive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

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

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

/*    ALIGNMENT    */
.justify-center {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-start {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-between {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-center {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-start {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-end {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

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

.full {
  width: 100%;
}

/*    TEXT ALIGNMENT    */
.text-left {
  text-align: left;
}

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

.text-end {
  text-align: end;
}

.text-justify {
  text-align: justify;
}

.text-right {
  text-align: right;
}

/*    TABLES    */
.table-responsive {
  overflow-x: auto;
}

.table-responsive table {
  width: 100%;
}

.table-auto {
  table-layout: auto;
}

.table-equal {
  table-layout: fixed;
}

/*    IMAGES    */
.cover-img {
  -o-object-fit: cover;
     object-fit: cover;
}

.contain-img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*    DECORATORS    */
.hidden {
  display: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

/*    LARGE DEVICES    */
@media screen and (min-width: 1440px) {
  /* .container {
    max-width: 1440px;
  } */
}

/*    NOTEBOOKS, IPADS DEVICES    */
/*    TABLETS DEVICES    */
@media screen and (max-width: 768px) {
 
  .row-responsive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .white-space-64 {
    height: 32px;
  }

  
}

/*    MOBILE DEVICES    */
@media screen and (max-width: 576px) {
  .container {
    width: 92%;
  }
  .iconosRedes{
    flex-direction: row;
    width: 100% !important;
    padding-left: 0rem !important;
    justify-content: center !important  ;
  }
  .redes .certificaciones .imgCert{
    margin-top: 1rem !important;
    justify-content: center !important;
   
  }
  .redes .certificaciones .ISO{
    width: 23.5% !important;
  }
  .redes .certificaciones .IAF {
    width: 30%;
    height: auto !important;
    margin-left: 1rem !important;
    margin-right: 0rem !important;
  }


  .txtface{
    display:none
  }
  .redes .texto{
    padding-left: 0rem !important;
    justify-content: center !important;
  }
  .redes .certificaciones .texto2{
    justify-content: center !important;
    padding-right: 0rem !important;
    padding-top: 1rem;
    padding-bottom: 1rem !important;
  }
  .landing .how-it-works .how-it-works2{
    width: 70% !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px !important;
  }
  .landing .how-it-works .content-info .content-inf {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 15px !important;
  }
}

/**
*   colors.scss
*   @description: Variables de colores
*/
/* Classes de colores para textos*/
.color-white {
  color: #FFFFFF;
}

.color-black {
  color: #000000;
}

.color-red {
  color: #EA545F;
}

.color-gray {
  color: #6c757d;
}

/* Clases de colores para backgrounds */
.bg-white {
  background-color: #FFFFFF;
}

.bg-black {
  background-color: #000000;
}

/**
*   fonts.scss
*   @description: Estilos de fuente y tipografía
*/
/*    Font families   */
/*    Font sizes    */
.font-triple {
  font-size: 5rem;
}

.font-double {
  font-size: 2rem;
}

.font-huge {
  font-size: 1.8rem;
}

.font-large {
  font-size: 1.6rem;
}

.font-medium {
  font-size: 1.4rem;
}

.font-regular {
  font-size: 1.2rem;
}

.font-small {
  font-size: 1rem;
}

.font-text {
  font-size: 0.93rem;
}

.font-tiny {
  font-size: 0.9rem;
}

.font-mini {
  font-size: 0.8rem;
}

/*    Font weight   */
.weight-ultra {
  font-weight: 800;
}

.weight-bold {
  font-weight: 700;
}

.weight-semi {
  font-weight: 600;
}

.weight-medium {
  font-weight: 500;
}

.weight-regular {
  font-weight: 400;
}

a {
  font-family: "Mitr", sans-serif;
  font-size: 1rem;
}

li {
  font-family: "Mitr", sans-serif;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
span,
td,
td,
tr {
  color: #FFFFFF;
  font-family: "Mitr", sans-serif;
}

h1 {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

h5 {
  font-size: 0.93rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

h6 {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
}

p,
b,
span {
  font-size: 0.93rem;
  line-height: 22px;
  color: #FFFFFF;
}

/*   Decorators    */
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

::-moz-selection {
  color: #FFFFFF;
  background-color: #000000;
}

::selection {
  color: #FFFFFF;
  background-color: #000000;
}

/**
*   spacing.scss
*   @description: Espacios en blanco, margenes y paddings
*/
/*      Paddings       */
/*      Margins       */
/*      Whitespaces       */
.white-space-8 {
  height: 8px;
}

.white-space-16 {
  height: 16px;
}

.white-space-24 {
  height: 24px;
}

.white-space-32 {
  height: 32px;
}

.white-space-48 {
  height: 48px;
}

.white-space-64 {
  height: 64px;
}

.padding-normal {
  padding: 8px;
}

.padding-medium {
  padding: 16px;
}

.padding-semi {
  padding: 24px;
}

.padding-large {
  padding: 32px;
}

.padding-huge {
  padding: 48px;
}

.padding-extra {
  padding: 64px;
}

.margin-normal {
  margin: 8px;
}

.margin-medium {
  margin: 16px;
}

.margin-semi {
  margin: 24px;
}

.margin-large {
  margin: 32px;
}

.margin-huge {
  margin: 48px;
}

.margin-extra {
  margin: 64px;
}

/*-=-=-=-=-=-=-=-=-=-=-=- */
/* Column Grids */
/*-=-=-=-=-=-=-=-=-=-=-=- */
.col_half {
  width: 49%;
}

.col_third {
  width: 32%;
}

.col_fourth {
  width: 23.5%;
}

.col_fifth {
  width: 18.4%;
}

.col_sixth {
  width: 15%;
}

.col_three_fourth {
  width: 74.5%;
}

.col_twothird {
  width: 66%;
}

.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth {
  position: relative;
  display: inline;
  display: inline-block;
  float: left;
  margin-right: 2%;
  margin-bottom: 20px;
}

.end {
  margin-right: 0 !important;
}

/* Column Grids End */
.wrapper {
  width: 980px;
  margin: 30px auto;
  position: relative;
}

.counter {
  background-color: #ffffff;
  padding: 20px 0;
  border-radius: 5px;
}

.count-title {
  font-size: 40px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: #000000;
}

.count-text {
  font-size: 13px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.fa-2x {
  margin: 0 auto;
  float: none;
  display: table;
  color: #4ad1e5;
}

/*      Libs     */
/*      Helpers      */
/*      Componentes      */
.input {
  font-size: 1rem;
  font-family: "Mukta", sans-serif;
  font-weight: 600;
  outline: 1px solid transparent;
  background-color: #efefef;
  padding: 8px 16px;
}

.input-form {
  width: 100%;
  color: #000000;
  background-color: #f2f2f2cc;
  padding: 8px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1.5px solid #f2f2f2;
  -webkit-transition: background .300s ease-in-out;
  transition: background .300s ease-in-out;
}

.input-form:focus {
  background-color: #ececec;
}

header {
  padding: 8px 0;
  background-color: transparent;
  position: fixed;
  z-index: 3;
  top: 0;
  -webkit-transition: background-color 0.4s ease-out;
  transition: background-color 0.4s ease-out;
  width: 100%;
}

header img {
  height: 60px;
}

header .logo {
  width: 25%;
}

header .nav-icon {
  display: none;
}

header .nav-item {
  padding: 0 15px;
  border-bottom: 2px solid transparent;
}

header .nav-item a {
  color: #FFFFFF;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
  font-size: 1rem;
  font-weight: 100;
  font-family: 'Montserrat', sans-serif;
}

header .nav-item a:hover {
  color: #FFFFFF;
  font-weight: 500;
}

header .nav-item i {
  padding-right: 4px;
}

header.scroll {
  background-color: #242a38;
  color: #FFFFFF;
}

@media screen and (max-width: 992px) {

 
  header {
    padding-bottom: 4px;
    background-color: #242a38;
  }
  header .nav-icon {
    display: block;
    margin: 1em;
    width: 35px;
    position: absolute;
    right: 5px;
    bottom: 2px;
    z-index: 2;
  }
  header .nav-icon:after, header .nav-icon:before, header .nav-icon div {
    background-color: #FFFFFF;
    border-radius: 3px;
    content: '';
    display: block;
    height: 4px;
    margin: 5px 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .nav-icon:hover:after, header .nav-icon:hover:before, header .nav-icon:hover div {
    background-color: #EA545F;
  }
  header .nav-icon-active:before {
    -webkit-transform: translateY(10px) rotate(135deg);
            transform: translateY(10px) rotate(135deg);
  }
  header .nav-icon-active:after {
    -webkit-transform: translateY(-9px) rotate(-135deg);
            transform: translateY(-9px) rotate(-135deg);
  }
  header .nav-icon-active div {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  header img {
    height: 50px;
    margin-bottom: 6px;
  }
  header .logo {
    width: 100%;
  }
  header .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 64px 24px;
    top: 0;
    right: 0;
    width: 35%;
    z-index: 1;
    height: 100vh;
    position: fixed;
    background-color: #242a38;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  header .main .nav-item {
    margin-bottom: 24px;
  }
  header .main-appear {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  header .main-hide {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .stores{
    width: 58% !important;
  }
}

@media screen and (max-width: 768px) {
  header .main {
    width: 60%;
  }
}

.card-info {
  background-color: #1c1c1c;
  /* background: linear-gradient(to right, rgb(209 53 113) 0%, rgb(61 5 28 / 78%) 0%, rgb(204 53 111) 81%); */
  width: 32%;
  padding: 8px;
  height: 400px;
  border-radius: 2px;
  /* border: 2px solid #FFFFFF; */
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow .300s ease-in-out;
  transition: -webkit-box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out, -webkit-box-shadow .300s ease-in-out;
}
.card1-info {
  background: #1c1c1c;
  
  
  /* background: linear-gradient(to right, rgb(209 53 113) 0%, rgb(61 5 28 / 78%) 0%, rgb(204 53 111) 81%); */
  width: 32%;
  padding: 8px;
  height: 400px;
  border-radius: 2px;
  /* border: 2px solid #FFFFFF; */
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow .300s ease-in-out;
  transition: -webkit-box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out, -webkit-box-shadow .300s ease-in-out;
}


.card2-info {
  background-color: #1c1c1c;
  /* background: linear-gradient(to right, rgb(209 53 113) 0%, rgb(61 5 28 / 78%) 0%, rgb(204 53 111) 81%); */
  width: 32%;
  padding: 8px;
  height: 400px;
  border-radius: 2px;
  /* border: 2px solid #FFFFFF; */
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow .300s ease-in-out;
  transition: -webkit-box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out, -webkit-box-shadow .300s ease-in-out;
}

/* .card-info:hover {
  -webkit-box-shadow: 1px 5px 12px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 5px 12px 4px rgba(0, 0, 0, 0.1);
} */
.cardd{
  width: 85%;
  
  }
.cards-info{
  padding-top: 1rem;
  border-top: 2px solid #7707a5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.cards-info1{
  padding-top: 1rem;
  border-top: 2px solid #69c671;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.cards-info2{
  padding-top: 1rem;
  border-top: 2px solid #7707a5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
}


.card-info-small {
  background-color: #1c1c1c;
  width: 24%;
  padding: 19px;
  height: 315px;
  border-radius: 4px;
  border: 2px solid #1c1c1c;
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow .300s ease-in-out;
  transition: -webkit-box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out, -webkit-box-shadow .300s ease-in-out;
}

.card-info-small2 {
  background-color: #1c1c1c;
  width: 31.5%;
  padding: 35px;
  height: 315px;
  border-radius: 4px;
  border: 2px solid #1c1c1c;
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow .300s ease-in-out;
  transition: -webkit-box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out, -webkit-box-shadow .300s ease-in-out;
}

/* .card-info-small:hover {
  -webkit-box-shadow: 1px 5px 12px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 5px 12px 4px rgba(0, 0, 0, 0.1);
} */
.card-title{
  color: white ;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.card-title2{
  color: white ;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 35px;
}
.cards-info-small{
  padding-top: 1rem;
  border-top: 2.8px solid #6ccb73;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.cards1-info-small{
  padding-top: 1rem;
  border-top: 2.8px solid #7507a2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.cards2-info-small{
  padding-top: 1rem;
  border-top: 2.8px solid #ce3570;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.cards3-info-small{
  padding-top: 1rem;
  border-top: 2.8px solid #2897c7;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.cards-info-small2{
  padding-top: 1rem;
  border-top: 2.8px solid #7507a2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
  width: 100%;
  margin-top: 2rem;
}
.cards1-info-small2{
  padding-top: 1rem;
  border-top: 2.8px solid #ce3570;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
  width: 100%;
  margin-top: 2rem;
}
.cards2-info-small2{
  padding-top: 1rem;
  border-top: 2.8px solid #66bc6e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
  width: 100%;
  margin-top: 2rem;
}

.card-info-contact{
  background-color: #1c1c1c;
  width: 29%;
  padding: 35px;
  height: 355px;
  border-radius: 1px;
  border: 2px solid #1c1c1c;
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow .300s ease-in-out;
  transition: -webkit-box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out, -webkit-box-shadow .300s ease-in-out;
  margin-right: 1rem;
}
.card-info-contact1{
  background-color: #e9535f;
  width: 29%;
  padding: 35px;
  height: 355px;
  border-radius: 1px;
  border: 2px solid #e9535f;
  -webkit-box-shadow: 0 2px 4px 1px rgba(71, 52, 52, 0.1);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow .300s ease-in-out;
  transition: -webkit-box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out;
  transition: box-shadow .300s ease-in-out, -webkit-box-shadow .300s ease-in-out;
  margin-left: 1rem;
}

.cards-info-contact2{
  padding-top: 1rem;
  /* border-top: 2.8px solid #c0282d; */
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 23px;
  text-align: center;
  width: 100%;
  /* margin-top: 2rem; */
}

.card-subt{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.card-contact{
  width: 100%;
}
.cards-contact{
  width: 100%;
}
.info-title{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 55px;
}
.info-subt{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 28px;
}
.info-contact{
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 30px;
}

.serv{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 35px;
}

.text-servi{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 23px;
}
.btn-serv{
  width: 18%;
}

.how-use{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 23px;
}

@media screen and (max-width: 992px) {
  .card-info {
    width: 30%;
    margin-bottom: 16px;
  }
  .card-info-small {
    background-color: #1c1c1c;
    width: 24%;
    margin-bottom: 16px;
  }
  .card-info-small h3 {
    font-size: 1.2rem;
  }
  .card-info-small p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  .card-info {
    width: 100%;
    margin-bottom: 16px;
  }
  .card1-info {
    width: 100%;
    margin-bottom: 16px;
  }
  .card2-info {
    width: 100%;
    margin-bottom: 16px;
  }

  /* .video-card{
    width: 100% !important;
  } */

  .card-info-small {
    background-color: #1c1c1c;
    width: 100%;
    margin-bottom: 16px;
  }
  .card-info-small2 {
    background-color: #1c1c1c;
    width: 100%;
    margin-bottom: 16px;
  }
  .cards-info-small {
    font-size: 16px;
    text-align: center;
  }
  .card-title2{
    font-size: 25px; 
  }
  .card-info-contact { 
    width: 100%;
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
  .cards-info-contact2 { 
    font-size: 18px;
  }
  .card-info-contact1 { 
    width: 100%;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
  .serv {
    font-size: 25px;
  }
  .btn-serv {
    width: 100%;
  }
  .btn-servi {
    margin-bottom: 1rem;
  }
  .text-servi {
    font-size: 15px;
  }
}
.info-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 27px;
}

.info-subt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}

.info-contact {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 1.4rem;
}
.btn-login {
  padding: 20px 55px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: #8600b8;
  border-radius: 15px;
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 400;
  -webkit-transition: background .300s ease-in-out;
  transition: background .300s ease-in-out;
  font-family: 'Montserrat', sans-serif;
}

.btn-login:hover {
  background: #9ca0a3;
}
.IAF{
  height: 20px;
  width: 20px;
}
.appmospheraFooter{
  padding: 0.7rem 0;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #8d8d8d;
  text-align: center;
}

.btn-servi {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 400;
  padding: 7px 15px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 21%);
  background: #2791bf;
  border-radius: 1px;
  border:3px solid #2791bf;
  color: #FFFFFF;
  -webkit-transition: background .300s ease-in-out;
  transition: background .300s ease-in-out;
  
}
.btn-servi:hover {
  background: transparent;
  border:3px solid #2791bf;
}

.btn-servi2 {
  padding: 7px 55px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 21%);
  background:#cd3570;
  border-radius: 1px;
  border:3px solid #cd3570;
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 400;
  -webkit-transition: background .300s ease-in-out;
  transition: background .300s ease-in-out;
  font-family: 'Montserrat', sans-serif;
}
.btn-servi2:hover {
  border:3px solid #cd3570;
  background: transparent;
  
}
/*      Páginas      */
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.landing .termins {
  background: #000000;
  height: auto !important;
}

.landing .termins h1 {
  font-size: 3rem;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
}

.landing .termins p {
  color: #FFFFFF;
  font-size: 1rem;
  text-align: justify;
}

.landing .preview {
  background-size: cover;
  background-position: start;
  scroll-snap-align: center;
  height: 100vh;
  /*background: #B2FEFA;  /* fallback for old browsers */
  /* background: -webkit-linear-gradient(to right, #0ED2F7, #B2FEFA);  /* Chrome 10-25, Safari 5.1-6 */
  /* background: linear-gradient(to right, #0ED2F7, #B2FEFA); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.landing .preview .overlay {
  /* background: -webkit-gradient(linear, left top, right top, from(rgba(175, 40, 49, 0.4)), color-stop(0%, rgba(239, 93, 103, 0.7)), color-stop(81%, rgba(165, 38, 48, 0.8))); */
 background:  linear-gradient(to right, rgb(83 100 148 / 55%) 0%, rgb(27 34 43 / 63%) 0%, rgb(27 34 43 / 63%) 81%);
}

.landing .preview .info-preview h1 {
  font-size: 4.5rem;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.landing .preview .info-preview .text-info {
  font-size: 2rem;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  text-transform: uppercase !important;
}

.landing .preview .info-preview p {
  color: #FFFFFF;
  font-size: 1.6rem;
  width: 90%;
}

.landing .preview .stores-row {
  width: 100%;
}
.stores{
  width: 23%;
  
}
.store-imgR{
  border: 2px solid #eb5560;
  border-radius: 8px;
  padding: 4px 4px;
  margin-left: 1.5rem;
}
.store-imgL{
  border: 2px solid #eb5560;
  border-radius: 8px;
  padding: 4px 4px;
  margin-right: 1.5rem;
}
.landing .preview .stores-row img {
  height: 65px;
  -webkit-transition: border 300ms ease-in-out;
  transition: border 300ms ease-in-out;
  /* padding-right: 10px; */
}


.landing .preview .image-column {
  width: 100%;
  align-content: flex-end;
  /* position: relative; */
}

.landing .preview .image-column .hand-mobile {
  height:210px;
  width: auto;
}

.icons{
  width: 5%;
  /* position: absolute;
  top: 50px;
  left: 565px; */
  
 
}
.media{
  width: 70%;
  border-bottom: 1px solid #e9535eb5;
  
}
.media:hover{  
  border-bottom: 2px solid #e9535eb5;
}

i{
  font-size: 2.2em;
  color:  #6b6b6b;
  align-items: center;
}
i:hover{
  color: white ;
}
.facebook{
  width: 70%;
  border-bottom: 1px solid #e9535eb5;
  padding-top:5px;
}
.facebook:hover{
  width: 70%;
  border-bottom: 2px solid #e9535eb5;
  padding-top:5px;
}


.landing .how-it-works {
  background-color: #242a38;
  scroll-snap-align: center;
  z-index: 2;
}

.landing .how-it-works .how-it-works2 {
  width: 60%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 35px;
  
}
.landing .how-it-works .content-info {
  width: 90%;
 

}
.landing .how-it-works .content-info .content-inf {
 
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 30px;
  
}

    

.landing .offered {
  background-size: cover;
  background-position: center;
  scroll-snap-align: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  
  
}

.landing .offered .overlay {
  background: #0c1218c7;
  backdrop-filter: blur(3px) contrast(130%);;
  
  
  
  
}

.landing .offered .phone-column {
  width: 50%;
}

.landing .offered .phone-column .mobile-app {
  width: 100%;
  padding-top: 8px;
}

.landing .offered .column-info {
  width: 60%;
  padding: 0 16px;
}
.text-title{
  font-family: 'Montserrat', sans-serif;
  color: #e9535f;
  font-size: large;
  font-weight: 400;
}
.text-sub{
  font-family: 'Montserrat', sans-serif;
  font-size: x-large;
  font-weight: 100;
}

.landing .offered .offers {
  width: 75%;
  padding: 8px;
}

.landing .offered .offers p {
  font-size: 17px;
}

.landing .benefits {
  background-color: rgb(36 42 56);
}
.benef{
  width: 100%;
}

.landing .benefits .column-infos {
  width: 55%;
  border-left: 10px solid #8600b8;
 
}
.landing .benefits .column-info {
  width: 100%;
  padding: 3rem  0 ;
  padding-left:4rem ;
   
}
.landing .benefits .column-info .question {
  font-family: 'Montserrat', sans-serif;
  color: #8600b8;
  font-size: 26px;
  font-weight: 600;

}


.landing .benefits .column-info .list-benefit {
  width: 90%;
}

.landing .benefits .column-info .list-benefit h4 {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 50;
  color: #c9c9c9;
  text-align: initial;
}

.landing .benefits .column-info .list-benefit .check-icon {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #EA545F), color-stop(117%, #000000));
  background: linear-gradient(to right, #EA545F 30%, #000000 117%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.9rem;
  margin-right: 16px;
}

.landing .benefits .phone-column {
  width: 100%;
  
}
.landing .benefits .phone-columns {
  width: 45%;
  background-position: left;
  background-size: cover;
  
  
  
}
.btn-login2{
  padding: 20px 55px;
  -webkit-box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
  background: #71d678;
  border-radius: 15px;
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 400;
  -webkit-transition: background .300s ease-in-out;
  transition: background .300s ease-in-out;
  font-family: 'Montserrat', sans-serif;
}

.btn-login2:hover {
  background: #9ca0a3;
}


.landing .benefits .img-app-benefits {
  width: 75%;
}

.landing .benefits2 {
  background-size: cover;
  background-position: center;
  scroll-snap-align: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.landing .benefits2 .overlay {
  background: #242a38 ;
}

.landing .benefits2 .column-info {
  width: 100%;
  padding: 3rem;
  padding-left: 4rem;
  padding-right: 1rem;
}
.landing .benefits2 .column-infos {
  width: 100%;
  border-right: 10px solid #71d678;
}

.question2{   
font-family: 'Montserrat', sans-serif;
color: #71d678;
font-size: 26px;
font-weight: 600;
}


.landing .benefits2 .column-info .list-benefit {
  width: 90%;
}

.landing .benefits2 .column-info .list-benefit h4 {
  font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 50;
    color: #c9c9c9;
    text-align: initial;
}

.landing .benefits2 .column-info .list-benefit .check-icon {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #EA545F), color-stop(117%, #000000));
  background: linear-gradient(to right, #EA545F 30%, #000000 117%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.9rem;
  margin-right: 16px;
}

.landing .benefits2 .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.phone {
  width: 100%;
  background-position: right;
  background-size: cover;
  height: 100%;
  
}

.landing .benefits2 .phone .responsive-img {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          padding: 4rem 0;
}

.landing .benefits2 .phone .responsive-img .img-app-benefits {
  width: 85%;
}

.landing .benefits2 h4 {
  color: #FFFFFF;
}

.landing .access {
  background-color: #242a38;
}

.landing .access .access-info {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 35px;
}

.landing .access .icon-phone {
  margin-right: 16px;
}

.landing .access .img-app-more {
  width: 85%;
}

.cards-access{
  width: 98%;
}

.landing .access .more-info .white-space-64 {
  display: none;
}

.landing .contact-info {
  background-size: cover;
  background-position: center;
  scroll-snap-align: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.landing .contact-info .input-container {
  width: 98%;
}

.landing .contact-info .input-container-full {
  width: 100%;
}

.landing .contact-info .overlay {
  background: #000000a3;
}

.landing .contact-info .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.landing .contact-info h4 {
  color: #FFFFFF;
}

.landing .contact-info .column-info {
  width: 90%;
}

.landing .contact-info .column-info form {
  width: 80%;
}

.landing .contact-info .phone-column {
  width: 80%;
}

.landing .contact-info .phone-column .img-app-contact {
  width: 90%;
  position: relative;
}

.landing .footer {
  background-color: #242a38;
}

.redes{
  width: 85%;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.redes .texto{
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  color: #d5d5d5;
  padding-left: 3rem;
  padding-bottom: 2.5rem;
}
.iconosRedes{
  padding-left: 4rem;
  width: 59%;
}

.redes .certificaciones{
  width: 85%;
  
}
.redes .certificaciones .texto2{
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  color: #d5d5d5;
  padding-right: 0rem;
  padding-bottom: .2rem;
  text-align: center;
  /* width: 60%; */
}
.redes .certificaciones .imgCert{
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  color: #d5d5d5;
  margin-top: 3rem;
}

.redes .certificaciones .ISO{
  width: 22%;
  height: auto !important;
  /* padding-bottom: 1.3rem;
  padding-top: 1.3rem; */
}
.redes .certificaciones .IAF{
  width: 30%;
  height: auto !important;
  margin-left: 2rem;
  margin-right: 3rem;
  /* padding-bottom: 1.3rem;
  padding-top: 1.3rem; */
}
/* .redes .appmospheraFooter{
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 2rem;
} */
.face{
  width: 46%;
  /* border-bottom: 2px solid #eb556078; */
  padding-bottom: 0rem;
  margin-right: 1rem;
}
.txtface{
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #d5d5d5;
  padding-left: .5rem;
    padding-bottom: 0rem;
    width: 82%;
    height: 30px;
}
.txtface:hover{
  color: #ffffff ;
}
.face:hover{
  
  /* border-bottom: 2px solid #eb555f; */
}
.face i{
  font-size: 2em;
  color:#d5d5d5;
  align-items: center;
  
}
.face i:hover{
  color: #ffffff ;
  
}

.landing .footer .social-media {
  border-radius: 4px;
  color: #FFFFFF;
  display: inline-block;
  margin-right: 1rem;
  text-align: center;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
}

.landing .footer .column-info {
  width: 55%;
  padding: 16px;
  padding-left: 0;
}

.landing .footer .column-centre {
  width: 30%;
  padding: 16px;
}

.landing .footer .column-social-media {
  width: 26%;
  padding: 16px;
}

table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}

tbody {
  border: #000000 1px solid;
}

tr {
  border: #000000 1px solid;
}

td {
  border: #000000 1px solid;
  padding: 5px;
}

th {
  border: #000000 1px solid;
  padding: 10px;
}

@media screen and (max-width: 992px) {
  .landing .preview .stores-row {
    width: 100%;
  }
  .landing .preview .stores-row img {
    height: 55px;
  }
  .landing .preview .image-column {
    width: 100%;
  }
  .landing .preview .image-column .hand-mobile {
    height: auto;
    width: 100%;
  }
  .landing .offered .column-info {
    width: 100%;
    padding: 0 16px;
  }
  .landing .offered .column-info .offers {
    width: 100%;
  }
  .landing .offered .row-responsive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .landing .offered .phone-column {
    width: 100%;
  }
  .landing .offered .phone-column .mobile-app {
    width: 45%;
    margin-bottom: 48px;
  }
  .landing .benefits2 .phone {
    width: 100%;
    height: 80vh;
  }
  .landing .benefits2 .phone .responsive-img {
    margin-top: 48px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .landing .benefits2 .phone .responsive-img .img-app-benefits {
    width: 100%;
    position: relative;
    left: -80px;
  }
}

@media screen and (max-width: 768px) {
  .landing .preview .info-preview {
    width: 90%;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .landing .preview .info-preview h1 {
    font-size: 2rem;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }
  .landing .preview .info-preview .text-info {
    font-size: 1rem;
    color: #FFFFFF;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
  }
  .landing .preview .info-preview .stores-row {
    width: 100%;
  }
  .landing .preview .info-preview .stores-row img {
    height: 55px;
  }
  .landing .preview .image-column {
    width: 100%;
    margin-top: 48px;
    display: none;
  }
  .landing .preview .image-column .hand-mobile {
    width: 55%;
  }
  .landing .how-it-works {
    background-color: #242a38;
    scroll-snap-align: center;
    z-index: 2;
  }
  .landing .how-it-works .content-info {
    width: 100%;
  }
  .landing .how-it-works .content-info h4 {
    font-size: 1rem;
  }
  .landing .offered .column-info {
    width: 100%;
    padding: 0 16px;
  }
  .landing .offered .column-info .offers {
    width: 100%;
  }
  .landing .offered .phone-column {
    width: 100%;
  }
  .landing .offered .phone-column .mobile-app {
    width: 95%;
    margin-bottom: 48px;
  }
  .landing .benefits .phone-column {
    width: 100%;
    margin-top: 48px;
  }
  .landing .benefits .column-info {
    width: 100%;
  }
  .landing .benefits .column-info .list-benefit {
    width: 100%;
  }
  .landing .benefits .column-info h1 {
    font-size: 1.6rem;
  }
  .landing .benefits .column-info h4 {
    font-size: 0.9rem;
  } 
  .landing .benefits .column-infos {
    width: 95%;
    border-left: 10px solid #8600b8;
  }
  .landing .benefits .column-info {
    width: 100%;
    padding: 3rem 0;
    padding-left: 2rem;
  }
  .landing .benefits .phone-columns {
    width: 100%;
    background-position: left;
    background-size: cover;
    height: 80vh;
}
  .landing .benefits .column-info .list-benefit h4 {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 50;
    color: #c9c9c9;
    text-align: initial;
  }
  .landing .benefits2 .white-space-64 {
    height: 50px;
  }
  .landing .benefits2 .white-space-24 {
    height: 0;
  }
  .landing .benefits2 .column-info {
    width: 100%;
    padding: 3rem;
    padding-left: 0rem;
    padding-right: 0rem;
}
  .landing .benefits2 .reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .landing .benefits2 .column-info {
    width: 90%;
  }
  .landing .benefits2 .column-info .list-benefit h4 {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 50;
    color: #c9c9c9;
    text-align: initial;
  }
  .landing .access .access-info {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 23px;
    width: 90%;
  }
  .cards-access {
    width: 95%;
  }
  .landing .benefits2 .column-info .list-benefit {
    width: 100%;
  }
  .landing .benefits2 .phone {
    width: 100%;
  }
  .landing .benefits2 .phone .responsive-img {
    margin-top: 48px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .landing .benefits2 .phone .responsive-img .img-app-benefits {
    width: 100%;
    position: relative;
    left: -80px;
  }
  .landing .contact-info {
    background-size: cover;
    background-position: center;
    scroll-snap-align: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  .landing .contact-info .column-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .landing .contact-info .column-info form {
    width: 90%;
  }
  .landing .contact-info .column-info form .btn-login {
    width: 50%;
  }
  .landing .contact-info .input-container {
    width: 98%;
  }
  .landing .contact-info .input-container-full {
    width: 100%;
  }
  .landing .contact-info .overlay {
    background: #000000a3;
  }
  .landing .contact-info .reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .landing .contact-info h4 {
    color: #FFFFFF;
  }
  .landing .contact-info .phone-column {
    width: 100%;
    margin-top: 24px;
  }
  .landing .contact-info .phone-column .img-app-contact {
    width: 90%;
    position: relative;
  }
  /* .landing .footer {
    background-color: #000000;
  } */

  .face i {
    font-size: 2em;
  }
  .face {
    width: 15%;
    border-bottom: 2px solid #eb556078;
    padding-bottom: 0.5rem;
    margin-right: 1rem;
  }
  .landing .footer .social-media {
    border-radius: 4px;
    color: #FFFFFF;
    display: inline-block;
    margin-right: 1rem;
    text-align: center;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  }
  .landing .footer .column-info {
    width: 100%;
    margin-bottom: 32px;
    padding: 0;
  }
  .landing .footer .column-center {
    width: 100%;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 32px;
  }
  .landing .footer .column-center .column {
    width: 100%;
  }
  .landing .footer .column-social-media {
    width: 100%;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .landing .footer .column-social-media .column {
    width: 100%;
  }
}

	.landing .tutoriales {
		background-size: cover;
		background-position: center;
		scroll-snap-align: center;
		background-attachment: fixed;
		background-repeat: no-repeat;
	}
  
	.landing .tutoriales .input-container {
		width: 98%;
	}
	
	.landing .tutoriales .input-container-full {
		width: 100%;
	}
  
	.landing .tutoriales .overlay {
	
    background: linear-gradient(to right, rgb(83 100 148 / 55%) 0%, rgb(22 30 41 / 75%) 0%, rgb(25 40 59 / 63%) 81%);
	}

	.landing .tutoriales .video-card {
		justify-content: center;
		align-items: center;
		background: #000000;
		transition: all 0.5s ease-in-out;
		cursor: pointer;
		width: 30%;
		padding: 30px;
		height: 250px;
		border-radius: 5px;
	}
  .landing .tutoriales .video-card1 {
		justify-content: center;
		align-items: center;
		background: #000000;
		transition: all 0.5s ease-in-out;
		cursor: pointer;
		width: 30%;
		padding: 30px;
		height: 250px;
		border-radius: 5px;
	}

  .landing .tutoriales .video-card2 {
		justify-content: center;
		align-items: center;
		background: #000000;
		transition: all 0.5s ease-in-out;
		cursor: pointer;
		width: 30%;
		padding: 30px;
		height: 250px;
		border-radius: 5px;
	}

  .landing .tutoriales .video-card3 {
		justify-content: center;
		align-items: center;
		background: #000000;
		transition: all 0.5s ease-in-out;
		cursor: pointer;
		width: 30%;
		padding: 30px;
		height: 250px;
		border-radius: 5px;
	}

  .landing .tutoriales .video-card4 {
		justify-content: center;
		align-items: center;
		background: #000000;
		transition: all 0.5s ease-in-out;
		cursor: pointer;
		width: 30%;
		padding: 30px;
		height: 250px;
		border-radius: 5px;
	}

  .landing .tutoriales .video-card5 {
		justify-content: center;
		align-items: center;
		background: #000000;
		transition: all 0.5s ease-in-out;
		cursor: pointer;
		width: 30%;
		padding: 30px;
		height: 250px;
		border-radius: 5px;
	}


	@media screen and (max-width: 760px) {
		.landing .tutoriales .video-card {
			width: 100%;
		}
    .landing .tutoriales .video-card1 {
			width: 100%;
		}
    .landing .tutoriales .video-card2 {
			width: 100%;
		}
    .landing .tutoriales .video-card3 {
			width: 100%;
		}
    .landing .tutoriales .video-card4 {
			width: 100%;
		}
    .landing .tutoriales .video-card5 {
			width: 100%;
		}
	}

	.video-card .fa-youtube {
		font-size: 50px;
		color: #fff;
	}
  .video-card1 .fa-youtube {
		font-size: 50px;
		color: #fff;
	}
  .video-card2 .fa-youtube {
		font-size: 50px;
		color: #fff;
	}
  .video-card3 .fa-youtube {
		font-size: 50px;
		color: #fff;
	}
  .video-card4 .fa-youtube {
		font-size: 50px;
		color: #fff;
	}
  .video-card5 .fa-youtube {
		font-size: 50px;
		color: #fff;
	}

	.landing .tutoriales .video-card:hover {
		background: #6ac671;
	}
  .landing .tutoriales .video-card1:hover {
		background: #278bb8;
	}

  .landing .tutoriales .video-card2:hover {
		background:#7408a1 ;
	}

  .landing .tutoriales .video-card3:hover {
		background: #cd3570;
	}

  .landing .tutoriales .video-card4:hover {
		background: #7408a1 ;
	}

  .landing .tutoriales .video-card5:hover {
		background: #6ac671
	}


	#whatsAppWidget {
		position: fixed;
		right: 8px;
		bottom: 3px;
		float: right;
		margin-bottom: 10px;
		width: 0%;
		z-index: 2;
	}

	.waArea {
		float: right;
		height: 50px;
		width: 50px;
		border-radius: 50%;
		overflow: hidden;
		box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 6px;
		text-align: center;
		line-height: 50px;
		color: white;
		background-color: rgb(77, 194, 71);
	}
	
	.waArea	svg {
		display: inline;
		fill: white;
	}
	
	.waArea	.squareMessage {
		border-radius: 3px;
		box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 7px 0px;
		display: block;
		float: left;
		margin-top: 6px;
		padding: 8px;
		max-width: 90px;
		min-width: 34px;
		font-size: 12px;
		font-weight: 500;
		color: rgb(138, 138, 138);
		background-color: rgb(255, 255, 255);
		box-sizing: content-box;
		line-height: initial;
		clear: both;
		word-break: break-word;
	}

	.modal {
		position: fixed; /* Stay in place */
		z-index: 2; /* Sit on top */
		left: 0;
		top: 0;
		width: 100%; /* Full width */
		height: 100%; /* Full height */
		overflow: auto; /* Enable scroll if needed */
		background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
		transition: all 0.5s ease-in-out;
	}

	.modal.closed {
		opacity: 0;
		visibility: hidden;
		transform: scale(1.1);
		transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
	}

	.modal.open {
		opacity: 1;
		visibility: visible;
		transform: scale(1.0);
		transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
	}

	/* Modal Content/Box */
	.modal .modal-content {
		background-color: transparent;
		margin: 10% auto;
		width: 70%;
		height: 400px;
		padding: 10px;
	}

	@media screen and (max-width: 760px) {
		.modal .modal-content {
			margin: 15% auto;
			width: 95%;
		}
	}

	.modal .close {
		color: #aaa;
		float: right;
		font-size: 3rem;
		font-weight: bold;
	}

	.modal .close:hover,
	.modal .close:focus {
		color: #e0dede;
		text-decoration: none;
		cursor: pointer;
	}

	.modal-content .video-responsive {
		width: 100%;
		height: 100%;
	}

	.modal-content .video-responsive iframe,
	.modal-content .video-responsive object,
	.modal-content .video-responsive embed {
		height: 100%;
		width: 100%;
	}

	.poiner {
		cursor: pointer;
	}
/*# sourceMappingURL=style.css.map */