/*
Theme name: Octava
Description: ФІНАНСОВА КОМПАНІЯ
Author: Aleksandrlao
Author URI: https://aleksandrlao.com
*/


:root {
	--white: #fff;
	--black: #1E1E1E;
	--dark: #2B2B2B;
	--gray: #A2A2A2;
	--red: #E30613;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--white);
	color: var(--black);
	font: 0.8rem/1.5 'Manrope', Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1480px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: var(--blue);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, 
textarea, 
select,
button {
	font-family: 'Gilroy', Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: var(--black);
}
input::-webkit-input-placeholder {
	color: var(--black);
}
input::-moz-placeholder {
	color: var(--black);
}
input:-moz-placeholder {
	color: var(--black);
}
input:-ms-input-placeholder {
	color: var(--black);
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.text h2, 
.text h3, 
.text h4, 
.text h5 {
	margin-bottom: 1.2rem;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.3rem;
}
.text h3 {
	font-size: 1.2rem;
}
.text h4, .text h5 {
	font-size: 1rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid var(--black);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}



.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}




.slick-list {
	width: 100%;
	position: relative;
}
.slick-track {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}
.slick-arrow {
	position: absolute;
	bottom: 0;
	width: 45px;
	height: 45px;
	border: none;
	outline: none;
	background: var(--white);
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
	font-size: 0;
	cursor: pointer;
	z-index: 40;
	transition: all .3s ease;
}
.slick-arrow:hover:hover {
	background: var(--red);
}
.slick-arrow::before {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	left: calc(50% - 5px);
	width: 10px;
	height: 16px;
	background: var(--black);
	-webkit-mask: url('i/bg-icon-slider-arrow.svg') center no-repeat;
	mask: url('i/bg-icon-slider-arrow.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.slick-next::before {
	left: calc(50% - 4px);
	transform: rotate(180deg);
}
.slick-arrow:hover::before {
	background: var(--white);
}
.slick-prev {
	left: 0;
}
.slick-next {
	right: 0;
}






/* Header ----------------------------------------------------------------------------- */
.header {
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	background: var(--dark);
	z-index: 40;
}
.header .container {
	align-items: center;
}
.header__logo {
	display: block;
	width: 185px;
	height: 40px;
	background: url('i/logo-octava.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.header__nav {
	flex: 1;
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
}
.header__nav > ul {
	gap: 2.2rem;
}
.header__nav ul li {
	position: relative;
}
.header__nav ul li a {
	display: inline-block;
	vertical-align: middle;
	color: var(--white);
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
}
.header__nav ul li:hover > a {
	color: var(--red);
}
.header__nav .menu-item__arrow {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 6px;
	margin-top: 2px;
	margin-left: 4px;
	background: var(--white);
	-webkit-mask: url('i/bg-icon-arrow-down.svg') center no-repeat;
	mask: url('i/bg-icon-arrow-down.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.header__nav li:hover > .menu-item__arrow {
	background: var(--white);
}

.header__nav ul li .sub-menu {
	position: absolute;
	top: 0;
	left: 50%;
	width: 200px;
	background: var(--white);
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	padding: 4px;
	border-radius: 4px;
	opacity: 0;
	transform: translateX(-50%);
	pointer-events: none;
	transition: all .3s ease;
}
.header__nav ul li:hover > .sub-menu {
	top: 24px;
	opacity: 1;
	pointer-events: auto;
}
.header__nav ul li .sub-menu li {
	width: 100%;
}
.header__nav ul li .sub-menu a {
	display: block;
	padding: 6px;
	color: var(--black);
	line-height: 1.1;
}
.header__nav ul li .sub-menu a:hover {
	color: var(--red);
}


.header-lang {
	position: relative;
}
.header-lang__item {
	display: block;
	width: 100%;
	color: var(--white);
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .3s ease;
}
.header-lang__item:hover {
	color: var(--white);
}
.header-lang__current {
	position: relative;
}
.header-lang__current span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 6px;
	background: var(--white);
	-webkit-mask: url('i/bg-icon-arrow-down.svg') center no-repeat;
	mask: url('i/bg-icon-arrow-down.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.header-lang__current:hover span {
	background: var(--white);
}
.header-lang__body {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--white);
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	padding: 5px;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}
.lang-active .header-lang__body {
	top: 24px;
	opacity: 1;
	pointer-events: auto;
}
.header-lang__body .header-lang__item {
	display: block;
	width: 100%;
	color: var(--dark);
}
.header-lang__body .header-lang__item:hover {
	background: var(--red);
}

.header-contact {
	position: relative;
	margin-left: 3rem;
}
.header-contact__current {
	position: relative;
	padding-right: 24px;
	text-align: right;
}
.header-contact__phone {
	display: block;
	margin-bottom: 4px;
	color: var(--white);
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
}
.header-contact__time {
	color: #858585;
	font-size: 10px;
	line-height: 1.3;
}
.header-contact__email,
.header-contact__address {
	display: block;
	color: var(--white);
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
}
.header-contact__arrow {
	position: absolute;
	top: 8px;
	right: 0;
	width: 10px;
	height: 6px;
	background: var(--white);
	-webkit-mask: url('i/bg-icon-arrow-down.svg') center no-repeat;
	mask: url('i/bg-icon-arrow-down.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.header-contact__body {
	position: absolute;
	top: 0;
	right: 0;
	width: 240px;
	padding: 8px;
	background: var(--dark);
	border-radius: 8px;
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}
.header-contact.active .header-contact__body {
	top: 56px;
	opacity: 1;
	pointer-events: auto;
}


.header__nav-btn {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: var(--white);
	position: relative;
}
.header__nav-btn span::before,
.header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: var(--white);
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -7px;
}
.header__nav-btn span::after {
	bottom: -7px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
}













/* Hero ----------------------------------------------------------------------------- */
.hero {
	background: #000;
}
.hero .container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 580px;
	padding-top: 2rem;
	padding-bottom: 2rem;
	z-index: 10;
}
.hero__head {
	margin-bottom: 1rem;
	width: 100%;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: 4px;
	text-align: center;
}
.hero__logo {
	display: block;
	width: 100%;
	max-width: 735px;
	margin: 0 auto;
}
.hero__logo img {
	display: block;
	width: 100%;
	height: auto;
}
.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}












/* Main department ----------------------------------------------------------------------------- */
.main-depart {
	padding-top: 2.5rem;
	padding-bottom: 4.2rem;
}
.wide__list {
	justify-content: flex-start;
}
.main-depart__info {
	width: 40%;
	max-width: 520px;
}
.main-depart__head {
	max-width: 440px;
	margin-bottom: 0.8rem;
	color: #1E1E1E;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.3;
}
.main-depart__subhead {
	margin-bottom: 1.6rem;
	color: #A2A2A2;
	font-size: 14px;
	line-height: 1.3;
}
.main-depart__list {
	width: 100%;
	padding-left: 3.6rem;
	padding-bottom: 2rem;
}
.main-depart-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #E5E5E5;
	text-decoration: none;
}
.wide__list .main-depart-item {
	width: calc(33.3% - 40px);
	margin: 0 20px;
}
.main-depart-item__name {
	margin-right: auto;
	position: relative;
	color: #1E1E1E;
	font-size: 16px;
	line-height: 1.3;
	transition: all .3s ease;
}
.main-depart-item:hover .main-depart-item__name {
	color: #E30016;
}
.main-depart-item--closed .main-depart-item__name {
	padding-left: 32px;
}
.main-depart-item--closed .main-depart-item__name::before {
	content: '';
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
	width: 20px;
	height: 20px;
	background: url('i/bg-icon-closed-dep.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.main-depart-item__count {
	width: 104px;
	color: #A2A2A2;
	font-size: 14px;
}
.main-depart-item__arrow {
	display: block;
	width: 10px;
	height: 10px;
	background: #E30016;
	-webkit-mask: url("i/bg-icon-trade-arrow.svg") center no-repeat;
	mask: url("i/bg-icon-trade-arrow.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.main-depart-item:hover .main-depart-item__arrow {
	color: #1E1E1E;
}

.main-depart__button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 188px;
	min-height: 50px;
	margin-left: 3.6rem;
	padding: 8px 20px;
	border-radius: 24px;
	background: var(--black);
	color: var(--white);
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all .3s ease;
}
.main-depart__button:hover {
	background: var(--red);
}


.main-depart__thumb {
	width: 58%;
	position: relative;
}
.main-depart__thumb > img {
	display: block;
	width: 120%;
	max-width: 960px;
	height: auto;
}
.main-depart__winner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 124px;
	left: 190px;
	width: 250px;
	min-height: 48px;
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	padding: 2px 8px 2px 12px;
	background: #fff;
}
.main-depart__winner-title {
	width: calc(100% - 134px);
	color: rgb(0, 0, 0);
	font-size: 11px;
	font-weight: bold;
	line-height: 1.3;
}
.main-depart__winner-img {
	display: block;
	width: 132px;
	height: 44px;
}
.main-depart__winner-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}











/* Main box ----------------------------------------------------------------------------- */
.main-box {
	background: #F7F7F7;
}
.main-box-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-top: 3rem;
	padding-bottom: 3.5rem;
	border-top: 1px solid #ccc;
}
.main-box-item:first-child {
	border-top: none;
}
.main-box-item__thumb {
	display: block;
	width: 50%;
	border-radius: 20px;
	overflow: hidden;
}
.main-box-item__thumb-ins {
	display: block;
	padding-top: 62%;
	position: relative;
}
.main-box-item__thumb-ins img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-box-item__info {
	width: 48%;
	padding: 1rem 4rem;
}
.main-box-item:nth-child(even) .main-box-item__info {
	order: -1;
}
.main-box-item__subhead {
	color: #1E1E1E;
	font-size: 16px;
	line-height: 1.3;
}
.main-box-item__head {
	margin-bottom: 10px;
	color: #1E1E1E;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.2;
}
.main-box-item__desc {
	color: #6C6C6C;
	font-size: 16px;
	line-height: 1.4;
}








/* advantage ----------------------------------------------------------------------------- */
.advantage {
	padding-top: 0.5rem;
	padding-bottom: 2.5rem;
	background: #F7F7F7;
}
.advantage__list {
	align-items: stretch;
	width: calc(100% + 24px);
	margin-left: -12px;
}
.advantage-item {
	width: calc(33.3% - 24px);
	margin: 0 12px 24px;
	border-radius: 20px;
	background: #fff;
	padding: 65px 45px 40px;
	text-align: center;
}
.advantage-item__icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 85px;
	height: 85px;
	background: #F0E7E7;
	border-radius: 50%;
	margin: 0 auto 1rem;
}
.advantage-item__icon img {
	display: block;
	width: 45px;
	height: 45px;
	object-fit: contain;
}
.advantage-item__title {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
}
.advantage-item__desc {
	color: #9E9E9E;
	font-size: 16px;
	line-height: 1.3;
}











/* Lider ----------------------------------------------------------------------------- */
.lider {
	padding-top: 3.5rem;
	padding-bottom: 2.6rem;
	background: var(--white);
}
.lider .container {
	overflow: hidden;
}
.lider__top {
	padding-bottom: 2rem;
	padding-right: 3rem;
}
.lider__head {
	margin-bottom: 2px;
	font-size: 40px;
	line-height: 1.2;
}
.lider__desc {
	margin-bottom: 3rem;
	font-size: 16px;
}
.lider__slider {
	position: relative;
}
.lider__slider .slick-list {
	width: calc(100% + 110px);
	margin-left: -55px;
	margin-right: -55px;
}
.lider__slider .slick-arrow {
	bottom: inherit;
	top: -115px;
}
.lider__slider .slick-prev {
	left: inherit;
	right: 80px;
}
.lider__slider .slick-next {
	right: 20px;
}

.lider-item {
	display: block;
	width: 17%;
	margin: 0 55px;
	position: relative;
}
.lider-item__ins {
	display: block;
	width: 100%;
	position: relative;
}
.lider-item__ins img {
	display: block;
	width: 100%;
	height: auto;
}









.single-dep-hero {
	padding-top: 2.6rem;
	padding-bottom: 2.6rem;
	background: var(--black);
	color: var(--white);
}
.single-dep-hero .container {
	z-index: 10;
	text-align: center;
}
.single-dep-hero__head {
	margin-bottom: 4px;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.3;
	text-transform: uppercase;
}
.single-dep-hero__desc {
	font-size: 16px;
}
.single-dep-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.single-dep-hero__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.archive-dep {
	padding-top: 1rem;
	padding-bottom: 4rem;
}
.single-dep {
	padding-top: 1rem;
	padding-bottom: 3rem;
}

.single-dep .container {
	align-items: stretch;
}
.single-dep__map {
	width: 100%;
	position: relative;
	margin-bottom: 1.2rem;
}
.single-dep__map-wrap {
	display: block;
	width: 100%;
	padding-top: 32%;
	position: relative;
}
.single-dep__map-wrap #map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.single-dep__content {
	width: 100%;
}
.single-dep__back {
	display: block;
	padding-left: 12px;
	position: relative;
	color: #B0B0B0;
	font-size: 14px;
	line-height: 1.3;
	text-decoration: none;
	transition: all .3s ease;
}
.single-dep__back::before {
	content: '';
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
	width: 6px;
	height: 10px;
	background: var(--black);
	-webkit-mask: url('i/bg-icon-slider-arrow.svg') center no-repeat;
	mask: url('i/bg-icon-slider-arrow.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.single-dep__back:hover {
	color: var(--red);
}
.single-dep__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-top: 0.6rem;
	padding-bottom: 1.2rem;
}
.single-dep__city {
	color: var(--black);
	font-size: 32px;
	font-weight: 500;
	line-height: 1.3;
}
.single-dep__logo {
	display: block;
	width: 208px;
	height: 38px;
}
.single-dep__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.single-dep__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	width: calc(100% + 40px);
	margin-left: -20px;
}
.single-dep-item {
	width: calc(50% - 40px);
	margin: 0 20px;
	padding-top: 4px;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid #E5E5E5;
	position: relative;
	transition: all .3s ease;
	cursor: pointer;
}
.single-dep-item.active,
.single-dep-item:hover {
	background: #F8F8F8;
}
.single-dep-item__info {
	padding-right: 44px;
}
.single-dep-item__name {
	margin-bottom: 4px;
	color: #1E1E1E;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
}
.single-dep-item__address {
	color: #A2A2A2;
	font-size: 14px;
}
.single-dep-item__arrow {
	position: absolute;
	bottom: 12px;
	right: 12px;
	display: block;
	width: 10px;
	height: 10px;
	background: var(--red);
	-webkit-mask: url('i/bg-icon-trade-arrow.svg') center no-repeat;
	mask: url('i/bg-icon-trade-arrow.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.single-dep-item.active .single-dep-item__arrow,
.single-dep-item:hover .single-dep-item__arrow {
	background: #CECECE;
}










.single-page-top {
	background: var(--black);
	padding-top: 4.5rem;
	padding-bottom: 4.5rem;
	position: relative;
	color: var(--white);
}
.single-page-top .container {
	z-index: 20;
}
.single-page-top__head {
	display: block;
	width: 100%;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}
.single-page-top__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.single-page-top__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-page {
	padding-top: 2rem;
	padding-bottom: 3rem;
}
.single-page .container {
	max-width: 1090px;
}






.promo {
	padding-top: 1rem;
	padding-bottom: 2rem;
}
.promo__link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 100px;
	border-radius: 10px;
	background: #971207;
	padding: 20px 40px 20px 80px;
	overflow: hidden;
	position: relative;
	color: var(--white);
	text-decoration: none;
}
.promo__link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 30%;
	width: 250px;
	height: 100%;
	background: url('i/bg-promo.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.promo__head {
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.1;
	z-index: 5;
}
.promo__head span {
	display: block;
	font-size: 48px;
	font-weight: bold;
	text-transform: uppercase;
}
.promo__logo {
	display: block;
	width: 185px;
	height: 40px;
	background: url('i/bg-promo-logo.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.promo__button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 200px;
	min-height: 50px;
	border-radius: 25px;
	background: #A93E36;
	color: var(--white);
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
}
.promo__link:hover .promo__button {
	background: var(--red);
}


.page-contact__thumb {
	width: 42%;
}
.page-contact__thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.page-contact__text {
	width: 50%;
}



.form {
	position: relative;
}
.form__label {
	position: relative;
	margin-bottom: 12px;
}
.form__label label {
	display: block;
	font-size: 16px;
	font-weight: bold;
}
.form__label input,
.form__label textarea {
	display: block;
	width: 100%;
	height: 48px;
	border: none;
	outline: none;
	background-color: transparent;
	border-bottom: 1px solid #CECECE;
	font-size: 16px;
}
.form__label textarea {
	height: 80px;
	resize: none;
}
.form__submit input {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 176px;
	height: 50px;
	border-radius: 25px;
	background: #001914;
	border: 2px solid #001914;
	color: #fff;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
}
.form__submit input:hover {
	background: #fff;
	color: #001914;
}














/* Footer ----------------------------------------------------------------------------- */
.footer {
	background: var(--dark);
	padding-top: 2.2rem;
	padding-bottom: 1rem;
	color: var(--white);
}
.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 2.2rem;
	border-bottom: 1px solid #707070;
}
.footer__logo {
	display: block;
	width: 277px;
	height: 50px;
	background: url('i/bg-logo-footer.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.footer__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 44%;
	max-width: 380px;
	gap: 1.1rem;
}
.footer__social-item {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #707070;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 30px 30px;
	mask-size: 30px 30px;
	transition: all .3s ease;
}
.footer__social-item--vi {
	-webkit-mask-image: url("i/bg-icon-vi.svg");
	mask-image: url("i/bg-icon-vi.svg");
}
.footer__social-item--ig {
	-webkit-mask-image: url("i/bg-icon-ig.svg");
	mask-image: url("i/bg-icon-ig.svg");
}
.footer__social-item--tg {
	-webkit-mask-image: url("i/bg-icon-tg.svg");
	mask-image: url("i/bg-icon-tg.svg");
}
.footer__social-item--fb {
	-webkit-mask-image: url("i/bg-icon-fb.svg");
	mask-image: url("i/bg-icon-fb.svg");
}
.footer__social-item:hover {
	background: var(--white);
}


.footer-middle {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 2rem;
	padding-bottom: 1rem;
}
.footer__info {
	width: 60%;
	max-width: 420px;
}
.footer__name {
	font-size: 32px;
}
.footer__desc {
	font-size: 24px;
}
.footer__box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 44%;
	max-width: 380px;
}
.footer__head {
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: bold;
}
.footer__nav {
	width: calc(50% - 1rem);
}
.footer__nav ul {
	list-style: none;
}
.footer__nav ul li {
	margin-bottom: 8px;
	position: relative;
}
.footer__nav ul li.menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.footer__nav ul li a {
	display: block;
	color: var(--white);
	font-size: 16px;
	text-decoration: none;
	transition: all .3s ease;
}
.footer__nav ul li.menu-item-has-children a {
	display: inline-block;
	vertical-align: middle;
	max-width: calc(100% - 25px);
}
.footer__nav ul li.menu-item-has-children .menu-item__arrow {
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	margin-left: 4px;
	background: var(--white);
	-webkit-mask: url('i/bg-icon-arrow-down.svg') center no-repeat;
	mask: url('i/bg-icon-arrow-down.svg') center no-repeat;
	-webkit-mask-size: 10px 6px;
	mask-size: 10px 6px;
	transition: all .3s ease;
	cursor: pointer;
}
.footer__nav ul li.menu-item-has-children.active .menu-item__arrow {
	transform: rotate(180deg);
}
.footer__nav ul li a:hover {
	text-decoration: underline;
}
.footer__nav ul li .sub-menu {
	display: block;
	width: 100%;
	padding-left: 8px;
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}
.footer__nav ul li.active .sub-menu {
	max-height: 4000px;
}


.footer__contact {
	width: calc(50% - 1rem);
}
.footer__contact-item {
	margin-bottom: 8px;
}
.footer__contact-item a {
	color: var(--white);
	text-decoration: none;
}


.footer-bottom {
	padding-top: 1rem;
	padding-bottom: 0.7rem;
}
.footer__copyright {
	color: #9E9E9E;
	font-size: 16px;
}
.footer__copyright a {
	color: var(--white);
	font-weight: bold;
	text-decoration: none;
}
.footer__copyright a:hover {
	text-decoration: underline;
}









/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1500px) {

	.header__nav > ul {
		gap: 1rem;
	}


	.main-depart__thumb > img {
		width: 110%;
	}



}










@media screen and (max-width:1350px) {

	.header__logo {
		width: 150px;
		height: 32px;
	}
	.header__best-prime {
		width: 64px;
		height: 32px;
	}
	.header__nav > ul {
		gap: 0.8rem;
	}

	.header-contact {
		margin-left: 0.6rem;
	}
	.header-contact__current {
		padding-right: 12px;
	}


	.main-box-item__info {
		padding: 1rem 2rem;
	}


	.advantage-item {
		padding: 48px 40px 40px;
	}


	.lider__desc {
		margin-bottom: 1.5rem;
	}
	.lider__slider .slick-list {
		width: calc(100% + 80px);
		margin-left: -40px;
		margin-right: -40px;
	}
	.lider-item {
		margin: 0 40px;
	}

}











@media screen and (max-width:1200px) {

	.header {
		padding-top: 1rem;
		padding-bottom: 1rem;
		z-index: 80;
	}
	.header__logo,
	.header__best-prime,
	.header-lang,
	.header-contact,
	.header__nav-btn {
		position: relative;
		z-index: 20;
	}
	.header__nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: var(--black);
		padding: 5rem 0 1rem;
		overflow: hidden;
		overflow-y: visible;
		opacity: 0;
		pointer-events: none;
		z-index: 10;
		transition: all .3s ease;
	}
	.nav-active .header__nav {
		opacity: 1;
		pointer-events: auto;
	}
	.header__nav ul {
		display: block;
	}
	.header__nav ul li {
		width: 100%;
		text-align: center;
	}
	.header__nav ul li a {
		padding: 12px 0;
	}
	.header__nav .menu-item__arrow {
		width: 32px;
		height: 32px;
		margin-left: 8px;
		-webkit-mask-size: 10px 6px;
		mask-size: 10px 6px;
	}
	.header-lang {
		margin-left: auto;
	}
	.header__nav-btn {
		display: flex;
		margin-left: 2rem;
	}

	.header__nav ul li .sub-menu {
		position: relative;
		top: inherit;
		left: inherit;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transform: translateX(0);
		box-shadow: none;
	}
	.header__nav ul li:hover > .sub-menu {
		top: inherit;
		max-height: 8000px;
	}
	.header__nav .sub-menu a {
		padding: 4px 0;
		color: #5A5A5A;
	}


	.hero .container {
		min-height: 480px;
	}


	.main-depart__list {
		padding-left: 1.6rem;
		padding-bottom: 1rem;
	}
	.main-depart__button {
		margin-left: 1.6rem;
	}
	.main-depart__winner {
		top: 88px;
		left: 120px;
		width: 240px;
	}


	.lider__top {
		padding-bottom: 1rem;
	}


	.page-contact__thumb {
		width: 42%;
	}
	.page-contact__text {
		width: 54%;
	}


}











@media screen and (max-width:1050px) {


	.hero__logo {
		max-width: 640px;
	}


	.main-depart__head {
		font-size: 36px;
	}
	.main-depart__list {
		padding-left: 0;
	}
	.main-depart__button {
		margin: 0 auto;
	}
	.main-depart__winner {
		top: 72px;
		left: 104px;
		width: 192px;
		min-height: 40px;
	}
	.main-depart__winner-title {
		width: calc(100% - 92px);
		font-size: 10px;
	}
	.main-depart__winner-img {
		width: 88px;
		height: 32px;
	}


	.main-box-item {
		padding-top: 2.4rem;
		padding-bottom: 2.5rem;
	}
	.main-box-item__info {
		width: 50%;
		padding: 0.4rem 1rem;
	}
	.main-box-item__head {
		font-size: 40px;
	}


	.advantage {
		padding-bottom: 1.5rem;
	}
	.advantage-item {
		padding: 32px 24px 20px;
	}
	.advantage-item__title {
		font-size: 20px;
	}


	.lider {
		padding-top: 2.5rem;
		padding-bottom: 2rem;
	}
	.lider__slider .slick-list {
		width: calc(100% + 48px);
		margin-left: -24px;
		margin-right: -24px;
	}
	.lider-item {
		margin: 0 24px;
	}


	.wide__list .main-depart-item {
		width: calc(50% - 40px);
		margin: 0 20px;
	}


	.footer__info {
		width: 60%;
		max-width: 360px;
	}
	.footer__name {
		font-size: 24px;
	}
	.footer__desc {
		font-size: 16px;
	}

}












@media screen and (max-width:900px) {

	html {
		font-size: 18px;
	}


	.hero .container {
		min-height: 400px;
	}
	.hero__logo {
		max-width: 440px;
	}


	.main-depart__info {
		width: 50%;
		max-width: 520px;
	}
	.main-depart__head {
		font-size: 32px;
	}
	.main-depart__thumb {
		width: 48%;
	}


	.main-box-item__thumb {
		width: 48%;
		border-radius: 16px;
	}
	.main-box-item__info {
		padding: 0;
	}
	.main-box-item__head {
		margin-bottom: 8px;
		font-size: 32px;
	}


	.advantage__list {
		width: calc(100% + 16px);
		margin-left: -8px;
	}
	.advantage-item {
		width: calc(33.3% - 16px);
		margin: 0 8px 16px;
	}


	.promo__link {
		padding: 20px;
	}
	.promo__head span {
		font-size: 40px;
	}


	.page-contact__thumb {
		width: 40%;
	}
	.page-contact__text {
		width: 58%;
	}


}












@media screen and (max-width:750px) {

	.main-depart__info {
		width: 100%;
		max-width: 100%;
	}
	.main-depart__thumb {
		width: 100%;
		max-width: 560px;
		margin: 1.2rem auto 0;
	}
	.main-depart__thumb > img {
		width: 100%;
	}


	.main-box-item {
		padding-top: 1.2rem;
		padding-bottom: 1.2rem;
	}
	.main-box-item__thumb {
		width: 80%;
		margin-left: -2rem;
	}
	.main-box-item:nth-child(even) .main-box-item__thumb {
		margin-left: auto;
		margin-right: -2rem;
	}
	.main-box-item__info {
		width: 100%;
		padding: 1.2rem 0;
	}


	.advantage-item {
		width: calc(50% - 16px);
	}


	.single-dep__map,
	.single-dep__content {
		width: 100%;
	}
	.single-dep__map {
		width: calc(100% + 2rem);
		margin-left: -1rem;
		margin-right: -1rem;
	}
	.single-dep__map-wrap {
		padding-top: 112%;
	}


	.single-page-top {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}


	.promo__link {
		padding: 16px;
	}
	.promo__head span {
		font-size: 32px;
	}
	.promo__logo {
		width: 120px;
		height: 30px;
	}
	.promo__button {
		width: 140px;
		min-height: 44px;
	}


	.page-contact__thumb {
		width: 36%;
	}
	.page-contact__text {
		width: 60%;
	}


	.wide__list {
		width: 100%;
		margin-left: 0;
	}
	.wide__list .main-depart-item {
		width: 100%;
		margin: 0;
	}


	.single-dep__city {
		font-size: 24px;
	}
	.single-dep__logo {
		width: 90px;
		height: 16px;
	}


	.single-dep__list {
		width: 100%;
		margin-left: 0;
	}
	.single-dep-item {
		width: 100%;
		margin: 0;
	}



	.footer-top {
		padding-top: 0;
		padding-bottom: 1.2rem;
	}
	.footer__box {
		width: 48%;
	}
	.footer__nav,
	.footer__contact {
		width: calc(50% - 0.4rem);
	}

	.footer__info {
		width: 45%;
		max-width: 260px;
	}
	.footer__name {
		font-size: 20px;
	}
	.footer__desc {
		font-size: 14px;
	}
	.footer-middle {
		padding-top: 1rem;
		padding-bottom: 0;
	}

}












@media screen and (max-width:600px) {

	html {
		font-size: 16px;
	}
	body {
		font-size: 1rem;
	}


	.header__logo {
		width: 140px;
		height: 30px;
	}
	.header__best-prime {
		width: 60px;
		height: 30px;
	}
	.header-contact__phone {
		font-size: 16px;
	}
	.header__nav-btn {
		margin-left: 1rem;
	}


	.hero__logo {
		max-width: 360px;
	}


	.main-depart__head {
		font-size: 24px;
	}
	.main-depart__winner {
		top: 60px;
		left: 72px;
		width: 172px;
		min-height: 36px;
		padding: 2px 2px 2px 8px;
	}
	.main-depart__winner-title {
		width: calc(100% - 84px);
	}
	.main-depart__winner-img {
		width: 80px;
		height: 25px;
	}


	.advantage-item {
		width: calc(100% - 16px);
	}



	.lider__top {
		padding-right: 0;
		text-align: center;
	}
	.lider__head {
		font-size: 36px;
	}
	.lider__slider {
		padding-left: 48px;
		padding-right: 48px;
	}
	.lider__slider .slick-list {
		width: calc(100% + 24px);
		margin-left: -12px;
		margin-right: -12px;
		overflow: hidden;
	}
	.lider__slider .slick-arrow {
		top: calc(50% - 20px);
		width: 40px;
		height: 40px;
	}
	.lider__slider .slick-prev {
		left: 0;
		right: inherit;
	}
	.lider__slider .slick-next {
		right: 0;
	}
	.lider-item {
		margin: 0 12px;
	}


	.single-page-top__head {
		font-size: 40px;
	}


	.promo__link {
		display: block;
	}
	.promo__link::before {
		display: none;
	}
	.promo__head {
		margin: 0 auto 8px;
	}
	.promo__logo {
		margin: 0 auto 20px;
		position: relative;
		z-index: 10;
	}
	.promo__button {
		width: 100%;
		position: relative;
		z-index: 10;
	}


	.page-contact__text,
	.page-contact__thumb {
		width: 100%;
	}
	.page-contact__thumb img {
		object-fit: cover;
	}
	.page-contact__thumb {
		height: 100px;
		padding-bottom: 2rem;
	}


	.footer__logo {
		display: block;
		width: 182px;
		height: 40px;
		margin: 0 auto 1.2rem;
	}
	.footer__social {
		justify-content: center;
		width: 100%;
		max-width: 100%;
		gap: 1rem;
	}

	.footer__info {
		width: 100%;
		max-width: 280px;
		margin: 0 auto 1.5rem;
		text-align: center;
	}
	.footer__box {
		width: 100%;
		max-width: 100%;
	}
	.footer-bottom {
		padding-top: 2rem;
	}
	.footer__copyright {
		text-align: center;
	}


}












@media screen and (max-width:450px) {

	.header__logo {
		width: 114px;
		height: 25px;
	}
	.header__best-prime {
		display: none;
	}
	.header-lang__item {
		font-size: 14px;
	}
	.header-contact__phone {
		margin-bottom: 0;
		font-size: 14px;
	}
	.header__nav-btn {
		width: 20px;
		height: 20px;
		margin-left: 1rem;
	}


	.hero__head {
		font-size: 16px;
	}
	.hero__logo {
		max-width: 300px;
	}


	.main-depart__winner {
		top: 40px;
		left: 56px;
	}


	.main-box-item__thumb {
		width: 96%;
	}


	.lider__head {
		margin-bottom: 0;
		font-size: 24px;
	}
	.lider__desc {
		margin-bottom: 4px;
		font-size: 14px;
	}
	.lider__slider {
		padding-left: 16px;
		padding-right: 16px;
	}


	.footer__info {
		margin: 0 auto 1.6rem;
	}
	.footer__name {
		font-size: 20px;
	}
	.footer__desc {
		font-size: 14px;
	}


}






@media screen and (max-width:340px) {

	.header-lang {
		display: none;
	}

}












/* END ============================================================= */

