/* Новая страница врача */

.doc__hero {
	padding-top: 180px;
}

.doc__hero-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding: 20px;
	margin-top: 20px;
	background-color: #FAFAFA;
	border-radius: 10px;
}

.doc__hero-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.doc__hero-info-span {
	font-size: 20px;
	line-height: 130%;
	font-weight: 500;
	color: #4FA3B3;
}

.h1 {
	font-size: 48px;
	font-weight: 500;
	line-height: 110%;
}

.doc__hero-info-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.doc__hero-info-item {
	display: flex; 
	flex-direction: column;
	gap: 10px;
}

.doc__hero-info-item-span {
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
}

.doc__hero-info-item-text {
	font-size: 18px;
	font-weight: 300;
	line-height: 130%;
	opacity: .7;
}

.doc__hero-img {
	height: 100%;
	width: 100%;
	max-height: 600px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.doc__diploma-content {
	margin-top: 40px;
}

.diploma-slide-img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.swiper-button-prev.diploma-button-prev,
.swiper-button-next.diploma-button-next {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 100px;
}
.swiper-button-prev.diploma-button-prev::after,
.swiper-button-next.diploma-button-next::after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.84 0L14.28 6.75L9.84 13.56H5.79L9.87 6.75L5.79 0H9.84ZM10.74 5.13V8.4H0V5.13H10.74Z' fill='%234FA3B3'/%3e%3c/svg%3e "); 
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
}
.swiper-button-prev.diploma-button-prev::after {
	transform: rotatez(180deg);
}

.doc__more-content {
	margin-top: 40px;
}

.doc__more-slide {
	display: flex;
	flex-direction: column;
	color: inherit;
}

.doc__more-img {
	height: 470px;
	width: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 10px 10px 0 0;
}

.doc__more-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	background-color: #FAFAFA;
	border-radius: 0 0 10px 10px;
}

.doc__more-info-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 130%;
}

.doc__more-info-link {
	color: #4FA3B3;
}
.doc__more-slide:hover .doc__more-info-link {
	text-decoration: underline;
}

@media screen and (max-width: 1100px) {
	.doc__hero-content {
		grid-template-columns: 1fr;
	}
	
	.h1 {
		font-size: 42px;
	}
	
	.doc__hero-info-item-span {
		font-size: 20px;
	}
	
	.doc__hero-info-item-text {
		font-size: 16px;
	}
}

@media screen and (max-width: 700px) {
	.doc__hero {
		padding-top: 100px;
	}
	
	.h1 {
        font-size: 38px;
    }
	
	.diploma-slide-img {
		height: 250px;
	}
	
	.doc__more-img {
		height: 350px;
	}
	
	.doc__more-info {
		padding: 10px;
	}
}

@media screen and (max-width: 600px) {
	.h1 {
        font-size: 32px;
    }
}