main{
    padding-top: 60px;
}

#hero_section{
    width: 100vw;
    height: 60vh;
    display: flex;
    color: #ddd;
    background: var(--su-bg);
}
#hero_section_text{
    width: 40%;
    padding: 0 5% 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#hero_section_text h1{
    font-size: 9em;
    font-family: var(--work-cabin-ver);
    margin-bottom: 40px;
    flex-shrink: 0;
}
#hero_section_text h2{
    font-size: 4.4em;
    font-weight: 400;
    font-family: var(--cabin-ver);
    line-height: 160%;
    margin-bottom: 20px;
}


#hero_section_img{
    width: 50%;
}
/* #hero_section_img img{
    object-fit: contain;
} */


@media (max-width: 650px) {
    #hero_section{
        height: fit-content;
        flex-direction: column-reverse;
    }
    #hero_section_text{
        width: 80%;
        height: fit-content;
        padding: 50px 10%;
    }
    #hero_section_text h1{
        font-size: 6em;
    }
    #hero_section_text h2{
        font-size: 3.4em;
    }

    #hero_section_img{
        width: 100%;
        height: 50vh;
    }
}

#search{
    width: 80vw;
    padding: 20px 10vw;
    border-bottom: 1px var(--border-color) solid;
}

#search_box{
    width: 100%;
    height: 50px;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px var(--border-color) solid;
}
#search_box input{
    width: 100%;
    height: 100%;
    padding-left: 2%;
    border: none;
    background-color: var(--border-color);
}
#search_box button{
    height: 100%;
    width: 60px;
    flex-shrink: 0;
    padding: 0 10px;
    border: none;
    background-color: var(--border-color);
    font-size: 4.6em;
}




















#blogs{
    width: 100vw;
    display: flex;
    font-family: var(--cabin-sans);
}

#results{
    width: 100%;
    padding: 30px 5%;
}
.results_item{
    width: 100%;
    min-height: 300px;
    margin-bottom: 100px;
}
.results_item_img{
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
}
.results_item_text{
    width: 95%;
    padding: 20px 5% 20px 0;
}
.results_item_text header{
    font-size: 4em;
    margin-bottom: 10px;
}
.results_item_text p{
    font-size: 17px;
    line-height: 32px;
    color: var(--txt-color3);
}
.results_item .action_button{
    padding: 15px 30px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 2.6em;
}
@media (max-width: 600px) {
    .results_item_text p{
        font-size: 15px;
        line-height: 25px;
    }
}

#loading{
    width: 100%;
    padding: 50px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#loading header{
    font-size: 3.5em;
    margin-bottom: 40px;
}
#loading_slider{
    width: 50px;
    height: 10px;
    background-color: var(--su-bg);
    animation-name: loading_slider;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

#no_match{
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    font-size: 4em;
    text-align: center;
    line-height: 30px;
}
@keyframes loading_slider {
    0%{
        margin-left: -60%;
    }
    50%{
        margin-left: 60%;
        transform: rotate(3600deg);
    }
    100%{
        margin-left: -60%;
        transform: rotate(0deg);
    }
}




#featured{
    width: 30%;
    max-width: 360px;
    min-width: 260px;
    flex-shrink: 0;
    padding: 0px 20px;
    border-left: 1px var(--border-color) solid;
}
#featured_header{
    padding: 20px 0;
    font-size: 3.4em;
    font-weight: 600;
    text-align: end;
}
.featured_item{
    width: 100%;
}
.featured_item_img{
    width: 100%;
    max-height: 250px;
}
.featured_item_text header{
    font-size: 3em;
    margin-bottom: 30px;
}


@media (max-width: 750px) {
    #featured{
        display: none;
    }
}