
.partners-box__header {
	margin: 0 0 20px !important; 
}

.partners-box__sliders {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.partners-box__slide-button {
    height: 25px;
    width: 25px;
    padding: 0;
    text-align: center;
    font-size: 0;
    outline: none;
    border: none;
    border-radius: 50%;
    color: white;
    background-color: #4ccf4c;
    cursor: pointer;
    -webkit-transition: all 0.15s ease 0s;
    -o-transition: all 0.15s ease 0s;
    transition: all 0.15s ease 0s;
	display: none !important;
}

.partners-box__slide-left::before {
    # content: '←';
    font-size: 25px;
    line-height: 50%;
}

.partners-box__slide-right::before {
    # content: '→';
    font-size: 25px;
    line-height: 50%;
}

.partners__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-between;
}

.image__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	margin-bottom: 25px;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 13px;
	cursor: pointer;
	transition: .4s;
}

.partners__image {
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

.btn-partners {
    background-color: #F76805;
    text-align: center;
    border-radius: 5px;
    padding: 14px 40px 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.btn-partners__text {
    text-shadow: none;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-decoration: none;
    color: white;
}

/* Large desktops and laptops */
@media (min-width: 1200px) {
    .image__box {
        height: 70px;
        width: 170px;
		margin-right: 20px;
    }

	.image__box:nth-child(5n) {
		margin-right: 0;
	}
	
    .partners__image {
        width: 100%;
    }
}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .image__box {
        height: 60px;
        width: 140px;
		margin-right: 20px;
    }

	.image__box:nth-child(5n) {
		margin-right: 0;
	}
	
    .partners__image {
        width: 100%;
    }
}

/* Portrait tablets and small desktops */
@media (max-width: 991px) {
	.partners-box__header {
		margin: 0 20px 20px !important;
	}
	
	.partners-box__main {
		margin: 0 20px;
	}
	
    .image__box {
		max-width: calc(28% - 20px);
        height: 70px !important;
        width: 170px !important;
    }

	.image__box:nth-child(3n) {
		margin-right: 0;
	}
	
    .partners__image {
        width: 100%;
    }	
}


/* Используется, если НЕ тачскрин */
@media (hover: hover) {
    .partners__image {
		opacity: 0.7;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.4s;
    }

    .partners__image:hover {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
		opacity: 1;
    }

    .image__box:hover {
		box-shadow: 0 4px 15px 4px rgb(0 0 0 / 10%);
    }

    .btn-partners:hover {
        background-color: #e66000;
    }
	
    .btn-partners__text:hover {
        color: white;
    }
	
    .partners-box__slide-button:hover {
        background-color: #4bb44b;
    }
}