*{
    box-sizing: border-box;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

h1{
    font-size: 2.5rem;
    font-family: 'Oswald';
    font-weight: 300;
    color: #1A1E2C;
    line-height: 2.5rem;
}

h2{
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Oswald';
    font-weight: 300;
}

/*contact data header*/
h3{
    font-size: 1.5rem;
    color: #862226;
    display: inline-block;
    
}

h3 :nth-child(1){
    margin-right: 2rem;
}

/*white title in dark banner*/
h4{
    font-size: 2.5rem;
    color: white;   
    font-weight: 300; 
}



body{
    overflow-x: hidden;
    font-size: 1.5rem;
}

p{
    font-weight: 200;
    line-height: 1.3;
    margin: 1rem 0;
    letter-spacing: 0.03rem;
}


/*top grid*/
.wrapper{
    height: 100vh;
    display: grid;
    grid-template-columns: 5vw 30vw 1fr 1fr 1fr 5vw;
    grid-template-rows: 1fr 2fr;
    

}

/*logo and contact data header positioning*/
.top{
    grid-column: 2/4;
    grid-row: 1/2;  

}

.logo{
    display: inline-block;
    margin-right: 2rem;
}

/* text in the hero section*/
.tagline{
    grid-column: 2/4;
    grid-row: 2/3;
    align-self: center;
    width: 90%;
}

/* buttons in the hero section positioning*/
/* .navs{
    grid-column: 2/4;
    grid-row: 3/4;
} */

/* positioning and styles for img and bg in hero section*/
.bannerimg{
    grid-column: 4/6;
    grid-row: 1/3;
    background-image: url(/assets/cubespic-pic.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    background-size:contain;
}

.brandbg{
    background: #862226;
    grid-column: 5/7;
    grid-row: 1/3;
}

/*color accent with brand color*/

.textbrand{
    font-family: 'Oswald';
    font-weight: 400;
    color: #862226;
}



.bannerdark {
    margin-top: 5.3rem;
    padding: 3rem;
    background-image: url(/assets/darkbg.png);
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;  
    text-align: center; 
    display:block;
    
}



.bannerdark p{
    color: white;    
    
}



#soluciones {
    padding: 4rem;
    text-align: center;
}



/*link buttons*/
a{
    font-family: 'Oswald';
    font-weight: 400;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 1rem 2.5rem;
    display: inline-block;
    margin: 1rem 0;
}

.brand{
    background-color: #862226;
    margin-right: 2rem;
    
}
.dark{
    background-color: #1A1E2C;
    
}

/*end buttons*/



/* cards grid */

.cards_section{
    padding: 2rem;
    text-align: center;
}

.benefits_grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    
    
}


.eokbenefits{
    background: #BED032;
    padding: 1rem;
    border-radius: 0.3rem;
}


.aptbenefits{
    background: hsl(211, 86%, 45%);
    padding: 1rem;
    border-radius: 0.3rem;
    
}

.aptbenefits p{
    color: white;
}



/* our experience data */


.card_collection{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.card{
    background-color: white;
    border-radius: 0.2rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 1rem;
}




/* footer*/


footer{
    padding: 2rem;
}
.small{
    font-size: 1rem;
    color: gray;
    text-align: center;
}
