
#heading_view_1_section {
    height: 90%;
    width: 100%;
    padding: 5%;
    font-family: 'Montserrat-Regular', sans-serif !important;
}

#hv1_head{
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#hv1_title {
    color: white;
    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
    font-family: 'Gilroy-Regular', sans-serif !important;
}

#hv1_slider {
    width: 120px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#hv1_slider img {
    padding: 5px;
}

#hv1_slider img:hover {
    cursor: pointer;
    background-color: #959C6D;
}

.hv1_item {
    display: flex;
    flex-direction: row;
    height: 565px;
    margin-top: 50px;
    align-items: flex-end;
}

.hv1_poster {
    width: 50%;
    height: 100%;
}

.hv1_poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hv1_content {
    height: 90%;
    width: 50%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(258.64deg, rgba(149, 156, 109, 0.91) -6.94%, rgba(149, 156, 109, 0) 101.18%);
    backdrop-filter: blur(4.3px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 12px;
}

.hv1_content_title {
    color: white;
    font-size: 46px;
    font-weight: 700;
    line-height: 56px;

}

.hv1_content_text {
    color: white;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
}

.hv1_content_button {
    width: 147px;
    height: 48px;
    background-color: #959C6D;
    border-radius: 8px;
}

.hv1_content_button a {
    height: 100%;
    width: 100%;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.hv1_content_button a:hover {
    color: #ffffff;
    background-color: #5A4C00;
}

.hv1_item {
    transition: opacity 0.3s ease-in-out;
}

.hv1_item.active {
    opacity: 1;
    display:flex;
}

.hv1_item.inactive {
    opacity: 0;
}

.hv1_item {
    display:none;
}


@media screen and (max-width: 800px) {


    #heading_view_1_section {
        height: 90%;
        width: 100%;
        padding: 5%;
    }

    #hv1_head{
        height: 40px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #hv1_title {
        color: white;
        font-size: 28px;
        font-weight: 300;
        line-height: 29px;
    }

    #hv1_slider {
        width: 60px;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #hv1_slider img {
        padding: 5px;
    }

    #hv1_slider img:hover {
        cursor: pointer;
        background-color: #959C6D;
    }

    .hv1_item {
        display: flex;
        flex-direction: column;
        height: 565px;
        margin-top: 0px;
        align-items: center;
        justify-content: center;
    }

    .hv1_poster {
        width: 90%;
        height: 100%;
        display: grid;
        justify-items: center;
        align-items: center;
    }

    .hv1_poster img {
        width: 60%;
        height: 60%;
        object-fit: cover;
        border-radius: 8px;
    }

    .hv1_content {
        height: 90%;
        width: 100%;
        padding: 5%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: linear-gradient(258.64deg, rgba(149, 156, 109, 0.91) -6.94%, rgba(149, 156, 109, 0) 101.18%);
        backdrop-filter: blur(4.3px);
        /* Note: backdrop-filter has minimal browser support */
        border-radius: 12px;
    }

    .hv1_content_title {
        color: white;
        font-size: 36px;
        font-weight: 700;
        line-height: 39px;
    }

    .hv1_content_text {
        color: white;
        font-size: 18px;
        font-weight: 500;
        line-height: 20px;
    }

    .hv1_content_button {
        width: 120px;
        height: 42px;
        background-color: #959C6D;
        border-radius: 8px;
    }

    .hv1_content_button button {
        height: 100%;
        width: 100%;
        color: #ffffff;
        font-size: 16px;
        font-weight: 400;
        line-height: 19px;
    }

    .hv1_item {
        transition: opacity 0.3s ease-in-out;
    }

    .hv1_item.active {
        opacity: 1;
        display:flex;
    }

    .hv1_item.inactive {
        opacity: 0;
    }

    .hv1_item {
        display:none;
    }

}