@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root{
    --padding-container:100px 0;
    --color-title: #001A49;
}

body{
    font-family: 'Work sans', sans-serif;
    overflow-x: hidden;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);
}

.hero{
    width: 100%;
    height: 100vh;
    max-height: 100px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
    position: fixed;
    z-index: 10;
}


.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-size: cover;
    clip-path: inset(0);
    z-index: -1;
}

.hero_product{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
}

.hero_product::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%,#0000008c 100% ), url('../images/lobster.jpg');
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

.hero_contacto{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
}

.hero_contacto::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%,#0000008c 100% ), url('../images/callcenter.jpg');
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

.hero_carniceria{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
}

.hero_carniceria::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%,#0000008c 100% ), url('../images/carniceria.jpg');
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

/* Nav */

.nav{
    --padding-container:0;
    height: 100%;
    display: flex;
    align-items: center;    
}

.nav_logo{
    display: flex;
    align-items: center;
}

.logobyt{
    height: 80px;
}

.nav_title{
    font-weight: 600;
}

.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);
}

/* Hero container */

.hero_container_container{
    max-width: 100%;
    max-height: 100%;
    --padding-container:0;
    display: grid;
    grid-auto-rows: max-content;
    text-align: center;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    background-image: linear-gradient(180deg, #0000008c 0%,#0000008c 100% ), url('../images/SALA_2.jpg');
}

.hero_container_contacto{
    max-width: 100%;
    max-height: 100%;
    --padding-container:0;
    display: grid;
    grid-auto-rows: max-content;
    text-align: center;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    background-image: linear-gradient(180deg, #0000008c 0%,#0000008c 100% ), url('../images/contacto.jpg');
}

.hero_title{
    font-size: 3rem;
    margin-top: 200px;
    color: #fff;
}

.hero_paragraph{
    margin-bottom: 20px;
    color: #fff;
}

.cta{
    display:inline-block;
    background-color: #2091F9;
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 32px;
}

/* Slider*/

.slider_box{
    width: 100%;
    height: auto;
    margin: 0 auto 0;
    overflow: hidden;
    z-index: 1;
}

.slider_box ul{
    display: flex;
    padding: 0;
    width: 400%;
    animation: slide 40s infinite alternate ease-in-out;
}

.slider_box li{
    width: 100%;
    list-style: none;
    position: relative;
}

.texto_slider{
    position: absolute;
    text-align: center;
    padding: 0 250px;
    top: 250px;
    color: #ffffff;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 80px;
}

.slider_title{
    font-size: 3rem;
    color: #fff;
    margin: 20px;
}

.slider_paragraph{
    color: #fff;
    margin: 20px;
    font-size: 2rem;
}

.texto_slider h2{
    margin-bottom: 0;
}

.slider_box img{
    width: 100%;

}

@keyframes slide{
    0% {margin-left: 0;}
    20% {margin-left: 0;}

    25% {margin-left: -100%;}
    45% {margin-left: -100%;}

    50% {margin-left: -200%;}
    70% {margin-left: -200%;}

    75% {margin-left: -300%;}
    100% {margin-left: -300%;}
}

/* about*/

.about{
    text-align: center;
}

.subtitle{
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 25px;
}

.subtitle_subtitle{
    color: var(--color-title);
    font-size: 1rem;
    margin-bottom: 25px;
}

.about_paragraph{
    line-height: 1.7;
    text-align: justify;
    margin: 15px;
}


.about_main{
    padding-top: 0px;
    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{
    width: 40px;
}

/* knowledge */

.title_3{
    margin-top: 50px;
    justify-content: center;
    text-align: center;
    font-size: 3rem;
    position: relative;

}

.title_3_text{
    color: #000;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.title_3_text::before,
.title_3_text::after {
    content: "";
    position: absolute;
    height: 2px; /* Grosor de las líneas */
    width: 100%; /* Ancho de las líneas (ajústalo según prefieras) */
    background-color: #000; /* Color de las líneas */
}

.title_3_text::before {
    top: 0; /* Posición de la línea superior */
    left: 0%; /* Centra la línea superior */
}

.title_3_text::after {
    bottom: 0; /* Posición de la línea inferior */
    left: 0%; /* Centra la línea inferior */
}

.knowledge{
    background-color: #ffffff;
    background-size: 20px 20px;
    background-position: 0 0,10px 10px;
    overflow: hidden;
}

.knowledge_texts{
    margin-left: 20px;
}

.knowledge_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
}

.knowledge_picture{
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    max-width: 100vw;
}

.knowledge_paragraph{
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

.knowledge_img{
    width: 100%;
    display: block;
    border-color: #000;
    border-width: 10px;
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
    height: auto;
    max-width: 100vw;
}

/* Price */

.price{
    text-align: center;
}

.subtitle_carta{
    color: #000;
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 0;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.subtitle_carta::before,
.subtitle_carta::after {
    content: "";
    position: absolute;
    height: 2px; /* Grosor de las líneas */
    width: 100%; /* Ancho de las líneas (ajústalo según prefieras) */
    background-color: #000; /* Color de las líneas */
}

.subtitle_carta::before {
    top: 0; /* Posición de la línea superior */
    left: 0%; /* Centra la línea superior */
}

.subtitle_carta::after {
    bottom: 0; /* Posición de la línea inferior */
    left: 0%; /* Centra la línea inferior */
}

.price_table{
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    justify-content: space-evenly;
    align-items: center;
}

.price_element_menu{
    background-color: #000;
    background-image: url('../images/fuego.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #fff;
    --color-price: #fff;
    --bg-cta: #fff;
    --color-cta: #fff;
    --color-items: #fff;
}

.price_element{
    background-color: gray;
    background-image: url('../images/bandera_cat.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element--best{
    background-color: gray;
    background-image: url('../images/bandera_esp.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element--bestbest{
    background-color: gray;
    background-image: url('../images/bandera_ing.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element1{
    background-color: gray;
    background-image: url('../images/bandera_fr.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element--best2{
    background-color: gray;
    background-image: url('../images/bandera_ale.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element--bestbest3{
    background-color: gray;
    background-image: url('../images/bandera_ita.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element4{
    background-color: gray;
    background-image: url('../images/bandera_por.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element--best5{
    background-color: gray;
    background-image: url('../images/bandera_pol.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element--bestbest6{
    background-color: gray;
    background-image: url('../images/bandera_rus.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_menu1{
    background-color: #CD7F32;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_menu2{
    background-color: #E3E4E5;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_menu3{
    background-color: #D4AF37;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_sangria{
    background-color: black;
    background-image: url('../images/sangria_coctel.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_mojito{
    background-color: black;
    background-image: url('../images/mojito_coctel.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_caipirinha{
    background-color: black;
    background-image: url('../images/caipirinha.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_pina{
    background-color: black;
    background-image: url('../images/pina_colada.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_bloody{
    background-color: black;
    background-image: url('../images/bloody_mary.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_margarita{
    background-color: black;
    background-image: url('../images/margarita.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_emartini{
    background-color: black;
    background-image: url('../images/espresso_martini.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_negroni{
    background-color: black;
    background-image: url('../images/daiquiri.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_element_cosmopolitan{
    background-color: black;
    background-image: url('../images/cosmopolitan.jpg') ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; 
    text-align: center;
    border-radius: 10px;
    height: 500px;
    width: 330px;
    padding: 40px;
    --color-plan: #000;
    --color-price: #000;
    --bg-cta: #fff;
    --color-cta: #000;
    --color-items: #000;
}

.price_name{
    color:var(--color-plan);
    margin-bottom: 15px;
    font-weight: 300;
}

.price_price{
    background-color: rgb(0, 0, 0, 0.5);
    font-size: 2.5rem;
    color: #ffffff;
    border-radius: 5px;
}

.price_price_coctel{
    background-color: rgb(0, 0, 0, 0.5);
    font-size: 2rem;
    color: #ffffff;
    border-radius: 5px;
    margin-top: 280px;
}

.price_items{
    margin-top: 35px;
    display: grid;
    gap: 1em;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--color-items);
}

.price_items_menu{
    margin-top: 35px;
    display: grid;
    gap: 1em;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #000;
}

.price_cta{
    display: block;
    padding: 20px 0;
    border-radius: 10px;
    text-decoration: none;
    background-color: var(--bg-cta);
    font-weight: 600;
    box-shadow: 0 0 1px rgba(0, 0, 0, .5);
}

/* Testimony */

.testimony{
    background: #e5e5f7;
}

.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: royalblue;
    color: #fff;
    display: inline-block;
    padding: 5px;
}

.testimony_arrow{
    width: 90%;
    cursor: pointer;
}

/* 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: 0px;
}

.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: justify;
    height: 0;
    transition: height .3s;
}

.questions_img{
    display: block;
}

.questions_copy{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
}


/* Contacto */

.contact_section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin-bottom: 50px;
}

.form_contacto{
    background: linear-gradient(
        50deg,
        rgb(40, 42, 55, 1) 50%, 
        rgba(40, 42, 55, 0.7)
        ),
        url(/images/telf.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    width: 1000px;
    border-radius: 25px;
}

.form_contacto h2{
    color: #fff;
    font-size: 40px;
    margin-bottom: 25px;
}

.fondo_contacto{
    display: flex;
    flex-direction: column;
    width: 50%;
}

label{
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
}

input , textarea{
    padding: 17px 14px;
    background-color: #fff;
    border: 0;
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
    border-radius: 10px;
}

:focus{
    outline: 1px solid #1e92e9;
}

.btn{
    background-color: #1e92e9;
    width: 150px;
    align-self: flex-end;
    cursor: pointer;
}

.btn:hover{
    background-color: #2198f9;
}

@media(max-width:991px){
    .form_contacto{
        width: 100%;
    }

    .fondo_contacto{
        width: 100%;
    }
}



/* footer */

.footer{
    background-color: #000;
}

.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{
    margin-bottom: 10px;
}

.footer_img{
    width: 30px;
}

/* Media queries */

@media(max-width:800px){
    .nav_menu{
        display: block;
    }

    .hero{
        position: relative;
    }

    .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;
    }

    .title_3{
        justify-content: center;
        text-align: center;
        font-size: 1rem;
    }
    
    .title_3_text{
        color: #000;
    }

    .slider_box{
        width: 100%;
    }

    .texto_slider{
        position: absolute;
        text-align: center;
        padding: 0 250px;
        top: 250px;
        color: #ffffff;
        font-size: 1rem;
        background-color: rgba(0, 0, 0, 0.5); 
        margin-top: 0px;
    }
    
    .slider_title{
        font-size: 1rem;
        color: #fff;
        margin: 20px;
    }
    
    .slider_paragraph{
        color: #fff;
        margin: 20px;
        font-size: 15px;
    }
    
    .texto_slider h2{
        margin-bottom: 35px;
    }

    .texto_slider{
        top: 50px;
        padding: 0;
    }


    .knowledge_container{
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1 fr;
        gap: 3em;
        text-align: center;
    }

    .knowledge_picture{
        grid-column: 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: 100%;
    }

    .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_title{
        font-size: 2rem;
    }

    .hero_paragraph{
        font-size: 1rem;
    }

    .subtitle{
        font-size: 1.8rem;
    }

    .price_element{
        width: 90%;
    }

    .price_element--best, .price_element--bestbest{
        width: 90%;
        padding: 40px;
    }

    .price_price{
        font-size: 2rem;
    }

    .knowledge_container{
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1 fr;
        gap: 3em;
        text-align: justify;
    }

    .knowledge_picture{
        grid-column: 1/2;
        justify-self: center;
    }

    .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: 15px;
    }

    .nav--footer{
        padding-bottom: 60px;
    }

    .nav_link--footer{
        justify-content: space-between;
    }

    .footer_inputs{
        flex-wrap: wrap;
    }

    .footer_input{
        flex-basis: 100%;
        margin: 0;
        margin-bottom: 16px;
    }

    .footer_submit{
        margin: 0;
        width: 100%;
    }
}