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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	color: #1e1f1f;
	font-family: 'Montserrat';
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	box-sizing: border-box;
	outline: none;
	text-decoration: none;
}
input {
	color: #777;
	font-family: 'Montserrat';
	font-size: 17px;
	font-weight: 300;
}
img {
	max-width: 100%;
	height: auto;
}
.wrapper {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}
header {
	background: white;
	position: static;
	left: 0;
	right: 0;
}
header .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-main {
    padding: 25px 0 33px;
}
.logo {
	display: flex;
	align-items: flex-end;
}
.logo img {
	display: block;
}
.logo-text {
	color: #111;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	margin-left: 15px;
}
.logo-text span {
	font-size: 19px;
   font-family: 'PF DinDisplay Pro';
	font-weight: 900;
	text-transform: uppercase;
	display: block;
}
.address {
	color: #111;
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
}
.address span {
	display: block;
}
.address a {
	color: #0181b5;
	font-size: 12px;
	font-weight: 400;
	text-decoration: underline;
}
.phone-block {
	display: flex;
}
.phone {
	margin-right: 50px;
	text-align: right;
}
.phone a {
	color: #111;
	font-size: 20px;
	font-weight: 700;
    line-height: 1.2;
	display: block;
}
.time {
	color: #111;
	font-size: 13px;
	font-weight: 300;
	text-align: right;
	margin-top: 5px;
	display: block;
}
.btn {
	position: relative;
	background: linear-gradient(218deg, #5581e4 0%, #048fc3 99%, #048fc3 100%);
	border-radius: 3px;
	display: inline-block;
	width: 201px;
	max-width: 100%;
	padding: 16px 10px;
	overflow: hidden;

	color: white;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
}
.btn span {
	position: relative;
	z-index: 1;
}
.btn-white:after {
	content: '';
	background: linear-gradient(123deg, white 0%, white 0%, #caebfe 100%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity 0.5s ease-out;
	opacity: 0;
}
.btn-blue:after, .btn-call:after, .about-item .btn-training:after {
	content: '';
	background: linear-gradient(218deg, #496ec3 0%, #0b85b3 99%, #0b85b3 100%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity 0.5s ease-out;
	opacity: 0;
}
.btn:hover:after {
	opacity: 1 !important;
}
.btn-call {
	display: table;
}

.header-menu {
	background: url(../images/bg-menu.jpg) no-repeat center;
	padding: 34px 0;
}
.header-menu.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
}
.header-main.fixed {
	margin-bottom: 84px;
}
.header-menu nav {
	width: 100%;
}
.menu {
	display: flex;
	justify-content: space-between;
}
.menu a {
	color: white;
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
}
.menu a:hover, .menu a.active {
	text-decoration: underline;
}

/* front */

.front {
	background: url(../images/bg-front.jpg) no-repeat center top;
	min-height: 737px;
    padding: 152px 0 50px;
}
.front h1 {
	color: white;
    font-family: 'PF DinDisplay Pro';
	font-size: 99px;
	font-weight: 300;
	line-height: 109px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 73px;
}
.front .text {
	color: white;
	font-size: 29px;
	font-weight: 400;
	font-style: italic;
	text-align: center;
}
.front .group-button {
	max-width: 675px;
    margin: 61px auto 0;
}
.group-button {
	display: flex;
	justify-content: space-between;
}
.group-button .btn {
    width: 48%;
    padding: 24.5px 10px;
	font-size: 15px;
	text-align: center;
}
.btn-white {
	background: linear-gradient(-30deg, white 0%, white 0%, #caebfe 100%);
	color: #111;
}

/* services */

section {
	padding: 83px 0;
}
.block-name {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 22px;

	color: #777;
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
}
.block-name:after {
	content: "";
	width: 254px;
	height: 1px;
	opacity: 0.69;
	background-color: #bababa;
	margin-left: 22px;
}
.title {
	color: #111;
	font-size: 44px;
	font-weight: 700;
}
.services {
	background: url(../images/bg-services.jpg) no-repeat center top 245px;
	padding-bottom: 39px;
}
.services-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    margin-top: 186px;
    margin-bottom: 63px;
}
.services-block:before {
	content: "";
	width: 32.4%;
}
.service-item {
	background: url(../images/bg-service-1.png) no-repeat center;
	width: 32.4%;
	padding: 42px 48px 53px;
	border-radius: 6px;
	margin-bottom: 7px;
}
.service-item:nth-child(2) {
	background: url(../images/bg-service-2.png) no-repeat center;
	border-radius: 6px;
}
.service-item:nth-child(3) {
	background: url(../images/bg-service-3.png) no-repeat center;
	border-radius: 6px;
}
.service-item:nth-child(4) {
	background: url(../images/bg-service-4.png) no-repeat center;
	border-radius: 6px;
}
.service-item:nth-child(5) {
	background: url(../images/bg-service-5.png) no-repeat center;
	border-radius: 6px;
}
.service-item:nth-child(1) .btn-blue {
	background: linear-gradient(27deg, #0f6fb2 0%, #117ac0 99%, #117ac0 100%);
}
.service-item:nth-child(2) .btn-blue {
	background: linear-gradient(27deg, #0a85b2 0%, #0a85b2 0%, #078dbf 99%, #078dbf 100%);
}
.service-item:nth-child(3) .btn-blue {
	background: linear-gradient(27deg, #4c7190 0%, #4c7190 0%, #426585 99%, #426585 100%);
}
.service-item:nth-child(4) .btn-blue {
	background: linear-gradient(27deg, #5787b1 0%, #5383ae 99%, #5383ae 100%);
}
.service-item:nth-child(5) .btn-blue {
	background: linear-gradient(27deg, #0bb2e1 0%, #0bb2e1 0%, #0bafdf 100%);
}
.service-header {
	position: relative;
	display: flex;
	align-items: center;
    padding-bottom: 33px;
}
.service-header:after {
	content: "";
	width: 230px;
	height: 1px;
	opacity: 0.3;
	background-color: #86b5f4;
	
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.service-item .icon {
	width: 51px;
	height: 51px;
}
.service-item img {
	max-width: none;
}
.service-item h4 {
	color: white;
	font-size: 17px;
	font-weight: 600;
	line-height: 26px;
	margin-left: 40px;
}
.service-item .group-button {
	margin-top: 30px;
}
.service-item .group-button .btn {
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
    padding: 14px 10px;
}
.service-item .btn-white {
	box-shadow: -0.4px 1.9px 17.8px 0.2px rgba(17, 86, 111, 0.7);
}
.service-item .btn-blue {
	box-shadow: -0.4px 1.9px 45.5px 0.5px rgba(9, 85, 113, 0.47);
}

.sub-title {
	color: #111;
	font-size: 33px;
	font-weight: 600;
	text-align: center;
}
.banners {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}
.banner-item {
	background: url(../images/banner-1.png) no-repeat center;
	width: 49%;
    padding: 45px 55px;
	border-radius: 6px;
}
.banner-item:nth-child(2) {
	background: url(../images/banner-2.png) no-repeat center;	
}
.banner-item h4 {
	color: white;
	font-size: 21px;
	font-weight: 500;
	line-height: 29px;
	margin-bottom: 40px;
}
.banner-button {
	width: 185px;
}
.banner-button .btn {
	width: 100%;
    padding: 16px 30.3px;
	margin-bottom: 19px;
}
.banner-button .btn-blue {
	background: linear-gradient(27deg, #0a85b2 0%, #0a85b2 0%, #078dbf 99%, #078dbf 100%);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

/* advantages */

.advantages {
	background: url(../images/bg-advantages.jpg) no-repeat center top;
	min-height: 1320px;
}
.advantages .block-name {
	color: white;
}
.advantages .block-name:after {
	background: #3aa1e6;
}
.advantages .title {
	color: white;
}
.advantages-wrap {
	margin-top: 120px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.advantages-block {
	width: 55%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.advantage-item {
	width: 49%;
	margin-bottom: 75px;
}
.advantage-item img {
    position: relative;
    left: -38px;
    margin-top: -39px;
    margin-bottom: -10px;
}
.advantage-item h4 {
	color: white;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.advantage-item p {
	color: white;
	font-size: 15px;
	font-weight: 300;
	line-height: 24px;
}

.form {
	width: 38.3%;
    background: white;
    border-radius: 4px;
    padding: 42px 62px 60px;
    display: table;
}
.form-name {
	color: #777;
	font-size: 11px;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.form-title {
	color: #111;
	font-size: 35px;
	font-weight: 700;
	line-height: 41px;
    margin-bottom: 21px;
}
.form .text-field {
	width: 100%;
	height: 50px;
	border: 0;
	border-bottom: 1px solid #c3ccda;
	margin-bottom: 23px;
}
input[type="submit"] {
	width: 100%;
	height: 64px;
	background: linear-gradient(210deg, #7182e8 0%, #3db8e6 99%, #3db8e6 100%);
	border-radius: 4px;
	border: 0;
    margin-top: 22px;

	color: white;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 4px 12px 14px #9bcce8;
	transition: 0.5s ease-out;
}
.text-agree {
	color: #777;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	margin-top: 34px;
}
.text-agree span {
	border-bottom: 1px dashed #777;
	cursor: pointer;
}

/* about */

.about-wrap {
	position: relative;
	background: url(../images/bg-about.jpg) no-repeat center top;
	width: 100%;
	height: 762px;
	margin-top: -398px;
	border-radius: 6px;
	padding: 60px 90px;
	box-shadow: -0.2px 1px 81px rgba(117, 150, 222, 0.11);
}
.about-text {
	max-width: 785px;
	margin-top: 72px;

	color: #111;
	font-size: 19px;
	font-weight: 500;
	line-height: 27px;
}
.about-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 42px;
}
.about-item {
	width: 48%;
}
.about-item img {
	margin-bottom: 25px;
}
.about-item p {
	color: #037ba7;
	font-size: 17px;
	font-weight: 500;
	line-height: 25px;
}
.about-item:nth-child(2) p {
	color: #252525;
	font-weight: 400;
}
.btn-documents {
	margin: 20px 0;
}
.about-item .btn-training, .btn-documents {
	background: linear-gradient(210deg, #7182e8 0%, #3db8e6 99%, #3db8e6 100%);
	width: 353px;
	max-width: 100%;
    padding: 26.5px 10px;
	font-size: 15px;
	box-shadow: 4px 12px 14px #9bcce8;
}
.years {
	position: absolute;
    top: 175px;
    right: 84px;
    transform: rotate(-90deg);

    color: #111;
    font-size: 18px;
    font-weight: 300;
}
.years span {
	color: #037ba7;
	font-size: 60px;
	font-weight: 700;
	display: block;
}

/* reviews */

.reviews {
	padding: 9px 0 56px;
	overflow: hidden;
}
.reviews-wrap {
	position: relative;
}
.reviews-block {
	width: 960px;
	max-width: 100%;
	margin-top: 80px;
}
.reviews-block .slick-list {
	overflow: visible;
}
.review-item {
	background: white;
	border-radius: 11px;
    display: flex !important;
	box-shadow: -0.2px 1px 81px rgba(117, 150, 222, 0.11);
}
.review-info {
	background: url(../images/bg-reviews.png) no-repeat;
	width: 319px;
	min-height: 285px;
    padding: 50px 45px;
}
.review-info .name {
	color: white;
	font-size: 21px;
	font-weight: 500;
    padding-bottom: 41px;
	border-bottom: 1px solid #137ead;
}
.review-info .course {
	color: white;
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	margin-top: 35px;
}
.review-content {
    max-width: 640px;
	padding: 50px;

	color: #1e160e;
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
}

.slider-nav {
    max-width: 1100px;
    position: absolute !important;
    top: 19px;
    right: -437px;
    z-index: -1;
}
.slider-nav .slide {
	margin: 0 22.5px;
	overflow: hidden;
}
.slider-nav .review-info {
	min-height: auto;
	background: #49759c;
	border-radius: 6px;
    padding: 42px 48px;
}
.slider-nav .review-info .name {
	border-color: #598ab5;
	padding-bottom: 31px;
}
.slider-nav .review-info .course {
    margin-top: 27px;
}
.slider-nav .slide:nth-child(even) .review-info {
	background: #05a1ce;
}

.navigation {
	position: relative;
	margin-top: 20px;
	margin-right: 100px;
	padding-right: 26px;
	display: flex;
	align-items: center;
    justify-content: flex-end;
}
.slick-arrow {
	background: url(../images/arrow.png) no-repeat center;
	width: 26px;
	height: 18px;
	padding: 0;
	border: none;
	font-size: 0;
	cursor: pointer;
}
.slick-next {
	transform: rotate(180deg);
	position: absolute;
	right: 0;
}
.slick-dots {
	display: flex;
	align-items: center;
	margin: 0 10px;
}
.slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-dots button {
	width: 5px;
	height: 5px;
	background: #0c6389;
    border-radius: 50%;
    margin: 0 6px;
    padding: 0;
    border: none;
    font-size: 0;
    cursor: pointer;
}
.slick-dots li.slick-active button {
	background: #05a1ce;
}

/* footer */

footer {
	background: url(../images/bg-footer.jpg) no-repeat center top;
	background-size: cover;
    padding-top: 26px;
}
footer, footer a {
	color: white;
	font-size: 15px;
	font-weight: 300;
}
footer .wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.footer-block {
	padding: 40px 0 44px;
	border-bottom: 1px solid #22394c;
}
.footer-block:last-child {
	border: none;
}
/*.footer-item {
	width: 50%;
}*/
.flex {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.footer-logo {
	display: flex;
	align-items: center;
}
.footer-logo img {
	margin-right: 20px;
}
.footer-logo p {
	color: #e0e7ed;
	font-size: 15px;
	font-weight: 300;
	line-height: 24px;
}
.footer-logo span {
	font-size: 16px;
	display: block;
}
.footer-phone {
    margin-right: 105px;
}
.footer-phone a {
	color: white;
    font-family: 'PF DinDisplay Pro';
	font-size: 45px;
	font-weight: 300;
}
.btn-footer {
	background: #274157;
	width: 276px;
	padding: 24.5px 10px;
	font-size: 15px;
	transition: 0.5s;
}
.btn-footer:hover {
    background: #21547e;
}
.footer-center {
	border-bottom: none;
	padding-bottom: 0;
}
.footer-center .footer-item:first-child {
	width: 68.8%;
}
.footer-center .footer-item:nth-child(2) {
	width: 30%;
}
.footer-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-menu a {
	color: #e0e7ed;
	font-size: 16px;
	font-weight: 400;
}
.footer-menu a:hover {
	text-decoration: underline;
}
.contacts {
	color: #e0e7ed;
	font-size: 17px;
	font-weight: 300;
	text-align: right;
}
.contacts li {
	margin-bottom: 19px;
    line-height: 1.3;
}

.copyright .footer-item {
	width: 33%;
}
.siteup {
	display: table;
	margin: 0 auto;
	text-align: center;
}
.social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.social a {
	width: 27px;
	height: 27px;
	border-radius: 50%;
	display: block;
	margin: 0 5px;
	transition: 0.5s;
}
.social a:hover {
	opacity: 0.5;
}
.vk {
	background: url(../images/icon-vk.png) no-repeat center;
}
.fb {
	background: url(../images/icon-fb.png) no-repeat center;
}
.inst {
	background: url(../images/icon-inst.png) no-repeat center;
}
.privacy {
    border-bottom: 1px dashed #dbd3d3;
    display: inline-block;
    cursor: pointer;
}

/* modal */

.modal {
	display: none;
	width: 780px;
	max-width: 100%;
	border-radius: 4px;
    padding: 70px 50px !important;
}
.modal-title {
	color: #111;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 45px;
}
.modal p, .modal li {
	color: #111;
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	margin-bottom: 10px;
}
.modal ul {
	list-style-type: disc;
    padding-left: 18px;
}
.modal .line {
	background-color: #59cefa;
	width: 449px;
	max-width: 100%;
	height: 1px;
	margin: 40px auto;
}
.modal .text-strong {
	color: #038b9b;
	font-weight: 600;
	line-height: 26px;
	text-align: justify;
}

.modal-form {
	display: none;
	width: 490px;
	max-width: 100%;
	border-radius: 4px;
	padding: 55px !important;
}
.modal-form .form {
	width: 100%;
	padding: 0;
}
.modal-form .form-title {
	font-size: 30px;
}

#success {
	text-align: center;
}
#success img {
	border-radius: 50%;
	box-shadow: -0.4px 1.9px 23.8px 0.2px rgba(30, 173, 226, 0.47);
}
#success h2 {
	color: #111;
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	margin: 30px 0;
}
#success p {
	color: #111;
	font-size: 23px;
	font-weight: 400;
	line-height: 33px;
}

.btn-menu {
    width: 45px;
    height: 45px;
    background: url(../images/icon-menu.png) no-repeat center;
    background-size: cover;
	display: none;
}
.bg-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
input[type="submit"]:hover {
	opacity: 0.8;
}

.error-404 {
	background: white;
}
.page-404 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.page-404 .wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.page-404 img {
	display: block;
	margin: 0 auto 50px;
}

#documents .modal-title {
	text-align: left;
	padding-bottom: 30px;
	border-bottom: 1px solid #59cefa;
}
#documents ul {
	padding: 0;
	list-style-type: none;
}
#documents ul li {
	background: url(../images/icon-doc.png) no-repeat center left;
	padding: 5px 0 5px 40px;
	margin-bottom: 20px;
}
#documents ul a {
	color: #111;
	font-size: 17px;
	font-weight: 300;
}
#documents ul a:hover {
	text-decoration: underline;
}