.btn-reset {
	border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}

.section-mb60 {
	margin-bottom: 60px;
}

@media (max-width: 767px) {
	.section-mb60 {
		margin-bottom: 40px;
	}
}

/*  */

.tab-buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
	.tab-buttons {
		grid-template-columns: repeat(1, 1fr);
		row-gap: 10px;
	}
}

.tab-btn {
	background-color: #F9F9F9;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 140%;
	font-weight: 700;
	color: #333333;
	position: relative;
	width: 100%;
	height: 60px;
}

@media (max-width: 767px) {
	.tab-btn {
		height: 52px;
		font-size: 16px;
	}
}

.tab-btn::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	background: transparent;
}

.tab-btn.active::after {
	background: linear-gradient(0deg, var(--color-cyan-44, #23BABF), var(--color-cyan-44, #23BABF)),
	linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

.info .tabs {
	margin-bottom: 0;
}

.info .tab-content {
	padding-top: 0 !important;
}

.info-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 60px;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.info-top {
		margin-top: 40px;
		margin-bottom: 20px;
		flex-direction: column;
		align-items: flex-start;
		row-gap: 20px;
	}
}

.info-top__title {
	margin-bottom: 6px !important;
}

.info-top__text {
	/* max-width: 520px; */
	font-weight: 700 !important;
}

.info-top__button {
	flex-shrink: 0;
}

.info-top__descr {
	background-color: #F9F9F9;
	padding: 30px 40px;
	position: relative;
}

@media (max-width: 767px) {
	.info-top__descr {
		padding: 20px 25px;
	}
}

.info-top__descr::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(0deg, var(--color-cyan-44, #23BABF), var(--color-cyan-44, #23BABF)),
	linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.subtitle-dot {
	position: relative;
	font-size: 15px;
	line-height: 145%;
	color: #333333;
	position: relative;
	padding-left: 20px;
	width: fit-content;
	margin-bottom: 5px;
}

.subtitle-dot::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(0deg, var(--color-cyan-44, #23BABF), var(--color-cyan-44, #23BABF)),
linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.list-services {

}

.list-services__subtitle {
	margin: 0 auto;
	margin-bottom: 5px;
}

.list-services__top {
	text-align: center;
	margin-bottom: 40px;
}

.list-services__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

@media (max-width: 767px) {
	.list-services__items {
		grid-template-columns: repeat(1, 1fr);
		row-gap: 20px;
	}
}

.list-services__item {
	background-color: #F9F9F9;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	border-radius: 5px;
	box-shadow: none;
	transition: box-shadow 0.2s ease-in-out;
}

.list-services__item:hover {
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.list-services__item-icon {
	width: 75px;
	height: 75px;
	border-radius: 5px;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.list-services__item-icon {
		width: 40px;
		height: 40px;
	}
}

.list-services__item-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-services__item-name {
	font-size: 20px;
	line-height: 140%;
	font-weight: 700;
	color: rgb(51, 51, 51);
	transition: color 0.2s ease-in-out;
}

.list-services__item:hover .list-services__item-name {
	color: rgb(35, 186, 191);
}

.working__top {
	margin-bottom: 25px;
}

@media (max-width: 767px) {
	.working__top {
		margin-bottom: 15px;
	}
}

.working__items .swiper-slide {
	height: auto;
}

.working__items .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

@media (max-width: 767px) {
	.working__items .swiper-wrapper {
		display: flex;
		gap: 0px;
	}
}

.working__item {
	background-color: #F9F9F9;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	border-radius: 5px;
	height: 100%;
}

@media (max-width: 767px) {
	.working__item {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 5px;
	}
}

.working__item-icon {
	width: 44px;
	height: 44px;
}

.working__item-icon img {
	width: auto;
	height: 100%;
}

.working__item-name {
	font-size: 16px;
	font-weight: 700;
    line-height: 145%;
	color: rgb(35, 186, 191);
	margin-bottom: 3px;
}

.working__items .working-swiper__bottom {
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	margin-top: 10px;
	display: none;
}

@media (max-width: 767px) {
	.working__items .working-swiper__bottom {
		display: flex;
	}
}

.working__items .working-swiper__swiper-button-prev, .working__items .working-swiper__swiper-button-next {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border-radius: 50%;
	position: static;
	margin-top: 0 !important;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.working__items .working-swiper__swiper-button-prev {
	background-image: url(../../../../images/services-new/icons/arrow-left.png);
}

.working__items .working-swiper__swiper-button-next {
	background-image: url(../../../../images/services-new/icons/arrow-right.png);
}

.working__items .working-swiper__swiper-button-prev::after, .working__items .working-swiper__swiper-button-next::after {
	display: none;
}

.cta-consultation__content {
	max-width: 685px;
}


/* div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
} */
