.testimonials_group {
	padding: 0px;
	width: 100%;
}

.testimonials {
	display: flex;
	flex-direction: column;
	padding: 20px 0px;
	overflow: hidden;
}
.testimonials-title {
	font-family: "Baloo 2", sans-serif;
	font-size: 32px;
	line-height: 36px;
  	font-weight: 400;
	color: #0158b6;
	margin-bottom: 32px;
	text-align: center;
}

.slick-dots {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
	display: inline-block;
    padding: 0;
    margin: 8px;
    list-style: none;
    text-align: center;
    background-color: #EAEBEC;
    border-radius: 14px;
    width: 20px;
    height: 20px;
}
.slick-dots li.slick-active {
    background-color: #F0703D;
}
.slick-dots li button {
	display: none;
}
.item-box {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0px auto;
	padding: 15px 0px 10px;
}
.left-box {
	width: 50%;
	padding-right: 20px;
}
.right-box {
	width: 50%;
}
.item-box .title {
	font-family: "Baloo 2", sans-serif;
	font-size: 30px;
	line-height: 39px;
  	font-weight: normal; 
	color: #000000;
	margin-bottom: 16px;
	min-height: 80px;
}
.item-box .name {
	font-family: "Baloo 2", sans-serif;
	font-size: 20px;
	line-height: 26px;
  	font-weight: bold; 
	color: #000000;
	margin-bottom: 0px;
}
.item-box p {
	font-family: "Baloo 2", sans-serif;
	font-size: 20px;
	line-height: 26px;
  	font-weight: normal; 
	color: #000000;
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: flex;
	align-items: stretch;
    margin-left: auto;
    margin-right: auto;
	padding-bottom: 50px;
}
.arrows {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
} 
.arrow-left, .arrow-right {
	height: 80px;
    width: 80px;
    background-repeat: no-repeat;
    background-size: 24px;
    background-color: #F0703D;
    border-radius: 50px;
    background-position: center;
    border: 8px solid #EAEBEC;
    margin: 5px;
}
.arrow-left:hover, .arrow-right:hover {
    background-size: 27px;
    background-color: #EE571B;
}
.arrow-left {
    background-image: url(images/icon-arrow-left.svg);
}
.arrow-right {
    background-image: url(images/icon-arrow-right.svg);
}

@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 1080px) {

}
@media only screen and (max-width: 768px) {
	.testimonials {
		display: flex;
		flex-direction: column;
		padding: 0px;
	}
	.testimonials-title {
		font-size: 27px;
		line-height: 29px;
	}
	.item-box {
		flex-direction: column;
		justify-content: flex-start;
	}
	.arrows {
		display: none !important;
	} 
	.left-box {
		width: 100%;
		padding-right: 0px;
	}
	.right-box {
		width: 100%;
	}
	.item-box .title {
		font-size: 30px;
		line-height: 39px;
		min-height: unset;
	}
	.item-box p {
		font-size: 20px;
		line-height: 26px;
	}
}


