/* Universal styles / Универсальные стили */
body {  
   	font-size: 24px;
   	color: #00171F;
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
}


body._lock {  
	overflow: hidden;
}

.block-2 {
    display: none;
}

@font-face {
    font-family: 'Gilroy';
	src: url(fonts/Gilroy-Bold.ttf); 
    font-weight: 800;
}

@font-face {
    font-family: 'Gilroy';
	src: url(fonts/Gilroy-Black.ttf); 
    font-weight: 900;
}

@font-face {
    font-family: 'Geometria';
    src: url('fonts/Geometria-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geometria';
    src: url('fonts/Geometria-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Geometria';
    src: url('fonts/Geometria-Bold.title');
    font-weight: bold;
    font-style: normal;
}

 *,
 *:before
 *:after {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
	margin: 0;
}

p {
	line-height: 26px;
}

.a {
	font-family: 'Geometria';
	font-weight: 500;
	font-size: 24px;
	color: #636363;
	text-decoration: underline;
	transition: 0.4s;
}
  
.a:hover {
	color: #00A6FC;
	text-decoration: underline;
}


.title {
    font-family: 'Geometria';
	font-weight: 700;
	font-size: calc(24px + 24 * (100vw / 1280));
	/*font-size: 48px;*/
	color: #00171F;
	text-align: center;
	line-height: 50px;
}

.subtitle {
    font-family: 'Geometria';
	font-weight: 600;
	font-size: 24px;
	text-align: center;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    margin-top: 25px;
}

.subtitle div {
	background-color: #00A6FC;
	padding: 15px;
}

.block {
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100%;
	margin: 0 auto;
	text-align: left;
    margin-top: 125px;
}

/* Container / Контейнер */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Scrollba / Скролл */
body::-webkit-scrollbar {
	width: 10px;
}

body::-webkit-scrollbar-track {
	background-color: #FFFFFF;
	cursor: pointer;
}

body::-webkit-scrollbar-thumb {
	background: #00A6FC;
	background-size: contain;
}