@charset "UTF-8";


.diva08{ 
    width:min(92%, 1200px); 
    margin-inline:auto; 

    display:flex; 
    justify-content: space-between;
    align-items:center; 
    flex-flow:row wrap; 
    gap:var(--space-section-inner);
    padding-block:var(--space-section-y);

}

.diva08-vsimg{
    flex: 0 1 50%;
    min-width: 0;
}

.diva08-box{
    flex: 0 1 40%;
 
    min-width: 0;
    box-sizing: border-box;
}

.diva08-box__title{ 
    font-size:var(--wb-font-h3); 
    font-weight:var(--wb-font-weight-black);
    line-height: 1;
    margin-bottom:var(--space-section-content);

}

.diva08-box__text{ 
    font-size:var(--wb-font-text); 
    line-height:var(--wb-line-text);
    font-weight:var(--wb-font-weight-regular);  
    color:#1a1a1a;

 }

.diva08-box__btn{
    margin-top:3rem;

}




/* ================responsive web design area ==============
============================================================ */

@media screen and ( max-width:768px ) {
    .diva08{
        flex-direction: column;
    }

    .diva08-vsimg{ 
        order:2;
     }
    .diva08-box{
        order:1;
    } 

}
























