@import url('https://fonts.googleapis.com/css2?family= Poppins:ital,wght@0,300;0,400;0,600;0,700;1,700 & display=swap');

:root{
    --paddin-container: 100px 0;
    --color-title: #001a49;
}


/* --------------------------------------------------------------------------------> Cambios para Pesataña de Productos*/

.productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Crea 3 columnas para los productos */
    gap: 20px; /* Espacio entre los productos */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.producto-item {
    background-color: #fff;
    padding: 15px; 
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden; /* Evita que la imagen se salga del contenedor */
    max-width: 100%; /* Ajusta el ancho del producto para que sea más compacto */
}

.producto-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.producto-imagen {
    max-width: 70%; /* Haz que la imagen ocupe el 70% del contenedor */
    height: auto;
    transition: transform 0.3s ease;
    z-index: 1;
}

.producto-item:hover .producto-imagen {
    transform: scale(1.05); /* Efecto de hover más suave */
    z-index: 0;
}

.producto-item h3 {
    margin-top: 10px; 
    font-size: 16px;
    color: #333;
    position: relative;
    z-index: 2; 
}

.producto-item p {
    font-size: 13px; 
    color: #777;
    margin-top: 5px;
    position: relative;
    z-index: 2;
}





/* Estilos generales solo para la clase carcasa */
.carcasa .container {
    display: flex;
    justify-content: space-between; /* Separar las columnas */
    gap: 20px; /* Espacio entre las dos columnas */
    margin: 20px auto; /* Espacio superior e inferior */
}

.carcasa .image-section {
    flex: 1; /* Ocupa el 50% del ancho */
}

.carcasa .image-section img {
    width: 100%; /* Imagen al 100% del ancho del contenedor */
    height: auto;
    border-radius: 20px; /* Bordes redondeados para la imagen */
}

.carcasa .info-section {
    flex: 1; /* Ocupa el otro 50% del ancho */
}

.carcasa .info-section h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color:  #001a49;
}

.carcasa .info-section p {
    font-size: 16px;
    margin-bottom: 5px;
}

.carcasa .tabs {
    margin-top: 15px;
}

.carcasa .tabs button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.carcasa .tabs button:hover {
    background-color: #0056b3;
}

.tab-content {
    min-height: 350px; /* Establece una altura mínima */
}

.carcasa .tab-content {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.carcasa .tab-content p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .carcasa .container {
        flex-direction: column; /* Cambia las columnas a una fila vertical */
    }
}


/* Cambios para Pesataña de Productos -------------------------------------------------------------------------------->*/


body {
    font-family: 'Poppins', sans-serif;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--paddin-container);
}

.hero__contac{
    display: flex;
    height: 120px;
    background-color: #001233;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

.hero{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 300px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
}

.hero::before{
    content: "";
    position: absolute;
    top: 0;  
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100%), url('../images/puntoDeVenta_final.png');
    background-size: 140%;
    animation: animacion 10s infinite linear alternate;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

@keyframes animacion {
    from{
        background-position: bottom left;
    } to{
        background-position: top right;
    }
}

/* ETIQUETA NAV*/

.nav{
    --paddin-container: 0;
    height: 150%;
    display: flex;
    align-items: center;
    
}

.nav__title{
    font-weight: 300;
}

.nav__link{
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2em;
}

.nav__items{
    list-style: none;
}

.nav__links{
    color: #fff;
    text-decoration: none;
}

.nav__menu{
    margin-left: auto;
    cursor: pointer;
    display: none;
}

.nav__img{
    display: block;
    width: 30px;
}

.nav__close{
    display: var(--show, none);
}

/*ETIQUETA HERO CONTAINER*/

.hero__container{
    max-width: 800px;
    --padding-container: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
}

.hero__title{
    font-size:  3rem;
}

.hero__paragraph{
    margin-bottom: 20px;
    font-size: 20px;
}

.cta{
    display: inline-block;
    background-color: #2091f9;
    justify-self: center;
    color: #fff;
    text-decoration:  none;
    padding: 13px 30px;
    border-radius: 32px;
}

/*ETIQUETA ABOUT*/

.about{
    text-align: center;

}

.subtitle{
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 25px;
}

.about__paragraph{
    line-height: 1.7;
}

.about__main{
    padding-top: 80px;
    display: grid;
    width: 90%;
    margin: 0 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px,auto));
}

.about__icons{
    display: grid;
    gap: 1em;
    justify-items: center;
    width: 260px;
    overflow: hidden;
    margin: auto;
}

.about__icon__posdev{
    display: grid;
    gap: 1em;
    justify-items: center;
    width: 200px;
    overflow: hidden;
    margin: auto;
}

.about__icon{
    width: 40px;
}

/*ETIQUETA KNOWLEDGE*/

.knowledge{
    background-color: #e5e5f7;
    opacity: 0.8;
    background-image:  radial-gradient(#444cf7 0.5px, transparent 0.5px), radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0,10px 10px;
}

.knowledge__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
}

.knowledge__picture{
    max-width: 500px;
}

.knowledge__paragraph{
    line-height: 1.7;
    margin-bottom: 15px;
}

.knowledge__img{
    width: 100%;
    display: block;
}

/*ETIQUETA TESTIMONY*/

.testimony{
    background-color: #006eb313;
}

.testimony__container{
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    gap: 1em;
    align-items: center;
}

.testimony__body{
    display: grid;
    grid-template-columns: 1fr max-content;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    grid-column: 2/3;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
}

.testimony__body--show{
    pointer-events: unset;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.testimony__img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 30%;
}

.testimony__texts{
    max-width: 700px;
}

.testimony__course{
    background-color: rgba(16, 112, 129, 0.411);
    color: #fff;
    display: inline-block;
    padding: 5px;

}

.testimony__arrow{
    width: 90%;
    cursor: pointer;
}

.testimony__arrow:hover{
    background: rgba(51, 174, 231, 0.185);
    transition: .5s;
}

/*------------------------------------------------------------------ I N D I C A D O R E S--------------------------------*/

.testimony__indicators {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
  }
  
  .testimony__indicator {
    width: 20px;
    height: 5px;
    margin: 0 8px;
    border: none;
    background-color: #C4C4C4;
    border-radius: 0;
    transition: background-color .4s ease;
    cursor: pointer;
  }
  
  .testimony__indicator--active {
    background-color: #002c6dd3;
  }
  
/*------------------------------------------------------------------ I N D I C A D O R E S--------------------------------*/

/*ETIQUETA QUESTIONS*/

.questions{
    text-align: center;
}

.questions__container{
    display: grid;
    gap: 2em;
    padding-top: 50px;
    padding-bottom: 100px;
}

.questions__padding{
    padding: 0;
    transition: padding .3s;
    border: 1px solid #5454d4;
    border-radius: 6px;
}

.questions__padding--add{
    padding-bottom: 30px;
}

.questions__answer{
    padding: 0 30px 0;
    overflow: hidden;
}

.questions__title{
    text-align: left;
    display: flex;
    font-size: 20px;
    padding: 30px 0 30px;
    cursor: pointer;
    color: var(--color-title);
    justify-content: space-between;
}

.questions__arrow{
    border-radius: 50%;
    background-color: var(--color-title);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    margin-left: 10px;
    transition: transform .3s; 
}

.questions__arrow--rotate{
    transform: rotate(180deg);
}

.questions__show{
    text-align: left;
    height: 0;
    transition: height .3s;
}

.questions_img{
    display: block;
}

.questions__copy{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
}

/*ETIQEUTA FOOTER*/

.footer{
    background-color: #1d293f;
}

.footer__title{
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 30px;
}

.footer__title, .footer__newsletter{
    color: #fff;
}

.footer__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 60px;
}

.nav--footer{
    padding-bottom: 20px;
    display: grid;
    gap: 1em;
    grid-auto-flow: row;
    height: 100%;
}

.nav__link--footer{
    display: flex;
    margin: 0;
    margin-right: 20px;
    flex-wrap: wrap;
}

.footer__inputs{
    margin-top: 10px;
    display: flex;
    overflow: hidden;
}

.footer__input{
    background-color:  #fff;
    height: 50px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline:  none;
    border: none;
    margin-right: 16px;
}

.footer__submit{
    margin-left: auto;
    display: inline-block;
    height: 50px;
    padding: 0 20px;
    background-color: #2091f9;
    border: none;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.footer__copy{
    --padding-container: 30px 0;
    text-align:  center;
    color: #fff;
}

.footer__copyright{
    font-weight: 300;
}

.footer__icons{
    display: inline-flex;
    margin-bottom: 10px
}

.footer__img{
    width: 30px;
}

/*ETIQUETA SERVICE*/

.about__paragraph__service{
    line-height: 1.7;
    font-size: large;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px; 
}

.about__it__paragraph{
    line-height: 1.7;
    font-size: large;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px; 
}

.about__main__service{
    padding-top: 80px;
    display: grid;
    width: 100%;
    margin: 1 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px,auto));
    text-align: left;
}

.about__main__title{
    padding-top: 50px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(260px,auto));
    text-align: center;
}

.about__main__service_title{
    padding-top: 80px;
    display: grid;
    width: 100%;
    margin: 1 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px,auto));
    text-align: center;
}

.service{
    padding: 0px 10px 10px 10px;
    width: 100%;
    margin: 1 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px,auto));
    text-align: center;
    background-color: #006eb313;
}

.service__img{
    padding: 10px 0;
}

.service__img:hover{
    transform: scale(1.15);
}

.service__img__diseño{
    display: grid;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.service__co{
    margin-top: 150px;
    width: 100%;
    margin: 1 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px,auto));
}

.main__service{
    display: grid;
    width: 100%;
    margin: 0 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(250px,auto));
    margin-top: 50px;
}

.container_service{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_service figure{
    position: relative;
    height: 250px;
    width: 350px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.50);
    cursor: pointer;
}

.container_service figure img{
    width: 100%;
    height: 100%;
    transition: all 500ms ease-out;
}

.container_service figure .layer{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 103, 123, 0.6);
    transition: all 500ms ease-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.container_service figure:hover > .layer{
    opacity: 1;
    visibility: visible;
}

.container_service figure:hover > .layer h3{
    margin-top: 70px;
    margin-bottom: 15px;
}

.container_service figure .layer h3{
    color: white;
    font-weight: 400;
    margin-bottom: 120px;
    transition: all 500ms ease-out;
    margin-top: 30px;
}

.container_service figure .layer p{
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    width: 100%;
    max-width: 220px;
    margin: auto;
}

/*ETIQUETA ABOUT IT*/

.about__main__about{
    
    display: grid;
    width: 100%;
    margin: 1 auto;
    margin-top: 1rem;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    background: -webkit-linear-gradient(70deg, rgb(255, 255, 255), rgba(0, 132, 255, 0.233), rgb(255, 255, 255));  
}

.about_it{
    padding: 10px;
    width: 100%;
    margin: 1 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px,auto));
    text-align: center;
}

.about_img{
    padding: 10px;
}

.about_img:hover{
    transform: scale(1.15);
}

.about_img_about{
    object-fit: cover;
    padding: 10px 10px 10px 10px;
    width: 350px;
}

.nav__link__about{
    text-align: left;
    display:inline-block;
}

.cardamazing{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.card{
    position: relative;
    width: 360px;
    height: 600px;
    margin: 10px auto;
}

.card .face{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}


.card .front{
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 10px #000;
}

.card .front img {
    position: relative;
    width: 100%;
    height: 100%; 
    object-fit: cover;
}

.card .back{
    transform: perspective(600px) rotateY(180deg);
    background: rgb(3, 35, 54);
    padding: 15px;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 5px 10px #000;
}

.card .back .link{
    border-top: solid 1px #f3f3f3;
    height: 50px;
    line-height: 50px;
}

.card .back .link a{
    color: #f3f3f3;
}

.card .back h3{
    font-size: 45px;
    margin-top: 100px;
    letter-spacing: 5px;
}

.card .back li{
    letter-spacing: 3px;
    font-size: 25px;
    text-align: left;
}

.card .back p{
    letter-spacing: 2px;
    font-size: 20px;
}

.card:hover .front{
    transform: perspective(600px) rotateY(180deg);
}

.card:hover .back{
    transform: perspective(600px) rotateY(360deg);
}

.subtitleAbout {
    color: var(--color-title);
    font-size: 3rem;
    margin-bottom: 25px;
    border-bottom: solid 1px #000;
}

.subtitleIndex {
    color: var(--color-title);
    font-size: 50px;
    border-left: solid 8px var(--color-title);
    padding-left: 40px;
    letter-spacing: 3px;
}

.index__paragraph {
    line-height: 1.7;
    font-size: large;
    text-align: justify;
    margin-left: 100px;
}

.index__main {
    display: flex;
    width: 100%;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: 300px 1fr;
    text-align: left;
}

.index__cliente {
    margin-top: 100px;
}

.index__cliente img{
    align-content: center;
    width: 300px;
}

.msg-error {
    color: #c65848;
}

.g-recaptcha.error {
    border: solid 2px #c64848;
    padding: .2em;
    width: 19em;
}
.btn-wsp{
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.btn-wsp:hover{
    text-decoration: none;
    color: #0df053;
    background: #fff;
}

/*------------------------------------------D E M O  V I D E O-------------------------------------------*/

/* Estilos para el contenedor */
.container-servicios{
   width: 90%; /* Establece el ancho del elemento al 90% del ancho de su contenedor padre */
   max-width: 1200px; /* Establece el ancho máximo del elemento en 1200 píxeles */
   margin: 0 auto; /* Establece márgenes de 5 píxeles arriba y abajo, y centrará horizontalmente el elemento */
   overflow: hidden; /* Controla cómo se maneja el contenido que se desborda del elemento (en este caso, se oculta) */
   padding: var(--paddin-container); /* Establece el relleno interno del elemento usando una variable CSS llamada --paddin-container */
   text-align: center; /* Centra el contenido de texto dentro del elemento horizontalmente */
}

/* Estilos para la cuadrícula */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 320px 1fr; /* 1fr para las columnas laterales, 320px para el teléfono en el medio */
    gap: 20px; /* Espacio entre las columnas */
    align-items: center; /* Centra verticalmente los elementos */
}

/* Estilos para ajustar el tamaño del contenedor del teléfono */
.phone-container {
    position: relative;
    width: 320px; /* Ajusta el ancho del teléfono según tus necesidades */
    height: 660px; /* Ajusta la altura del teléfono según tus necesidades */
    margin: 0 auto;
    overflow: hidden; /* Asegura que el video no sobresalga de los bordes redondos */
}

/* Estilos para el contenedor de la imagen de google play*/
.image-container {
    text-align: left;
}

/* Estilos para el contenedor de la imagen del QR*/
.qr-container {
    text-align: right;
}

/* Estilos para ajustar el tamaño del video dentro del teléfono */
video {
    padding-top: 0px;
    width: 90%;
    height: 96%;
    border-radius: 40px; /* Agrega bordes redondos al contenedor del teléfono */
}

/* Estilos para posicionar la imagen del teléfono sobre el video */
.phone-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen para cubrir completamente el contenedor */
    z-index: 1; /* Asegura que la imagen esté encima del video */
}

/* Estilos para la imagen del código QR */
.qr-image {
    width: 70%; /* Ajusta el ancho del código QR según tus necesidades */
    height: 70%; /* Ajusta la altura del código QR según tus necesidades */
}

/* Estilos para la imagen de la Descarga en Google Play*/
.disponible-image {
    width: 70%; /* Ajusta el ancho del código QR según tus necesidades */
    height: 70%; /* Ajusta la altura del código QR según tus necesidades */
}
/*------------------------------------------D E M O  V I D E O-------------------------------------------*/

/*MEDIA QUERY*/

@media (max-width: 800px){
    
    .hero::before{
        background-size: 230%;
    }

    .container_service:last-of-type{
        grid-column: 1/-1;
    }

    .card{
        position: relative;
        width: 330px;
        height: 450px;
        margin: 5px auto;
    }

    .card:last-of-type{
        grid-column: 1/-1;
    }

    .card .back h3{
        font-size: 30px;
        margin-top: 100px;
        letter-spacing: 5px;
    }
    
    .card .back li{
        letter-spacing: 3px;
        font-size: 18px;
        text-align: left;
    }
    
    .card .back p{
        letter-spacing: 2px;
        font-size: 15px;
    }

    .about__it__paragraph{
        line-height: 1.7;
        font-size: 15px;
        text-align: left;
        margin-left: 20px;
        margin-right: 20px; 
    }

    .about__paragraph__service{
        line-height: 1.7;
        font-size: 18px;
        text-align: left;
        margin-left: 20px;
        margin-right: 20px; 
    }

    .subtitleIndex {
        color: var(--color-title);
        font-size: 30px;
        border-left: solid 8px var(--color-title);
        padding-left: 20px;
        letter-spacing: 3px;
    }
    
    .index__paragraph {
        line-height: 1.5;
        font-size: 15px;
        text-align: left;
        margin-left: 10px
    }

    .nav__menu{
        display: block;
    }

    .nav__link--menu{
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show{
        --show: block;
        opacity: 1;
        pointer-events: unset;
    }

    .nav__close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .hero__title{
        font-size: 2.5rem;
    }

    .about__main{
        gap: 2em;
    }

    .about__icons:last-of-type{
        grid-column: 1/-1;
    }

    .knowledge__container{
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        gap: 3em;
        text-align: center;
    }

    .knowledge__picture{
        grid-row: 1/2;
        justify-self: center;
    }

    .testimony__container{
        grid-template-columns: 30px 1fr 30px;
    }

    .testimony__body{
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        gap: 3em;
        justify-items: center;
    }

    .testimony__img{
        width: 200px;
        height: 200px;
    }

    .questions__copy{
        width: 100px;
    }

    .footer__container{
        flex-wrap: wrap;
    }

    .nav--footer{
        width: 100%;
        justify-items: center;
    }

    .nav__link--footer{
        width: 100%;
        justify-content: space-evenly;
        margin: 0;
    }

    .footer__form{
        width: 100%;
        justify-content: space-evenly;
    }

    .footer__input{
        flex: 1;
    }
}

@media(max-width: 600px){
    .hero::before{
        background-size: 400%;
    }

    .index__cliente img{
        align-content: center;
        width: 200px;
    }

    .card{
        position: relative;
        width: 310px;
        height: 550px;
        margin: 10px auto;
    }
    
    .index__main {
        flex-wrap: wrap;
    }

    .hero__title{
        font-size: 2rem;
    }

    .hero__paragraph{
        font-size: 1rem;
    }

    .subtitle{
        font-size: 1.8rem;
    }

    .testimony{
        --padding-container: 60px 0;
    }
    .testimony__container{
        grid-template-columns: 28px 1fr 28px;
        gap: .9em;
    }

    .testimony__arrow{
        width: 100%;
    }

    .testimony__course{
        margin-top: 15px;
    }

    .questions__title{
        font-size: 1rem;
    }

    .footer__title{
        justify-self: start;
        margin-bottom: 15px;
    }
    
    .nav--footer{
        padding-bottom: 60px;
    }

    .nav__link--footer{
        justify-content: space-evenly;
    }

    .footer__inputs{
        flex-wrap: wrap;
    }

    .footer__input{
        flex-basis: 100%;
        margin: 0;
        margin-bottom: 16px;
    }

    .footer__submit{
        margin-right: auto;
        margin-left: 0;
        /*
        margin: 0;
        width: 100%
        */
    }
    
}