
#hero_section{
    width: 100vw;
    min-height: fit-content;
    display: flex;
    flex-wrap: wrap;
    /* background: url(/images/philosophy45.jpg) no-repeat;
    background-size: auto 100%;
    background-position: right; */
    /* background: var(--su-bg);
    color: #cbd6e2; */
    border-bottom: 1px var(--border-color) solid;
}

#hero_section_text{
    width: 35vw;
    padding: 0vh 1vw 0 5vw;
    height: 80vh;
    display: flex;
    align-items: center;
    font-family: var(--cabin-sans);
    /* background: linear-gradient(90deg, var(--ma-bg), #202021); */
}
#hero_section_text .cover{
    width: 100%;
}
#hero_section_header{
    font-size: 10.5em;
    margin-bottom: 25px;
    line-height: 110%;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: var(--cabin-sans);
    /* color: var(--ma-bg); */
}
#hero_section_subheader{
    font-size: 3.7em;
    margin-bottom: 15px;
    line-height: 140%;
    /* color: var(--txt-soft3); */
    font-weight: 100;
}
#hero_section_text .action_button{
    font-weight: 400;
    font-size: 2.7em;
}
#hero_section_list{
    width: 100%;
    margin-top: 15px;
    margin-bottom: 30px;
}
#hero_section_list li{
    width: 100%;
    color: var(--txt-soft);
    list-style-type: none;
    font-size: 3.2em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
#hero_section_list li ion-icon{
    font-size: 150%;
    margin-right: 2%;
    color: var(--at-bg);
}
#hero_section_contact{
    font-size: 3.2em;
    font-weight: 400;
    margin-top: 30px;
}

#hero_section_img{
    width: 59vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#hero_section_img_frame{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
#hero_section_img_frame img{
    object-fit: cover;
    object-position: left;

}



#hero_jaskin_tech{
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--su-bg);
    color: #a149fe;
    font-size: 4em;
    font-weight: 600;
    letter-spacing: 2px;
}

@media (max-width: 800px) {
    
    #hero_section{
        flex-direction: column-reverse;
        height: fit-content;
        padding-top: 35px;
        background: url(/images/code_computer4.webp) no-repeat;
        background-size: cover;
        background-attachment: fixed;
        border: none;
    }
    #hero_section_text{
        width: 85vw;
        padding: 30px 4vw 20px 6vw; 
        margin: 0 auto;
        height: fit-content;
        justify-content: center;
        /* background: linear-gradient(180deg, var(--su-bg), var(--ma-bg)); */
        background: var(--ma-bg);
        color: var(--su-bg);
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    
    #hero_section_text .cover{
        padding-left: 0;
    }
    
    #hero_section_header{
        color: var(--su-bg);
    }
    #hero_section_subheader{
        color: var(--txt-soft3);
    }
    #hero_section_img{
        width: 100vw;
        height: 40vh;
    }
    #hero_section_img_frame{
        width: 100%;
    }
    #hero_section_img_frame img{
        display: none;
    }
    #hero_section_contact{
        color: #333;
        font-weight: 400;
    }
    
}

@media (max-width: 550px) {
    #hero_section_text{
        width: 85vw;
        padding: 30px 5vw 20px 5vw; 
    }
    #hero_section_header{
        font-size: 7.5em;
        line-height: 120%;
        margin-bottom: 15px;
        color: var(--su-bg);
    }
    #hero_section_subheader{
        line-height: 130%;
        font-size: 3.6em;
        margin-bottom: 25px;
        font-weight: 400;
        color: var(--txt-soft);
    }
    #hero_section_img_frame{
        width: 100%;
    }
    #hero_section_contact{
        color: var(--txt-soft);
        font-weight: 400;
    }
}



.svg_break{
    width: 90vw;
    padding: 0px 5vw 0px 5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.svg_break .item{
    width: 23%;
    padding: 30px 0;
    /* box-shadow: 0px 0px 10px 6px #d7d4d9; */
}
.svg_break .item .item_image_frame{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.svg_break .item .item_image_frame img{
    object-fit: contain;
    width: 12em;
    height: auto;
}
.svg_break .item .item_text p{
    text-align: center;
    padding-top: 20px;
    font-size: 3em;
}

@media (max-width: 550px) {
    .svg_break .item{
        width: 47%;
    }
    .svg_break .item .item_image_frame img{
        width: 7em;
        height: auto;
    }
    .svg_break .item .item_text p{
        font-size: 2.5em;
    }
}