.partner-block h1 {
    font-weight: 500;
}

.partner-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.partner-table a {
    background: white;
    height: 95px;
    padding: 10px 20px;
}

.partner-table a img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


:root {
    --animation-timer: 1.2s;
    --animation-delay: 0.2s;
}

.description-orange {
    color: var(--orange-text-color);
    border-left: 3px solid var(--orange-color);
    padding-left: 10px;
    opacity: 0.6;
}

.main-banner-block .slide {
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: center;
}

.main-banner-block {
    position: relative;
    background: white;
}

.slider-buttons {
    position: absolute;
    bottom: 15px;
    height: 45px;
    left: 50%;
    translate: -50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-buttons .slick-arrow {
    width: 45px;
    height: 45px;
    top: 0;
    transform: none;
    -webkit-transform: none;
    background-image: var(--chevrone-next);
    background-repeat: no-repeat;
    background-position: center;
    border: 0;
    border-radius: 50%;
    background-color: #F3F3F3;
    cursor: pointer;
}

.slider-buttons .slick-arrow-prev {
    left: 0;
    transform: rotate(180deg);
}

.slider-buttons .slick-arrow-next {
    right: 0;
    order: 3;
}

.slider-buttons .slick-new-dots {
    background-color: #F3F3F3;
    height: 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0 20px;
}

.slider-buttons .slick-new-dots li {
    background-color: #C8C8C8;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
}

.slider-buttons .slick-new-dots li.slick-active {
    background-color: #FF4800;
}

.slider-buttons .slick-new-dots li button {
    display: none;
}


.slide-button {
    transition: top 2s calc(var(--animation-delay) * 4), opacity 2.5s;
}

.slick-active .slide-text-head div,
.slick-active .slide-text-body,
.slick-active .slide-button {
    top: 0;
    opacity: 1;
}


.slide-background-mob {
    display: none;
}

.slide-text-head {
    font-size: 36px;
    font-weight: 500;
    color: white;
}

.slide-button {
    display: inline-block;
    margin-top: 20px;
}

.slide-button button {
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: #FF4800;
    border: 0;
    border-radius: 5px;
    height: 50px;
    padding: 0 20px;
    cursor: pointer;
}

@media (max-width: 780px) {
    .partner-table {
        grid-template-columns: repeat(1, 1fr);
    }
}