.admt .section-title {
	margin: 0 auto 40px;
	text-align: center;
	width: 100%;
}
.admt .section-title .title {
	margin: 0 0 20px;
	font-weight: 900;
}
.admt .section-title .under-title {
	margin: 0 auto;
	max-width: 735px;
}
.admt .description .description-title {
	margin: 0 0 40px;
	text-align: center;
}
.admt .description .description-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
.admt .description .block .block-title {
	margin-bottom: 0.5rem;
}

@media screen and (max-width: 1200px) {
	.admt .description .description-content {
		grid-gap: 40px;
	}
}
@media screen and (max-width: 991px) {
	.admt .description .description-content {
		grid-template-columns: repeat(1, 1fr);
	}
}


.admt .format {
	margin-top: 60px;
}
.admt .format > .title {
	margin-bottom: 20px;
}

.admt .format .tab-control {
	margin-bottom: 1rem;
	border-bottom: 1px solid #333335;
}
.admt .format .tab-control button {
	cursor: pointer;
	color: var(--semiwhite);
	border-radius: calc(0.5rem - 2px);
	padding: 0.75rem 1rem;
	margin-right: 1rem;
	margin-bottom: 1rem;
	background: rgba(0,0,0,0);
	border: 0 solid #000;
	font-weight: 500;
	font-size: calc(1rem - 2px);
	transition: all 0.1s linear;
}
.admt .format .tab-control button:hover ,
.admt .format .tab-control button.active {
	background: var(--primary);
	color: var(--white);
}

.admt .format .block {
	grid-template-columns: repeat(2 , 1fr);
	grid-gap: 40px;
	overflow: hidden;
	display: none;
}
.admt .format .block.active {
	display: grid;
}
.admt .format .block .block-title {
	margin-bottom: 1.5rem;
}
.admt .format .block .block-img  {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
}
.admt .format .block .block-img:after {
	content: "";
	position: absolute;
	display: block;
	right: -30px;
	bottom: -30px;
	width: calc(100% + 30px);
	height: calc(100% + 120px);
	background-image: url(../img/Ellipse.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right bottom;
	z-index: 1;
}
.admt .format .block .block-img img {
	width: 100%;
	margin-bottom: -30px;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 1200px) {
	.admt .format .block {
		grid-gap: 20px;
	}
}
@media screen and (max-width: 991px) {
	.admt .format .block  {
		grid-template-columns: repeat(1, 1fr);
	}
	.admt .format .block .block-img {
		max-width: 400px;
		margin: 0 auto;
	}
	.admt .format .block .block-img:after {
		content: "";
		position: absolute;
		display: block;
		right: -20px;
		bottom: -20px;
		width: calc(100% + 20px);
		height: calc(100% + 40px);
		background-image: url(../img/Ellipse.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right bottom;
		z-index: 1;
		opacity: 0;
	}
	.admt .format .block .block-img img {
		margin-bottom: -20px;
	}
	.admt .format .tab-control {
		padding-bottom: 0.75rem;
	}
	.admt .format .tab-control button {
		padding: 0.5rem 0.5em;
		margin-right: 0.25rem;
		margin-bottom: 0.25rem;
		font-size: calc(1rem - 4px);
	}
}
@media screen and (max-width: 550px) {
	.admt .format .block .block-img:after {
		opacity: 1;
	}
}