:root {
    --blue: #243580;
    --blue-alt: #3a5e99;
    --green: #5093a2;
    --pink: #f28d85;
    --pink-alt: #e3483c;
}
.blue{
	color: var(--blue);
}
.video-center{
	text-align: center;
	margin: 25px auto;
}
/* Contacts*/
.contact{
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 25px;
}
.contact__item{
	display: flex;
	gap: 15px;
}
.contact__item-paragraph{
	margin-bottom: 0px;
}
.about-guarantees{
	margin-bottom: 15px;
}
.about-guarantees__item{
	display: grid;
	align-items: center;
	gap: 30px;
	padding-bottom: 25px;
	border-bottom: 1px solid #ebebeb;
}
.about-guarantees__item:not(:last-child) {
	margin-bottom: 25px;
}
.about-guarantees__item p{
	margin-bottom: 0px;
}
.about-guarantees__item figure{
	text-align: center;
}
#content .about-guarantees__item img{
	width: 25%;
	border-radius: 0;
}
.link_wrap:hover{
	cursor: pointer;
}
.link_wrap:hover a{
	text-decoration: none;
}
/*Program card*/
.program_card-details {
	position: relative;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.program_card-details__items {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 15px;
}
.program_card-details__text {
	margin-bottom: 0 !important;
}
.program_card-details__item{
	position: relative;
	display: block;
	padding: 20px 39px 35px;
	border: 1px solid transparent;
	border-radius: 20px;
	box-shadow: 0 0 7px #ccc;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: unset;
}
.program_card-details__item:hover {
	border: 1px solid #76c75e;
}
.program_card-details__item:hover .program_card-details__price {
	color: #76c75e;
}
.program_card-details__item:hover .program_card-details__btn {
	background: #76c75e;
}
.program_card-details__img {
	display: flex;
	max-width: 100%;
	max-height: 120px;
	height: auto;
	margin-bottom: 20px;
	justify-content: center;
	text-align: center;
}

.program_card-details__img img {
	display: inline-block;
	max-height: 100%;

}
.program_card-details__name {
	display: block;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 700;
	color: #000;
}
.program_card-details__text {
	display: block;
	padding-bottom: 65px;
	margin-bottom: 5px;
	height: 45px;
	text-align: center;
	font-size: 14px;
	line-height: 16px;
	overflow: hidden;
}
.program_card-details__price {
	position: relative;
	display: block;
	margin-bottom: 15px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #243580;
}

.program_card-details__btn {
	display: block;
	width: 100%;
	background: #243580;
	padding: 5px 0;
	border-radius: 15px;
	text-align: center;
	font-size: 15px;
	text-transform: uppercase;
}
.program_card-details__btn a {
	color: #fff;
	text-decoration: none;
}
.program_card-details__more {
	position: relative; 
	display: inline-block;
	padding-right: 25px;
	font-size: 16px;
	color: #ff758f;
	font-weight: 400;
	text-decoration: none;
}
.program_card-details__more::after {
	content: "→";
	position: absolute;
	right: 3px;
	top: -1px;
}
.program_card-details__more:hover::after {
	right: 0;
}
@media screen and (min-width: 768px) {
	.program_card-details__items {
		flex-direction: row;
	}
	.program_card-details__item{
	width: 23%;
	}
	.about-guarantees__item{
		grid-template-columns: 100px 1fr;
		gap: 0px;
	}
	#content .about-guarantees__item img{
		width: 50%;
	}
}
.reviews.carousel{
	display: flex;
	flex-direction: column;
}
.reviews .slider-more {
	align-self: center;
}
@media screen and (max-width: 768px) {
	.reviews .title{
		margin-bottom: 15px;
	}
	.reviews .tns-controls{
		position: relative;
		width: fit-content;
		margin: 0 auto;
		right: 0;
		margin-bottom: 15px;
	}
}