.banner {
    width: 100%;
    height: 35.5rem;

    margin: 4.8rem 0;
}

.banner-top {
    width: 100%;
    height: 28.0rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.banner-top-right{
    height: 18.4rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;


    margin: 4.8rem;
}

.banner-top-right h2 {
    width: 18.9rem;
    height: 4.2rem;

    font-weight: 700;
    font-size: 3.2rem;
    line-height: 130%;
}

.banner-top-right p {
    width: 25.8rem;
    height: 2.7rem;
    
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 150%;

    opacity: 0.7;
}

.banner-top-right button {
    width: 15.8rem;
    height: 4.4rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;

    background: #FD5631;
    border-radius: 8px;
}

.banner-top-right button:hover {
    opacity: 0.4;
}

.products {
    width: 85.6rem;
    height: 18.4rem;

    display: flex;
    justify-content: space-around;
    align-items: center;

    margin: 4.8rem;
}

.products a {
    width: 19.6rem;
    height: 18.4rem;
}

.products a:hover {
    background-color: var(--bg-color);
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-items {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 150%;

    text-align: center;
}

.banner-bottom {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.banner-bottom  .banner-arrows {
    width: 8.8rem;
    height: 3.6rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner__buttons {
    width: 8.8rem;
    height: 3.6rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-self: flex-start;

    margin-top: 2.4rem;
}

.banner__buttons-item {
    width: 3.6rem;
    height: 3.6rem;

    border-radius: 50%;
}

.banner__buttons-previous {
    background: rgba(255, 255, 255, 0.04) url(../../img/banners/previous.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.banner__buttons-previous:hover {
    cursor: pointer;
    background: #fff url(../../img/banners/previous-hover.svg);
    background-position: center;
    background-repeat: no-repeat;

    transition: 0.500;
}

.banner__buttons-next {
    background:rgba(255, 255, 255, 0.04) url(../../img/banners/next.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.banner__buttons-next:hover {
    cursor: pointer;

    background: #fff url(../../img/banners/next-hover.svg);
    background-position: center;
    background-repeat: no-repeat;

    transition: 0.500;
}
