@import url(../../node_modules/normalize.css/normalize.css);
/*   Fonts   */
@font-face {
	font-family: 'Montserrat';
	src: local("Montserrat Regular"), local("Montserrat-Regular"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat Medium';
	src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat Semi-Bold';
	src: local("Montserrat Semi Bold"), local("Montserrat-Semi-Bold"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat Bold';
	src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Nunito';
	src: local("Nunito Light"), local("Nunito-Light"), url("../fonts/Nunito-Light.woff2") format("woff2"), url("../fonts/Nunito-Light.woff") format("woff"), url("../fonts/Nunito-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

:root {
	--main-color: #c4a040;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ol, ul {
  padding-left: 20px;
}

h1, h2, h3, h4 {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Montserrat Medium', sans-serif;
	position: relative;
	background-color: #ffffff;
	color: #000000;
	font-size: 16px;
	line-height: 1.5;
}

html,
body {
	height: 100%;
}

body.show {
	overflow: hidden;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.content {
	flex: 1 0 auto;
}

.footer {
	flex: 0 0 auto;
}

button:hover {
	cursor: pointer;
}

img {
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.container {
	max-width: 1230px;
	position: relative;
}

.visually-hidden {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.title {
	font-family: 'Montserrat Semi-Bold', sans-serif;
	font-weight: 600;
	font-size: 48px;
	line-height: 1.2;
	color: #000000;
}

.title-search {
	text-align: center;
	font-size: 46px;
	margin: 25px 0;
}

.title__link {
	text-decoration: none;
}

.title-decor {
	position: relative;
	display: inline;
	z-index: 1;
}

.title-decor::after {
	content: '';
	height: 11px;
	width: 120%;
	position: absolute;
	bottom: 6px;
	left: 4px;
	background-color: var(--main-color);
	z-index: -1;
}

.pageup {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 50px;
	right: 50px;
	display: none;
	background: transparent;
	border: none;
	z-index: 99;
	filter: drop-shadow(0 0 5px #ffffff);
}

.pageup.show {
	display: block;
}

.pageup:focus {
	outline: none;
}

table {
    width:100%;
    border-collapse: collapse;

    margin: 0px auto;

  }

  tr, td {
   border: 0;
   /* border: solid 1px #000;*/

    padding: 5px;
    text-align: center;

  }
 tr:nth-child(odd) { background-color: #e5e5e5;; }

@media (max-width: 900px) {
	.pageup {
		width: 40px;
		height: 40px;
		bottom: 35px;
		right: 35px;
	}
}

@media (max-width: 500px) {
	.pageup {
		bottom: 25px;
		right: 25px;
		opacity: .8;
	}
}

@media (max-width: 400px) {
	.pageup {
		bottom: 20px;
		right: 20px;
	}
}

.header {
	padding-top: 21px;
	background-color: #f2f2f6;
}

.header-logo {
	width: 580px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
}

.header-logo__image {
	width: 137px;
	height: 132px;
}

.header-logo__text {
	font-family: 'Montserrat Bold', sans-serif;
	font-size: 22px;
	line-height: 1.2;
	padding-right: 15px;
	color: #000000;
}

.header-search {
	position: relative;
}

.header-search__btn {
	border: none;
	background-color: transparent;
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	background: url("../img/header/search.svg") center center/cover no-repeat;
}

.header-search__btn:hover {
	cursor: pointer;
}

.header-search-input {
	/*width: 309px;*/
	background: #FFFFFF;
	border: 1px solid #E5E5E5;
	border-radius: 30px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 18px;
	padding: 10px 35px 10px 17px;
	transition: border-color .3s ease;
}

.header-search-input::-moz-placeholder {
	font-size: 14px;
	line-height: 18px;
	color: #7b7b7b;
}

.header-search-input:-ms-input-placeholder {
	font-size: 14px;
	line-height: 18px;
	color: #7b7b7b;
}

.header-search-input::placeholder {
	font-size: 14px;
	line-height: 18px;
	color: #7b7b7b;
}

.header-search-input:focus, .header-search-input:hover {
	outline: none;
	border-color: var(--main-color);
	transition: border-color .3s ease;
}

.header-eye {
	background: url("../img/header/eye.svg") center center/cover no-repeat;
	border: none;
	width: 30px;
	height: 16px;
}

.header__menu {
	margin-top: 26px;
	background-color: #a9abad;
}

.header__menu-list {
	list-style: none;
	padding-left: 0;
}

.header__menu-item {
	position: relative;
}

.header__menu-item:nth-child(2) .header__menu-link,
.header__menu-item:nth-child(3) .header__menu-link,
.header__menu-item:nth-child(4) .header__menu-link
{
	padding-right: 45px;
}

.header__menu-item:nth-child(2) .header__menu-link::after,
.header__menu-item:nth-child(3) .header__menu-link::after,
.header__menu-item:nth-child(4) .header__menu-link::after
{
	content: '';
	position: absolute;
	top: 47%;
	right: 25px;
	width: 8px;
	height: 8px;
	background-color: transparent;
	border: 2px solid #ffffff;
	border-right: none;
	border-top: none;
	transform: translateY(-50%) rotate(-45deg);
	transform-origin: center;
	transition: border-color .3s ease;
}

.header__menu-item:nth-child(2):hover .header__menu-link::after,
.header__menu-item:nth-child(3):hover .header__menu-link::after,
.header__menu-item:nth-child(4):hover .header__menu-link::after {
	border-color: #000000;
	transition: border-color .3s ease;
}

.header__menu-item:hover .header__menu-link {
	color: #000000;
	background-color: #fbf0b9;
	transition: background-color .3s ease, color .3s ease;
}

.header__menu-item:hover > .inner__menu {
	height: auto;
	width: auto;
	min-width: 221px;
	z-index: 10;
	opacity: 1;
	padding: 15px;
	padding-top: 0;
	transition: opacity .5s ease;
}

.header__menu-link {
	position: relative;
	display: block;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.25;
	padding: 18px;
	text-decoration: none;
	transition: background-color .3s ease, color .3s ease;
}

.header__mobile-menu {
	display: none;
}

.inner__menu {
	height: 0;
	z-index: -1;
	opacity: 0;
	width: 0;
	overflow: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fbf0b9;
	transition: opacity .5s ease;
}

.inner__menu:hover {
	height: auto;
	z-index: 1;
	opacity: 1;
	transition: opacity .5s ease;
}

.inner__menu > li {
	list-style: none;
    width: 270px;
}

.inner__menu-link {
	display: block;
	position: relative;
	padding: 7px 0;
	line-height: 1.2;
	color: #1c1c1c;
	text-align: left;
	text-decoration: none;
	font-size: 14px;
}

.inner__menu-link:hover {
	text-decoration: underline;
}

.mobile-menu {
	display: none;
}

.btn {
	background: #367ab8;
	border-radius: 30px;
	font-family: 'Montserrat Semi-Bold', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #ffffff;
	border: none;
	transition: background-color .3s ease, color .3s ease;
}

.btn:hover {
	color: #367ab8;
	background-color: #ffffff;
	transition: background-color .3s ease, color .3s ease;
}

.btn-feedback {
	padding: 8px 18px;
	text-decoration: none;
	text-align: center;
}

.btn__archive-news {
	display: inline-block;
	padding: 8px 18px;
	margin: 20px 0 40px;
	text-decoration: none;
	text-align: center;
}

@media (max-width: 525px) {
	.btn__archive-news {
		display: block;
		width: 80%;
		margin: 20px auto;
	}
}

.btn-more {
	background-color: #ffffff;
	color: #367ab8;
	padding: 8px 35px;
	transition: background-color .3s ease, color .3s ease;
	text-decoration: none;
	text-align: center;
}

.btn-more:hover {
	background-color: #367ab8;
	color: #ffffff;
	transition: background-color .3s ease, color .3s ease;
}

.btn-news {
	padding: 8px 32px;
	margin-top: 10px;
	text-decoration: none;
	text-align: center;
}

.btn-submit {
	padding: 8px 20px;
	margin-top: 30px;
	transition: background-color .3s ease, color .3s ease;
}

.btn-submit:hover {
	background-color: #f2f2f6;
	transition: background-color .3s ease, color .3s ease;
}

.main-slider {
	background-color: var(--main-color);
}

.main-slider__text {
	width: calc(50% - 85px);
	position: relative;
}

.main-slider__text::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% + 55px);
	height: 100%;
	background-color: var(--main-color);
	transform: skewX(-10deg);
	z-index: 1;
}

.main-slider__text-container {
	max-width: 530px;
	margin-left: auto;
	position: relative;
	z-index: 5;
	padding: 80px 15px 120px 15px;
}

.main-slider__image {
	width: calc(50% + 85px);
	position: relative;
}

.main-slider__image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slide__title {
	font-family: 'Montserrat Bold', sans-serif;
	font-size: 48px;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 45px;
}

.slide__description {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	line-height: 1.5;
	color: #ffffff;
	margin-bottom: 45px;
}

.swiper-pagination {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	bottom: 35px;
	width: 200px;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #fbf0b9;
	margin: 0 7px;
}

.swiper-pagination-bullet-active {
	background-color: #a68325;
}

.info {
	padding: 55px 0 50px;
}

.info__wrapper {
	margin-top: 50px;
}

.info__image {
	width: calc(50% - 50px);
	margin-right: 50px;
	margin-bottom: 30px;
	float: left;
	position: relative;
}

.info__image::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 7px;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	z-index: -1;
}

.info__description {
	text-indent: 25px;
	margin-bottom: 25px;
}

.info__description:last-child {
	margin-bottom: 0;
}

.news {
	padding: 40px 0;
}

.news__wrapper {
	margin: 35px 0 15px;
	padding-left: 0;
	list-style: none;
}

.news__item {
	width: 272px;
	height: 220px;
	padding: 20px 15px;
	margin: 15px 0;
	background-color: #ffffff;
	border-bottom: 2px solid var(--main-color);
	text-decoration: none;
}

.news__subtitle {
	font-family: 'Montserrat Semi-Bold', sans-serif;
	font-size: 16px;
	line-height: 1.25;
	color: #000000;
	/* height: 40%; */
	padding-bottom: 10px;
}

.news__description {
	font-size: 14px;
	line-height: 1.3;
	color: #7B7B7B;
	padding-bottom: 10px;
}

.news__date {
	font-size: 14px;
	line-height: 14px;
	color: #C4A040;
}

.links {
	padding: 65px 0;
	background-color: #ffffff;
}

.links__container {
	margin: 0 50px;
	position: relative;
}

.links__slide {
	height: 80px;
	display: flex;
	justify-content: center;
}

.links .swiper-button-prev,
.links .swiper-button-next {
	width: 15px;
	height: 30px;
}

.links .swiper-button-prev::after,
.links .swiper-button-next::after {
	display: none;
}

.links .swiper-button-prev {
	left: 15px;
}

.links .swiper-button-next {
	right: 15px;
}

.footer {
	background-color: #a9abad;
	padding: 25px 0 32px;
}

.footer__wrapper {
	flex-wrap: nowrap !important;
}

.footer-left {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	flex-grow: 1;
	padding-left: 15px;
}

.footer-logo {
	width: 111px;
	height: 107px;
}

.footer-logo__wrapper {
	width: 50%;
	display: flex;
	justify-content: flex-start;
}

.footer-logo__text {
	padding-left: 27px;
}

.footer-logo__description {
	font-family: 'Montserrat Semi-Bold', sans-serif;
	font-size: 16px;
	line-height: 1.25;
	color: #ffffff;
}

.footer-logo__link a {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #ffffff;
	text-decoration: none;
	transition: color .3s ease;
}

.footer-logo__link a:hover {
	color: #367ab8;
	transition: color .3s ease;
}

.footer-link__wrapper {
	width: 50%;
	padding-left: 20px;
}

.footer-link a {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #ffffff;
	text-decoration: none;
	transition: color .3s ease;
}

.footer-link a:hover {
	color: #367ab8;
	transition: color .3s ease;
}

.footer__copyright {
	display: flex;
	width: 160px;
	padding-left: 45px;
	margin-left: auto;
	background: url("../img/footer/galaxy.png") left center/contain no-repeat;
	background-size: 42px 42px;
	text-decoration: none;
}

.footer__copyright-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	line-height: 1.3;
	color: #ffffff;
}

.footer__copyright-text > span {
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
}

.copyright__wrapper {
	flex-shrink: 0;
	padding: 0 15px;
}

.inner-page {
	padding: 25px 0;
}

.inner-page__wrapper {
	margin-top: 15px;
}

.inner-page__image {
	float: left;
	width: calc(50% - 50px);
	margin-right: 50px;
	margin-bottom: 30px;
	position: relative;
}

.inner-page__image::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 7px;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	z-index: -1;
}

.inner-page__description {
	text-indent: 25px;
	margin-bottom: 25px;
}

.inner-page__description:last-child {
	margin-bottom: 0;
}

.news-page {
	padding: 40px 0 5px;
}

.news-page__wrapper {
	margin: 45px 0 15px -13px;
	padding-left: 0;
	list-style: none;
}

.news-page__item {
	width: 272px;
	height: 220px;
	padding: 20px 15px;
	margin: 15px 13px;
	background-color: #f7f7f7;
	border-bottom: 2px solid var(--main-color);
	text-decoration: none;
}

.news-page__subtitle {
	font-family: 'Montserrat Semi-Bold', sans-serif;
	font-size: 16px;
	line-height: 1.25;
	color: #000000;
	/* height: 40%; */
	padding-bottom: 10px;
}

.news-page__description {
	font-size: 14px;
	line-height: 1.3;
	color: #7B7B7B;
	padding-bottom: 10px;
}

.news-page__date {
	font-size: 14px;
	line-height: 14px;
	color: #C4A040;
}

.news-item {
	padding: 50px 0 70px;
}

.news-item__date {
	font-size: 14px;
	line-height: 14px;
	color: #C4A040;
	margin-top: 50px;
}

.news-item__description {
	margin-top: 25px;
	font-size: 16px;
	line-height: 1.5;
	text-indent: 25px;
}

.news-item__photos {
	margin-top: 20px;
}

.news-item__photo {
    width: 50%;
	margin: 15px 10px;
}

.application {
	padding: 10px 0 40px;
}

.application__subtitle {
	display: block;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 10px;
	margin-top: 15px;
}

.form-input {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.3;
	color: #7b7b7b;
	background: #ffffff;
	border: 1px solid #c8c8c8;
	border-radius: 2px;
	padding: 8px 20px 10px 14px;
	margin-top: 11px;
	width: 100%;
	max-width: 432px;
}

.form-input::-moz-placeholder {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.3;
	color: #7b7b7b;
}

.form-input:-ms-input-placeholder {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.3;
	color: #7b7b7b;
}

.form-input::placeholder {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.3;
	color: #7b7b7b;
}

.form-input_medium {
	max-width: 198px;
}

.form-input_short {
	max-width: 72px;
	padding: 8px 10px 10px;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.form-select {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.3;
	color: #7b7b7b;
	background: #ffffff;
	border: 1px solid #c8c8c8;
	border-radius: 2px;
	padding: 8px 10px 10px 10px;
	margin-top: 11px;
	/*max-width: 98px;*/
}

.form-textarea {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.3;
	color: #7b7b7b;
	background: #ffffff;
	border: 1px solid #c8c8c8;
	border-radius: 2px;
	padding: 10px;
	margin-top: 11px;
	max-width: 432px;
	width: 100%;
	height: 98px;
	resize: none;
}

.form label {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.3;
	margin-top: 11px;
	margin-right: 10px;
}

.questionnaire {
	padding: 0 15px;
	max-width: 462px;
}

.statement {
	padding-left: 15px;
	padding-right: 15px;
	max-width: 865px;
}

.education {
	width: 100%;
}

.education-label {
	margin-left: 20px;
}

.certificate-label {
	width: 100%;
}

label.checkbox-label {
	display: block;
	margin-top: -3px;
	margin-right: 30px;
	margin-left: 5px;
}

.checkbox-item {
	display: flex;
	align-items: flex-start;
	margin-top: 15px;
}

@media (max-width: 1210px) {
	.news-page__wrapper {
		justify-content: space-around !important;
		margin-left: 0;
	}
}
@media (max-width: 1130px) {
	.header-logo {
		width: initial;
	}
	.header-logo__image {
		width: 110px;
		height: 105px;
	}
	.header-logo__text {
		font-size: 20px;
		margin-left: 20px;
		padding-right: 10px;
	}
	.header-search-input {
		width: 240px;
	}
	.main-slider__text {
		width: calc(55% - 65px);
	}
	.main-slider__text::after {
		width: calc(100% + 45px);
	}
	.main-slider__text-container {
		padding: 50px 15px 80px;
	}
	.main-slider__image {
		width: calc(45% + 65px);
	}
	.slide__title {
		font-size: 40px;
		margin-bottom: 30px;
	}
	.slide__description {
		font-size: 17px;
		margin-bottom: 30px;
	}
	.news-item {
		padding: 30px 0 50px;
	}
	.news-item__date {
		margin-top: 30px;
	}
}

@media (max-width: 1011px) {
	.title {
		font-size: 40px;
	}
	.header-logo__image {
		width: 80px;
		height: 75px;
	}
	.header-logo__text {
		font-size: 16px;
		margin-left: 15px;
	}
	.header-search-input {
		width: 200px;
	}
	.info {
		padding: 35px 0 30px;
	}
	.info__wrapper {
		margin-top: 30px;
	}
	.info__description {
		margin-bottom: 20px;
	}
	.info__image {
		width: calc(50% - 30px);
		margin-right: 30px;
		margin-bottom: 25px;
	}
	.news {
		padding: 30px 0;
	}
	.news__wrapper {
		margin-top: 25px;
	}
	.news-page {
		padding: 30px 0 5px;
	}
	.news-page__wrapper {
		margin-top: 25px;
	}
	.inner-page__description {
		margin-bottom: 20px;
	}
	.inner-page__image {
		width: calc(50% - 30px);
		margin-right: 30px;
		margin-bottom: 25px;
	}
	.application {
		padding: 10px 0 30px;
	}
}

@media (max-width: 981px) {
	.footer-logo__wrapper {
		width: 100%;
		margin-bottom: 20px;
	}
	.footer-link__wrapper {
		width: 100%;
		padding-left: 0;
	}
}

@media (max-width: 861px) {
	.header {
		padding-top: 10px;
	}
	.header-logo__text {
		font-size: 14px;
		margin-left: 15px;
	}
	.header-search-input {
		width: 180px;
		padding: 10px 35px 10px 10px;
	}
	.header__menu {
		margin-top: 10px;
	}
	.main-slider__text {
		width: calc(60% - 65px);
	}
	.main-slider__text-container {
		padding: 30px 15px 80px;
	}
	.main-slider__image {
		width: calc(40% + 65px);
	}
	.slide__title {
		font-size: 32px;
		margin-bottom: 20px;
	}
	.slide__description {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.news__wrapper {
		justify-content: space-around !important;
	}
}

@media (max-width: 811px) {
	.title {
		font-size: 34px;
	}
	.title-decor::after {
		height: 7px;
	}
	.header-logo__image {
		width: 60px;
		height: 55px;
	}
	.header-logo__text {
		font-size: 12px;
		margin-left: 10px;
	}
	.header-search-input {
		width: 155px;
		font-size: 12px;
		padding: 8px 35px 8px 10px;
	}
	.header-search-input::-moz-placeholder {
		font-size: 12px;
	}
	.header-search-input:-ms-input-placeholder {
		font-size: 12px;
	}
	.header-search-input::placeholder {
		font-size: 12px;
	}
	.header__menu-item:hover .inner__menu {
		width: 366px;
	}
	.header__menu-link {
		font-size: 13px;
		padding: 14px;
	}
	.inner__menu-link {
		font-size: 13px;
		padding: 10px 0;
	}
	.btn {
		font-size: 12px;
	}
}

@media (max-width: 675px) {
	.header-logo {
		order: 0;
	}
	.header-search {
		order: 3;
		margin-top: 10px;
		width: 100%;
	}
	.header-search-input {
		width: 100%;
	}
	.header-eye {
		order: 2;
	}
	.header__menu-item {
		display: none;
	}
	.header__mobile-menu {
		display: block;
		font-size: 0;
		margin: 5px auto;
	}
	.btn-feedback {
		order: 1;
	}
	.mobile-menu__btn {
		width: 40px;
		height: 40px;
		border: none;
		background: url("../img/header/menu.png") center center/cover no-repeat;
	}
	.mobile-menu.show {
		display: flex;
		justify-content: center;
		position: fixed;
		z-index: 50;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: var(--main-color);
		overflow: hidden;
	}
	.mobile-menu__list {
		display: flex;
		flex-direction: column;
		height: auto;
		width: 95%;
		margin: 30px 0 20px;
		padding: 0 10px;
		list-style: none;
		overflow-y: auto;
	}
	.mobile-menu__item {
		text-align: center;
	}
	.mobile-menu__link {
		display: block;
		color: #ffffff;
		text-decoration: none;
		font-size: 14px;
		padding: 6px 0;
	}
	.mobile-menu .btn-close {
		position: absolute;
		top: 8px;
		right: 10px;
		width: 32px;
		height: 32px;
		background: url("../img/header/close.svg") center center/cover no-repeat;
		background-color: transparent;
		border: none;
		z-index: 99;
	}
	.info {
		padding: 25px 0 20px;
	}
	.info__wrapper {
		margin-top: 20px;
	}
	.info__description {
		text-indent: 20px;
		font-size: 14px;
		margin-bottom: 15px;
	}
	.info__image {
		width: calc(60% - 30px);
		margin-bottom: 20px;
	}
	.news {
		padding: 20px 0;
	}
	.news__wrapper {
		margin-top: 15px;
		margin-bottom: 5px;
	}
	.news-page {
		padding: 20px 0 5px;
	}
	.news-page__wrapper {
		margin-top: 15px;
		margin-bottom: 5px;
	}
	.footer {
		padding: 20px 0;
	}
	.footer__wrapper {
		flex-wrap: wrap !important;
	}
	.copyright__wrapper {
		flex-direction: row !important;
		align-items: flex-start !important;
		width: 100%;
		margin-top: 20px;
	}
	.inner-page {
		padding: 25px 0 20px;
	}
	.inner-page__description {
		text-indent: 20px;
		font-size: 14px;
		margin-bottom: 15px;
	}
	.inner-page__image {
		width: calc(60% - 30px);
		margin-bottom: 20px;
	}
	.news-item__photo {
		max-width: 45%;
	}
}

@media (max-width: 525px) {
	.header-logo {
		margin: 0 auto;
	}
	.header-eye {
		display: none;
	}
	.header-search {
		width: 45%;
	}
	.btn-feedback {
		margin-top: 10px;
		width: 45%;
	}
	.main-slider__text {
		width: calc(60% - 65px);
	}
	.main-slider__text::after {
		width: calc(100% + 35px);
	}
	.main-slider__text-container {
		padding: 20px 10px 60px;
	}
	.main-slider__image {
		width: calc(40% + 65px);
	}
	.slide__title {
		font-size: 24px;
		margin-bottom: 15px;
	}
	.slide__description {
		font-size: 12px;
		margin-bottom: 15px;
	}
	.swiper-pagination {
		bottom: 20px;
	}
	.news-item {
		padding: 20px 0;
	}
	.news-item__date {
		margin-top: 20px;
	}
	.news-item__description {
		font-size: 14px;
	}
	.news-item__photos {
		margin-top: 15px;
	}
	.application {
		padding: 10px 0 20px;
	}
	.application__subtitle {
		font-size: 28px;
		margin-top: 10px;
	}
}

@media (max-width: 451px) {
	.form-input {
		font-size: 14px;
	}
	.form-input::-moz-placeholder {
		font-size: 14px;
	}
	.form-input:-ms-input-placeholder {
		font-size: 14px;
	}
	.form-input::placeholder {
		font-size: 14px;
	}
	.form-input_medium {
		max-width: 100%;
	}
	.form-textarea {
		font-size: 14px;
		height: 80px;
	}
	.form-select {
		font-size: 14px;
	}
	.form label {
		font-size: 14px;
	}
}

@media (max-width: 421px) {
	.title {
		font-size: 28px;
	}
	.title-decor::after {
		height: 4px;
	}
	.header-logo__text {
		font-size: 11px;
	}
	.header-search {
		width: 48%;
	}
	.header-search-input {
		padding-right: 20px;
	}
	.header-search__btn {
		right: 5px;
	}
	.btn-feedback {
		width: 48%;
	}
	.mobile-menu__link {
		font-size: 12px;
	}
	.mobile-menu__btn {
		width: 25px;
		height: 25px;
	}
	.main-slider__text {
		width: 60%;
	}
	.main-slider__text-container {
		padding: 20px 15px 50px;
	}
	.main-slider__text::after {
		display: none;
	}
	.main-slider__image {
		width: 40%;
	}
	.slide__title {
		font-size: 17px;
	}
	.news__item {
		width: 270px;
		height: 180px;
		padding: 15px;
		margin: 10px 0;
	}
	.news__subtitle {
		font-size: 14px;
		/* height: 35%; */
	}
	.news__description {
		font-size: 13px;
	}
	.news__date {
		font-size: 13px;
		line-height: 1;
	}
	.news-page__wrapper {
		margin-left: 0;
	}
	.news-page__item {
		width: 270px;
		height: 180px;
		padding: 15px;
		margin: 10px 0;
	}
	.news-page__subtitle {
		font-size: 14px;
		/* height: 35%; */
	}
	.news-page__description {
		font-size: 13px;
	}
	.news-page__date {
		font-size: 13px;
		line-height: 1;
	}
	.info {
		padding: 20px 0;
	}
	.info__wrapper {
		margin-top: 15px;
	}
	.info__description {
		margin-bottom: 10px;
		font-size: 12px;
	}
	.info__image {
		width: 95%;
		margin-right: 0;
		float: none;
	}
	.footer-logo {
		width: 80px;
		height: 85px;
	}
	.footer-logo__text {
		padding-left: 10px;
	}
	.footer-logo__description {
		font-size: 14px;
	}
	.footer-logo__link a {
		font-size: 12px;
	}
	.footer-link a {
		font-size: 13px;
	}
	.inner-page {
		padding: 20px 0;
	}
	.inner-page__description {
		margin-bottom: 10px;
		font-size: 12px;
	}
	.inner-page__image {
		width: 95%;
		margin-right: 0;
		float: none;
	}
	.news-item__description {
		margin-top: 15px;
	}
	.news-item__photo {
		max-width: 85%;
	}
}

@media (max-width: 361px) {
	.title {
		font-size: 24px;
	}
	.news-item {
		padding: 15px 0;
	}
	.news-item__date {
		margin-top: 15px;
	}
	.news-item__description {
		font-size: 12px;
	}
}

.breadcrumb {
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	margin: 15px 0 0;
	padding-left: 0;
}
.breadcrumb-item {
	position: relative;
	margin: 5px 10px 5px 0;
}
.breadcrumb-item::after {
	content: "/";  
	color: #c8c8c8;
	margin-left: 10px;
}
.breadcrumb-item:last-child::after {
	content: "";
}
.breadcrumb-item a {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 17px;
	color: #c8c8c8;
	text-decoration: none;
}
.breadcrumb-item:last-child a {
	color: #367AB8;
}
.breadcrumb-item.active {
	display: flex;
	align-items: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 17px;
	color: #367AB8;
}
.text-center {
	text-align: center;
	margin: 20px 0;
}
.pagination {
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 5px 0 55px;
	padding-left: 0;
  	flex-wrap: wrap;
}
@media (max-width: 525px) {
	.pagination {
		margin: 5px 0 25px;
		justify-content: center;
	}
}
.pagination li {
	margin: 0 5px;
}
.pagination li:first-child:not(.active) {
	border: 1px solid #E5E5E5;
	border-radius: 50%;
	background-image: url('../img/news/arrow-left.svg');
	background-position:  center;
	background-size: 35%;
	background-repeat: no-repeat;
}
.pagination li:first-child:not(.active) a {
	font-size: 0;
}
.pagination li:last-child:not(.active) {
	border: 1px solid #E5E5E5;
	border-radius: 50%;
	background-image: url('../img/news/arrow-right.svg');
	background-position:  center;
	background-size: 35%;
	background-repeat: no-repeat;
}
.pagination li:last-child:not(.active) a {
	font-size: 0;
}
.pagination li.active {
	border: 1px solid var(--main-color);
	border-radius: 50%;
}
.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.2;
	color: #7B7B7B;
	text-decoration: none;
}
.pagination li.active a {
	font-family: 'Montserrat Bold', sans-serif;
	color: var(--main-color);
}
.overlay {
	display: none;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow-y: auto;
}
.overlay.show {
	display: block;
}
.popup {
	width: 552px;
	position: absolute;
	padding: 34px 60px;
	background: #f8f3f3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.popup__title {
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 1.2;
	color: #000000;
}
.popup__close {
	position: absolute;
	top: 23px;
	right: 26px;
	width: 22px;
	height: 22px;
	padding-bottom: 2px;
	border: none;
	background-color: transparent;
	background-image: url('../img/close.svg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.popup__form {
	margin-top: 30px;
}
label.popup-checkbox {
	display: flex;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-left: 25px;
	position: relative;
    font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #7B7B7B;
	margin-top: 5px;
}
label.popup-checkbox::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 15px;
	height: 15px;
	background-color: transparent;
	border: 1px solid #C4C4C4;
	border-radius: 2px;
}
.popup__input {
    font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #7b7b7b;
	line-height: 1.3;
	border: 1px solid #C8C8C8;
	border-radius: 2px;
	width: 100%;
	padding: 8px 15px 14px;
}
.popup__input:focus {
	outline: 0;
	box-shadow: 0 0 5px #000;
}
.popup__textarea {
	background-color: #ffffff;
	width: 100%;
	height: 114px;
	border: 1px solid #C8C8C8;
	border-radius: 2px;
	padding: 10px 15px;
	resize: none;
}
.popup__textarea:focus {
	outline: 0;
	box-shadow: 0 0 5px #000;
}
.custom-checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.custom-checkbox:checked + label::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 3px;
	height: 5px;
	width: 10px;
	transform: rotate(315deg);
	border: 1px solid #000000;
	border-right: none;
	border-top: none;
	z-index: 5;
}
.popup__description {
    font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.4;
	color: #7B7B7B;
}
.popup__description span {
	color: #4c84c9;
}
.btn-popup {
	padding: 8px 62px;
	margin-top: 24px;
}
.popup__input {
	position: relative;
	background-color: transparent;
	outline: none;
	z-index: 1;
	top: 0;
	left: 0;
}
.popup__input:valid {
	background-color: #ffffff;
}
.popup__input:valid + span {
	display: none !important;
}
.popup__input:focus {
	background-color: #ffffff;
}
.popup__input:focus + span {
	display: none !important;
}
.form .placeholder span {
	color: #4c84c9;
	margin-left: 8px;
}
.form-label {
	position: relative;
	margin-bottom: 20px;
}
.form-label:nth-child(3) {
	margin-bottom: 10px;
}
.form .placeholder {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
    font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #7b7b7b;
	line-height: 40px;
	z-index: 0;
	max-width: 432px;
	width: 100%;
	padding-left: 15px;
	height: 40px;
	background-color: #ffffff;
	border-radius: 2px;
}
.form .placeholder__textarea {
	height: 114px;
}
.form .form__input:focus ~ .placeholder{
	color: transparent;
}
@media (max-width: 581px) {
	.popup {
		width: 380px;
		padding: 20px;
	}
	.popup__title {
		font-size: 24px;
	}
	.popup__form {
		margin-top: 15px;
	}
	label.popup-checkbox {
		font-size: 12px;
	}
	.popup__description {
		font-size: 12px;
	}
	.btn-popup {
		display: block;
		margin: 20px auto 0;
	}
}
@media (max-width: 421px) {
	.popup {
		width: 290px;
		padding: 20px 10px;
	}
	.popup__title {
		font-size: 18px;
	}	
	.popup__close {
		top: 15px;
		right: 15px;
		width: 19px;
		height: 19px;
	}
	.popup__input {
		font-size: 14px;
		padding: 8px 15px 10px;
	}
	.form-label {
		margin-bottom: 10px;
	}
	.form .placeholder {
		font-size: 14px;
		color: #7b7b7b;
		line-height: 36px;
		height: 36px;
	}
	.popup__textarea {
		height: 80px;
	}
	.form .placeholder__textarea {
		height: 80px;
	}
}

.search__subtitle {
	font-size: 24px;
	line-height: 1.2;
	margin: 20px 0;
}
.search-list {
	list-style: none;
	padding-left: 20px;
}
.search-item {
	margin: 15px 0 20px 15px;
}

.search-item__title {
	text-decoration: none;
	color: #000000;
	font-size: 18px;
	line-height: 1.2;
	padding-left: 20px;
}
.img_wrapper {
	width: 210px;
	height: 200px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 630px) {
	.title-search {
		margin: 15px 0;
	}
	.img_wrapper {
		width: auto;
		max-width: 80%;
	}
	.search-list {
		padding-left: 0;
		padding-top: 10px;
	}
	.search-item {
		flex-direction: column;
		justify-content: center;
		margin-left: 0;
	}
	.search__subtitle {
		font-size: 22px;
		margin: 15px 0;
	}
	.search-item__title {
		padding-left: 0;
		margin-top: 15px;
	}
}

@media (max-width: 421px) {
	.img_wrapper {
		max-width: 90%;
		height: auto;
	}
	.search-list {
		padding-left: 0;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.search__subtitle {
		font-size: 20px;
		margin: 10px 0;
	}
	.search-item__title {
		font-size: 16px;
		text-align: center;
	}
}