:root {
    --swiper-navigation-size: 16px;
}
.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
    aspect-ratio: 1 / 1;
    max-width: 180px;
    margin: auto;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
}


.swiper-button-next, .swiper-button-prev {
    color: #fff;
	background: #000;
    padding: 16px 16px;
    border-radius: 2px;
}
.reference-slide h3 {
	margin-top: 20px;
    font-size: 26px;
	color: #4e6a4b;
}

.swiper-button {
    display: inline-flex;
    font-family: Inter, sans-serif;
    font-size: 16px;
    padding: 10px 15px 10px 16px;
    border-radius: 8px;
    background-color: var(--accent);
    color: var(--global-color-9);
    text-decoration: none;
}
.swiper-button:hover {
    background-color: #222222;
    color: var(--global-color-9);
	text-decoration: none;
}
.swiper-slide.reference-slide {
	text-align: initial;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
	align-items: center;
}
.reference-slide .reference-text {
    flex: 3;
}
.reference-slide .reference-text p{
	max-width: 850px;
}
.reference-slide .reference-img {
    flex: 1;
}
.reference-slide .reference-logo {
    width: 200px;
    height: auto;
}
@media only screen and (min-width: 801px) {
.swiper-slide.reference-slide.reverse-row {
    flex-direction: row-reverse;
}
}
@media only screen and (max-width: 800px) {
.swiper-button-next, .swiper-button-prev {
    display: none;
}
.swiper-slide.reference-slide {
	flex-direction: column-reverse;
}
}