html, body{
    font-size: 100%;
    font-family: "Justsans", sans-serif;
    scroll-behavior: smooth;
    background-image: url("../assets/images/CBM_Web_texture_2024.jpg");
    background-repeat: repeat;
    background-position: center;
    background-blend-mode: multiply;
    background-color: var(--body);
}

@font-face {
    font-family: "Justsans";
    src: url("../fonts/JUST\ Sans\ Medium.otf");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Justsans-light";
    src: url("../fonts/JUST\ Sans\ Light.otf");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Behind";
    src: url("../fonts/Behind-The-Nineties-Rg.otf");
    font-style: normal;
    font-weight: 200;
}
@font-face {
    font-family: "Behind-bold";
    src: url("../fonts/Behind-The-Nineties-Smbd.otf");
    font-style: normal;
    font-weight: 700;
}
@font-face {
    font-family: "Behind-italic";
    src: url("../fonts/Behind-The-Nineties-Md-It.otf");
    font-style: normal;
    font-weight: 200;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Estilos de fuentes*/
h1 {font-family: "Behind", sans-serif; font-size: 120px; line-height: 100px;}
h2 {font-family: "Behind", sans-serif; font-size: 80px; line-height: 70px;}
h3 {font-family: "Behind", sans-serif; font-size: 55px;}
p {font-family: "Justsans", sans-serif; font-size: 15px;}
a {font-family: "Justsans-light", sans-serif; font-size: 13px; letter-spacing: 1px; font-weight: 200;}
b {font-family: "behind-bold";}
i {font-family: "Behind-italic";}
span {font-family:"Justsans", sans-serif;}
/*Cierra estilos de fuentes*/


/*ScrollBar*/
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--blanco);
}

::-webkit-scrollbar-thumb {
    background-color: var(--base);
    border-radius: 4px;
    border-right: 2px solid var(--blanco);
    border-left: 2px solid var(--blanco);
}
/*Cierra ScrollBar*/


:root {
    --blanco: #fff;
    --negro: #190e05;
    --base: #136734;
    --active: #82c83e;
    --body: #efd8b0;
    --header: #1d9f50;
  }

/*Inicia Barra de navegación*/
.container{
    max-width: 1240px;
}
.container-fluid{
    max-width: 1920px;
}

.navbar-collapse{
    flex-grow: unset;
}

.navbar{
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--header);
    min-height: 85px;
    text-align: center;
    transition: all 0.5s ease;
    padding: 0 2% 0 2%;
}

.navbar-expand-lg .navbar-nav .nav-link{
    padding-left: 0.7rem;
    padding-right: 0.7rem;
}
.nav-link{
  transition: all 0.3s ease;
  color: var(--blanco);

  &:hover{
    color: var(--active);
  }
}

.active{
    color: var(--active);
    /*border-bottom: 2px solid var(--active);*/
    transition: all 0.3s linear;
    max-width: 150px;
    margin: 0 auto;
}

.navbar-brand{
    display: flex;
    flex-direction: row;
    & img{
        height: auto;
        width: 275px;
        margin-bottom: -35px;
        transition: all 0.3s ease-in-out;
    }
}

.socials{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.line{
    border: solid 1px var(--active);
    width: auto;
    width: 130px;
    height: 1px;
    transition: all 0.3s ease-in-out;
}


/*Dropdown*/
.dropbtn {
    border: 2px solid var(--blanco);
    padding: 0px;
    font-size: 14px;
    border: none;
    cursor: pointer;

    & img{
        border: solid 1px var(--blanco);
        height: 25px;
        width: auto;
    }
  }
  
  .dropdown {
    margin: 5px auto 0;
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    width: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    margin-top: 10px;
    color: black;
    padding: 0px;
    text-decoration: none;
    display: block;

    & img{
        border: solid 1px var(--blanco);
        height: 25px;
        width: auto;
    }
  }

  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /*Dropdown*/




/*Inicia Header*/
.inicio-header{
    height: 99vh;
    background-image: url("../assets/images/CBM_Web_Headers_Inicio_2024.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.txt-header{
    color: var(--blanco);
    max-width: 900px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: opacidad ease-in-out 1s;

    & span{
        font-family: "behind-italic";
        font-weight: 200;
        font-size: 1.5rem!important;
        margin-top: -10px;
    }
    & h1{
        font-size: 5.5rem;
        line-height: 5rem;
    }
}

@keyframes opacidad {
    0%{
        opacity: 0%;
        filter: blur(10);
        transform: scale(1.05);
    }
    100%{
        opacity: 100%;
        filter: blur(0);
        transform: scale(1);
    }
}
/*Termina Header*/

/*Comienza Inicio - Empresa*/
.inicio-empresa{
    margin: 50px 0;

    & p{
        text-align: center;
        margin-top: 30px;
        text-wrap: pretty;
    }
    & h2{
        font-size: 70px;
        color: var(--base);
    }

    & img{
        height: 100%;
        width: auto;
        object-fit: cover;
        overflow: visible;
        object-position: left;
    }
}
.inicio-empresa-txt{
    padding: 3%;
}
/*Termina Inicio - Empresa*/

/*Comienza Unete*/
.unete{
    height: 450px;
    background-color: var(--base);
    background-image: url("../assets/images/CBM_Web_Headers_Arboles_2024.webp");
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;

    & p{
        color: var(--blanco);
        line-height: 40px;
        margin: 0 auto;
        text-align: center;
        font-size: 25px;
        height: 100%;
        max-width: 1000px;
        text-wrap: pretty;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
}
/*Termina Unete*/

/*Inicia Nuestra Gente*/
.nuestra-gente{
    background-color: var(--base);
    min-height: 660px;

    & p{
        max-width: 430px;
        margin-top: 25px;
        text-wrap: pretty;
        font-family: "justsans-light";
    }
    & h2{
        font-size: 65px;
        line-height: 55px;
    }

    & i{
        font-size: 40px;
    }

    & img{
        height: 660px;
        width: auto;
        object-fit: cover;
        object-position: center;
    }
}
.nuestra-gente-txt{
    color: var(--body);
    padding: 3%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*Termina Nuestra Gente*/

/*iframe Youtube*/
.embed-responsive{
    margin: 50px auto;
    max-width: 1000px;
}
/*iframe Youtube*/

/*Inicia Mundo*/
.mundo{
    margin-top: 100px;
    text-align: center;
    color: var(--base);

    & p{
        font-family: "Justsans-light";
        line-height: normal;
        font-size: 24px;
        margin: 30px auto 0;
        max-width: 900px;
    }

    & img{
        margin: 50px auto;
    }
    & span{
        font-family: "Justsans";
        display: block;
    }
}
dotlottie-player{
    margin: 50px auto;
}
/*Termina Mundo*/

/*Inicia Botones*/
.buttons{
    margin: 50px auto;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;

    & img{
        height: 200px;
        margin: 0 20px;
        transition: scale 0.3s ease-in-out;
        cursor: pointer;
    }

    & img:hover{
        scale: 1.1;
    }
}
/*Termina Botones Mapa*/

/*Contacto*/
.contacto{
    background-color: var(--base);
    padding: 80px 0px;
    text-align: center;
    color: var(--body);
    font-family: "Justsans";

    & h3{
        font-family: "Justsans";
        font-weight: 900;
        font-size: 70px;
        letter-spacing: -2px;
    }
    & p{
        max-width: 600px;
        color: var(--blanco);
        font-family: "Justsans-light";
        margin: 0 auto 40px;
    }

    & input::placeholder,textarea{
        font-family: "Justsans-light";
        font-weight: 200;
        color: #0000008c;
    }
    & button{
        background-color: var(--body);
        color: var(--negro);
        width: 150px;
        height: auto;
        border: none;
        border-radius: 50px;
        padding: 10px 0;
        margin-top: 20px;
        transition: color,background-color 0.3s ease-in-out;
    }
    & button:hover{
        background-color: var(--negro);
        color: var(--blanco);
    }
}
.form-group{
    margin-bottom: 10px;
}
.pd-form-l{
    padding-left: 0px;
}
.pd-form-r{
    padding-left: auto;
}
/*Contacto*/

/*Clientes*/
.clientes{
    text-align: center;
    margin: 0 auto 50px;
    & img{
        width: 130px;
        height: auto;
        margin: 20px;
    }
}
/*Clientes*/

footer{
    background-color: var(--base);
    color: var(--blanco);
    text-align: center;
    font-family: "Justsans-light";
    font-weight: 200;
    padding: 30px 0;

    & img{
        margin: 0 auto;
        width: 250px;
        height: auto;
    }

    & h4{
        margin-bottom: 0px;
        margin-top: 20px;
        font-size: 20px;
        font-family: "Justsans";
        color: var(--active);
    }
    & span, p{
        letter-spacing: 0.5px;
        font-size: 15px;
        font-family: "Justsans-light";
        font-weight: 200;
        display: block;
        line-height: 18px;
    }
    & a{
        color: var(--blanco);
        text-decoration: none;
        transition: 0.3s color ease-in-out;
        margin: 0px 5px;

        &:hover{
            color: var(--body);
            text-decoration: none;
        }
    }

    & b{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: 15px;
        color: var(--active);
    }

}

.footer-menu{
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}




/*Arboles Header*/
.arboles-header-img{
    height: 950px;
    background-image: url("../assets/images/CBM_Web_Headers_Arboles_2024.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.arboles-header{
    max-width: 1800px;
    margin: 0 auto;
    height: 950px;
}

.txt-header-arboles{
    color: var(--blanco);
    max-width: 500px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: opacidad ease-in-out 1s;
    margin: 0 120px;

    & h1{
        font-size: 6rem;
        line-height: 5rem;
    }

    & p{
        text-align: left;
    }
}
/*Arboles Header*/

/*Tipos de Arbol*/
section.tipos-arbol{
    max-width: 1600px;
}
.tipos-arbol{
    text-align: center;
    margin: 80px auto 0px;
    color: var(--negro);
}
.base-arbol{
    margin-top: 50px;
    & h3{
        line-height: 50px;
        margin: 20px 0;
    }
}
.info-arbol-fir{
    background-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 29%, rgba(0,212,255,0) 100%),  
    url("../assets/images/Pinos/CBM_Web_Tipos-Arbol_Douglas-Fir_2024.webp");
    background-blend-mode: multiply;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--blanco);
    height: 700px;
    border: solid 4px var(--active);
    filter: saturate(0.5);
    transition: all 0.3s ease-in-out;

    &:hover{
        filter: saturate(2);
    }

    & p{
        font-family: "Justsans";
        color: var(--blanco);
        margin-top: 50px;
        font-size: 25px;
        padding: 0 30px;
        line-height: normal;
    }
    & :nth-child(2){
        font-size: 22px;
        font-family: "Justsans-light";
    }
}

.info-arbol-noble{
    background-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 29%, rgba(0,212,255,0) 100%),  
    url("../assets/images/Pinos/CBM_Web_Tipos-Arbol_Noble-Fir_2024.webp");
    background-blend-mode: multiply;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--blanco);
    height: 700px;
    border: solid 4px var(--active);
    filter: saturate(0.5);
    transition: all 0.3s ease-in-out;

    &:hover{
        filter: saturate(2);
    }

    & p{
        font-family: "Justsans";
        color: var(--blanco);
        margin-top: 50px;
        font-size: 25px;
        padding: 0 30px;
        line-height: normal;
    }
    & :nth-child(2){
        font-size: 22px;
        font-family: "Justsans-light";
    }
}
.tipos-arbol .col-md-3{
    padding: 0 2px;
}

.info-arbol-nordmann{
    background-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 29%, rgba(0,212,255,0) 100%),  
    url("../assets/images/Pinos/CBM_Web_Tipos-Arbol_Nordmann-Fir_2024.webp");
    background-blend-mode: multiply;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--blanco);
    height: 700px;
    border: solid 4px var(--active);
    filter: saturate(0.5);
    transition: all 0.3s ease-in-out;

    &:hover{
        filter: saturate(2);
    }

    & p{
        font-family: "Justsans";
        color: var(--blanco);
        margin-top: 50px;
        font-size: 25px;
        padding: 0 30px;
        line-height: normal;
    }
    & :nth-child(2){
        font-size: 22px;
        font-family: "Justsans-light";
    }
}
.info-arbol-grand{
    background-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 29%, rgba(0,212,255,0) 100%),  
    url("../assets/images/Pinos/CBM_Web_Tipos-Arbol_Grand-Fir_2024.webp");
    background-blend-mode: multiply;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--blanco);
    height: 700px;
    border: solid 4px var(--active);
    filter: saturate(0.5);
    transition: all 0.3s ease-in-out;

    &:hover{
        filter: saturate(2);
    }

    & p{
        font-family: "Justsans";
        color: var(--blanco);
        margin-top: 50px;
        font-size: 25px;
        padding: 0 30px;
        line-height: normal;
    }
    & :nth-child(2){
        font-size: 22px;
        font-family: "Justsans-light";
    }
}
/*Tipos de Arbol*/

/*Pasos*/
.cuidado{
    margin-top: -2px;
    background-color: var(--active);
    padding: 90px 0;

    & h1{
        font-size: 100px;
        text-align: center;
        color: var(--blanco);
        max-width: 600px;
        margin: 0 auto;
    }
}

.pasos{
    max-width: 300px;
    height: 200px;
    display: flex;
    flex-direction: row;

    & img{
        max-width: 500px;
        height: 150px;
    }
}

.pasos-num{
    z-index: 5;
    margin: auto;

    & h1{
        margin-top: 20px;
        margin-right: -100px;
        color: var(--base);
        font-size: 15rem;
        transition: all 0.5s ease-in-out;
        opacity: 0.1;
    }
}

.pasos-info{
    z-index: 10;
    color: var(--blanco);
    text-align: center;

    & p{
        margin-top: 10px;
        font-size: 18px;
        line-height: 18px;
        max-width: 200px;
    }
}

.pasos:hover{
    & :first-child h1{
        margin-right: -60px;
        opacity: 1;
    }
}

.pasos-margen{
    width: 35%;
    max-height: 350px;
    text-align: center;
    margin: 30px;
    display: inline-block;
}

.video-arboles{
    margin-top: 100px;
}

/*Pasos*/

/*Que pasa con tu arbol*/
.quepasa{
    height: 650px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../assets/images/CBM_Arboles_Quepasacontuarbol_2024.webp");
}
.quepasa-info{
    color: var(--blanco);
    height: 100%;
    text-align: center;
    max-width: 500px;
    padding: 50px;

    & h3{
        font-size: 42.5px;
        margin-bottom: 30px;
    }

    & p{
        margin: auto;
        max-width: 300px;
    }

    & img{
        margin-top: 30px;
        width: 200px;
        height: auto;
    }
}
/*Que pasa con tu arbol*/


/*luces Header*/
.luces-header-img{
    height: 99vh;
    background-image: url("../assets/images/CBM_Web_Headers_Luces_2024.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
}
.luces-header{
    max-width: 1800px;
    height: 950px;
}

.txt-header-luces{
    color: var(--blanco);
    max-width: 500px;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;

    justify-content: center;
    animation: opacidad ease-in-out 1s;

    & h1{
        font-size: 6rem;
        line-height: 5rem;
        margin-bottom: 20px;
    }

    & p{
        font-family: "Justsans-light";
        line-height: 22px;
        font-size: 24px;
        text-align: left;
    }
    & p>i{
        font-size: 10px;
    }
}

.luces-video{
    max-width: 500px;
}
.embed-responsive-1by1{
    height: 550px;
    width: 500px;
}
.Embed,.Header{
    display: none!important;
}
/*luces Header*/

/*Tipos de luces*/
.tipos-luces{
    text-align: center;
    margin-top: 50px;
    padding-bottom: 0%;

    & img{
        max-width: 300px;
        max-height: 250px;
    }

    & h3{
        color: var(--header);
        margin: 20px 0;
    }

    & p{
        font-size: 20px;
        font-family: "Justsans-light";
        line-height: 22px;
        color: var(--blanco);
        background-color: #0a3a37;
        width: 90%;
        padding: 5%;
        height: 300px;
        margin: auto;
        transition: all 0.3s ease-in-out;
    }

    &:hover{
        & p{
        background-color: #82c83e;
        }
    }
}
/*Tipos de luces*/

/*NOM*/
.nom{
    min-height: 600px;
    background-color: var(--active);
    align-content: center;
    text-align: center;
    padding: 30px 0;

    & p{
        font-family: "Justsans-light";
        font-size: 20px;
        line-height: 22px;
    }
    & b{
        font-family: "roboto";
        font-weight: bold;
    }

    & img{
        width: 350px;
        height: auto;
        margin: 10px;
    }
}
/*NOM*/

/*Descanso Luces*/
.descanso-luces{
    width: 100%;
    min-height: 350px;
    background-image: url("../assets/images/CBM_Luces_Descanso_2024.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    & p{
        color: var(--blanco);
        text-align: center;
        font-size: 35px;
        width: 65%;
        min-height: 350px;
        margin: 0 auto;
        line-height: normal;
        align-content: center;
        padding: 20px 0;
    }
}
/*Descanso Luces*/

/*Linea del tiempo*/
.linea-tiempo{
    color: var(--header);
    text-align: center;
    margin: 100px 0;
}
.scroll-tiempo{
    margin: 0 auto;
    max-width: 1400px;

    & img{
        margin: 50px 0;
    }
}
/*Linea del tiempo*/

/*Ideas*/
.ideas-luces{
    background-color: var(--active);
    padding: 100px 0 10px;
    color: var(--base);
    text-align: center;
    
    & h2{
        font-size: 4rem;
    }
}
.ideas{
    margin-top: 120px;

    & img{
        width: 280px;
        height: auto;
        margin: 5px;
        transition: all 0.3s ease-in-out;
        filter: saturate(0.3);
    }
    & img:hover{
        scale: 1.05;
        filter: saturate(1.52);
    }
}
/*Ideas*/

/*Luces Led*/
.luces-led{
    min-height: 900px;
    background-image: url("../assets/images/CBM_Luces_Descanso_2024.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-content: center;
    text-align: center;
    color: var(--blanco);
    padding: 80px 0;
}

.luces-led-izq{
    margin: 80px 0;

    & h2{
        margin-bottom: 100px;
        font-size: 4rem;

        border-bottom: solid 6px var(--active);
    }
}
.luces-led-der{
    height: 600px;
    width: 600px;
    margin: 50px 0;
    padding: 100px;
    border: solid 6px var(--active);
    border-radius: 500px;
    align-content: center;

    & h1{
        font-size: 4.2rem;
        line-height: 4rem;
    }
}
/*Luces Led*/

/*Luces Riesgos*/
.riesgos{
    background-image: url("../assets/images/CBM_Luces_Pino_Ilustracion_2024.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 900px;
    min-height: 900px;
    margin: 100px 0;
    text-align: center;
    display: flex;
    width: 100%;

    & h1{
        color: var(--base);
        font-size: 4.5rem;
        max-width: 500px;
        line-height: 4rem;
        margin: auto;
    }

    & h3{
        color: var(--header);
        font-size: 2.5rem;
        line-height: 2.2rem;
        margin-bottom: 50px;
        margin-top: 50px;
    }
    & b{
        font-size: 5rem;
    }

    & p{
        margin: auto;
        max-width: 300px;
        margin-bottom: 15px;
    }
}

.riesgos :nth-child(1){
    justify-content: space-between;
}

/*Luces Riesgos*/



/*sustentabilidad Header*/
.sust-header-img{
    min-height: 1400px;
    background-image: url("../assets/images/CBM_Web_Header_Sustentabilidad_2024.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
}
.sust-header{
    min-height: 900px;
    max-width: 1800px;

    & img{
        max-width: 500px;
        margin-bottom: 50px;
    }
}

.txt-header-sust{
    margin: auto;
    color: var(--base);
    max-width: 500px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: opacidad ease-in-out 1s;


    & h1{
        font-size: 4rem;
        line-height: 3rem;
        margin-bottom: 40px;
    }

    & p{
        font-family: "Justsans-light";
        line-height: 22px;
        font-size: 24px;
        text-align: center;
    }
}



.Embed,.Header{
    display: none!important;
}






.txt-header-sust2{
    margin: auto;
    color: var(--base);
    max-width: 600px;
    height: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: opacidad ease-in-out 1s;


    & h1{
        font-size: 4.5rem;
        line-height: 3rem;
        margin-bottom: 40px;
    }

    & p{
        font-family: "Justsans-light";
        line-height: 22px;
        font-size: 24px;
        text-align: center;
    }
}

.altura{
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
    /*background-color: #190e05;*/
    min-height: 900px;

    & img{
        width: 600px;
        height: auto;
        padding: 20px 0 0 0;
    }
}

.altura-iframe{
    max-height: 900px;
    /*background-color: aqua;*/
    margin: auto;
}
.posicion-iframe{
    width: 100%;
    height: 900px;
}
/*lsustentabilidad Header*/


/*Bento Header section*/
.bento-bg-header{
    height: 1500px;
    align-content: center;
    background-image: url("../assets/images/CBM_Web_Header_Sustentabilidad_2024.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bento-header{
    /*border: solid red 5px;*/
    max-width: 1500px;
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows: repeat(2,1fr);
    grid-template-areas: 
    "imagen-header imagen-header imagen-header video-header video-header"
    "texto-header texto-header texto-header video-header video-header";
    gap: 20px;
}

.bento-h{
    font-size: 3rem;
    color: var(--base);
    text-align: center;
    align-content: center;
}
.bento-h-img{
    /*border: solid yellow 2px;*/
    /*background-color: red;*/
    grid-area: imagen-header;
}
.bento-h-txt{
    /*border: solid yellow 2px;*/
    /*background-color: yellow;*/
    grid-area: texto-header;
}
.bento-h-video{
    /*border: solid yellow 2px;*/
    /*background-color: blueviolet;*/
    grid-area: video-header;
    


    & video{

        width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
}

/*Bento section*/


/*Circulos Informativos*/
.informativo{
    margin-top: -150px;
    text-align: center;
    margin-bottom: 100px;

    & img{
        border-radius: 200px;
        border: 8px solid var(--base);
        margin-bottom: 20px;
        width: 250px;
        height: auto;
    }
    & p{
        font-family: "Justsans-light";
        font-size: 1.2rem;
        line-height: 1.2rem;
        margin: auto;
        max-width: 250px;
        margin-bottom: 30px;
    }
}
/*Circulos Informativos*/


/*Oxigeno*/
.oxigeno{
    text-align: center;
    color: var(--base);
    min-height: 600px;
    margin-bottom: 50px;
}
.margen-oxi{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

        & h2{
        max-width: 600px;
        margin: 50px 0 50px 0;
    }
}
.pinos-iso{
    width: 800px;
    height: auto;
    margin-left: -520px;

    & img{
        max-width: 800px;
    }

    & lottie-player{
        max-width: 800px;
        height: auto;
    }
}
.pinos-oxi{
    margin: auto;
    max-width: 200px;
    
    & img{
        margin: 20px 0;
        max-width: 150px;
        height: 200px;
    }


    & p{
        margin: auto;
        font-size: 1.2rem;
        line-height: 1.5rem;
        max-width: 150px;
        text-wrap: pretty;
        font-weight: 800;
    }
}

.pinos-oxi-info{
    margin: 20px auto;
    padding: 0 100px;
    font-size: 30px;
    color: var(--blanco);
    min-height: 100px;
    align-content: center;
    text-align: center;
    max-width: 800px;
    background-color: var(--base);

    & b{
        margin-top: 50px;
    }
}
/*Oxigeno*/

/*Descanso Pinos*/
.descanso-sust{
    padding: 50px 10px;
    min-height: 350px;
    width: 100%;
    background-image: url("../assets/images/CBM_Web_Headers_Arboles_2024.webp");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: var(--blanco);

    & h3{
        font-size: 2rem;
        margin-bottom: 20px;
    }
    & b{
        font-size: 4rem;
    }

    & p{
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin: auto;
        max-width: 1000px;
    }
}
/*Descanso Pinos*/

/*Bento vida Util*/
.vida-util{
    margin: 80px 0;
}
.texto-pino-sigue{
    text-align: center;
    max-width: 700px;
    margin: 100px auto;
    color: var(--header);

    & h2{
        font-size: 4rem;
    }
    & p{
        color: var(--negro);
        margin: 20px auto;
        max-width: 600px;
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
}
.bento-box{
    /*outline: 5px solid red;*/
    width: 70%;
    min-height: 700px;
    margin: 10px auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
    grid-template-areas: 
    "video noti01"
    "video noti02"
    "video noti03";
    gap: 0 50px;
    transition: all 0.3s linear;
}

.bento-vida{
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: var(--base);

    & img{
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    & p{
        font-size: 1.3rem;
        max-width: 400px;
        margin-top: 10px;
    }
}
.bento-video{
    /*background-color: blue;*/
    grid-area: video;
}
.video-bento-vertical{
    height: 100%;
    width: 100%;

    & video{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.ig-iframe{
    /*background-color: #190e05;*/
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    object-fit: cover;
}

.bento-noti01{
    /*background-color: purple;*/
    grid-area: noti01;
}
.bento-noti02{
    /*background-color: orange;*/
    grid-area: noti02;
}
.bento-noti03{
    /*background-color: olive;*/
    grid-area: noti03;
}
/*Bento vida Util*/



/* OTROS */
.otros-header{
    height: 850px;
    background-image: url("../assets/images/CBM_Web_Header_Otros_2024.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.txt-header{
    color: var(--blanco);
    max-width: 600px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: opacidad ease-in-out 1s;

    & span{
        font-family: "behind-italic";
        font-weight: 200;
        font-size: 1.5rem;
        margin-top: -10px;
    }
}
/* OTROS */

/* Otros Productos */
.otros-productos{
    margin: 150px auto;
    color: var(--header);
    text-align: center;

    & p{
        margin: 0 auto; 
        color: var(--negro);
        font-size: 1.5rem;
        line-height: 1.5rem;
        max-width: 800px;
        margin-bottom: 150px;
    }


    & img{
        max-width: 300px;
        height: auto;
        border-radius: 200px;
        border: solid var(--header) 8px;
        margin: 10px auto;
    }
    & h3{
        font-size: 3rem;
        margin-bottom: 30px;
    }
}
/* Otros Productos */



























































































































@media (min-width: 1000px) {
    .pinos-oxi-info{
        margin: -120px 0 0 350px;
        padding: 0 100px;
        font-size: 30px;
        color: var(--blanco);
        min-height: 100px;
        align-content: center;
        text-align: center;
        max-width: 800px;
        background-color: var(--base);
    }  
}

@media (max-width: 1400px) {

    .pasos:hover{
        & :first-child h1{
            margin-right: -100px;
            opacity: 1;
        }
    }
}









@media (max-width: 1200px) {
    .line{
        width: 50px;
        transition: all 0.3s ease-in-out;
    }
    .buttons{
        & img{
            height: 150px;
            margin: 0 10px;
        }
    } 


        /*Pasos*/
    .cuidado{
        margin-top: -2px;
        background-color: var(--active);
        padding: 70px 0;
    }

    .pasos{
        max-width: 600px;
        height: 300px;
        display: flex;
        flex-direction: row;

        & img{
            height: 150px;
            width: 110px;
        }
    }

    .pasos-num{
        z-index: 5;
        margin: auto;

        & h1{
            margin-top: 20px;
            margin-right: -50px;
            color: var(--base);
            font-size: 12rem;
            transition: all 0.5s ease-in-out;
            opacity: 0.1;
        }
    }

    .pasos-info{
        z-index: 10;
        color: var(--blanco);
        text-align: center;

        & p{
            margin-top: 10px;
            font-size: 12px;
            line-height: 15px;
            max-width: 300px;
        }
    }

    .pasos:hover{
        & :first-child h1{
            margin-right: -50px;
            opacity: 1;
        }
    }

    .pasos-margen{
        width: 35%;
        height: 300px;
        text-align: center;
        margin: auto 10px;
        display: inline-block;
    }


    /*Pasos*/

    .txt-header-luces{
        margin-top: 30px;
        color: var(--blanco);
        max-width: 300px;
        height: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        animation: opacidad ease-in-out 1s;
    
        & h1{
            font-size: 4rem;
            line-height: 2rem;
        }
    
        & p{
            font-size: 18px;
            text-align: left;
        }
    }

    .embed-responsive-1by1{
        height: 350px;
        width: 250px;
    }



    /*Luces Led*/
.luces-led-izq{
    & h2{
        font-size: 2.5rem;
        line-height: 2.2rem;
        margin-bottom: 50px;
    }
}
.luces-led-der{
    max-height: 400px;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: solid 6px var(--active);
    border-radius: 500px;
    align-content: center;

    & h1{
        font-size: 2.8rem;
        line-height: 2.2rem;
    }
}



/*Luces Riesgos*/
.riesgos{
    background-image: url("../assets/images/CBM_Luces_Pino_Ilustracion_v2_2024.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 800px;
    min-height: 900px;
    margin: 100px 0;
    text-align: center;
    display: flex;
    width: 100%;

    & h1{
        color: var(--base);
        font-size: 2.5rem;
        max-width: 400px;
        line-height: 3rem;
        margin: auto;
    }

    & h3{
        color: var(--header);
        font-size: 2.5rem;
        line-height: 2.2rem;
        margin-bottom: 50px;
        margin-top: 50px;
    }
    & b{
        font-size: 5rem;
    }

    & p{
        margin: auto;
        max-width: 300px;
        margin-bottom: 15px;
    }
}

.altura-iframe{
    max-height: 800px;
    /*background-color: aqua;*/
    margin: auto;
}
.posicion-iframe{
    width: 100%;
    height: 800px;
}


.bento-box{
    min-height: 550px;
    margin: 10px auto;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
    grid-template-areas: 
    "video noti01"
    "video noti02"
    "video noti03"
    ;
    gap: 20px;
}

.ig-iframe{
    /*background-color: #190e05;*/
    display: flex;
    flex-direction: column;
    height: 600px;
    max-width: 50%;
    align-items: center;
    align-content: center;
    justify-content: center;
}




/*Bento Header section*/
.bento-bg-header{
    height: 1200px;
}

.bento-header{
    width: 95%;
    height: auto;
    margin: 150px auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(1,1fr);
    grid-template-areas: 
    "imagen-header video-header"
    "texto-header video-header";
    gap: 10px;
}


    

}






















@media (max-width: 991.98px) {
    .navbar-collapse{
        flex-grow: 1;
    }
    .line{
        display: none;
    }
    .socials{
        background-color: var(--active);
        padding: 0%;
        margin: 0;
        & :hover{
            color: var(--body);
        }
    }
    .navbar-brand img{
        padding: 0%;
        margin: 0 auto;
        width: 200px;;
        height: auto;
        transition: all 0.3s ease-in-out;
    }

    .pasos-margen{
        width: 100%;
        height: 350px;
        text-align: center;
        margin: auto;
        display: inline-block;
    }

    /*Pasos*/
.cuidado{
    margin-top: -2px;
    background-color: var(--active);
    padding: 70px 0;
}

.pasos{
    max-width: 300px;
    height: 200px;
    display: flex;
    flex-direction: row;

    & img{
        max-width: 500px;
        height: 150px;
    }
}

.pasos-num{
    z-index: 5;
    margin: auto;

    & h1{
        margin-top: 20px;
        margin-right: -100px;
        color: var(--base);
        font-size: 15rem;
        transition: all 0.5s ease-in-out;
        opacity: 0.1;
    }
}

.pasos-info{
    z-index: 10;
    color: var(--blanco);
    text-align: center;

    & p{
        margin-top: 10px;
        font-size: 18px;
        line-height: 18px;
        max-width: 200px;
    }
}

.pasos:hover{
    & :first-child h1{
        margin-right: -60px;
        opacity: 1;
    }
}

.pasos-margen{
    width: 100%;
    height: 350px;
    text-align: center;
    margin: auto 5px;
    display: inline-block;
}


/*Pasos*/

/*Tipos de luces*/
.tipos-luces{
    text-align: center;
    margin-top: 50px;
    padding-bottom: 0%;

    & img{
        max-width: 200px;
        max-height: 150px;
    }

    & h3{
        font-size: 2rem;
        color: var(--header);
        margin: 20px 0;
    }

    & p{
        font-size: 15px;
        font-family: "Justsans-light";
        line-height: 22px;
        color: var(--blanco);
        background-color: #0a3a37;
        width: 90%;
        padding: 5%;
        height: 300px;
        margin: auto;
        transition: all 0.3s ease-in-out;
    }

    &:hover{
        & p{
        background-color: #82c83e;
        }
    }
}
    .nom p{
        font-size: 1rem;
    }
/*Tipos de luces*/



    /*Luces Led*/
    .luces-led-izq{
        & h2{
            font-size: 2.5rem;
            line-height: 2.2rem;
            margin-bottom: 50px;
        }
    }
    .luces-led-der{
        max-height: 350px;
        max-width: 350px;
        margin: 0 auto;
        padding: 20px;
        border: solid 6px var(--active);
        border-radius: 500px;
        align-content: center;
    
        & h1{
            font-size: 2.8rem;
            line-height: 2.2rem;
        }
    }
    
    
    
    /*Luces Riesgos*/
    .riesgos{
        background-image: url("../assets/images/CBM_Luces_Pino_Ilustracion_v2_2024.png");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: 800px;
        min-height: 900px;
        margin: 100px 0;
        text-align: center;
        display: flex;
        width: 100%;
    
        & h1{
            color: var(--base);
            font-size: 2.5rem;
            max-width: 400px;
            line-height: 3rem;
            margin: auto;
        }
    
        & h3{
            color: var(--header);
            font-size: 2.5rem;
            line-height: 2.2rem;
            margin-bottom: 50px;
            margin-top: 50px;
        }
        & b{
            font-size: 5rem;
        }
    
        & p{
            margin: auto;
            max-width: 300px;
            margin-bottom: 15px;
        }
    }
    


    /*Sustentabilidad*/
    .txt-header-sust2{
        margin: auto;
        color: var(--base);
        max-width: 600px;
        height: 500px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        animation: opacidad ease-in-out 1s;
    
    
        & h1{
            font-size: 4rem;
            line-height: 3rem;
            margin-bottom: 40px;
        }
    
        & p{
            font-family: "Justsans-light";
            line-height: 18px;
            font-size: 20px;
            text-align: center;
        }
    }

    .altura-iframe{
        max-height: 700px;
        /*background-color: aqua;*/
        margin: auto;
    }
    .posicion-iframe{
        width: 100%;
        height: 700px;
    }

    .pinos-iso{
        width: 400px;
        height: auto;
        margin-left: -300px;
    
        & img{
            max-width: 800px;
        }
    }

}





















@media (max-width: 575.98px) {
    h1{
        font-size: 90px;
    }
    
    .txt-header{
        & span{
            font-size: 20px;
        }
    }

    .nuestra-gente{
        & img{
            height: auto;
        }
    }
    /*iframe Youtube*/
    .embed-responsive{
        margin: 0px auto;
    }
    /*iframe Youtube*/
    /*Inicia Botones*/
    .buttons{
        margin: 50px auto;
        max-width: 1200px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        scale: 1;

        & img{
            height: 130px;
            margin: 10px 10px;
        }
    }
    /*Termina Botones Mapa*/
    .pd-form-l{
        padding-left: 15px;
    }
    .pd-form-r{
        padding-left: auto;
    }

    .footer-menu{
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin: 50px 0;

        & ul{
            margin: 0px;
        }
    }
    /*Seccion de Arboles*/
    .arboles-header{
        height: 99vh;
    }
    .txt-header-arboles{
        animation: opacidad ease-in-out 1s;
        margin: 0 20px;
    
        & h1{
            font-size: 4rem;
            line-height: 3rem;
        }
    
        & p{
            text-align: left;
        }
    }
    /*Sección de Arboles*/

    /*Pasos*/
.cuidado{
    margin-top: -2px;
    background-color: var(--active);
    min-height: 800px;
}

.pasos{
    max-width: 300px;
    height: 200px;
    display: flex;
    flex-direction: row;

    & img{
        max-width: 500px;
        height: 150px;
    }
}

.pasos-num{
    z-index: 5;
    margin: auto;

    & h1{
        margin-top: 20px;
        margin-right: -100px;
        color: var(--base);
        font-size: 15rem;
        transition: all 0.5s ease-in-out;
        opacity: 0.1;
    }
}

.pasos-info{
    z-index: 10;
    color: var(--blanco);
    text-align: center;

    & p{
        margin-top: 10px;
        font-size: 18px;
        line-height: 18px;
        max-width: 200px;
    }
}

.pasos:hover{
    & :first-child h1{
        margin-right: -60px;
        opacity: 1;
    }
}

.pasos-margen{
    width: 80%;
    height: 350px;
    text-align: center;
    margin: auto 30px;
    display: inline-block;
}


/*Pasos*/

.quepasa{
    background-position: left;
}

/*luces Header*/
.luces-header-img{
    height: 950px;
    background-image: url("../assets/images/CBM_Web_Headers_Luces_2024.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
}
.luces-header{
    max-width: 1800px;
    height: 950px;
}

.txt-header-luces{
    margin-top: 10px;
    color: var(--blanco);
    max-width: 500px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: opacidad ease-in-out 1s;

    & h1{
        font-size: 4rem;
        line-height: 3rem;
    }

    & p{
        font-size: 14px;
        max-width: 80%;
        text-align: left;
    }
}

.luces-video{
    margin-top: -130px;
    padding-bottom: 20px;
    max-width: 500px;
}

.embed-responsive-1by1{
    height: 400px;
    width: 300px;
}
/*luces Header*/

/*Luces Led*/
.luces-led-der{
    max-height: 400px;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: solid 6px var(--active);
    border-radius: 500px;
    align-content: center;

    & h1{
        font-size: 2.8rem;
        line-height: 2.2rem;
    }
}

/*Luces Riesgos*/
.riesgos{
    background-image: url("../assets/images/CBM_Luces_Pino_Ilustracion_2024.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 400px;
    min-height: 2000px;
    margin: 100px 0;
    text-align: center;
    display: flex;
    width: 100%;

    & h1{
        color: var(--base);
        font-size: 2.5rem;
        max-width: 500px;
        line-height: 3rem;
        margin: auto;
    }

    & h3{
        color: var(--header);
        font-size: 2.5rem;
        line-height: 2.2rem;
        margin-bottom: 50px;
        margin-top: 50px;
    }
    & b{
        font-size: 5rem;
    }

    & p{
        margin: auto;
        max-width: 300px;
        margin-bottom: 15px;
    }
}


/*Sustentabilidad*/
.altura{
    & img{
        margin-top: 120px;
    }
}
.altura-iframe{
    max-height: 700px;
    /*background-color: aqua;*/
    margin: auto;
}
.posicion-iframe{
    margin-top: -30px;
    width: 100%;
    height: 700px;
}

.pinos-iso{
    margin: 0 auto 50px;
    width: 350px;
    height: auto;

    & img{
        max-width: 800px;
    }
}

.bento-box{
    min-height: 800px;
    margin: 10px auto;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(1,1fr);
    grid-template-areas: 
    "video"
    "noti01"
    "noti02"
    "noti03";
    gap: 20px;
}


.bento-vida{
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: var(--base);

    & img{
        width: 100%;
        max-height: 520px;
        object-fit: cover;
    }
    & p{
        font-size: 1.3rem;
        max-width: 400px;
        margin-top: 10px;
    }
}



/*Bento Header section*/
.bento-bg-header{
    height: 1900px;
}

.bento-header{
    width: 95%;
    height: auto;
    margin: 150px auto;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(1,1fr);
    grid-template-areas: 
    "imagen-header"
    "texto-header"
    "video-header";
    gap: 10px;
}
}