.hero_section{
    height: 50vh;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
}
.hero_section .content{
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 40px;
    position: relative;
    z-index: 2;
}
.hero_section .content p>a{
    color: white;
    transition: 0.4s all ease;
}
.hero_section .content p>a:hover{
    color: blue;
}

.hero_section .overlay{
    width: 100%;
    height: 50vh;
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero_section img{
    position: absolute;
    top: 0;
    left: 0;
    height: 50vh;
    width: 100%;
    object-fit:cover;
}