.main-slogan {
	padding: 5px 0px 5px 16px;
	width: 100%;
	height: 100px;
	background: linear-gradient(180deg, #E2E7ED 0%, #E0E5EB 44.26%, #DEE1E8 100%);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.main-slogan-left-img {
	width: 90px;
	height: 90px;
	overflow: hidden;
}
.main-slogan-left-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.main-slogan p {
	font-family: 'Good Vibes Pro';
	font-size: 60px;
	line-height: 100%;
	color: #E22134;
	text-align: center;
}
.main-slogan-right-img {
	width: 215px;
	height: 100px;
}
.main-slogan-right-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 1600px) {
	.main-slogan p {
		font-size: 48px;
	}
}
@media screen and (max-width: 1400px) {
	.main-slogan p {
		font-size: 40px;
	}
}
@media screen and (max-width: 1250px) {
	.main-slogan p {
		font-size: 32px;
	}
}
@media screen and (max-width: 767px) {
	.main-slogan {
		padding: 5px 16px;
	}
	.main-slogan-left-img {
		width: 64px;
		height: 64px;
	}
	.main-slogan-right-img {
		display: none;
	}
}
@media screen and (max-width: 650px) {
	.main-slogan p {
		font-size: 24px;
	}
}
@media screen and (max-width: 500px) {
	.main-slogan {
		padding: 8px 16px;
	}
	.main-slogan p {
		font-size: 18px;
	}
}



.main-slider {
	width: 100%;
	max-width: 1608px;
	max-height: 520px;
	overflow: hidden;
}
.main-slider-wrapper {
	width: 100%;
	height: 100%;
	background-color: #eee;
}
.main-slider-items {
	width: 100%;
	height: 100%;
}
.main-slider-item {
	position: relative;
	width: 100%;
	height: 520px;
	flex: 0 0 100%;
	max-width: 1608px;
}
.main-slider-item-text {
	position: absolute;
	top: 0;
	left: 0;
	padding: 100px 150px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.main-slider-item-text p {
	font-size: 22px;
	font-weight: 400;
	line-height: 130%;
	color: #4E5052;
}
.main-slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 900px) {
	.main-slider, .main-slider-wrapper, .main-slider-items, .main-slider-item {
		max-height: 400px;
	}
}
@media screen and (max-width: 767px) {
	.main-slider-item-text {
		padding: 32px 16px;
	}
	.main-slider .itc-slider .itc-slider-btn {
		display: none !important;
	}
	.main-slider-item-text p {
		font-size: 16px;
	}
}



.about-centre {
	width: 100%;
}
.about-row {
	padding: 16px 24px;
	width: 100%;
	display: flex;
	gap: 24px;
}
div.about-row:nth-of-type(odd):nth-of-type(2n+1) {
	background-color: #F0FBFF;
}
.about-row p {
	font-size: 16px;
	line-height: 150%;
}
.about-row p:first-child {
	min-width: 233px;
	max-width: 233px;
	text-align: left;
}
.about-row p:last-child {
	text-align: left;
}



/* ---------------------------------------- */

.main-team__container {
	padding: 0px 40px;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.main-team__card p:first-child {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	color: #4E5052;
}
.main-team__card p:last-child {
	font-size: 18px;
	font-weight: 700;
	line-height: 150%;
	color: #000;
}

@media screen and (max-width: 1200px) {
	.main-team__container {
		padding: 0px 16px;
	}
}
@media screen and (max-width: 820px) {
	.main-team__container {
		justify-content: center;
	}
	.main-team__card p {
		text-align: center;
	}
}
@media screen and (max-width: 500px) {
	.main-team__container {
		gap: 16px;
	}
}



/* ---------------------------------------- */

.news, .photos {
	margin-top: 160px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.news h2 {
	width: 100%;
	text-align: center;
}
.news .news-cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}
.news .news-cards .news-card {
	flex: 1 1 1fr;
}
.news-card {
	display: flex;
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0px 4px 15px 0px rgba(0, 66, 127, 0.07);
	overflow: hidden;
	cursor: pointer;
}
.news-card:hover > .news-card__img img {
	transform: scale(1.1);
}
.news-card__img {
	width: 100%;
	max-width: 252.5px;
	height: auto;
	overflow: hidden;
}
.news-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}
.news-card__info {
	padding: 24px;
	width: 100%;
	max-width: 251.5px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.news-card__text {
	width: 204px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.news-card__text span {
	font-size: 14px;
	line-height: 140%;
	color: #4E5052;
}
.news-card__text p {
	height: 54px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 18px;
	line-height: 150%;
	color: #4E5052;
}
.news-card:hover .news-card__text p {
	color: #17BAFF !important;
}
.news-card__info button {
	padding: 2px 0px;
	max-width: 77px;
	border: none;
	outline: none;
	background: none;
	border-bottom: 1px solid #1B9ED6;
	font-size: 16px;
	font-weight: 700;
	line-height: 100%;
	color: #1B9ED6;
	text-align: left;
	cursor: pointer;
}
.news-card:hover > .news-card__info button {
	color: #17BAFF;
}

@media screen and (max-width: 1200px) {
	.news .news-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 1023px) {
	.news, .photos {
		margin-top: 100px;
	}
	.news .news-cards .news-card, .news-card__text {
		width: 100%;
	}
	.news-card__info {
		max-width: 100%;
	}
}
@media screen and (max-width: 500px) {
	.news, .photos {
		margin-top: 80px;
	}
	.news-card__text {
		width: 204px;
	}
}
@media screen and (max-width: 430px) {
	.news-card__text {
		width: 140px;
	}
}



.more-news {
	position: relative;
	padding: 18px 32px;
	background: #1B9ED6;
	border-radius: 60px;
	font-size: 16px;
	font-weight: 700;
	line-height: 100%;
	color: #FFFFFF;
}
.more-news:hover {
	background: #17BAFF;
}



/* --------------------------------- */

.photo-slider {
	width: 100%;
	margin: 0 auto;
}
.photo-slides {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.photo-slides .slick-list.draggable {
	margin: 0px 160px;
}
.photo-slides .slick-list.draggable .slick-track {
	display: flex;
	align-items: center;
	gap: 24px;
}
.photo-slides .slick-prev,
.photo-slides .slick-next {
	position: absolute;
	top: 50%;
	z-index: 20;
	width: 78px;
	height: 78px;
}
.photo-slides .slick-prev:hover path,
.photo-slides .slick-next:hover path {
	fill: #17BAFF;
}
.photo-slides .slick-prev {
	left: 48px;
	transform: translateY(-50%) rotate(180deg);
}
.photo-slides .slick-next {
	right: 48px;
	transform: translateY(-50%);
}

@media screen and (max-width: 1600px) {
	.photo-slides .slick-list.draggable {
		margin: 0px 80px;
	}
	.photo-slides .slick-prev {
		left: 0;
	}
	.photo-slides .slick-next {
		right: 0;
	}
}
@media screen and (max-width: 1280px) {
	.photo-slide .photo-card__img {
		max-height: 153px;
	}
}
@media screen and (max-width: 1024px) {
	.photo-slides .slick-list.draggable {
		margin: 0;
	}
	.photo-slides .slick-prev,
	.photo-slides .slick-next {
		display: none !important;
	}
}