.home-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: 790px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    padding: 18px 5.5em;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (min-width: 1200px) {
    #home-hero {
        height: 100vh;
    }

}

.home-text {
    max-width: 500px;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.5);
}

.hero-fade {
    position: relative;
    z-index: 1;
}

.home-title {
    font-size: 48px;
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
}


.home-title b {
    font-weight: 700;
}

.home-title strong {
    font-weight: 700;
}

.home-cards-main {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 30%;
    left: 170px;
    width: 370px;
    overflow: hidden;
}

.home-cards {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.home-card {
    width: 370px;
    text-decoration: none;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.home-card-title {
    line-height: 1.4;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.home-card-text {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 20px;
}





.home-card-link {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 65px;
    width: 100%;
    position: relative;
    display: flex;
}

.home-buttons {
    display: flex;
    align-items: center;
    border-radius: 90px;
    backdrop-filter: blur(21.5px);
    opacity: 0.87;
    width: 192px;
    margin-top: 40px;
    background: #ffffff5e;
    height: 85px;
    justify-content: space-between;
    position: absolute;
    bottom: 282px;
    right: 80px;
    padding: 8px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.39) 50.48%, rgba(121, 131, 136, 0.33) 96.16%);
    backdrop-filter: blur(10.75px);
}

.home-btn {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    border: white 1px solid;
}


@media (max-width: 1336px) {
    .home-text {
        max-width: 455px;
    }



}

@media (max-width: 480px) {

    .hero-fade {
        height: max-content !important;
    }


    .home-cards-main {
        display: flex;
        flex-direction: column;
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        overflow: hidden;
        margin-top: 0;
        transform: none;
        margin-top: 32px;
    }

    .home-container {
        padding: 0 20px !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        position: relative;
    }

    .home-text {
        width: 100%;
        text-align: center;
    }

    .home-title {
        font-size: 30px;
        margin-top: 100px;
        font-weight: 300;
        line-height: 1.2;
        width: 100%;
        text-align: start;
    }

    .home-cards {
        width: 100vw;
        gap: 0;
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .home-card {
        min-width: 90vw !important;
        margin: 0 auto;
        margin-bottom: 5%;
    }

    .home-buttons {
        width: 90px;
        height: 47px;
        background-color: transparent;
        position: absolute;
        bottom: 80px;
        right: 18px;
    }

    .home-btn {
        width: 32px !important;
        height: 32px !important;
    }
}