.home-section {
    padding-top: 105px;
    height: calc(100vh);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-introduction-text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

.home-introduction-text h1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 35.28px;
    line-height: 43px;
    text-align: center;
    color: #FFFFFF;
}

.home-introduction-text p {
    margin-top: 22px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;

    color: #FFFFFF;
}

.home-introduction-text .button-link {
    margin-top: 55px;
    box-shadow: 5px 11px 29px -10px rgba(0, 0, 0, 0.25);
    width: 300px;
    height: 57px;
    border-radius: 40px;
    color: #fff;
    background-color: #CA9E67;
    border: none;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.home-introduction-text .button-link:hover {
    filter: brightness(115%);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .home-introduction-text {
        padding: 0px 40px;
    }

    .home-introduction-text {
        align-items: flex-start;
    }

    .home-introduction-text h1 {
        font-size: 21px;
        line-height: 25px;
        text-align: start;
    }

    .home-introduction-text p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 19px;
        text-align: start;
    }

    .home-introduction-text .button-link {
        margin-top: 15px;
        width: 165px;
        height: 31px;
        font-size: 10px;
        line-height: 12px;
        font-weight: bold;
    }
}

@media (max-width: 425px) {
    .home-section {
        padding-top: 61px;
    }
}