﻿* {
	margin: 0;
	padding: 0;
}
@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/OpenSans-Light.ttf');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Open Sans Bold';
	src: url('../fonts/OpenSans-Bold.ttf');
	font-weight: normal;
	font-style: normal;
}
body {
	position: relative;
	width: 100%;
	height: 100vh;
	font-size: 14pt;
	font-family: 'Open Sans', cursive;
	overflow: hidden;
}
.preload {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: #fff;
	overflow: hidden;
	z-index: 150;
}
.preload_content {
	position: absolute;
	margin: auto;
	width: 300px;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 10;
}
.gooey {
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 142px;
  	height: 40px;
  	margin: -20px 0 0 -71px;
  	background: #fff;
  	filter: contrast(20);
}
.gooey .dot {
  	position: absolute;
  	width: 16px;
  	height: 16px;
  	top: 12px;
  	left: 15px;
  	filter: blur(4px);
  	background: #191b1e;
  	border-radius: 50%;
  	transform: translateX(0);
  	animation: dot 2.8s infinite;
}
.gooey .dots {
  	transform: translateX(0);
  	margin-top: 12px;
  	margin-left: 31px;
  	animation: dots 2.8s infinite;
}
.gooey .dots span {
  	display: block;
  	float: left;
  	width: 16px;
  	height: 16px;
  	margin-left: 16px;
  	filter: blur(4px);
  	background: #191b1e;
  	border-radius: 50%;
}
@-moz-keyframes dot {
  	50% {
    	transform: translateX(96px);
  	}
}
@-webkit-keyframes dot {
  	50% {
    	transform: translateX(96px);
  	}
}
@-o-keyframes dot {
  	50% {
    	transform: translateX(96px);
  	}
}
@keyframes dot {
  	50% {
    	transform: translateX(96px);
  	}
}
@-moz-keyframes dots {
  	50% {
  		transform: translateX(-31px);
  	}
}
@-webkit-keyframes dots {
  	50% {
    	transform: translateX(-31px);
  	}
}
@-o-keyframes dots {
  	50% {
    	transform: translateX(-31px);
  	}
}
@keyframes dots {
  	50% {
    	transform: translateX(-31px);
  	}
}
.container {
	width: calc(100% - 70px);
  	padding-right: 35px;
  	padding-left: 35px;
  	margin-right: auto;
  	margin-left: auto;
}
.row {
	display: -ms-flexbox;
	display: flex;
  	-webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
		    flex-wrap: wrap;
}
.col-3, .col-b-3 {
  	-ms-flex: 0 0 25%;
  		flex: 0 0 25%;
  	max-width: 25%;
}
.col-6 {
  	-ms-flex: 0 0 50%;
  		flex: 0 0 50%;
  	max-width: 50%;
}
.col-9, .col-b-9 {
	-ms-flex: 0 0 75%;
  		flex: 0 0 75%;
  	max-width: 75%;
}
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	padding: 15px 0;
	background: #fff;
	z-index: 100;
}
.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	font-family: 'Open Sans Bold', cursive;
	font-weight: bolder;
}
main {
	position: relative;
	width: 100%;
	height: 100vh;
}
.main-content {
	position: relative;
	padding-top: 120px;
	padding-right: 35px;
	width: 100%;
	height: 80vh;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 90;
}
.header-logo {
	font-family: 'Open Sans Bold', cursive;
	font-weight: bolder;
}
.main-content p {
	margin: 10px 0;
}

.subject_list {
	display: none;

}
.subject_list li, .area-list li {
	list-style-type: none;
	display: block;
	cursor: pointer;
	transition: 1s;
}
.subject_list li:hover, .area-list li:hover {
	background: #ededed;
	padding: 10px 25px;
	border-radius: 35px;
}

.main-figure {
	position: absolute;
	top: 25%;
	right: 0;
	width: 500px;
	height: 500px;
	background: url(../img/figure.svg) center no-repeat;
	background-size: cover;
	opacity: 0.2;
}
.button_header {
	padding: 12px 35px;
	background: #28a745;
	color: #fff;
	border: 1px solid #28a745;
	font-family: 'Open Sans Bold', cursive;
	cursor: pointer;
	outline: none;
	transition: 1s;
	border-radius: 35px;
	font-size: 12pt;
}
.button_offer {
	margin-top: 15px;
	padding: 12px 35px;
	background: #028ac8;
	color: #fff;
	border: 1px solid #028ac8;
	font-family: 'Open Sans Bold', cursive;
	cursor: pointer;
	outline: none;
	transition: 1s;
	border-radius: 35px;
}
.button_offer:hover, .button_header:hover {
	-webkit-box-shadow: 0px 9px 16px -9px rgba(25,27,30,0.56);
       -moz-box-shadow: 0px 9px 16px -9px rgba(25,27,30,0.56);
          	box-shadow: 0px 9px 16px -9px rgba(25,27,30,0.56);
    color: #fff;
}
.button_offer:active, .button_header:focus {
    color: #fff;
}
.button_offer:disabled {
	opacity: 0.3;
}
a {
	color: #191b1e;
	text-decoration: none;
	outline: 0;
	transition: 1s;
	cursor: pointer;
}
a:hover {
	color: #607d8b;
	text-decoration: none;
	transition: 1s;
	outline: none;
}
a:focus, a:active {
	color: #455a64;
	text-decoration: none;
	transition: 1s;
	outline: none;
}
.popups {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: 1500;
}
.bg_tr {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.5;
}
.popups_content {
	position: absolute;
	padding: 35px;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	border-radius: 35px;
	width: 450px;
	transform: translateY(-50%);
	z-index: 15;
}
#form_offer p {
	font-size: 10pt;
}
.form_group {
	position: relative;
	margin: 10px 0;
	width: 100%;
	background: #ededed;
	border-radius: 35px;
	overflow: hidden;
}
.form_group input {
	padding: 10px 25px;
	width: calc(100% - 55px);
	background: transparent;
	border: 0;
	outline: none;
	font-family: 'Open Sans', cursive;
}
.form_group textarea {
	padding: 10px 25px;
	width: calc(100% - 55px);
	background: transparent;
	border: 0;
	outline: none;
	font-family: 'Open Sans', cursive;
}
.button_close {
	position: absolute;
	top: 35px;
	right: 35px;
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
}
.footer {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 25px 0;
	background: #fff;
	z-index: 100;
}
.popups_content-preload {
	display: none;
}
.popups_content-track {
	display: none;
}
.popups_content-controll {
	display: none;
	text-align: center;
}
.popups_content-controll img {
	margin: auto;
	width: 180px;
	height: 180px;
}


.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
	text-align: center ;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: #ededed;
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px #ededed;
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #000;
}

@media(max-width: 940px) {
	.header {
		display: block;
	}
	.header-logo {
		font-size: 14pt;
	}
	.button_header {
		display: block;
		margin-bottom: 3px;
		padding: 7px 15px;
		font-size: 10pt;
		text-align: center;
	}
	.button_offer {
		margin-bottom: 50px;
	}
	main {
		height: auto;
	}
	.main-content {
		padding-top: 180px;
		margin-bottom: 120px;
	}
	.popups_content {
		padding: 35px 15px;
		width: calc(100% - 90px);
	}
	.footer {
		display: none;
	}
}