/*** ============== // TABLE OF CONTENT // ==============
01 - MAIN


==================================================== ***/

:root{
	--base:#151515;
	--primary:#AB0823;
	--secondary:#3F4656;
	--blue:#0D519A;
	--gray:#3C3C3C;
	--light:#F1F1F1;
	--white:#FFFFFF;
}

/*--- MAIN ---*/
section {
	padding: 70px 0;
	position: relative;
	background: var(--white);
}
section.bg-light {
	background: var(--light);
}
.section-title {
	margin-bottom: 50px;
}
.section-title__title {
	font-size: 42px;
	line-height: 120%;
	font-weight: 400;
	margin-bottom: 20px;
}
.section-title__desc {
	font-size: 18px;
	line-height: 140%;
}
h1, .h1 {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--gray);
}

h2, .h2 {
  font-size: 44px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--gray);
}

h3, .h3 {
  font-size: 38px;
  line-height: 1.33;
  font-weight: 600;
  color: var(--gray);
}

h4, .h4 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--gray);
}

h5, .h5 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--gray);
}

h6, .h6 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--gray);
}
p {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 20px 0;
	font-weight: 300;
	color: var(--gray);
}
blockquote {
	padding: 15px 30px 15px 30px;
	border-radius: 10px;
	background: var(--light);
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}
blockquote:before {
	content: '';
	position: absolute;
	width: 5px;
	height: calc(100% - 28px);
	left: 0px;
	top: 14px;
	border-radius: 0 4px 4px 0;
	background: var(--primary);
}
blockquote p:last-child {
  margin: 0;
}
blockquote.no-line:before {
	display: none;
}
input, textarea {
	user-select: text!important;
	-webkit-user-select: text!important;
	-moz-user-select: text!important;
	-ms-user-select: text!important;
	user-select: text!important;
}
ul {
	font-size: 18px;
	color: var(--gray);
}
ul li {
	font-size: 18px;
	color: var(--gray);
}
ol {
	font-size: 18px;
	color: var(--gray);
}
ol li {
	font-size: 18px;
	color: var(--gray);
}

.content a[data-fancybox]{
  display: inline-block;
}
.content img {
	border-radius: 8px;
	margin: 0 0 5px 0;
	max-width: 100%;
	width: auto;
}
.content .bordered {
	border: 1px solid #CCC;
}
.content .zoom-img {
	position: relative;
	margin: 0 0 5px 0;
	overflow: hidden;
	border-radius: 8px;
}
.content .zoom-img img {
	margin: 0;
	transition: .4s;
}
.content .zoom-img:hover img {
	transform: scale(1.05);
}
.content .zoom-img::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: linear-gradient(rgba(53, 50, 56, 0) 0%, rgba(53, 50, 56, 0.64) 100%);
	opacity: 0;
	z-index: -1;
	transition: .4s;
}
.content .zoom-img:hover::before {
	opacity: 1;
}
.content .zoom-img::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background: rgba(53, 50, 56, 0.5);
	right: 10px;
	bottom: 10px;
	border-radius: 5px;
	background-image: url(../icons/plus.svg);
	background-size: cover;
	opacity: .6;
	z-index: 2;
	transition: .4s;
}
.content .zoom-img:hover::after {
	opacity: 1;
}
.content video {
	width: 100%;
}
.slide_up_anim {
	display: block;
	opacity: 0!important;
	transform: translateY(50px);
}
.slide_up_anim_show {
	opacity: 1;
	transition: all 1.2s;
	transform: translateY(0%);
}


/*--- END MAIN ---*/

/*--- PRELOADER ---*/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	background: #fff;
	z-index: 9999;
	display: block;
}
#preloader .counter {
	position: fixed;
	color: var(--base);
	font-size: 5rem;
	left: 10vw;
	bottom: 10vh;
	margin: 0;
}
#preloader .bar {
	position: fixed;
	background: var(--base);
	height: 10px;
	width: 0px;
	left: 0vw;
	bottom: 9vh;
	margin: 0;
	border-radius: 0 5px 5px 0;
	transition: .5s ease;
}

/*--- END PRELOADER ---*/

/*--- SCROLL TOP ---*/

.scroll-top {
	position: fixed;
	right: 3vw;
	bottom: -60px;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	overflow: hidden;
	transition: .4s;
	opacity: 0;
	z-index: 99;
}
.scroll-top.show {
	bottom: 60px;
	opacity: .6;
}
.scroll-to-top {
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--gray);
	opacity: .7;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: .3s;
}
.scroll-to-top:hover {
	background: var(--secondary);
	color: var(--white);
	opacity: 1;
}
.scroll-to-top svg {
	width: 24px;
	height: 24px;
}

/*--- END SCROLL TOP ---*/

/*--- HEADER ---*/

.header {
	width: 100%;
	background: var(--white);
	transition: .6s;
	z-index: 9;
	position: relative;
	box-shadow: 0px -2px 20px 0px rgba(40, 40, 40, 0.05);
}
.header-main {
	background: var(--secondary);
}
.header-main__inner {
	width: 100%;
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-main__left {

}
.header-main__logo-wrap {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.header-main__logo-wrap:hover {
	text-decoration: none;
	color: var(--base);
}
.header-main__logo_mob {
	display: none;
}
.header-main__logo {
	height: 65px;
	width: auto;
}
.header-main__right {
	display: flex;
	align-items: center;
}
.header-main__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin: 0 45px;
}
.header-main__phone-link {
	text-decoration: none;
	font-size: 19px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	position: relative;
	color: var(--white);
}
.header-main__phone-link:hover {
	text-decoration: none;
	color: #D80222;
}
.header-main__email-link {
	text-decoration: none;
	font-size: 16px;
	line-height: 1;
	font-weight: 300;
	margin: 0;
	padding: 0;
	position: relative;
	color: var(--white);
}
.header-main__email-link:hover {
	text-decoration: none;
	color: #D80222;
}
.header-main__request {
	padding: 10px 18px;
	font-size: 14px;
	margin: 0;
}
.header-main__request:hover {

}
.header-main__lang {
	display: flex;
}
.header-main__lang-item {
	border: 1px solid var(--secondary);
	border-radius: 50%;
	overflow: hidden;
	transition: .3s;
	margin: 0 10px 0 0;
}
.header-main__lang-item:last-child {
	margin: 0;
}
.header-main__lang-item:hover {
	border-color: var(--white);
}
.header-main__lang-item img {
	width: 30px;
	height: 30px;
}
.header-main__search-btn {
	width: 35px;
	height: 35px;
	margin: 0 0 0 30px;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-main__search-btn svg {
	width: 24px;
	height: 24px;
}
.header-main__search-btn:hover {
	cursor: pointer;
}




.header-bottom {
	background: var(--white);
	box-shadow: 0px 2px 13px 0px rgba(32, 37, 49, 0.11);
}
.header-bottom__inner {
	width: 100%;
	padding: 0px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-bottom__inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 15px;
	width: calc(100% - 30px);
	height: 1px;
	background: var(--light-gray);
	opacity: 1;
	transition: .3s;
}
.header.fixed .header-bottom__inner::before {
	opacity: 0;
}
.header-bottom__search {
	margin: 0 15px 0 30px;
	background: var(--light);
	color: #AAA;
	height: 100%;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .4s;
}
.header-bottom__search:hover {
	cursor: pointer;
	color: var(--primary);
}
.header-bottom__search svg {
	width: 22px;
	height: 22px;
}


.menu__wrap {
	padding: 0 90px 0 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	width: calc(100% - 90px);
}
.menu__item {
	position: relative;
}
.menu__link {
	color: var(--gray);
	text-decoration: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 18px 15px;
	font-size: 16px;
	font-weight: 700;
	position: relative;
}
.menu__link:hover {
	color: var(--base);
	text-decoration: none;
}
.menu__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 15px;
	width: calc(100% - 30px);
	height: 5px;
	background: var(--primary);
	transition: .3s;
	opacity: 0;
}
.menu__link:hover::after {
	opacity: 1;
}
.menu__link.active::after {
	opacity: 1;
}
.submenu__wrap {
	display: block;
	position: absolute;
	background: #fff;
	width: 260px;
	left: 0;
	top: 70px;
	opacity: 0;
	visibility: hidden;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	padding: 15px 5px;
	border-radius: 10px;
	z-index: 99;
	list-style: none;
	transition: .3s;
}
.menu__item:last-child .submenu__wrap {
	right: 0;
	left: auto;
}
.menu__item:hover .submenu__wrap {
	opacity: 1;
	top: 55px;
	visibility: visible;
}
.submenu__item {
	width: 100%;
}
.submenu__link {
	width: 100%;
	display: block;
	padding: 5px 10px;
	text-decoration: none;
}
.submenu__link:hover {
	color: var(--primary);
	text-decoration: none;
	transform: translateX(8px);
}
.header-main__menu-btn {
	position: relative;
	width: 35px;
	height: 35px;
	margin-left: 20px;
}
.header-main__menu-btn span {
	position: absolute;
	right: 0;
	top: 16px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--white);
	transition: .3s;
}
.header-main__menu-btn span::before {
	content: '';
	position: absolute;
	right: 0;
	top: -10px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--white);
	transition: .3s;
}
.header-main__menu-btn span::after {
	content: '';
	position: absolute;
	right: 0;
	top: 10px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--white);
	transition: .3s;
}
.header-main__menu-btn:hover {
	cursor: pointer;
}
.header-main__menu-btn:hover span {
	width: 26px;
}
.header-main__menu-btn:hover span,
.header-main__menu-btn:hover span::before,
.header-main__menu-btn:hover span::after {
	background: var(--white);
}
/*.header-main__menu-btn.active span {
	background: #fff;
	width: 0;
}
.header-main__menu-btn.active span::before {
	transform: rotate(-45deg);
	top: -3px;
	right: -4px;
	width: 32px;
}
.header-main__menu-btn.active span::after {
	transform: rotate(45deg);
	top: -3px;
	right: -4px;
	width: 32px;
}*/

/*--- END HEADER ---*/

/*--- SEARCH ---*/

.search {
	position: absolute;
	z-index: 99;
	left: 0;
	top: 145px;
  box-shadow: 0px 10px 10px 0px rgba(40, 40, 40, 0.05);
	width: 100%;
	height: 80px;
	padding: 0;
	margin: 0;
	background: var(--white);
	border-top: 1px solid #eee;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
.search.search_show {
	opacity: 1;
	visibility: visible;
}
.search__inner {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.search__input {
	padding: 0 40px;
	margin: 0 50px 0 0;
	height: 40px;
	width: calc(100% - 90px);
	border: 1px solid var(--light);
	border-radius: 8px;
	outline: none;
	font-size: 17px;
}
.search__btn {
	padding: 11px 20px;
}

.search-results__wrap {

}
.search-results__item {
	margin:  0 0 10px 0;
}
.search-results__item a {

}
.search-results__item a:hover {

}



/*--- END SEARCH ---*/

/*--- MOBILE MENU ---*/
.mobile-menu__back {
	visibility: hidden;
	opacity: 0;
	background: var(--base);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99;
	transition: .3s;
}
.mobile-menu__back.mobile-menu__back_show {
	visibility: visible;
	opacity: .6;
}
.mobile-menu {
	position: fixed;
	width: 100vw;
	max-width: 260px;
	height: 100vh;
	top: 0;
	right: -110vw;
	padding: 20px 0 50px;
	background: var(--secondary);
	border-left: 3px solid var(--white);
	z-index: 999;
	transition: .4s;
}
.mobile-menu.active {
	right: 0;
}
.mobile-menu__inner {
	padding: 45px 40px;
}
.mobile-menu__nav {
	padding: 0;
	margin: 30px 0 0 0;
	list-style: none;
}
.mobile-menu__nav-item {

}
.mobile-menu__nav-link {
	text-decoration: none;
	font-weight: 400;
	padding: 10px 0;
	display: inline-block;
	color: var(--white);
	position: relative;
}
.mobile-menu__nav-link:hover {
	text-decoration: none;
}
.mobile-menu__nav-link.active {
	text-decoration: none;
}
.mobile-menu__nav-link.active::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 260px;
	height: 5px;
	background: var(--primary);
}
.mobile-menu__category {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mobile-menu__category-item {
	padding: 8px 0;
	position: relative;
	border-bottom: 1px solid #f2f2f2;
	max-width: 500px;
	padding-right: 30px;
}
.mobile-menu__category-item::before {
	content: '';
	position: absolute;
	background: url('../icons/arrow-left.svg');
	width: 20px;
	height: 20px;
	background-size: contain;
	right: 0;
	top: 12px;
	transform: rotate(180deg);
	opacity: .3;
}
.mobile-menu__category-link {
	text-decoration: none;
	font-size: 1.15rem;
	display: block;
}
.mobile-menu__category-link:hover {
	text-decoration: none;
}
.mobile-menu__subcategory-wrap {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: -110vw;
	padding: 60px 0 50px;
	background: var(--white);
	z-index: 999;
	transition: .4s;
}
.mobile-menu.active .mobile-menu__subcategory-wrap {
	display: block;
}
.mobile-menu__subcategory-inner {
	padding: 45px 40px;
}
.mobile-menu__subcategory-wrap.active {
	left: 0;
}
.mobile-menu__subcategory-title {
	font-size: 1.15rem;
	font-weight: 600;
	border-bottom: 1px solid #f2f2f2;
	max-width: 500px;
	padding: 8px 0 8px 30px;
	position: relative;
	transition: .3s;
	cursor: pointer;
}
.mobile-menu__subcategory-title:hover {
	color: var(--primary-hover);
}
.mobile-menu__subcategory-title::before {
	content: '';
	position: absolute;
	background: url('../icons/arrow-left.svg');
	width: 20px;
	height: 20px;
	background-size: contain;
	left: 0;
	top: 12px;
	opacity: .3;
}
.mobile-menu__subcategory {
	padding: 0;
	margin: 30px 0 0 0;
	list-style: none;
}
.mobile-menu__subcategory-item {

}
.mobile-menu__subcategory-item a {
	text-decoration: none;
	font-weight: 400;
	padding: 5px 0;
	display: inline-block;
}
.mobile-menu__subcategory-item a:hover {
	text-decoration: none;
}
.mobile-menu__close {
	position: absolute;
	right: 15px;
	top: 28px;
	width: 32px;
	height: 32px;
}
.mobile-menu__close::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--white);
	transition: .3s;
	transform: rotate(-45deg);
	top: 13px;
	right: -2px;
	width: 36px;
}
.mobile-menu__close::after {
	content: '';
	position: absolute;
	right: 0;
	top: 10px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--white);
	transition: .3s;
	transform: rotate(45deg);
	top: 13px;
	right: -2px;
	width: 36px;
}
.mobile-menu__close:hover {
	cursor: pointer;
}

/*--- END MOBILE MENU ---*/


/*--- BREADCRUMBS ---*/

.breadcrumbs {
	padding: 30px 0;
}
.breadcrumbs-wrap {
	position: relative;
}
.breadcrumbs-inner {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	float: left;
}
.breadcrumb-item {
	padding: 0 3px;
	margin: 0;
}
.breadcrumb-link {
	text-decoration: none;
	color: gray;
	font-weight: 300;
	line-height: 120%;
	font-size: 14px;
}
.breadcrumb-link:hover {
	color: var(--primary);
	text-decoration: none;
}
.breadcrumb-item:last-child .breadcrumb-link {
	color: var(--base);
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
.breadcrumb-item:last-child .breadcrumb-link:hover {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
.breadcrumb-link:after {
	content: "/";
	padding-left: 6px;
	color: var(--base);
}
.breadcrumb-item:last-child .breadcrumb-link:after {
	display: none;
}
.breadcrumbs-btn {
	float: right;
	margin: 0;
	padding: 4px 14px 8px;
	box-sizing: border-box;
	font-size: 14px;
}
.btn.breadcrumbs-btn span.chevron {
	width: 14px;
}
.btn.breadcrumbs-btn span.chevron svg {
  width: 12px;
  height: 12px;
  top: 5px;
  left: -3px;
}

/*--- END BREADCRUMBS ---*/

/*--- PAGINATION ---*/

.pagination-wrapper {

}
.pagination-wrapper .pagination {
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: 5px;
	justify-content: center;
}
.pagination-wrapper .page-item {

}
.pagination-wrapper .page-item.active {

}
.pagination-wrapper .page-item:first-child .page-link {
	border-radius: 8px 0 0 8px;
}
.pagination-wrapper .page-item:last-child .page-link {
	border-radius: 0 8px 8px 0;
}
.pagination-wrapper .page-link {
	padding: 0;
	line-height: 100%;
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 3;
	color: var(--base);
	background-color: #F5F5F5;
	border: 1px solid var(--light);
	font-size: 16px;
}
.pagination-wrapper .page-link svg {
	width: 14px;
	height: 14px;
}
.pagination-wrapper .page-link:hover {
	color: var(--primary);
}
.pagination-wrapper .page-item.active .page-link {
	background: var(--secondary);
	color: var(--white);
	border-color: var(--secondary);
}
.pagination-wrapper .page-item.active .page-link:hover {
	pointer-events: none;
}
.neighbor {
	display: flex;
	justify-content: space-between;
}
.neighbor__back {

}
.neighbor__next {

}

/*--- END PAGINATION ---*/


/*--- FOOTER ---*/

.main-footer {
	background: var(--base);
}
.footer-top {
	
}
.footer-top__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	border-bottom: 1px solid var(--light);
}
.footer-top__left {

}
.footer-top__right {

}
.footer-top__image {

}
.footer-top__image a {
	
}
.footer-top__image a img {
	height: 60px;
	width: auto;
}
.footer-top__social {
	display: flex;
	align-items: center;
}
.footer-top__social-item {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #F5F5F5;
	padding: 12px;
	margin: 0 0 0 10px;
}
.footer-top__social-item:hover {
	/*filter: brightness(.7);*/
}
.footer-top__social-item img {
	transition: .3s;
}
.footer-top__social-item:hover img {
	filter: brightness(0) invert(1);
}
.footer-top__social-item_whats:hover {
	background: #20A513;
}
.footer-top__social-item_vk:hover {
	background: #0085F3;
}
.footer-top__social-item_youtube:hover {
	background: #D1261C;
}


.footer-bottom {
	padding: 0;
	border-bottom: 1px solid #222;
}
.footer-bottom__inner {
	padding: 50px 0 20px;
	display: flex;
}
.footer-bottom__menu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.footer-bottom__links {
	width: calc((100% - 300px) / 3);
}
.footer-bottom__links.footer-bottom__links_about {
  width: calc((100% - 300px) * .3);
}
.footer-bottom__links.footer-bottom__links_depart {
  width: calc((100% - 300px) * .35);
}
.footer-bottom__links.footer-bottom__links_catalog {
  width: calc((100% - 300px) * .35);
}
.footer-bottom__links-title {
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 20px 0;
	text-decoration: none;
	color: #EEE;
}
.footer-bottom__links-title a:hover {
	text-decoration: none;
}
.footer-bottom__links ul {
	margin: 0 0 15px 0;
	padding: 0 15px 0 0;
	list-style: none;
}
.footer-bottom__links ul li {
	margin: 0 0 9px 0;
	line-height: 1;
}
.footer-bottom__link {
	font-size: 14px;
	text-decoration: none;
	color: #EEE;
	opacity: .6;
}
.footer-bottom__link:hover {
	text-decoration: none;
	color: #EEE;
	opacity: 1;
}
.footer-bottom__contact {
	width: 300px;
	text-align: left;
	padding-right: 30px;
}
.footer-bottom__contact-wrap {
	
}
.footer-bottom__logo {

}
.footer-bottom__logo img {
	height: 64px;
	width: auto;
	margin: -15px 0 20px 0;
}
.footer-bottom__desc {

}
.footer-bottom__desc p {
	color: #EEE;
	opacity: .6;
	font-size: 14px;
}
.footer-bottom__phone-link {
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	padding: 0 0 0 40px;
	position: relative;
}
.footer-bottom__phone-link:hover {
	text-decoration: none;
}
.footer-bottom__phone-link span {
	width: 30px;
	height: 30px;
	display: flex;
	background: var(--primary);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: -4px;
	padding: 8px;
}
.footer-bottom__phone-link span img {
	width: 100%;
	height: 100%;
	filter: brightness(10);
}
.footer-bottom__btn {
	margin: 30px 0 40px 0;
}
.footer-bottom__content {
	
}
.footer-bottom__content p {
	font-size: 13px;
	margin: 0 0 3px 0;
	line-height: 140%;
}
.footer-bottom__content a {
	text-decoration: underline;
}
.footer-bottom__content a:hover {

}


.footer-copy {
	
}
.footer-copy__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 0 25px;
}
.footer-copy__left {
	width: 200px;
}
.footer-copy__left p {
	font-size: 14px;
	line-height: 150%;
	margin: 0;
	display: block;
	color: #EEE;
	font-weight: 400;
}
.footer-copy__right {
	width: calc(100% - 200px);
	text-align: right;
}
.footer-copy__right p {
	margin: 0;
	line-height: 100%;
}
.footer-copy__right a {
	font-size: 14px;
	line-height: 150%;
	margin: 0;
	display: inline-block;
	color: #EEE;
	font-weight: 400;
	text-decoration: none;
}
.footer-copy__right a:hover {
	text-decoration: none;
	color: var(--primary);
}
.footer-copy__bottom {
	text-align: center;
	width: 180px;
	margin: 0 auto;
	font-size: 14px;
	color: #EEE;
	font-weight: 400;
	position: relative;
}
.footer-copy__bottom p {
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #EEE;
}

.footer-copy__bottom a {
	font-weight: 700;
	color: var(--primary);
}
.footer-copy__bottom a:hover {
	text-decoration: none;
	color: var(--primary);
	opacity: .7;
}
.footer-copy__item {
	
}
.footer-copy__link {
	
}

/*--- END FOOTER ---*/


/*--- ASIDE ---*/

.blocks-wrap {
	display: flex;
}
.blocks-wrap__aside {
	width: 300px;
	padding: 0 0 0 30px;
}
.aside-menu {
	
}
.aside-menu__wrap {
	box-shadow: 0px 30px 45px 0px rgba(32, 37, 49, 0.14);
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
}
.aside-menu__title {
	background: var(--secondary);
	padding: 20px 15px 20px 15px;
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin: 0;
}
.aside-menu__items {
	list-style: none;
	padding: 0;
	margin: 0;
}
.aside-menu__item {
	border-bottom: 1px solid #f2f2f2;
}
.aside-menu__item:last-child {
	border-bottom: none;
}
.aside-menu__link {
	display: block;
	background: var(--white);
	padding: 20px 15px 20px 35px;
	font-size: 18px;
	font-weight: 400;
	color: var(--base);
	line-height: 130%;
	position: relative;
}
.aside-menu__link:hover {
	text-decoration: none;
	color: var(--primary);
}
.aside-menu__link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: var(--primary);
	opacity: 0;
}
.aside-menu__link.active {
	font-weight: 600;
	color: var(--primary);
}
.aside-menu__link.active::before {
	opacity: 1;
}


.aside-submenu__items {
	list-style: none;
	padding: 0;
	margin: 0;
}
.aside-submenu__item {
	border-bottom: 1px solid #f2f2f2;
}
.aside-submenu__item:last-child {
	border-bottom: none;
}
.aside-submenu__link {
	display: block;
	background: #F5F5F5;
	padding: 10px 15px 10px 35px;
	font-size: 15px;
	font-weight: 400;
	color: var(--base);
	line-height: 130%;
	position: relative;
}
.aside-submenu__link:hover {
	text-decoration: none;
	color: var(--primary);
}
.aside-submenu__link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: calc(100% + 1px);
	width: 3px;
	background: #CCC;
	opacity: 1;
}
.aside-submenu__link.active {
	font-weight: 600;
	color: var(--primary);
}


.blocks-wrap__content {
	width: calc(100% - 300px);
}
.blocks-wrap__content.prod img {
    object-fit: contain;
    object-position: left;
}
.banner-inner {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 60px 0;
}
.banner-inner__image {

}
.banner-inner__image img {
	min-height: 200px;
	object-fit: cover;
}
.banner-inner__title {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
	text-transform: uppercase;
	color: var(--white);
	font-size: 40px;
	padding-right: 30px;
}

/*--- END ASIDE ---*/


/*--- COLLAPSE ---*/

.collapse {
	border-top: 1px solid var(--light-gray);
	margin: 25px 0 0 0;
}
.collapse__item {
	border-bottom: 1px solid var(--light-gray);
	transition: .3s ease;
}
.collapse__item.active {

}
.collapse__head {
	padding: 20px 0;
	position: relative;
	height: 70px;
	display: flex;
	align-items: center;
}
.collapse__head:hover {
	cursor: pointer;
}
.collapse__title {
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	color: var(--base);
	letter-spacing: -0.02em;
	-webkit-letter-spacing: -0.02em;
	-moz-letter-spacing: -0.02em;
	-ms-letter-spacing: -0.02em;
	-o-letter-spacing: -0.02em;
	margin: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 0 0 0 10px;
}
.collapse__content {
	padding: 0 0 20px 10px;
	display: none;
}
.collapse__content p {
	margin: 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.collapse__btn {
	position: absolute;
	right: 0px;
	top: 15px;
	z-index: 1;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}
.collapse__btn img {
	width: 40px;
	height: 40px;
	display: block;
	transition: .3s ease;
}
.collapse__item.active .collapse__btn {

}
.collapse__item.active .collapse__btn img {
	transform: rotate(45deg);
}

/*--- END COLLAPSE ---*/

/*-- MODAL --*/

.fancybox-is-open .fancybox-bg {
	background: var(--base);
	opacity: .7;
}
.modal {
	width: 96vw;
	max-width: 950px;
	border-radius: 8px;
	background: var(--secondary);
	padding: 30px;
}
.modal-close-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 20px;
	height: 20px;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
}
.modal-close-btn span {
	width: 100%;
	height: 2px;
	display: block;
	background: var(--primary);
	border-radius: 5px;
	transform: rotate(-45deg);
}
.modal-close-btn span:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	display: block;
	background: var(--primary);
	border-radius: 5px;
	transform: rotate(90deg);
}
.modal-title-wrap {
	margin: 0 0 40px 0;
}
.modal-title__title {
	font-size: 30px;
	color: var(--white);
	font-weight: 600;
	padding: 0 0 10px 0;
	margin: 0;
	border-bottom: 1px solid #576274;
}
.modal-title__desc {
	font-size: 14px;
	margin: 30px 0 0 0;
}
.form {

}
.form .form-group {
	margin: 0 0 10px 0;
}
.modal .form .form-group {
	margin: 0 0 15px 0;
}
.form .form-control {
	height: 60px;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 4px;
	outline: none!important;
	padding: 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 155%;
	color: var(--base);
	transition: .3s;
}
.form.form_light .form-control {
	border-color: #BABCCE;
}
.form textarea.form-control {
	height: calc(100% - 15px);
	min-height: 120px;
	width: 100%;
	resize: none;
}
.form.form_light .form-control:focus,
.form.form_light .form-control:active {
	border-color: var(--primary);
}
.form .modal-form-btn {
	border-radius: 4px;
	margin: 5px 0 15px 0;
	width: 100%;
}
.politic-text {
	font-size: 14px;
	line-height: 130%;
	color: #999;
	margin: 0 0 20px 0;
}
.politic-text a {
	text-decoration: underline;
	color: #999;
}
.politic-text a:hover {
	color: var(--primary);
}
.form-group_radio .form-control {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	display: none;
}
.form-group_radio label {
	color: var(--white);
	position: relative;
	padding: 0 0 0 45px;
	line-height: 28px;
	cursor: pointer;
}
.form-group_radio label::before {
	display: block;
	width: 30px;
	height: 30px;
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 50%;
	background-color: #fff;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}
.form-group_radio label::after {
	display: block;
	width: 14px;
	height: 14px;
	content: '';
	position: absolute;
	top: 8px;
	left: 8px;
	border-radius: 50%;
	transition: all 0.3s ease;
	background: var(--white);
}
.form-group_radio .form-control:checked ~ label::after {
	background: var(--primary);
}

/*-- END MODAL --*/


/*-- PROJECTS --*/

.projects {

}
.projects__items {
	padding: 0;
	list-style: none;
}
.projects__item {
	margin: 0 0 15px 0;
}
.projects__item a {
	color: var(--base);
	font-weight: 600;
	font-size: 16px;
}
.projects__item a:hover {
	text-decoration: none;
	color: var(--primary);
}

/*-- END PROJECTS --*/

/*-- OBORUD --*/

.oborud {

}
.oborud__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -10px;
}
.oborud__item {
	width: 33.33%;
	padding: 0 10px;
	margin: 0 0 50px 0;
}
.oborud__item-inner {
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
}
.oborud__item-inner:hover {
	text-decoration: none;
}
.oborud__item-image {

}
.oborud__item-image img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 8px;
}
.oborud__item-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--base);
	transition: .35s;
	margin: 15px 10px 0 10px;
}
.oborud__item-inner:hover .oborud__item-title {
	color: var(--primary);
}


/*-- END OBORUD --*/


/*-- LICENSES --*/

.licenses-wrap {
	margin: 0 -10px;
	display: flex;
	flex-wrap: wrap;
}
.licenses-item {
	width: 25%;
	padding: 10px;
}
.licenses-item__link {
	display: inline-block;
	margin: 0;
	border: 2px solid var(--primary);
	border-radius: 5px;
	overflow: hidden;
}
.licenses-item__link:hover {
	box-shadow: 0px 15px 25px 0px rgba(32, 37, 49, 0.15);
}
.licenses-item__link img {
	margin: 0;
	border-radius: 0;
}
.licenses-item__title {
	transition: .35s;
	color: var(--base);
	margin: 10px 0 30px 0;
}
.licenses-item__link:hover ~ .licenses-item__title {
	color: var(--primary);
}

/*-- END LICENSES --*/

/*-- PRODUCT --*/

.prod {

}
.prod h1,.prod h2,.prod h3,.prod h4,.prod h5,.prod h6,
.prod .h1,.prod .h2,.prod .h3,.prod .h4,.prod .h5,.prod .h6 {
	border-left: 5px solid var(--primary);
	padding-left: 10px;
}
.prod .prod__title {
	border-left: none;
	padding-left: 0px;
}

.prod__block {
	display: flex;
	flex-wrap: wrap;
}
.prod__left {
	width: 45%;
}
.prod__gallery-wrap {

}
.prod__gallery-inner {
	
}
.prod__gallery-inner .slick-list {
	border-radius: 8px;
	overflow: hidden;
}
.slider-prod {
	padding: 0 0 50px 0;
}
.prod__gallery-item {
	
}
.slider-prod .slick-dots {
  bottom: 20px;
}
.prod__right {
	width: 55%;
	padding: 0 0 0 30px;
}
.prod__table {
	overflow: auto;
}
.prod__table table {
	border-spacing: unset;
	border: 2px solid #efefef;
	width: 100%;
	border-radius: 8px;
}
.prod__table table tr {
	background-color: #efefef;
}
.prod__table table tr:nth-child(2n) {
  background-color: var(--white);
}
.prod__table table td {
	border: none;
	padding: 4px 10px;
	color: var(--base);
}

.prod__files-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.prod__files-item {
	width: 50%;
	border-radius: 3px;
	margin: 0 10px 10px 10px;
	display: flex;
	align-items: center;
	padding: 10px 15px;
	text-decoration: none;
}
.prod__files-item:hover {
	text-decoration: none;
}
.prod__files-item-icon {
	width: 40px;
	color: var(--primary);
}
.prod__files-item-icon svg {
	width: 40px;
	height: 40px;
}
.prod__files-item-title {
	width: calc(100% - 40px);
	padding: 0 0 0 20px;
	margin: 0;
	line-height: 110%;
	font-weight: 600;
	transition: .4s;
}
.prod__files-item:hover .prod__files-item-title {
	color: var(--primary);
}


/*-- END PRODUCT --*/


/*-- PUBLISHING --*/

.publishing__wrap {
	margin: 0 -10px;
	padding: 0 0 40px 0;
	display: flex;
	flex-wrap: wrap;
}
.publishing__inner {
	display: flex;
	flex-wrap: wrap;
}
.publishing__item {
	width: 25%;
	padding: 0 10px;
	margin: 0 0 20px 0;
}
.publishing__item-link {
	text-decoration: none;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #CCC;
}
.publishing__item-link:hover {
	text-decoration: none;
}
.publishing__item-image {

}
.publishing__item-image img {
	aspect-ratio: 5/7;
}
.publishing__item-title {
	margin: 15px 20px;
	height: 100px;
	line-height: 110%;
	transition: .35s;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--base);
}
.publishing__item-link:hover .publishing__item-title {
	color: var(--primary);
}

/*-- END PUBLISHING --*/


/*-- BANNER --*/

.banner {
	padding: 0;
	width: 100%;
	height: 35.2vw;
	border-radius: 0px;
	overflow: hidden;
	position: relative;
}
.banner__image {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.banner__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner__content {
	z-index: 2;
	position: relative;
	display: flex;
	align-items: center;
}
.banner__content h1 {
	color: var(--white);
	font-size: 94px;
	font-weight: 600;
}
.banner__content_inner h1 {
	font-size: 70px;
}

/*-- END BANNER --*/


/*--- SLIDER SETTINGS ---*/

.slider-arrows-wrap {
	/*position: absolute;
	right: 0;
	bottom: 0;
	padding: 0px 90px 40px 0px;*/
}
.slider-arrows-wrap .btn-slider {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	outline: none;
	background: var(--white);
	box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
	margin: 0 5px;
	opacity: .25;
	transition: .3s;
	position: absolute;
}
.slider__wrap:hover ~ .slider-arrows-wrap .btn-slider,
.slider-arrows-wrap:hover .btn-slider {
	opacity: .6;
}
.slider-arrows-wrap .btn-slider:hover {
	opacity: 1;
	cursor: pointer;
}
.slider-arrows-wrap .btn-slider.btn-slider-prev {
	padding: 6px 8px 6px 4px;
	left: 20px;
	top: calc(50% - 10px);
}
.slider-arrows-wrap .btn-slider.btn-slider-next {
	padding: 6px 4px 6px 8px;
	right: 20px;
	top: calc(50% - 10px);
}
.slick-list {
	width: 100%;
}
.slick-track {
	width: 100%;
	margin-left: 0;
}
.slick-dots {
	bottom: 50px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	margin: 0;
	list-style: none;
	padding: 0;
	background: transparent;
	width: 100%;
}
.slick-dots > li {
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
	display: inline-block;
	cursor: default;
}
.slick-dots > li > button {
	background: var(--white);
	border-radius: 50%;
	height: 12px;
	margin: 0 5px;
	padding: 0;
	width: 12px;
	transition: .35s;
	font-size: 0;
	line-height: 0;
	display: block;
	color: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
}
.slick-dots > li > button:hover {
	background: var(--primary);
}
.slick-dots > li > button::before {
	display: none;
}
.slick-dots > li.slick-active > button {
	background: var(--primary);
}

.slider-dotted_gray .slick-dots > li > button {
	background: #CCC;
}
.slider-dotted_gray .slick-dots > li > button:hover {
	background: var(--primary);
}
.slider-dotted_gray .slick-dots > li.slick-active > button {
	background: var(--primary);
}
.slider-dotted_bottom .slick-dots {
	bottom: -40px;
}


/*--- END SLIDER SETTINGS ---*/

/*SLIDER*/

.slider {
	padding: 0;
}
.slider__wrap {
	overflow: hidden;
}
.slider__item {
	height: 35.2vw;
	border-radius: 0px;
	overflow: hidden;
	position: relative;
}
.slider__link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: .5;
}
.slider__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.slider__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.slider__content {
	z-index: 1;
	height: 100%;
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0px 60px 50px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}
.slider__content_xcenter {
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	text-align: center;
}
.slider__content_xright {
	margin-left: auto;
	align-items: flex-end;
	text-align: right;
}
.slider__content_ytop {
	justify-content: flex-start;
}
.slider__content_ybottom {
	justify-content: flex-end;
}
.slider__title {
	font-size: 64px;
	line-height: 120%;
	font-weight: 700;
	margin: 0 0 15px 0;
	z-index: 5;
	color: var(--white);
}
.slider__desc-top {
	font-size: 20px;
	margin: 0 0 10px 0;
	z-index: 5;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.01em;
}
.slider__desc {
	font-size: 18px;
	margin: 0 0 15px 0;
	z-index: 5;
}
.slider__btn {
	margin: 25px 0 0 0;
	z-index: 5;
	min-width: 200px;
	text-align: center;
}

/*--- END SLIDER ---*/


/*--- SLIDER-BLOCK-2 ---*/

.slider-block-2 {

}
.slider-block-2__wrap {
	margin: 0 -5px;
	padding: 0 0 40px 0;
}
.slider-block-2__inner .slick-dots{
    flex-wrap:wrap;
    row-gap:15px;
}
.slider-block-2__item {
	margin: 0 5px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #CCC;
}
.slider-block-2__item-link {
	text-decoration: none;
}
.slider-block-2__item-link:hover {
	text-decoration: none;
}
.slider-block-2__item-image {

}
.slider-block-2__item-image img {
	aspect-ratio: 1/1;
}
.slider-block-2__item-title {
	margin: 20px 20px 0 20px;
	height: 65px;
	line-height: 120%;
	transition: .35s;
}
.slider-block-2__item-link:hover .slider-block-2__item-title {
	color: var(--primary);
}
.slider-block-2 .slick-dots {
	bottom: -40px;
}
.slider-block-2 .slick-dots > li > button {
	background: #CCC;
}
.slider-block-2 .slick-dots > li > button:hover {
	background: var(--primary);
}
.slider-block-2 .slick-dots > li.slick-active > button {
	background: var(--primary);
}

/*--- END SLIDER-BLOCK-2 ---*/


/*--- SLIDER-BLOCK-3 ---*/

.slider-block-3 {

}
.slider-block-3__wrap {
	margin: 0 -5px;
	padding: 0 0 40px 0;
}
.slider-block-3__inner {

}
.slider-block-3__inner .slick-dots{
    flex-wrap: wrap;
    row-gap: 10px;
}
.slider-block-3__item {
	margin: 0 5px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #CCC;
}
.slider-block-3__item-link {
	text-decoration: none;
}
.slider-block-3__item-link:hover {
	text-decoration: none;
}
.slider-block-3__item-image {

}
.slider-block-3__item-image img {
	aspect-ratio: 5/7;
}
.slider-block-3__item-title {
	margin: 15px 20px;
	height: 100px;
	line-height: 110%;
	transition: .35s;
	overflow: hidden;
	text-overflow: ellipsis;
}
.slider-block-3__item-link:hover .slider-block-3__item-title {
	color: var(--primary);
}
.slider-block-3 .slick-dots {
	bottom: -40px;
}
.slider-block-3 .slick-dots > li > button {
	background: #CCC;
}
.slider-block-3 .slick-dots > li > button:hover {
	background: var(--primary);
}
.slider-block-3 .slick-dots > li.slick-active > button {
	background: var(--primary);
}

/*--- END SLIDER-BLOCK-3 ---*/


/*--- INFO-BLOCK-1 ---*/

.news-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.news-item {
	width: 33.33%;
	margin: 0 0 30px 0;
	padding: 0 15px;
}
.news-item__link {
	display: flex;
	flex-direction: column;
	box-shadow: 0px 20px 40px 0px rgba(32, 37, 49, 0.11);
	border-radius: 8px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	height: 100%;
	text-decoration: none;
}
.news-item__link:hover {
	text-decoration: none;
}
.news-item__image {
	margin: 0 0 20px 0;
}
.news-item__image img {

}
.news-item__title {
	margin: 0 20px 20px 20px;
	font-size: 20px;
	line-height: 120%;
	text-transform: uppercase;
	font-weight: 700;
	transition: .35s;
}
.news-item__link:hover .news-item__title {
	color: var(--primary);
}
.news-item__desc {
	margin: 0 20px 20px 20px;
	font-size: 16px;
	transition: .35s;
}

/*--- END INFO-BLOCK-1 ---*/

/*--- INFO-BLOCK-2 ---*/

.departs-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.departs-item {
	width: 33.33%;
	margin: 0 0 30px 0;
	padding: 0 15px;
}
.departs-item__link {
	position: relative;
	height: 140px;
	display: block;
	border-radius: 8px;
	overflow: hidden;
}
.departs-item__link::before {
  display: block;
  content: "";
  position: absolute;
  top: 43%;
  right: 40px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  width: 20px;
  height: 20px;
  z-index: 10;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.departs-item__link::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--base);
	opacity: .6;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.departs-item__link:hover::before {
	right: 30px;
	opacity: 1;
}
.departs-item__link:hover::after {
	background: #be1313;
}
.departs-item__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.departs-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}
.departs-item__title {
	position: absolute;
	left: 0;
	top: 30px;
	font-size: 24px;
	line-height: 26px;
	font-weight: 800;
	z-index: 1;
	color: var(--white);
	margin: 0;
	padding: 0 25px;
}




.departs-wrap_big {

}
.departs-wrap_big .departs-item {
	width: 50%;
}
.departs-wrap_big .departs-item__link {
	height: 200px;
}
.departs-wrap_big .departs-item__title {
	text-transform: uppercase;
	line-height: 34px;
}
.departs-wrap_big .departs-item__link::before {
	opacity: 0;
}
.departs-wrap_big .departs-item__link:hover .departs-item__image img {
	filter: blur(3px);
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ms-filter: blur(3px);
}
.departs-item__sublink {
	position: absolute;
	left: 0;
	bottom: 30px;
	font-size: 18px;
	font-weight: 300;
	line-height: 100%;
	z-index: 1;
	color: var(--white);
	margin: 0;
	padding: 0 25px;
}
.departs-item__sublink svg {
	width: 16px;
	height: 16px;
	margin-left: 5px;
}

/*--- END INFO-BLOCK-2 ---*/


/*--- INFO-BLOCK-3 ---*/

.info-block-3 {
	
}
.section-title__title {
	
}
.partners-wrap {
	margin: 0 -5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.partners-item {
	margin: 0 10px 25px;
/*	border: 1px solid #CCC;*/
	padding: 10px;
}
.partners-item__image {
	
}
.partners-item__image img {
	height: 50px;
	width: auto;
}


/*--- END INFO-BLOCK-3 ---*/


/*--- INFO-BLOCK-4 ---*/

.info-block-4 {
	background: var(--secondary);
}
.info-block-4 hr {
	background: #576274;
	border: none;
	height: 1px;
}
.cta-1 {
	
}
.cta-1__inner {
	display: flex;
	flex-wrap: wrap;
}
.cta-1__form-wrap {
	width: 600px;
}
.cta-1__form {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7px;
}
.cta-1__form .form-group {
	width: 50%;
	padding: 0 7px;
	margin: 0 0 15px 0;
}
.cta-1__form .form-group .form-control {
	font-size: 18px;
}
.cta-1__form .btn {
	width: 300px;
	margin: 20px auto 0;
	box-shadow: 0px 9px 12px 0px rgba(214, 13, 44, 0.2);
}
.cta-1__content {
	width: calc(100% - 600px);
	max-width: 630px;
	padding: 0 50px;
}
.cta-1__content-title {
	line-height: 110%;
}
.cta-1__content-desc {
	color: #727d91;
}
.cta-1__content-desc a {
	color: #727d91;
	text-decoration: underline;
}
.cta-1__content-desc a:hover {
	color: var(--primary);
}

/*--- END INFO-BLOCK-4 ---*/


/*--- INFO-BLOCK-5 ---*/

.info-block-5 {
	
}
.contacts-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.contacts-item {
	width: 33.33%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.contacts-item__icon {
	margin: 0 0 30px 0;	
}
.contacts-item__icon img {
	width: 50px;
	height: 50px;
}
.contacts-item__content {
	text-align: center;
}
.contacts-item__content p {
	font-size: 20px;
	font-weight: 600;
	color: var(--base);
}
.contacts-item__content p a {
	text-decoration: underline;
}
.contacts-item__content-link {
	font-size: 24px;
	font-weight: 600;
	color: var(--base);
}
.contacts-item__content-link:hover {
	text-decoration: none;
}

/*--- END INFO-BLOCK-5 ---*/

/*--- REQUISITES ---*/

.requisites {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
}
.requisites__item {
	display: grid;
	grid-template-columns: 300px auto;
	padding: 15px;
	margin: 0;
	background: #ffffff;
}
.requisites__item:nth-child(odd) {
	background: #f9f9f9;
}
.requisites__item-title {
	padding: 0;
	margin: 0;
	font-weight: 700;
}
.requisites__item-value {
	padding: 0;
	margin: 0;
}

@media screen and (max-width: 576px) {
    .requisites__item {grid-template-columns: 1fr;gap: 5px;}
}

/*--- END REQUISITES ---*/


/*FORM PRIVACY*/
.form-privacy { position: relative!important;display: flex!important;flex-direction: column!important;gap: 15px;margin: 15px 0!important;padding: 0!important;}
.form-privacy__item { position: relative!important;display: flex!important;flex-direction: row!important;gap: 15px;padding: 0!important;margin: 0!important;align-items: flex-start;justify-content: flex-start;top: unset;left: unset;pointer-events: all !important;}
.form-privacy__item-checkbox-wrap { position: relative;width: 22px;height: 22px;padding: 0!important;margin: 0!important;overflow: hidden!important;}
.form-privacy__item-checkbox { position: absolute !important;left: 0 !important;top: auto !important;bottom: 0px !important;opacity: 0 !important;}
.form-privacy__item-checkbox-icon { display: flex!important;align-items: center!important;justify-content: center!important;position: relative;width: 22px;height: 22px;padding: 0;margin: 0;border: 2px solid #bbb;border-radius: 4px;cursor: pointer;background: #fff;color: #333;transition: .2s ease;text-align: left!important;}
.form-privacy__item-checkbox-icon:after { content: '✓';width: 100%;line-height: 100%;height: auto;display: block;text-align: center;font-weight: 900;opacity:0;transition: .2s ease;}
.form-privacy__item-checkbox:required + .form-privacy__item-checkbox-icon { border-color: #f44;}
.form-privacy__item-checkbox:required:checked + .form-privacy__item-checkbox-icon { border-color: #bbb;}
.form-privacy__item-checkbox:checked + .form-privacy__item-checkbox-icon { border-color: #bbb;}
.form-privacy__item-checkbox:checked + .form-privacy__item-checkbox-icon:after { opacity:1;}
.form-privacy__item-text { width: calc(100% - 37px);padding: 0!important;margin: 0!important;font-size: 15px;line-height: 130%;text-align: left!important;}
.form-privacy__item-text a { text-decoration: underline;}
@media screen and (max-width: 500px) { .form-privacy__item-text { font-size: 13px;}}
/*END FORM PRIVACY*/