.hero-section{
    min-height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-text-con{
    height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white-color);
    padding: 2em 0;
    max-width: 80%;
}

.hero-text-con h1{
    font-size: 5rem;
    line-height: 94%;
    margin: 0;
}

.hero-text-con p{
    font-size: 2rem;
    line-height: 94%;
    margin: 1em 0;
}

@media (max-width: 1024px){
    .hero-text-con h1{
        font-size: 4rem;
    }
}

@media (max-width: 768px){
    .hero-text-con{
        max-width: 100%;
    }
    .hero-text-con h1{
        font-size: 3rem;
    }
    .hero-text-con p{
        font-size: 1.5rem;
    }
}