
.hero{
    width: 100%;
    height: 100vh;
    background: url("../img/topbg.webp") no-repeat center center/cover;
    justify-content: center;
    align-items: start;
}

.hero__overlay{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding-left: 150px;
}

.hero__container{
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.hero__container h1{
    height: auto;
    font-size: 42px;
    font-weight: 600;
    color: white;
}

.hero__container h2{
    height: auto;
    font-size: 32px;
    font-weight: 600;
    color: white;
}

.hero__container p{
    height: auto;
    font-size: 26px;
    font-weight: 400;
    color: white;
    max-width: 800px;
    line-height: 1.5;
}

.hero__container__buttons{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.hero__container__buttons a{
    padding: 15px 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1F1F1F;
    border-radius: 50px;
    color: white !important;
    transition: all ease-in-out 0.5;
    text-decoration: none;
    border: 1px solid white;
    
}
.hero__container__buttons a:hover{
    background: #333333 !important;
}

@media screen and (max-width: 760px) {
    .hero{
        width: 100%;
        height: 80vh;
    }
    .hero__overlay{
        padding: 0 50px;
    }

    .hero__container{
        gap: 10px;
    }

    .hero__container h1{
        height: auto;
        font-size: 32px;
        font-weight: 600;
        color: white;
    }

    .hero__container h2{
        font-size: 22px;
    }

    .hero__container p{
        font-size: 18px;
    }

    .hero__container__buttons{
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
    }

    .hero__container__buttons a{
        font-size: 12px;
    }
}