@import url('https://use.typekit.net/odg2ttd.css');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "europa";
}

:root {
    --color-green-opacity: rgb(16, 62, 20, 0.32);
    --color-menu-hover: #569C5A;
    --color-green-clar: #1A8823;
    --color-green-dark: #103E14;
    --color-green: #325C35;
    --color-green-ligth: #DDFBDE;
    --color-card: #16511C;
    --color-white: #fff;
    --bg-gray-ligth: #EFF3F3;
    --color-input: #CFC8C8;
    --color-dark: #262626;
    --color-subtittle: #4D4D4F;
    --color-error: #E14545;
    --color-gray-1: #6B6B6F;
    --color-gray-2: #AFAFB1;

    --color-green-1: #1A8823; /* Antes #78DB7F --first-color */ 
    --color-green-2: #16511C; /* Antes #569C5A --dark-green */
    --color-green-3: #DDFBDE;
    --color-green-4: #4EDA58;
    --color-green-5: #325C35;
    --color-green-6: #F0FDF0;
    --color-error: #E14545; /* Antes #F86B6B */
    --color-black-1: #262626; /* Antes #333333 --first-color-light*/
    --color-black-2: #4D4D4F; /* Antes #8B8B8B --color-icons */
    --color-gray-1: #6B6B6F; /* antes #707070 también #AEAEAE AFACAC*/
    --color-gray-2: #afafb1;
}

.body {
    position: relative;
}

/* header y banner */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 3px 6px #00000029;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.header a {
    max-width: 165px;
}

.header a {
    width: 100%;
}

.menu {
    display: flex;
    align-items: center;
    color: var(--color-green-dark);
}

.header a {
    text-decoration: none;
    color: var(--color-green-dark);
}

.menu a:hover {
    color: var(--color-menu-hover);
}

.menu {
    margin: 0;
}

.menu li {
    list-style: none;
    margin-right: 4rem;
}

.menu .finally a {
    color: var(--color-white);
}

.btn-tem {
    background-color: var(--color-green-clar);
    box-shadow: 0px 3px 11px #00000029;
    border-radius: 28px;
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 20px;
}

.btn-tem:hover {
    background-color: var(--color-green-dark);
}

.btn-outled {
    border-radius: 20px !important;
    border: 0.842px solid var(--Green-Green-800, #1A8823) !important;
    background-color: var(--color-white) !important;
    color: var(--Green-Green-800, #1A8823) !important;
    line-height: normal !important;
    box-shadow: unset !important;
    margin-left: 12px;
}

.banner {
    width: auto;
    height: auto;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.enmascarar {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    /* max-height: 100%; */
    -webkit-animation: visible 1.5s both;
    animation: visible 1.5s both;
    aspect-ratio: auto;
    /* height: inherit; */
}

@keyframes visible {
    0% {
        opacity: 0;
        top: -1000px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

.enmascarar2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20vw;
    -webkit-animation: visible2 1.5s both;
    animation: visible2 1.5s both;
    aspect-ratio: auto;
}

@keyframes visible2 {
    0% {
        opacity: 0;
        right: -100%;
    }
    100% {
        opacity: 1;
        right: 0;
    }
}

.paper {
    position: absolute;
    top: 20%;
    left: 7%;
    width: 40%;
    z-index: 2;
    -webkit-animation: slide-right 1.5s both;
    animation: slide-right 1.5s both;
    aspect-ratio: auto;
    height: inherit;
}

@keyframes slide-right {
    0% {
        left: -100%;
    }
    90% {
        left: 10%;
    }
    100% {
        left: 7%;
    }
}

.ctn-text {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    -webkit-animation: slide-left 1.5s both;
    animation: slide-left 1.5s both;
}

@keyframes slide-left {
    0% {
        right: -100%;
    }
    90% {
        right: 2%;
    }
    100% {
        right: 0;
    }
}

.text {
    width: 40vw;
    aspect-ratio: auto;
}

.firma {
    position: relative;
    left: -10px;
    width: 25vw;
    aspect-ratio: auto;
    height: inherit;
}

.firma_movil, .text_movil {
    display: none;
}

.login, .bars-menu {
    display: none;
}

.en-movil {
    display: none;
}

.we {
    background-color: var(--bg-gray-ligth);
    padding: 80px 0;
    position: relative;
    top: -5px;
}

.title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 80px;
}

.ctn-title {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    z-index: 1;
}

.title::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--color-green-ligth);
    transform: rotate(45deg);
    border-radius: 6px;
    z-index: -1;
    top: 10px;
    left: -10px;
}

.ctn-card {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.cards {
    padding: 30px;
    box-shadow: 0px 3px 5px #00000029;
    border-radius: 26px;
    width: 360px;
    text-align: center;
    background-color: var(--color-white);
}

.card-mid {
    margin: 0 100px;
}

.cards img {
    height: 210px;
    width: auto;
    max-width: 90%;
    margin: 20px 0;
    aspect-ratio: auto;
}

.cards span {
    font-size: 1.5rem;
    color: var(--color-card);
}

.cards p {
    font-size: 14px;
    color: #333333;
}

.tutorials {
    padding: 100px 0;
    position: relative;
    top: -5px;
    background-color: var(--color-green-clar);
}

.tutorials .title {
    color: var(--color-white);
}

.ctn-cuads {
    display: grid;
    grid-template-areas: 'title title title video video video video'
                         'parrafo parrafo parrafo video video video video';
    color: var(--color-white);
    width: 85%;
    margin: 0 auto;
}

.ctn-cuads img {
    width: 50vw;
    border-radius: 23px;
    grid-area: video;
    aspect-ratio: auto;
    height: inherit;
}

.subtitle {
    font: normal normal bold 30px/38px Europa;
    margin: 60px 0 40px;
    grid-area: title;
}

.ctn-cuads p {
    font: normal normal normal 25px/32px Europa;
    margin-bottom: 40px;
    text-align: justify;
    grid-area: parrafo;
    hyphens: auto;
}

.parrafo {
    margin: 0 50px 80px 20px;
}

.btn-tuto {
    padding: 15px 50px;
    background-color: var(--color-white);
    color: var(--color-green-clar);
}

.btn-tuto:hover {
    color: var(--color-white);
}

.clients, .help {
    padding: 60px 0 120px;
}

.clients {
    max-width: 1300px;
    margin: 0 auto;
}

.help {
    background-color: #eff3f3;
}

.clients figure {
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow-x: auto; */
}

.clients figure img {
    margin-right: 120px;
}

.clients figure img:last-child {
    margin: 0;
}

.slick-list.draggable {
    width: 1300px;
    margin: 0 auto;
}

.slick-track {
    display: flex !important;
    align-items: center !important;
    justify-content: center;
}

.ctn-form {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.ctn-form form {
    margin-right: 90px;
    height: fit-content;
}

.ctn-form textarea {
    width: 100%;
    border: 1.5px solid var(--color-gray-2) !important;
    border-radius: 9px !important;
    color: var(--color-input);
    padding: 15px 20px !important;
    resize: none;
    font-size: 14px;
}

.ctn_input {
    position: relative;
    height: 45px;
}

.ctn_input .label_inp {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font: normal normal normal 14px/18px Europa;
    left: 35px;
    color: var(--color-gray-1);
}

.active ~ .label_inp {
    font: normal normal normal 12px/15px Europa;
    color: var(--color-green-clar);
    top: 8px;
    left: 30px;
    -webkit-animation: slide .5s both;
    animation: slide .5s both;
}

.menu .active {
    color: var(--color-green-clar);
}

.menu .active:hover {
    color: var(--color-green-clar);
}

.footer .active {
    color: var(--color-green-4);
}

@keyframes slide {
    0% {
        font: normal normal normal 14px/18px Europa;
        top: 50%;
    }
    100% {
        font: normal normal normal 12px/15px Europa;
        top: 8px;
    }
}

.inp {
    height: 100%;
    border: 1.5px solid var(--color-gray-2) !important;
    border-radius: 23px !important;
    outline: none;
    padding: 15px 20px 5px !important;
    color: var(--color-gray-1) !important;
}

.form-control:focus, .ctn-form textarea:focus, .ctn-form textarea:focus-visible, .ctn-form .active {
    border: 1.5px solid var(--color-green-clar) !important;
    box-shadow: none !important;
    outline: none;
}

.ctn-form textarea::placeholder {
    color: var(--color-gray-1);
}

.ctn-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-form {
    background: var(--color-green-clar);
    box-shadow: 0px 3px 11px #00000029;
    border-radius: 24px;
    padding: 10px 60px;
    color: var(--color-white);
    border: none;
    outline: none;
    margin-top: 20px;
}

.btn-form, .btn-tuto {
    font: normal normal normal 16px/20px Europa;
}

.btn-form:hover, .label_file:hover {
    background-color: var(--color-menu-hover);
}

.foot-dark {
    background-color: var(--color-green-opacity);
    color: var(--color-white);
    display: flex;
    align-items: center;
    padding: 25px;
    padding-left: 7vw;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.foot-dark p {
    font: italic normal 300 13px/17px Europa;
    color: #EFF3F3;
    margin: 0;
}

.foot-dark img {
    margin-left: 10px;
    width: 120px;
}

.footer {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    background-color: var(--color-card);
    overflow: hidden;
}

.ctn-foot {
    display: flex;
    align-items: center;
}

.img-dark {
    filter: brightness(0);
    height: 90%;
}

.foot {
    height: fit-content;
    margin: 0 10vw;
    padding-bottom: 40px;
    width: 14vw;
    max-width: 170px;
}

.ctn-foot li {
    list-style: none;
    margin-bottom: 15px;
}

.ctn-foot ul {
    padding: 0;
}

.ctn-foot a {
    text-decoration: none;
    color: #EFF3F3;
    white-space: nowrap;
}

.ctn-foot a:hover {
    color: var(--color-green-4);
}

.list-mid {
    margin: 0 10vw 0 0;
}

.modal-tx-green {
    text-align: center;
    font: normal normal normal 18px/23px Europa;
    color: #325C35;
    margin-bottom: 40px;
}

.modal-pars {
    text-align: center;
    font: normal normal normal 12px/15px Europa;
    letter-spacing: 0px;
    color: #777777;
    margin-bottom: 50px;
}

.modal-pars p:first-child {
    margin-bottom: 20px;
}

.modal-header {
    border: none !important;
    padding: 10px 20px 0 0 !important;
    justify-content: flex-end !important;
}

.modal-body {
    padding: 0 30px !important;
}

.modal-content {
    max-width: 450px !important;
    width: 90%;
    margin: auto;
}

.ctn-circle {
    display: grid;
    justify-content: center;
    align-items: center;
}

.close {
    background-color: transparent;
    outline: none;
    border: none;
    box-shadow: none;
    color: #A1A1A1;
    font-size: 1.5rem;
}

/* tutorials */

.main {
    width: 85vw;
    margin: 0 auto;
    margin-bottom: 80px;
    overflow-x: hidden;
}

.list-videos {
    max-height: 680px;
    overflow-y: auto;
    width: 480px;
}

.list-videos::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0;
}

.contain-tuto {
    display: grid;
    grid-template-columns: 1fr auto;
}

.header.header-tuto {
    position: sticky;
}

.principal-title {
    font: italic normal bold 60px/76px Europa;
    color: #325C35;
    margin: 50px 0;
}

.contain-tuto figure {
    margin-bottom: 0;
    margin-right: 50px;
}

.video {
    min-width: 210px;
    min-height: 120px;
    margin-right: 20px;
    position: relative;
    width: 210px;
    height: inherit;
}

.video span {
    position: absolute;
    color: #fff;
    padding: 5px;
    background-color: black;
    border-radius: 5px;
    bottom: 10px;
    right: 10px;
}

.ctn-list-videos {
    display: flex;
    margin-bottom: 30px;
    cursor: pointer;
}

.info-video p {
    font: italic normal bold 18px/23px Europa;
    color: var(--color-subtittle);
}

.info-video .date-video {
    font: normal normal normal 18px/23px Europa;
}

.view-video {
    width: 100%;
    max-height: 560px;
    border-radius: 23px;
    border: 2px solid black;
    aspect-ratio: 16 / 9;
    min-height: 150px;
}

.st-tuto {
    color: var(--color-subtittle);
    font: normal normal bold 30px/38px Europa;
    margin-bottom: 25px;
}

.title-tuto {
    font-style: italic;
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-dark);
    margin: 50px 0;
}

.ctn-title-tuto {
    position: relative;
    -webkit-animation: slide-top 1.5s both;
    animation: slide-top 1.5s both;
}

@keyframes slide-top {
    0% {
        bottom: 300px;
    }
    90% {
        bottom: -5px;
    }
    100% {
        bottom: 0;
    }
}

.questions {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 40px;
    align-items: center;
}

.accordion-body {
    padding: 0 !important;
}

.accordion-item {
    background: #FFFFFF;
    box-shadow: 0px 3px 12px #00000029;
    border-radius: 15px !important;
    margin-bottom: 30px;
}

.accordion-button {
    background: #FFFFFF !important;
    border-radius: 15px !important;
    box-shadow: none !important;
    color: #777777 !important;
    display: flex;
    padding: 15px 30px 15px 40px !important;
    justify-content: space-between;
    font: italic normal bold 18px/23px Europa;
}

.accordion-button::after {
    content: "\f078" !important;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    background-image: none !important;
    color: var(--color-menu-hover);
    font-size: 1.5rem;
    width: auto !important;
    height: auto !important;
    font-style: normal;
    padding-left: 15px;
}

.accordion-text {
    padding: 10px 60px 20px 40px;
    margin: 0;
    color: #777777;
    font: normal normal normal 16px/20px Europa;
}

.accordion-button:not(.collapsed)::after {
    background-image: none !important;
    padding-right: 15px;
    padding-left: 0;
}

.accordion-button:not(.collapsed) {
    color: var(--color-card) !important;
}

.accordion-header {
    border-radius: 15px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=number] { 
    -moz-appearance:textfield; 
    appearance:textfield; 
}

.img-questions {
    position: relative;
    width: 27vw;
    -webkit-animation: visible2 1.5s both;
    animation: visible2 1.5s both;
}

.subtitle-suport {
    font: normal normal bold 20px/26px Europa;
    color: var(--color-menu-hover);
    margin-bottom: 30px;
}

.title-suport {
    font-style: italic;
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-top: 50px;
}

.ctn-suport {
    padding: 0 !important;
}

.ctn-suport form {
    margin-right: 20px !important;
}

.ctn_file {
    position: relative;
    height: 45px !important;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 10px 20px !important;
}

.none {
    display: none !important;
}

.label_file {
    cursor: pointer;
    background: var(--color-green-clar);
    border-radius: 0px 23px 23px 0px;      
    color: var(--color-white);
    padding: 0 20px; 
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-capture {
    color: var(--color-subtittle);
}

.main_login {
    display: grid;
    min-height: 100VH;
    align-items: center;
    justify-content: center;
}

.ctn_login {
    width: 620px;
    max-width: 90vw;
}

.ctn_logo_login {
    text-align: center;
    margin-bottom: 40px;
}

.ctn_form_login {
    box-shadow: 0px 3px 22px #1919192E;
    border-radius: 10px;
    padding-bottom: 35px;
    margin-bottom: 50px;
}

.list_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 60px;
}

.list_forms {
    display: block;
    text-align: center;
    padding: 20px;
    color: #747272;
    font-size: 20px;
    box-shadow: inset 0 -1px 15px #00000045;
    border-radius: 10px 0 0 0;
    cursor: pointer;
}

.list_forms.list_forms2 {
    border-radius: 0 10px 0 0 !important;
}

.list_forms.active_list {
    box-shadow: none;
    border-radius: none;
}

.ctn-form .form_login {
    margin: 0;
    width: 80%;
    margin: 0 auto;
}

.ctn-form .form_register {
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

.pass {
    text-align: center;
    color: #A2A2A2;
    margin-bottom: 1.5rem;
}

.recover {
    color: var(--color-card);
}

.btn_login, .btn_google {
    width: 100%;
}

.btn_google {
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 8px #0000003D;
    color: #777777;
}

.btn_google:hover {
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%) 0% 0% no-repeat padding-box;
    box-shadow: inset 0px -4px 13px #00000029, 0px 3px 3px #0000003D;
}

.icon_google {
    color: red;
    font-size: 20px;
    margin-right: 5px;
}

.foot_login {
    background-color: var(--color-white) !important;
    color: #000 !important;
    opacity: 1 !important;
}

.foot_login p {
    color: #616161;
}

.inp_icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #c1c1c1;
    display: block;
}

.active ~ .ctn_icon .inp_icon {
    color: var(--color-green-ligth);
}

.icon_question {
    color: var(--color-green-ligth);
    font-size: 20px;
    margin-left: 5px;
}

.term_confirm {
    font-size: 12px;
    color: #7b7979;
    position: relative;
    left: 15px;
    top: -20px;
    display: flex;
    align-items: center;
}

.terms {
    font-size: 14px;
    color: #7b7979;
}

.terms_item {
    color: var(--color-green-ligth);
}

.terms_item:hover {
    color: var(--color-card);
}

.terms_check {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.ctn_terms {
    position: relative;
    top: -10px;
    margin-bottom: 5px;
}

.btn_register {
    width: 70%;
    margin: 0 auto;
}

.form-check-input:checked {
    background-color: var(--color-green-ligth);
    border-color: var(--color-green-ligth);
    box-shadow: none;
}

.form-check-input:focus, .form-control:focus {
    box-shadow: none;
    border-color: var(--color-green-ligth);
}

.flecha_down{
    position: absolute;
    top: 25%;
    right: 25px;
    font-size: 1.5rem;
    color: var(--color-input);
}

.trk-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.simple_select {
    z-index: 2;
    position: relative;
    background: transparent !important;
}

.div-select{
    background-color: white;
    border-radius: 23px !important;
}

.label-error {
    color: var(--color-error);
    font-size: 14px;
}

.form-control.error, .form-control.error:focus, .form-control.error + .ctn_file {
    border-color: var(--color-error) !important;
}

.form-control.error + .label_inp {
    color: var(--color-error);
}

.ctn_input {
    margin-bottom: 2rem;
}

.ctn_file p {
    margin-bottom: 0;
}

.ctn_file {
    padding-right: 94px !important;
}

.txt-code {
    text-align: center;
    font: normal normal normal 32px Europa;
    color: var(--color-green-dark);
}

.simple_select ~ .label_inp {
    left: 22px !important;
}

#pqrs_type-error {
    position: absolute;
}

@media only screen and (max-width: 1400px) {
    .header {
        padding: 20px;
    }

    .menu .finally {
        margin: 0;
    }

    .menu li {
        margin-right: 1rem;
    }
    
    .menu {
        padding-left: 20px;
    }

    .card-mid {
        margin: 0 50px;
    }

    .subtitle {
        margin: 0 0 40px;
    }
    
    .clients figure {
        justify-content: flex-start;
        margin: 0 40px;
    }

    .ctn-form {
        padding: 0 40px;
    }

    .ctn_login .ctn-form {
        padding: 0;
    }

    .ctn-form img {
        width: 32vw;
    }

    .foot {
        margin: 0 5vw;
    }

    .list-mid{
        margin: 0 5vw 0 0;
    }

    .list-videos {
        width: 420px;
    }
}


@media only screen and (max-width: 1024px) {
    .view-video {
        max-height: 400px;
    }
    .header img {
        width: 150px;
    }

    .header nav {
        position: relative;
        display: flex;
    }

    .menu {
        display: block;
        background-color: var(--color-green);
        padding: 30px 20px 30px;
        border-radius: 6px;
        color: var(--color-white);
        position: absolute;
        top: 110%;
        right: 0;
        width: max-content;
    }

    .header a, .menu a:hover {
        color: var(--color-white);
        width: 100%;
        display: block;
    }

    .menu li {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .menu .mg0 {
        margin-bottom: 0;
    }

    .btn-outled {
        color: var(--color-white) !important;
        width: 100% !important;
        display: block !important;
        background-color: unset !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .finally {
        display: none;
    }

    .header .ctn-user {
        background-color: var(--color-green);
        color: var(--color-white);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 30px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }

    .login, .bars-menu {
        display: block;
    }

    .ctn-bars {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bars-menu {
        font-size: 1.5rem;
        color: #569C5A;
        cursor: pointer;
    }

    .none {
        display: none;
    }

    .ctn-card {
        flex-wrap: wrap;
    }

    .ctn-card .cards:last-child {
        margin-top: 50px;
    }

    .card-mid {
        margin: 0 0 0 50px;
    }

    .cards {
        width: 300px;
    }

    .ctn-cuads {
        grid-template-columns: 1fr;
        grid-template-areas: 'title'
                             'video'
                             'parrafo';
        text-align: center;
    }

    .ctn-cuads img {
        margin-bottom: 40px;
        width: 100%;
    }

    .btn-tuto {
        display: block;
        padding: 15px;
    }

    .subtitle {
        margin: 0 0 40px;
    }

    .ctn-form form {
        margin-right: 40px;
        height: fit-content;
    }

    .we {
        padding-top: 50px;
    }

    .tutorials, .help {
        padding: 50px 0 80px;
    }

    .clients {
        padding: 40px 0 60px;
    }

    .ctn-list-videos {
        display: block;
    }

    .list-videos {
        width: 250px;
        max-height: 500px;
    }

    .info-video {
        margin-top: 10px;
    }
    
    .header-none {
        display: none;
    }

    .form_login {
        margin: 0 auto !important;
    }

    .foot_login {
        position: relative;
    }
}

@media only screen and (max-width: 799px) {
    .enmascarar, .enmascarar2 {
        display: none;
    }

    .banner {
        overflow: hidden;
        height: 165vw;
    }

    .en-movil {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        -webkit-animation: visible 1.5s both;
        animation: visible 1.5s both;
    }

    @keyframes visible {
        0% {
            opacity: 0;
            top: -1000px;
        }
        100% {
            opacity: 1;
            top: 0;
        }
    } 

    .firma, .text {
        display: none;
    }

    .firma_movil, .text_movil {
        display: block;
    }

    .paper {
        top: 78vw;
        left: 10vw;
        width: 80vw;
        max-width: 80%;
        z-index: 2;
    }

    .ctn-text {
        top: 45vw;
        right: 7vw;
        -webkit-animation: left 1.5s both;
        animation: left 1.5s both;
    }

    @keyframes left {
        0% {
            right: -100%;
        }
        90% {
            right: 9vw;
        }
        100% {
            right: 7vw;
        }
    } 

    .firma_movil {
        margin: 0 auto;
        width: 60vw;
    }

    .subtitle, .st-tuto {
        font: normal normal bold 20px/25px Europa;
    }

    .subtitle-suport {
        font: normal normal bold 16px/20px Europa;  
    }

    .ctn-cuads {
        width: 100%;
        padding: 0 40px;
    }

    .ctn-cuads p {
        font: normal normal normal 16px/24px Europa;
        margin-bottom: 20px;
    }    

    .text_movil {
        width: 85vw;
    }

    .card-mid {
        margin: 50px 0;
    }

    .parrafo {
        margin: 0 0 40px;
    }

    .cards {
        width: 360px;
        max-width: 100%;
    }

    .ctn-card .cards:last-child {
        margin-top: 0;
    }

    .title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .title-suport {
        font-size: 2rem;
        text-align: center;
    }

    .title::before {
        width: 35px;
        height: 35px;
        top: 7px;
        left: -5px;
    }

    .title-tuto {
        font-size: 2rem;
        text-align: center;
    }

    .clients figure img {
        margin-right: 50px;
    }

    .ctn-form {
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
        padding: 0 40px;
    }

    .row {
        margin: 0 !important;
    }

    .row>* {
        padding: 0 !important;
        margin-top: 0 !important;
    }
    
    .ctn-form form {
        margin-right: 0;
    }
    
    .ctn-form img {
        width: 100%;
    }

    .ctn-form figure {
        display: flex;
        justify-content: center;
    }

    .ctn-form img {
        max-width: 400px;
        margin-bottom: 50px;
    }

    .ctn_input .label_inp {
        left: 25px;
    }

    .inp {
        padding: 15px 25px 5px !important;
    }

    .btn-form {
        width: 100%;
        margin-top: 40px;
        padding: 10px;
    }

    .ctn-foot {
        display: block;
        padding: 20px 40px 60px;
    }

    .footer {
        grid-template-columns: 1fr;
    }
    
    .foot {
        width: 160px;
        margin: 0;
    }

    .list-mid {
        margin: 0;
    }

    .foot-dark {
        position: relative;
    }

    .img-dark {
        position: absolute;
        right: -75px;
        height: 80%;
    }

    .contain-tuto {
        grid-template-columns: 1fr;
    }

    .contain-tuto figure {
        margin-bottom: 70px;
        margin-right: 0;
    }

    .ctn-list-videos {
        display: flex;
    }

    .list-videos {
        width: 100%;
        max-height: 720px;
    }

    .info-video {
        margin: 5px;
    }

    .video {
        width: 150px;
        height: 85px;
    }

    .questions {
        display: flex;
        flex-direction: column-reverse;
    }

    .accordion-button::after {
        font-size: 2rem;
    }

    .accordion-button {
        padding: 15px;
    }

    .img-questions {
        width: 50vw;
    }

    .img-support {
        display: none;
    }

    .btn_login {
        margin-top: 20px;
    }

    .btn_register {
        width: 100%;
    }

    .ctn_file {
        padding: 6px 110px 5px 20px !important;
    }
}


@media only screen and (max-width: 550px) {
    .header {
        padding: 20px;
    } 

    .ctn-text {
        top: 55vw;
        right: 5vw;
    }

    .title, .title-suport {
        font-size: 1.5rem;
    }

    .title-tuto {
        margin-bottom: 30px;
    }

    .title::before {
        width: 25px;
        height: 25px;
        top: 5px;
        left: -5px;
    }

    .clients figure img {
        margin-right: 20px;
    }

    .foot-dark p {
        font: italic normal 300 12px/15px Europa;
    }

    .foot-dark img {
        width: 30vw;
    }

    .ctn-list-videos {
        display: block;
    }

    .video {
        width: 100%;
        height: auto;
    }

    .term_confirm {
        left: 0;
    }
}