@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --mainfont: "Poppins", sans-serif;
    --colorletter: #12110F;
    --colorYellow: #FFCC26;
    --colorWhite: #ffffff;
    --itemhover: #e2e2e2;
}

body{
    font-family: var(--mainfont);
    color: var(--colorletter);
}

main{
    flex-direction: column;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{
    width: 100%;
    height: 100%;
}

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

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

.font-weight{
    font-weight: 500;
}

h1 {
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 400;
    font-style: normal;
}

div h1{
    width: 100%;
    height: auto;
    font-size: 2.6vw;
    text-decoration: 3.5px underline var(--colorYellow);
    margin-bottom: 60px;
    margin-top: 20px;
}

div h3{
    width: 100%;
    height: auto;
    font-size: 1.25vw;
    margin-bottom: 80px;
    text-align:left;
}

h2,
p {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    transition: all 100ms ease-out;
}

h6{
    height: 30px;
    color: #C4C4C4;
    font-size: 1.3vw;
    letter-spacing: 0.3px;
}

a{
    text-decoration: none;
    color: var(--colorletter);
}

#main-page{
    width: 100%;
    height: auto;
    display: flex;
    margin-bottom: 100px;
}

#info-odoo{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-black{
    border: none;
    width: 20%;
    height: auto;
    font-size: 1.3vw;
    border-radius: 5px;
    background-color: #12110F;
    color: var(--colorWhite);
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    margin-top: 80px;
    padding: 10px;
}

.btn-black:hover {
    border: 2px solid var(--colorletter);
    color: var(--colorletter);
    background-color: var(--colorWhite);
}

.container-odoo{
    width: 90%;
    height: auto;
    margin-top: 20px;
}

.btn-back i{
    font-size: 1.3vw;
    margin-right: 10px;
}

#container-img-odoo{
    width: 100%;
}

#container-img-odoo img{
    width: 100%;
    object-fit: cover;
}

#container-odoo1{
    flex-direction: column;
    margin-top: 30px;
}

#container-odoo1 h1{
    width: 100%;
    font-size: 2vw;
    margin-bottom: 40px;
}

.h3-odoo{
    font-weight: 500;
    margin-bottom: 50px;
    width: 100%;
}

#container-odoo1 h3{
    width: 80%;
    font-size: 1.06vw;
    margin-bottom: 90px;
    text-align: center;
}

#container-odoo2 h3{
    font-size: 1.4vw;
    text-decoration: 3px underline var(--colorYellow);
}

ul {
    list-style-type: disc; 
    padding-left: 40px;    
    width: 100%;
    font-size: 1.06vw;
    margin-bottom: 80px;
    font-weight: 500;
}

li{
    line-height: 2.3vw;
}

#container-odoo3 h3{
    font-size: 1.4vw;
    text-decoration: 3px underline var(--colorYellow);
}

#container-icon{
    width: 100%;
    height: 450px;
    display: flex;
}

.div-icon{
    width: 100%;
}

.div-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: auto;
}

.div-container img{
    width: 25%;
    height: 50px;
    object-fit: contain;
}

.div-container h4{
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 0px;
    height: 70px;
    font-size: 1vw;
    font-weight: 600;
}








/*--------------------------------MEDIA MOVIL--------------------------------*/


@media (max-width: 430px) {

    #main-page{
        margin-top: 0px;
        flex-direction: column;
    }
    
    .btn-black{
        width: 25%;
        font-size: 3.4vw;
        margin-top: 40px;
    }
    
    #container-odoo1 h1{
        font-size: 4.7vw;
    }
    
    #container-odoo1 h3{
        font-size: 3.6vw;
        margin-bottom: 70px;
    }
    
    #container-odoo2 h3{
        font-size: 4vw;
        margin-bottom: 30px;
    }
    
    ul {
        padding-left: 20px;   
        font-size: 3.4vw;
    }
    
    li{
        line-height: 6vw;
    }
    
    #container-odoo3 h3{
        font-size: 4vw;
        margin-bottom: 0px;
    }

    #container-icon{
        height: 400px;
    }
    
    .div-icon{
        height: auto;
    }
    
    .div-container{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        height: auto;
    }
    
    .div-container img{
        width: 25%;
        height: 50px;
        object-fit: contain;
    }
    
    .div-container h4{
        font-size: 3.4vw;
    }


}