:root {
	--c-green-dark: #004931;
	--c-green-medium: #4E7E56;
	--c-orange: #ED7939;
	--c-gray: #CCCCCC;
	--c-black: #666666;
	--d-base: 30px;
	--d-medium: 20px;
}


html {font-family: sans-serif;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}
body {margin: 0;padding: 0}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form,label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header,hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{margin: 0; padding: 0; border: 0;outline: none;list-style: none;}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {display: block;}
audio,canvas,progress,video {display: inline-block;vertical-align: baseline;}
audio:not([controls]) {display: none;height: 0;}
[hidden],template {display: none;}
a {background-color: transparent;}
a:active,a:hover {outline: 0;}
abbr[title] {border-bottom: 1px dotted;}
b,strong {font-weight: bold;}
dfn {font-style: italic;}
mark {background: #ff0;color: #000;}
small {font-size: 80%;}
sub,sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}
img {border: 0;}
svg:not(:root) {overflow: hidden;}
figure {margin: 1em 40px;}
hr {box-sizing: content-box;height: 0;}
pre {overflow: auto;}
code,kbd,pre,samp {font-family: monospace, monospace;font-size: 1em;}
button,input,optgroup,select,textarea {color: inherit;font: inherit;margin: 0;}
button {overflow: visible;}
button,select {text-transform: none;}
button,html input[type="button"],input[type="reset"],input[type="submit"] {-webkit-appearance: button;cursor: pointer;}
button[disabled],html input[disabled] {cursor: default;}
button::-moz-focus-inner,input::-moz-focus-inner {border: 0;padding: 0;}
input {line-height: normal;}
input[type="checkbox"],input[type="radio"] {box-sizing: border-box;padding: 0;}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {height: auto;}
input[type="search"] {-webkit-appearance: textfield;box-sizing: content-box;}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}
fieldset {border: 1px solid #c0c0c0;margin: 0 2px;padding: 0.35em 0.625em 0.75em;}
legend {border: 0;padding: 0;}
textarea {overflow: auto;}
optgroup {font-weight: bold;}
table {border-collapse: collapse;border-spacing: 0;}
td,th {padding: 0;}

h2{
	font-size: 42px;
	font-weight: bold;
	line-height: 1.1;
	color: var(--c-black);
	text-align: center;
	padding: var(--d-base) 0;
}

.canvas{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--d-base);
}

.btn{
	display: inline-block;
	padding: 16px 30px;
	color: #FFFFFF;
	background-color: var(--c-orange);
	border-radius: 5px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.1;
	margin-right: auto;
}

.btn:hover{
	text-decoration: none;
	color: rgba(255,255,255,.5);
}

header{
	height: 88px;
	display: flex; align-items: center;justify-content: space-between;
}

.logo{
	height: 50px;
	width: 140px;
	background: no-repeat 0 0 url(/f/logo.svg);
	border-right: 1px solid #ccc;
}

.slogan{
	margin-right: auto;
	margin-left: 20px;
	font-size: 14px;
	line-height: 1.1;
	color: var(--c-green-medium);
	font-weight: 600;
	max-width: 300px;
}

header a{
	text-decoration: underline;
	color: var(--c-green-medium);
}

.minsport{
	display: flex;
	gap: var(--d-base);
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1138px;
	padding: var(--d-base);
	margin: 0 auto;
	border: 1px solid var(--c-gray);
	border-bottom: none;
	border-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.minsport p{
	align-self: center;
	max-width: 600px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
}

.minsport img{
	width: 50px;
	height: 50px;
}

.about{
	max-width: 1140px;
	background-image: linear-gradient(to top right, rgba(0, 73, 49, 1) 0%, rgba(78, 126, 86, 0.5) 100%), url(/f/about-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	position: relative;
	min-height: 410px;
	padding: var(--d-base);
	margin: 0 auto;
	display: flex; 
	flex-direction: column;
	justify-content: flex-end;
	gap: var(--d-base);
}
.about h2{
	max-width: 650px;
	color: #fff;
	padding: 0;
	text-align: start;
}

.about h2 span{
	background-image: linear-gradient(90deg, var(--c-orange), var(--c-orange));
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 3px;
}

.about li{
	position: relative;
	padding-left: 20px;
	font-size: 18px;
	line-height: 1.2;
	color: #FFFFFF;
}

.about li::before{
	content: '•';
	position: absolute;
	left: 0;
	color: var(--c-orange);
}

.about li + li{
	margin-top: 10px;
}

.service-list{
	margin: var(--d-base) 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--d-base);
	font-size: 16px;
	line-height: 1.3;
}

.service-list li{
	color: #FFFFFF;
	background-color: var(--c-green-medium);
	padding: var(--d-medium);
	border-radius: 10px;
	min-height: 92px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--d-medium);
}

.service-list li:first-child{
	background-color: var(--c-orange);
	padding: 0;
}

.service-list li::before{
	content: '';
	height: 32px;
	width: 32px;
	display: block;
	background: no-repeat 0 0 url(/f/service-bull.svg);
	flex-shrink: 0;
}

.service-list li:first-child::before{
	display: none;
}

.service-list li a{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--d-medium);
	height: 100%;
	padding: var(--d-medium);
	color: #FFFFFF;
}

.service-list li a:hover{
	opacity: .5;
	text-decoration: none;
}

.service-list li a img{
	width: 32px;
	height: 32px;
}

.service-2-list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--d-base);
	padding-bottom: var(--d-base);
	border-bottom: 1px solid var(--c-gray);
	margin-bottom: var(--d-base);
	text-align: center;
}

.service-2-list h5{
	font-size: 42px;
	font-weight: 900;
	line-height: 1.1;
	color: var(--c-orange);
	margin-bottom: var(--d-medium);
}

.service-2-list p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--c-black);
}

.catalogue-list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--d-base);
	margin-bottom: var(--d-base);
}

.catalogue-list li{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--d-base);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	padding: var(--d-base);
	min-height: 200px;
}

.catalogue-list h3{
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
	color: #FFFFFF;
}

.catalogue-list a{
	font-size: 16px;
	padding: 14px 20px 12px;
}

.stages-list{
	display: flex;
	gap: var(--d-medium);
	padding-bottom: var(--d-base);
	border-bottom: 1px solid var(--c-gray);
	margin-bottom: var(--d-base);
	justify-content: space-between;
}

.stages-list li{
	flex-basis: 26%;
}

.stages-list li:last-child {
	flex-basis: auto;
	white-space: nowrap;
}

.stages-list li:last-child .stages-line{
	display: none;
}

.stages-image{
	display: flex;
	align-items: center;
	gap: var(--d-medium);
}

.stages-line{
	width: 100%;
	border-bottom: 2px dashed var(--c-orange);
	position: relative;
}

.stages-line::before, .stages-line::after{
	content: '';
	width: 10px;
	height: 10px;
	background-color: var(--c-orange);
	border-radius: 50%;
	position: absolute;
	top: -4px;
}

.stages-line::after{
	right: 0;
}

.stages-list p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.1;
	margin-top: var(--d-base);
}

.sport-surface{
	margin-bottom: 60px;
}

.sport-surface p+p{
	margin-top: 24px;
}

footer{
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--c-gray);
}

footer a{
	color: var(--c-black);
}

footer a:hover{
	color: var(--c-orange);
	text-decoration: none;
}

.mail-link{
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	text-decoration-line: underline;
}

.phone-link{
	font-size: 22px;
	font-weight: 600;
	line-height: 27px;
	margin-left: var(--d-base);
}

.modal-content{
	padding: var(--d-base);
}

.modal-content h2{
	text-align: start;
	font-size: 36px;
	padding-top: 0;
}

.modal-content h3{
	color: var(--c-black);
	font-weight: 600;
	margin-bottom: var(--d-medium);
}

.modal-content h2.price{
	font-size: 36px;
	color: var(--c-orange);
	padding-bottom: 0;
}

.modal-content table{
	width: 100%;
	margin-bottom: var(--d-base);
	line-height: 1.1;
}

.modal-content tr{
	border-bottom: 1px solid var(--c-gray);
}

.modal-content td{
	padding: 12px 12px 12px 0;
	width: 50%;
}

.modal-content ul{
	margin-bottom: var(--d-base);
}

.modal-content > ul > li+li{
	margin-top: 10px;
}

.modal-content ul li > ul{
	padding-left: var(--d-medium);
	margin: 10px 0;
}

.modal-content ul li > ul li{
	list-style-type: disc;
}

.modal-content ul li > ul li.nomarker{
	list-style-type: none;
}

@media screen and (max-width: 1440px) {
	
}

@media screen and (max-width: 1280px) {
	
}

@media screen and (max-width: 1200px) {
	.minsport{
		border-radius: 0;
		border-left: none;
		border-right: none;
	}

	.about{
		border-radius: 0;
	}
}

@media screen and (max-width: 1024px) {
	.catalogue-list{
		grid-template-columns: repeat(2,1fr);
	}
}

@media screen and (max-width: 960px) {
	.service-list{
		grid-template-columns: repeat(2,1fr);
	}

	footer .slogan{
		display: none;
	}
	.mail-link{
		margin-left: auto;
	}
	.stages-list{
		flex-direction: column;
		gap: calc(var(--d-base) + var(--d-medium));
		align-items: center;
	}
	.stages-image{
		justify-content: center;
	}
	.stages-line{
		display: none;
	}
}

@media screen and (max-width:768px){
	.service-2-list{
		grid-template-columns: repeat(1,1fr);
	}
}

@media screen and (max-width:640px){
	:root {
		--d-base: 20px;
		--d-medium: 15px;
	}

	h2{
		font-size: 36px;
	}

	.slogan{
		display: none;
	}

	.service-list{
		grid-template-columns: repeat(1,1fr);
	}

	.catalogue-list{
		grid-template-columns: repeat(1,1fr);
	}

	footer .logo{
		display: none;
	}

	.mail-link, .phone-link{
		margin-left: 0;
	}
}

@media screen and (max-width:560px){
	h2{
		font-size: 28px;
	}

	footer{
		flex-direction: column;
		min-height: 60px;
		padding: 20px 0;
	}
}







