/* GLOBAL STYLES */

.section-title {
	font-size: 48px;
	line-height: 58px;
	text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
	.section-title {
		font-size: 40px;
	}
}

@media screen and (max-width: 768px) {
	.section-title {
		font-size: 32px;
		line-height: 42px;
	}
}

@media screen and (max-width: 1024px) {
	.container {
		margin-left: 20px;
		margin-right: 20px;
	}
}

@media screen and (max-width: 768px) {
	.container {
		width: initial;
		margin-left: 10px;
		margin-right: 10px;
	}
}

/* end___GLOBAL STYLES */

.s_breadcrumbs {
	padding-top: 31px;
}

.breadcrumb {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.breadcrumb * {
	font-size: 16px;
	font-family: "Gilroy-Medium";
}

.marker-pagination {
	background-image: url(../images/marker-pagination.svg);
	width: 7px;
	height: 7px;
	border-radius: 60px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* HERO */

.about-hero {
	position: relative;
	padding-top: 283px;
	padding-bottom: 283px;
}

.about-hero .container {
	max-width: 100%;
	width: 100%;
	padding: 0 70px;
}
@media screen and (max-width: 768px) {
	.about-hero .container {
		padding: 0 30px;
	}
}

.about-hero__title {
	font-size: 60px;
	font-weight: 500;
	line-height: 80px;
	text-transform: uppercase;
	color: #ffffff;
}

@media screen and (max-width: 1275px) {
	.about-hero__title {
		font-size: 48px;
	}
}

@media screen and (max-width: 768px) {
	.about-hero__title {
		font-size: 32px;
		line-height: 42px;
	}
}

.about-hero__desc {
	max-width: 685px;
	width: 100%;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	color: #ffffff;
}

@media screen and (max-width: 768px) {
	.about-hero__desc {
		max-width: 319px;
		font-size: 16px;
		line-height: 19px;
	}
}

.about-hero__btn {
	cursor: pointer;
}

.about-hero__background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: -1;
}

.about-hero__background::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}

.about-hero__background img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: top;
}

/* end___HERO */

/* INFO */

.about-info {
	padding-top: 100px;
}

@media screen and (max-width: 768px) {
	.about-info {
		padding-top: 60px;
	}
}

.about-info__body {
	display: flex;
	column-gap: 27px;
	row-gap: 30px;
}

@media screen and (max-width: 1024px) {
	.about-info__body {
		flex-direction: column;
	}
}

@media screen and (max-width: 768px) {
	.about-info__body {
		row-gap: 20px;
	}
}

.about-info__img img {
	max-width: 635px;
}
@media screen and (max-width: 1024px) {
	.about-info__img img {
		max-width: 100%;
		width: 100%;
	}
}

.about-info__desc {
	margin-top: 30px;
	font-size: 18px;
	line-height: 28px;
}

@media screen and (max-width: 768px) {
	.about-info__desc {
		margin-top: 20px;
		font-size: 16px;
	}
}

/* end___INFO */

/* HISTORY */

.about-history {
	padding-top: 100px;
}

@media screen and (max-width: 768px) {
	.about-history {
		padding-top: 60px;
	}
}

.about-history__title {
	text-align: center;
}

.about-history__desc {
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.about-history__desc {
		margin-top: 20px;
	}
}

.about-history__desc > * {
	font-size: 18px;
	line-height: 28px;
}

.about-history__desc > *:not(:last-child) {
	margin-bottom: 25px;
}

/* Timeline */

.about-history__timeline {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 80px;
	padding-top: 128px;
	padding-right: 0px;
	padding-bottom: 128px;
	padding-left: 32px;
	overflow-x: hidden;
}

@media (max-width: 1024px) {
	.about-history__timeline {
		margin-top: 50px;
	}
}

@media (max-width: 768px) {
	.about-history__timeline {
		flex-direction: column;
		gap: 25px;
		margin-top: 40px;
		padding: 0px;
		overflow: initial;
	}
}

.about-history__timeline:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 32px;
	right: 0px;
	height: 3px;
	background: linear-gradient(to right, #006a7a, #e0f3f5);
	transform: translateY(-50%);
}

@media (max-width: 768px) {
	.about-history__timeline:before {
		width: 3px;
		height: 100%;
		top: 0px;
		left: 8px;
		transform: none;
	}
}

.about-history-timeline__item {
	position: relative;
	min-width: 300px;
	cursor: pointer;
}

@media (max-width: 768px) {
	.about-history-timeline__item {
		min-width: auto;
		padding-left: 23px;
		cursor: default;
	}
}

/* Базова позиція */
.about-history-timeline__item:before,
.about-history-timeline__item:after {
	position: absolute;
	/* left: 50%; */
	transform: translateX(-50%);
}

@media (max-width: 768px) {
	.about-history-timeline__item:before {
		top: 0 !important;
		bottom: auto !important;
		left: 64px;
		transform: translate(-50%, -50%);
	}
}

/* НЕПАРНІ — рік зверху */
.about-history-timeline__item:nth-child(odd):before {
	content: attr(data-year);
	top: -50px;
	font-size: 32px;
	font-weight: 500;
	line-height: 38px;
	color: #382723;
}

@media (max-width: 768px) {
	.about-history-timeline__item:nth-child(odd):before {
		color: #0f697d;
	}
}

/* ПАРНІ — рік знизу */
.about-history-timeline__item:nth-child(even):before {
	content: attr(data-year);
	top: auto;
	bottom: -50px;
	font-size: 32px;
	font-weight: 500;
	line-height: 38px;
	color: #382723;
}

@media (max-width: 768px) {
	.about-history-timeline__item:nth-child(even):before {
		color: #0f697d;
	}
}

.about-history-timeline__item:hover:before {
	color: #0f697d;
}

/* Крапка */
.about-history-timeline__item:after {
	content: "";
	top: 50%;
	left: 0px;
	width: 10px;
	height: 10px;
	background: #007a90;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
	.about-history-timeline__item:after {
		top: 0px;
		left: 9px;
	}
}

/* Контент прихований на desktop */
.about-history-timeline__content {
	position: absolute;
	max-width: 300px;
	width: 100%;
	left: 60%;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 16px;
	line-height: 19px;
	color: #ffffff;
	background: #d7c2b5;
	opacity: 0;
	visibility: hidden;
	transition: 0.25s ease;
	transform: translateX(-50%) translateY(10px);
	white-space: normal;
	z-index: 5;
}

@media (max-width: 768px) {

	/* Контент завжди показаний */
	.about-history-timeline__content {
		position: static;
		max-width: 100%;
		width: initial;
		margin-top: 25px;
		margin-left: 10px;
		opacity: 1;
		visibility: visible;
		transform: none ! important;
	}
}

.about-history-timeline__item:last-of-type .about-history-timeline__content {
	left: initial;
	right: 15%;
}

/* НЕПАРНІ — контент зверху */
.about-history-timeline__item:nth-child(odd) .about-history-timeline__content {
	bottom: calc(50% + 55px);
}

/* ПАРНІ — контент знизу */
.about-history-timeline__item:nth-child(even) .about-history-timeline__content {
	top: calc(50% + 55px);
}

/* Показ при hover */
.about-history-timeline__item:hover .about-history-timeline__content {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/**/

.s_timeline {
  padding: 100px 0 130px;
}
@media screen and (max-width: 768px) {
  .s_timeline {
	padding: 40px 0 60px;
  }
}

.s_timeline_heading h2 {
  text-align: center;
  font-size: 48px;
  line-height: 46px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.s_timeline_heading {
  text-align: center;
}

.s_timeline_text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  position: absolute;
  width: 309px;
  background-color: #CFBDB2;
  color: white;
  border-radius: 10px 10px 10px 0;
  z-index: -9;
  transition: all 0.3s;
  opacity: 0;
  left: 100%;
}
.s_timeline_text p {
  display: inline-flex;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: left;
}

.s_timeline_text.border-bottom {
  border-radius: 0px 10px 10px 10px;
}

.s_timeline_item:hover .s_timeline_text {
  display: flex;
  opacity: 1;
  transition: all 0.3s;
  z-index: 9;
}

.s_timeline_item:last-child .s_timeline_text {
  left: -309px;
  border-radius: 10px 0 10px 10px;
}

.s_timeline_item:nth-last-child(2) .s_timeline_text {
  left: -309px;
  border-radius: 10px 10px 0px 10px;
}

@media screen and (min-width: 1025px) {
	.s_timeline_flex {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
		position: relative;
		gap: 10px;
	}
}
@media screen and (max-width: 1024px) {
	.s_timeline_flex {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
		position: relative;
		gap: 10px;
	}
}

/* @media screen and (min-width: 1025px) {
	.s_timeline_flex:before {
		content: "";
		position: absolute;
		bottom: 0;
		left: -100%;
		width: 230%;
		height: 5px;
		background: linear-gradient(90deg, #00697E 0%, rgba(0, 105, 126, 0) 92.81%);
	}
}
@media screen and (max-width: 1024px) {
	.s_timeline_flex:before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 6%;
		width: 100%;
		height: 5px;
		background: linear-gradient(90deg, #00697E 0%, rgba(0, 105, 126, 0) 92.81%);
	}
} */

.s_timeline_flex:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 6%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00697E 0%, rgba(0, 105, 126, 0) 92.81%);
}

.h3year {
  color: #382723;
  font-family: "Gilroy-Medium";
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 20px;
  position: relative;
}
.h3year::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 60px;
  background-color: #0f697d;
}

#timeline-1 .h3year::before {
  bottom: -2px;
}

.s_timeline_item {
  cursor: pointer;
  position: relative;
}
.s_timeline_item:last-child {
  left: -20px;
}

.s_timeline_item.active_time-zone .s_timeline_text {
  display: flex;
  opacity: 1;
  transition: all 0.3s;
  z-index: 9;
}
.s_timeline_item.active_time-zone .h3year::before {
  transform: scale(2.02, 2.02);
}

.s_timeline_item:nth-child(2n) {
  bottom: -61px;
}
.s_timeline_item:nth-child(2n) .h3year:before {
  top: -20px;
}

@media screen and (max-width: 768px) {
  .s_timeline_item:last-child .s_timeline_text {
    left: auto;
    border-radius: 0px 10px 10px 10px;
  }
  .s_timeline_item:nth-last-child(2) .s_timeline_text {
    left: auto;
    border-radius: 0px 10px 10px 10px;
  }
  .s_timeline_item.active_time-zone .s_timeline_text {
    margin-top: 10px;
  }
  .s_timeline_flex:before {
    width: 5px;
    height: 100%;
    background: url(../images/gradient-haigent.svg);
    left: 4px;
    bottom: -15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
  }
  .s_timeline_flex {
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
  }
  .s_timeline_flex {
    align-items: flex-start;
    padding-left: 29px;
  }
  .s_timeline_item {
	width: 100%;
  }

  .s_timeline_item:nth-child(2n) {
    bottom: auto;
  }
  .s_timeline_item:last-child {
    left: auto;
  }
  .s_timeline_item:nth-child(2n),
  .h3year {
    padding-bottom: 0;
  }
  .s_timeline_item:nth-child(2n)::before,
  .h3year::before {
    left: -27px;
    top: calc(50% - 5px);
  }
  .s_timeline_item:nth-child(2n) .h3year:before {
    left: -27px;
    top: calc(50% - 5px);
  }
  .h3year {
    font-size: 32px;
    color: #0F697D;
  }
  .s_timeline_info_wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  .s_timeline_text {
    top: auto !important;
    bottom: auto !important;
    left: auto;
    position: relative;
    opacity: 1;
    border-radius: 0 10px 10px 10px;
  }
  .s_timeline_text {
    gap: 20px;
	width: 100%;
  }
  .s_timeline_text p {
    padding: 25px 20px;
  }
  
}

/**/

/* end___Timeline */

/* end___HISTORY */

/* PROGRESS */

@media screen and (max-width: 768px) {
	.about-progress {
		padding-top: 60px;
	}
}

.about-progress__title {
	text-align: center;
}

.about-progress__text {
	margin-top: 30px;
}

.about-progress__text ul {
	list-style: none;  
	padding-left: 0;
	margin: 0;
}

.about-progress__text ul li {
	position: relative;
	padding-left: 40px;
	font-size: 18px;
	line-height: 28px;
}

.about-progress__text ul li:not(:last-child) {
	margin-bottom: 20px;
}

.about-progress__text ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 12px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 16.3 12.0249' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16.300049' height='12.024902' fill='none' customFrame='%23000000'><path id='Vector' d='M5.7 12.025L0 6.325L1.425 4.9L5.7 9.175L14.875 0L16.3 1.425L5.7 12.025Z' fill='rgb(15,105,125)' fill-rule='nonzero' /></svg>");
}

/* end___PROGRESS */

/* ADVANTAGES */

.about-advantages {
	padding-top: 100px;
}

@media screen and (max-width: 768px) {
	.about-advantages {
		padding-top: 60px;
	}
}

.about-advantages__title {
	text-align: center;
}

.about-advantages__desc {
	margin-top: 30px;
	font-size: 18px;
	line-height: 28px;
}
@media screen and (max-width: 768px) {
	.about-advantages__desc {
		margin-top: 20px;
	}
}

.about-advantages__list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 30px;
	margin-top: 30px;
}
@media screen and (max-width: 768px) {
	.about-advantages__list {
		margin-top: 20px;
	}
}

.about-advantages__item {
	max-width: 413px;
	width: 100%;
}
@media screen and (max-width: 1024px) {
	.about-advantages__item {
		max-width: 315px;
	}
}
@media screen and (max-width: 576px) {
	.about-advantages__item {
		max-width: 150px;
	}
}

.about-advantages-item__title {
	position: relative;
	padding-left: 71px;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	color: #382723;
}
@media screen and (max-width: 768px) {
	.about-advantages-item__title {
		padding-left: 28px;
		font-size: 16px;
	}
}

.about-advantages-item__title::before {
	position: absolute;
	content: url("data:image/svg+xml;charset=UTF-8,<svg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='12.000000' height='12.000000' fill='none' customFrame='%23000000'><path id='Vector' d='M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z' fill='rgb(207,189,178)' fill-rule='evenodd' /></svg>");
	width: 12px;
	height: 12px;
	left: 31px;
	top: 0px;
}
@media screen and (max-width: 768px) {
	.about-advantages-item__title::before {
		left: 0px;
	}
}

.about-advantages-item__desc {
	margin-top: 30px;
	font-size: 18px;
	line-height: 28px;
}
@media screen and (max-width: 768px) {
	.about-advantages-item__desc {
		margin-top: 20px;
		font-size: 16px;
		line-height: 26px;
	}
}

/* end___ADVANTAGES */

/* METHODS */

.about-methods {
	padding-top: 100px;
}

@media screen and (max-width: 768px) {
	.about-methods {
		padding-top: 60px;
	}
}

.about-methods__title {
	text-align: center;
}

.about-methods__desc {
	margin-top: 30px;
	font-size: 18px;
	line-height: 28px;
}
@media screen and (max-width: 768px) {
	.about-methods__desc {
		margin-top: 20px;
	}
}

/* Slider */

.about-methods__slider {
  padding-top: 30px;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .about-methods__slider {
	padding-top: 40px;
  }
}

.about-methods__slider .container {
  overflow: hidden;
}
.about-methods__slider .swiper-wrapper {
  margin: 0 0 30px 0;
}
.about-methods__slider .swiper-container {
  position: relative;
  overflow: hidden;
}
.about-methods__slider .swiper-container .swiper-button-prev,
.about-methods__slider .swiper-container .swiper-button-next {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .about-methods__slider .swiper-slide {
    width: 100% ! important;
  }
}

.about-methods__slider .swiper-slide :before {
  display: none;
}
.about-methods__slider .about-methods-slide a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 15px;
  box-shadow: 1px 3px 8px 0px rgba(59, 35, 30, 0.1019607843);
}

.about-methods__slider .about-methods-slide__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.about-methods__slider .about-methods-slide__image img {
  width: 100%;
  height: 250px;
  aspect-ratio: 355/256;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-methods__slider .about-methods-slide__title {
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
}

.about-methods__slider .about-methods-slide__desc {
	font-size: 16px;
	line-height: 26px;
	color: #CFBDB2;
}

.about-methods__slider .swiper-button-prev,
.about-methods__slider .swiper-button-next {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: #00697e;
  top: calc(50%);
  z-index: 7;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-methods__slider .arrow-slide {
  display: inline-block;
  width: 20px;
  height: 14px;
  background-image: url(../images/Arrow-slider-next.svg) !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-methods__slider .swiper-button-prev .arrow-slide {
  transform: rotate(180deg);
}
.about-methods__slider .swiper-button-prev:after,
.about-methods__slider .swiper-rtl .swiper-button-next:after,
.about-methods__slider .swiper-button-next:after,
.about-methods__slider .swiper-rtl .swiper-button-prev:after {
  content: "";
  background-image: none !important;
  display: none;
}
.about-methods__slider .swiper-pagination {
  bottom: 0px;
}
@media screen and (max-width: 768px) {
  .about-methods__slider .swiper-pagination {
	bottom: 0px;
  }
}

.about-methods__slider .swiper-button-next.swiper-button-disabled,
.about-methods__slider .swiper-button-prev.swiper-button-disabled {
	background-color: #E5E5E5;
	opacity: 1;
}

.about-methods__slider .about-methods-slide__content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}

.about-methods__text {
	margin-top: 30px;
	font-size: 18px;
	line-height: 28px;
}

/* end___Slider */

/* end___METHODS */

/* STAFF */

.about-staff {
	padding-top: 100px;
	padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
	.about-staff {
		padding-bottom: 70px;
	}
}
@media screen and (max-width: 768px) {
	.about-staff {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.about-staff__title {
	text-align: center;
}

.about-staff__desc {
	margin-top: 30px;
	font-size: 18px;
	line-height: 28px;
}
@media screen and (max-width: 768px) {
	.about-staff__desc {
		margin-top: 20px;
	}
}

.about-staff__desc > *:not(:last-of-type) {
	margin-bottom: 30px;
}

.about-staff #swiperRef {
  max-width: 1400px;
  /* padding-bottom: 35px; */
}
.about-staff #swiperRef .swiper-slide {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s;
  filter: blur(7px);
}
.about-staff #swiperRef .swiper-slide .s_team_slide_wrap {
  transition: transform 0.3s ease;
}
.about-staff #swiperRef .swiper-slide .btn-style {
  display: none;
}
.about-staff #swiperRef .swiper-slide.swiper-slide-active {
  z-index: 9;
  filter: blur(0);
  position: relative;
  top: 30px;
}
.about-staff #swiperRef .swiper-slide.swiper-slide-active .s_team_slide_wrap img {
  width: 413px;
  height: 620px;
}
.about-staff #swiperRef .swiper-slide.swiper-slide-active .btn-style {
  transition: background-color 0.3s;
  margin-top: 30px;
  display: flex;
}
.about-staff #swiperRef .swiper-slide.hide-opacity {
  z-index: 1;
  opacity: 0;
}

.about-staff .swiper-slide.last-slider,
.about-staff .swiper-slide.first-slider {
  display: flex;
  transition: width 1s;
}

.about-staff .swiper-slide.first-slider {
  justify-content: flex-end;
}

.about-staff .swiper-slide.last-slider {
  justify-content: flex-start;
}

.about-staff .s_team_person.swiper-slider {
  position: relative;
  /* padding: 120px 20px 0; */
  max-width: 100%;
  margin: 0 auto;
}
.about-staff .s_team_person.swiper-slider .s_team_slide_wrap {
  flex-direction: column;
  gap: 0;
}
.about-staff .s_team_person.swiper-slider .s_team_pos {
  margin: 20px 0;
}
.about-staff .s_team_person.swiper-slider .s_team_name {
  margin: 0;
}
.about-staff .s_team_person.swiper-slider .s_team_name h3 {
  font-family: "Gilroy-Medium";
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
}
.about-staff .s_team_person.swiper-slider img {
  height: 605px;
  width: 347px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-staff .s_team_person.swiper-slider .s_team_slide {
  position: relative;
}
.about-staff .s_team_person.swiper-slider .s_team_slide::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.about-staff .s_team_person.swiper-slider h3 {
  text-align: center;
  font-size: 48px;
  line-height: 46px;
  text-transform: uppercase;
  margin-bottom: 50px;
  padding-bottom: 15px;
}

.about-staff .s_team_slide.swiper-slide-active::before {
  content: "";
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: white;
  opacity: 0.3;
}
.about-staff .s_team_slide.swiper-slide-active img {
  transition: all 0.6s;
  max-height: 570px;
}

.about-staff .swiper-container .swiper-button-next,
.about-staff .swiper-container .swiper-button-prev {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.about-staff .swiper-container .swiper-pagination-bullet {
  background-color: #ccc;
  border: 1px solid #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.about-staff .swiper {
  width: 100%;
  height: auto;
}

.about-staff .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-staff .swiper {
  	width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
}

.about-staff .append-buttons {
  text-align: center;
  margin-top: 20px;
}

.about-staff .swiper-slide {
  position: relative;
}
.about-staff .swiper-slide :before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  filter: blur(1px);
}

.about-staff .swiper-slide.swiper-slide-active :before {
  display: none;
}

.about-staff .swiper-button-next :after {
  content: "";
  background-image: url("../images/Arrow-slider-next.svg");
}

.about-staff .swiper-button-prev,
.about-staff .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px !important;
  background-color: #00697E;
  z-index: 99;
}

.about-staff .swiper-button-prev:after,
.about-staff .swiper-rtl .swiper-button-next:after,
.about-staff .swiper-button-next:after,
.about-staff .swiper-rtl .swiper-button-prev:after {
  content: "" !important;
  width: 20px;
  height: 14px;
  background-image: url("../images/Arrow-slider-next.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-staff .swiper-button-prev:after,
.about-staff .swiper-rtl .swiper-button-next:after {
  background-image: url("../images/Arrow-slider-next.svg");
  transform: rotate(180deg);
}

.about-staff .swiper-button-next.swiper-button-disabled,
.about-staff .swiper-button-prev.swiper-button-disabled {
	background-color: #E5E5E5;
	opacity: 1;
}

.about-staff .swiper-pagination {
	bottom: 0px;
}

/* end___STAFF */

/* FOOTER */

#map {
    height: 416px;
}
@media screen and (max-width: 1024) {
	#map {
		height: 296px;
	}
}

/* end___FOOTER */