
.selector-for-some-widget {
    box-sizing: content-box;
}
body,*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Sora", sans-serif;
}
*, ::after, ::before {
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
/* ================= fonts =============== */
.sora-700{
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
 }
.sora-300{
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
 }
 /* ============= font size ============== */
.text_45{
    font-size: 45px;
}
.text_30{
    font-size: 30px;
}
.text_18{
    font-size: 18px;
}
.text_14{
    font-size: 14px;
}
/* ============== text ============ */
.text_red{
    color: #E04626;
}
/* ==============  bottons  =========== */
.main_btn{
    color: #FFFFFF !important;
    border-width: 0px !important;
    border-radius: 5px;
    font-size: 18px;
    background-color: #E04626;
    padding: 10px 30px;
}
.main_btn:hover{
    box-shadow: 0px 12px 18px -6px rgba(224,70,38,0.4);
}
/* ==============  background  =========== */
.main_bg{
    background: #e04626;
}
.red_light_bg{
    background: #FCECE9;
}
/* ============== banner  =========== */
.banner{
    background: url(../image/banner-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}
.sandbox_img{
    background-color: #FCECE9;
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
    padding: 200px 100px 180px 100px;
    max-width: 560px;
}
.startup_icon{
    width: 70px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.portfolio_img img {
    width: 290px !important;
}
.portfolio_items{
    flex: 0 0 50%;
}
.portfolio_slider .owl-nav{
    position: absolute;
    top: 50%;
    color: white;
    font-size: 20px;
    width: 100%;
}
.portfolio_slider .owl-nav .owl-prev{
    left: -30px;
    position: absolute;
}
.portfolio_slider .owl-nav .owl-next{
    right: -30px;
    position: absolute;
}
.portfolio_slider:hover .owl-nav .owl-prev{
    left: 30px;
    transition: all .3s;
}
.portfolio_slider:hover .owl-nav .owl-next{
    right: 30px;
    transition: all .3s;
}
/* ==============   =========== */
/* ============== responsive  =========== */
@media(max-width: 767px){
    .banner{
        background: #E04626;
    }
    .banner_text{
        color: #FFFFFF !important;
        text-align: center;
    }
    .sandbox_img{
        padding: 100px 70px 100px 70px;
    }
    .main_btn{
        color: #E04626 !important;
        background: #FFFFFF;
    }
    .portfolio_img{
        display: none !important;
    }
}
