.first-screen {
    height: 105vh;
    background-size: contain;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    padding: 50vh 0 0;
}

.first-screen .container {
    position: relative;
    z-index: 2;
}

.first-screen .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    pointer-events: none;
    z-index: 1;
    height: 100%;
}

.first-screen__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.first-screen h1 {
    font-size: clamp(48px, 5.74vw + 27.3px, 110px);
    color: white;
    display: inline-block;
    text-align: center;
}

.first-screen p {
    font-size: clamp(16px, 0.741vw + 13.33px, 24px);
    color: white;
}


.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    width: 100%;
    background-color: red;
    text-align: center;
    padding: 1.8vh 1.8vw;
    color: white;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
margin-top: 9vh;
    font-weight: bold;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media screen and (max-width: 1350px) {

    .first-screen {
        height: auto;
        padding: 48vh 0 25vh;
    }

    .first-screen {
        background-position-x: left;
        background-position-y: top;
    }

    .first-screen h1 {
        font-size: 110px;
        text-align: left;
        line-height: 100%;
    }

    .first-screen p {
        font-size: 24px;
    }

    .btn-primary {
        margin-top: 10vh;
    }


}

@media screen and (max-width: 1024px) {

    .first-screen__subtitle {
        margin-top: 10px;
    }

    .first-screen {
        background-position-x: center;
        padding: 48vh 0 10vh;
    }

    .first-screen h1 {
        font-size: 96px;
    }
}

@media screen and (max-width: 1024px) {
    .first-screen__content {
        align-items: flex-start;
    }

    .first-screen h1 {
        font-size: 48px;
    }

    .first-screen p {
        font-size: 16px;
    }
}