.banner {
    margin-top: var(--header-height);
}

.single__list {
    overflow-x: hidden;
}

.banner .single__list .single__list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .slick-slide > div {
    height: 100%;
}

.banner .single__list .single__list-item {
    width: 100%;
    height: 100%;
}

.banner .single__list .slick-dots {
    bottom: 14px;
}

.banner .single__list .slick-dots li button {
    position: relative;
    background-color: var(--white-color);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    padding: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 2px;
}

.banner .single__list .slick-dots li button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black-color);
    opacity: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.banner .slick-dots li.slick-active button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black-color);
    opacity: 1;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.banner .single__list .slick-dots li button:hover::before {
    opacity: 0.5;
}

.showroom .heading {
    width: 100%;
    color: var(--white-color);
    background-color: var(--black-color);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.showroom .heading a {
    padding: 30px 15px;
}

.showroom .wrap-showroom {
    display: flex;
    flex-wrap: wrap;
    min-height: 450px;
    width: 100%;
    align-items: center;
    align-content: center;
}

.showroom .wrap-showroom .showroom-tab-item {
    width: 50%;
    margin-bottom: 30px;
}

.showroom .wrap-showroom .showroom-tab-item a {
    display: block;
    background-color: var(--black-color);
    color: var(--white-color);
    margin: 0 20px;
    border-radius: 10px;
    text-align: center;
    padding: 25px 20px;
    font-weight: 600;
    font-size: 20px;
    transition: all .5s ease-in-out;
}

.showroom .wrap-showroom .showroom-tab-item a:hover {
    background-color: #3088CE;
}

@media only screen and (max-width: 768px) {
    .showroom .heading {
        font-size: 16px;
    }

    .showroom .wrap-showroom .showroom-tab-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .showroom .wrap-showroom .showroom-tab-item a {
        font-size: 16px;
        padding: 20px;
    }
}