
/* ---- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

/* ---- */
body{
    background: rgba(1, 0, 66, 1) 89%;
    color: white;
}


/* ---- */
section{
    min-height: 65vh;
    padding: 1em 6em; /* top/bottom sides */
    margin: 2em 0; /* top/bottom sides */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 8em;
    /*background-color: rgba(0, 0, 0, 0.541); 
    border-radius: 1em;
    /* border: 2px solid red;*/
}

/* ---- */
.info-box{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    
}

/* ---- */
.info-box h1{
    font-size: 5em;
    line-height: 1;
}

/* ---- */
.info-box h3{
    font-size: 2em;
}

/* ---- */
.gradient-txt{
    background: rgb(0,71,171);
    background: linear-gradient(159deg, #00bbff 0%, rgb(165, 250, 255) 100%);
    background-clip: text;
    color: transparent;
    
}

/* ---- */
.btn-box{
    display: flex;
    gap: 0.8em;
}

/* ---- */
.btn{
    padding: 0.5em 1em; /* top/bottom sides */
    border-radius: 1em;
    font-size: 1.2em;
    background-color: white;
    border: 2px solid transparent;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

/* ---- */
.btn:hover{
    background-color: rgb(19, 19, 19);
    background: rgba(1, 0, 66, 1) 89%;
    color: white;
    border: 2px solid white;
}

/* ---- */
.bento-grid{
    flex: 1;
    height: 500px;
    display: flex;
    gap: 0.8em;
    
}

/* ---- */
.col-left{
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    
}

/* ---- */
.col-right{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

/* ---- */
.box{
    flex: 1;
    border-radius: 0.6em;
    display: flex;
    gap: 0.8em;
    transition: 0.3s ease-in-out;
    
}

/* ---- */
.inner-box{
    flex: 1;
    border-radius: 0.8em;
    overflow: hidden;
    /* opacity: 0.8; */
    transition: 0.3s ease-in-out;
    
    
}

/* ---- */
.col-left .inner-box:nth-of-type(1){
    flex: 2;
}

/* ---- */
.col-left .box:nth-of-type(2) .inner-box:nth-of-type(2){
    flex: 3;
}

/* ---- */
.col-left .box:nth-of-type(3) .inner-box{
    flex: 1;
}

/* ---- */
.inner-box:hover{
    transform: scale(1.03);
    
}

/* ---- */
.col-right .box:hover{
    transform: scale(1.03);
}

/* ---- */
img{
    object-fit:cover;
    width: 100%;
    height: 100%;
}

/* ---- */
.col-right .box{
    overflow: hidden;
}

/* ---- */
.col-left .box{
    overflow: hidden;
}


/* ------------------------------ */
@media(max-width:1200px){
    section{
        flex-direction: column;
        padding: 2%;
        margin: 0;
        background: rgba(1, 0, 66, 1) 89%;
        gap: 0 4em;

        .info-box{
            
            h1{
                font-size: 2.5em;
            }
            h3{
                font-size: 1.5em;
            }
        }

        .bento-grid{
            
            padding: 3em 0 3em 0;
        }
    }
}
