@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
:root{
    --color_text-green: #96C144;
    --color_text-blue: #122E5E;
    --color_text-grey: #888d9f64;
    --main_color-primaty: #FFFFFF;
    --main_color-secundary: #888d8f20;
    --background-color: #ffffff;
    --lowText_font_size: 16px;
    --text-size_title: 40px;
    --text_titlecard: 24px;
    --text_paragraph: 16px;
    --box_shadow-primaty: 0px 6px 50px -20px rgba(0,0,0,0.5);

}
/* TODO PARA EL MENU PRINCIPAL*/
.nav-logo img{
    width: 100%;
    display: flex;
}
a{
    text-decoration: none;
}
nav{
    max-width: 1300px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo{
    max-width: 300px;
}
.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.link a{
    position: relative;
    padding-bottom: 0.75rem;
    color: black;
}
.link a::after{
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #122e5e;
    transition: all 0.3s ease;
}
.link a:hover::after{
    width: 70%;
}
.btn{
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: #122e5e;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn:hover{
    background-color: #96c144;
}
/* HASTA AQUI LLEGO EL MENU*/

/* EN ESTE PUNTO ES DONDE PONDREMOS EL SLIDER*/
.section{
    margin: 0;
    padding: 0;
    height: 0vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider{
    width: 700px;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
}
.slide{
    width: 500%;
    height: 500px;
    display: flex;
}
.slide input{
    display: none;
}
.st{
    width: 20%;
    transition: 2s;
}
.st video{
    width: 700px;
    height: 480px;
}
.nav-m{
    position: absolute;
    width: 700px;
    margin-top: -40px;
    justify-content: center;
    display: flex;
}
.m-btn{
    border: 2px solid #96C144;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 2s;
}
.m-btn:not(:last-child){
    margin-right: 30px;
}
.m-btn:hover{
    background-color: #122e5e;
}
#radio1:checked ~.first{
    margin-left: 0;
}
#radio2:checked~.first {
    margin-left: -20%;
}
#radio3:checked~.first {
    margin-left: -40%;
}
#radio4:checked~.first {
    margin-left: -60%;
}
#radio5:checked~.first {
    margin-left: -80%;
}
.nav-auto{
    position: absolute;
    width: 700px;
    margin-top: 460px;
    display: flex;
    justify-content: center;
}
.nav-auto div{
    border: 2px solid #96c144;
    padding: 5px;
    border-radius: 10px;
    transition: 2s;
}
.nav-auto div:not(:last-child){
    margin-right: 30px;
    justify-content: center;
}
#radio1:checked~.nav-auto .a-b1{
    background-color: #122E5E;
}
#radio2:checked~.nav-auto .a-b2 {
    background-color: #122E5E;
}
#radio3:checked~.nav-auto .a-b3 {
    background-color: #122E5E;
}
#radio4:checked~.nav-auto .a-b4 {
    background-color: #122E5E;
}
#radio5:checked~.nav-auto .a-b5 {
    background-color: #122E5E;
}


/*HASTA AQUI TERMINA LO DEL SLIDE SEPSI*/


header{
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 100;
}
.container__header{
    max-width: 1300px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}
.btn__quote{
    display: block;
    padding: 8px 40px;
    border: 2px solid #94a00f; /* DefinamosRoot*/
    border-radius: 8px;
    font-weight: 500;
    margin: 0px 20px;
    transition: all 300ms;
}
.btn__quote:hover{
    color: blue;    /* DefinamosRoot*/
    background-color: green; /* var(aquivaeso)DefinamosRoot*/
}
.menu .socialMedia{
    margin: 0px 10px;
}
.menu .socialMedia a{
    margin: 0px 4px;
}
.menu .socialMedia img{
    width: 20px;
}

/*PORTADA DE INICIO*/
.container__cover{
    padding-top: 5px;
    padding-bottom: 10px;
    background-color: var(--color_text-verde); /*variable*/
    background: var(--main_color-secundary);
}
.cover{
    max-width: 1300px;
    height: 40vh;
    margin: auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    margin-bottom: 50px;
}
.text__cover{
    width: 100%;
    padding-right: 45px;
}
.text__cover h1{
    font-size: 28px; /*Variable*/
    color: var(--color_text-green);
}
.text__cover p{
    font-size: 15px; /*Variable*/
    margin-top: 20px;
    margin-bottom: 40px;
    color:black; /*Variable*/
}
.btn__text{
    display: block;
    width: 150px;
    margin-top: 40px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
    color: white; /*Variable*/
    background: red; /*Variable*/
    border-radius: 9px;
    border: 2px solid transparent;
    cursor: pointer;

}
.btn__text:hover{
    background-color: transparent;
    border: 2px solid var(--main_color-primaty);/*Variable*/
    color: var(--color_text-tertiary);/*Variable*/
}
.image__cover{
    width: 100%;
}
.image__cover img{
    width: 550px;
}


/* GENERADOR DE CONFIANZA*/

.container__card-primary{
    padding: 80px;
    background: var(--main_color-secundary);
}
.card__primary{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 20px;
}
.text__card-primary{
    max-width: 800px;
    margin: auto;
}
.text__card-primary p{
    color: black;
    letter-spacing: 4px;
    font-size: var(--text_paragraph);
    font-weight: 500;
}
.text__card-primary h1{
    font-size: var(--text-size_title);
    font-weight: 600;
    color: var(--color_text-green);
}
.container__box-cardPrimary{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;

}
.box__card-primary{
    max-width: 300px;
    padding: 60px 40px;
    border: 1px solid #bcbcbc2d;
    border-radius: 20px;
    margin: 14px;
    transition: all 300ms;
}
.box__card-primary:hover{
    border: 1px solid transparent;
    box-shadow: var(--box_shadow-primaty);
}
.box__card-primary h2{
    font-size: var(--text_titlecard);
    margin-top: 40px;
    font-weight: 500;
}
.box__card-primary p{
    margin-top: 20px;
}
.box__card-primary img{
    width: 150px;
}

/* SOBRE NOSOTROS*/
.container__about{
    padding:80px 0px;
    background: var(--background-color);
    margin-top: 10px;
}
.about{
    max-width: 1300px;
    margin: auto;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text__about{
    width: 100%;
    padding-right: 40px;
    text-align: center;
}
.text__about h1{
    color: var(--color_text-green);
    font-weight: 600;
}
.text__about p{
    font-size: var(--text_paragraph);
    margin-top: 40px;
    color: black;
    margin-bottom: 40px;
}
.image__about{
    width: 100%;
    display: flex;
}
.image__about img{
    width: 500px;
}

/* serivicios*/
.card__service img{
    width: 200px;
    border-radius: 5px;

}
.card__service i{
    font-size: 40px;
    margin-top: 20px;
    cursor: pointer;
    color: pink;
}


/* footer */
.pie-pagina{
    width: 100%;
    background-color: #122E5E;
}
.pie-pagina .group-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}
.pie-pagina .group-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pie-pagina .group-1 .box figure img{
    width: 250px;
}
.pie-pagina .group-1 .box h2{
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}
.pie-pagina .group-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}
.pie-pagina .group-1 .socialMedia a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 35px;
    line-height: 45px;
    color: withe;
    margin-right: 10px;
    background-color: #96C144;
    text-align: center;
    transition: all 300ms ease;
}
.pie-pagina .group-1 .socialMedia a:hover{
    color: #96C144;
}
.pie-pagina .group-2{
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #FFFFFF;
}
.pie-pagina .group-2 small{
    font-size: 15px;
}




/* RESPONSIVE REVIZARLO CORRECTAMENTE  */
@media (width < 900px){
    .nav-m, .a-b1,.a-b2,.a-b3,.a-b4,.a-b5{
        display: none;
    }
    .container__cover, .section, .slider{
        display: grid;
        grid-template-columns: repeat(1, 1fr);

    }
    .slider{
        margin-top: 2%
    }
   .st video{
    width: 370px;
    height: 370px;
   }
    main{
        max-width: 900px;
    }

    .nav-links{
        display: none;
    }
    .image__cover{
        width: 0%;
    }
    .image__cover img{
        display: grid;
        width: 0px;
    }
    .cover{
        max-width: 95%;
        display: grid;
      margin-bottom: 600px;
    }
    .text__cover{
        display: grid;
        width: 50%;
        padding-right: 5px;
    }
    .text__cover h1{
        font-size: 40px; /*Variable*/
    }
    /*GENERADOR DE CONFIANZA*/

    .card__primary{
        padding: 0px 10px;
    }
    .text__card-primary h1{
        font-size: 30px;
    }
    .container__box-cardPrimary{
        justify-content: center;
    }
        .box__card-primary {
            max-width: 200px;
            padding: 20px 30px;
            margin: 10px;
        }
        .box__card-primary img {
            width: 100px;
        }
    
    /* SOBRE NOSOTROS*/
.about{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.text__about{
    padding-right: 10px;
}
.text__about p{
    margin-top: 20px;
    margin-bottom: 40px;
}
.image__about{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.image__about img{
    width: 550px;
    margin-left: 12%;
}

/* serivicios*/
.card__service img{
    width: 140px;
}
.card__service i{
    font-size: 50px;
    margin-top: 10px;
}
/*footer*/
.pie-pagina .group-1{
    width: 80%;
    grid-template-columns: repeat(1, 1fr);

}

}


@media (width < 600px) {
    main {
        max-width: 500px;
    }
    .btn{
        padding: 10px 30px;
        font-size: 12px;
    }
    /* SOBRE NOSOTROS*/
    .about {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .text__about p {
        margin-bottom: 5px;
    }

    .image__about {
        margin-top: 30px;
    }

    .image__about img {
        width: 300px;
        margin-left: 6%;
    }

    /* serivicios*/
    .card__service img {
        width: 140px;
    }

    .card__service i {
        font-size: 50px;
        margin-top: 10px;
    }

    /*footer*/
    .pie-pagina .group-1 {
        width: 80%;
        grid-template-columns: repeat(1, 1fr);

    }

}








.terms-condition{
    display: flex;
    min-height: 150vh;
    align-items: center;
    justify-content: center;
}
.terms-box{
    max-width: 1024px;
    background-color: #f1f1f1;
    color: black;
    font-family: "Monserrat";
    padding: 60px 30px;
    z-index: -1;
}
.terms-text{
    padding: 0 20px;
    height: 900px;
    overflow-y: auto;
    text-align: justify;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    color: black;
}

/* .terms-text::-webkit-scrollbar{
    width: 2px;
    background-color: #282828;
}
.terms-text::-webkit-scrollbar-thumb{
    background-color: #d13639;
} */

.terms-text h2{
    text-transform: uppercase;
    color: var(--color_text-green);
    padding: 2%;
    text-align: center;
}

.terms-text a{
    color: blue;
    text-decoration: underline;
}

.terms-text span{
    font-weight: 500;
}

.terms-box h4 span{
    color: #d13639;
}



@media (max-width: 1920px){
    .terms-condition{
        min-height: 120vh;
    }
    .terms-text{
        height: auto;
    }
}
@media (max-width: 1200px){
    .terms-condition{
        min-height: 130vh;
    }
    .terms-text{
        height: 900px;
    }
}
