.fullhome-interiors-banner-section {
    padding: 0 80px;
}
.fhi-banner_container {
    max-width: 1280px;
    margin: 80px auto 160px;
}

.fhi-banner_tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    justify-content: center;
    margin-bottom: 51px;
}

.fhi-banner_tab {
    display: block;
    position: relative;
    color: #696969;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.4px;
    opacity: 0.7;
    cursor: pointer;
    text-wrap: nowrap;
}

.fhi-banner_tab.active {
    color: #323232;
    font-weight: 700;
    opacity: 1;
}

.fhi-banner_tab.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 2px;
    background-color: #FEAA06;
}

.fhi-banner_image {
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}


/* Dropdown */
.fullhome-dropdown-wrapper {
    position: relative;
    display: flex;
    margin: 80px auto 80px;
    /* width: max-content; */
    width: 85%;
    justify-content: center;
}
.fullhome-dropdown_text {
    position: relative;
    display: flex;
    align-items: center;
    width: max-content;
    cursor: pointer;
    gap: 6px;
}

.fullhome-dropdown_text span{
    display: block;
    color: #323232;
    font-family: Lato;
    font-size: 26px;
    font-weight: 300;
    line-height: 42.9px;
    margin-right: 6px;
}
.fullhome-dropdown_text img{
    width: auto;
}

.fullhome-dropdown_menu-wrapper {
    display: none;
    position: absolute;
    /* right: 300px; */
    left: -13px;
    top: 50px;
    z-index: 99;
}

.fullhome-dropdown_menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 219px;
    padding: 16px 24px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.10);
}

.fullhome-dropdown_menu span {
    color: rgba(32, 32, 32, 0.80);
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.4px;
    cursor: pointer;
}

.fullhome-int-heading {
    color:#323232;
    font-family: BioRhyme;
    font-size: 42px;
    font-weight: 700;
    line-height: 49.224px;
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
}

.fullhome-int-heading::before {
    content: "";
    display: block;
    width: 1px;
    height: 25px;
    background-color: #323232;
    position: absolute;
    right: 0;
    position: absolute;
    top: calc(50% - 12.5px);
}

@media (max-width: 768px) {

    .fullhome-interiors-banner-section {
        padding: 0px;
    }

    .fhi-banner_container {
        margin: 70px auto 100px;
    }
    .fhi-banner_tab.active::before{
        width: 16px;
    }
    .fhi-banner_tabs {
        gap: 24px;
        margin-bottom: 31px;
        padding: 0 20px;
        overflow-x: auto;
        justify-content: left;
        flex-wrap: nowrap;
    }

    .fhi-banner_tabs::-webkit-scrollbar {
        display: none;
    }

    .fhi-banner_image {
        border-radius: 0px;
        height: 250px;
    }

    /* Dropdown */
    .fullhome-dropdown-wrapper {
        display: block;
        /* margin: 44px auto 70px; */
    }

    .fullhome-int-heading {
        font-size: 26px;
        line-height: 33.8px;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 24px;
        text-align: center;
    }

    .fullhome-int-heading::before {
        content: none;
    }

    .fullhome-dropdown_text span {
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }

    .fullhome-dropdown_text {
        margin: 0 auto;
    }

    .fullhome-dropdown_menu-wrapper {
        top: 35px;
        left: -35px;
        margin: 0 auto;
        width: max-content;
    }
}