@-webkit-keyframes witr_squares {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}

	20% {
		-webkit-transform: scale(1.24);
		transform: scale(1.24);
		opacity: 1
	}

	to {
		-webkit-transform: scale(2.1);
		transform: scale(2.1);
		opacity: 0
	}
}

@keyframes witr_squares {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}

	20% {
		-webkit-transform: scale(1.24);
		transform: scale(1.24);
		opacity: 1
	}

	to {
		-webkit-transform: scale(2.1);
		transform: scale(2.1);
		opacity: 0
	}
}

@font-face {
	font-family: 'Aeroport';
	src: local("../fonts/Aeroport Light"), local("Aeroport-Light"), url(../fonts/Aeroport-Light.woff2) format("woff2"), url(../fonts/Aeroport-Light.woff) format("woff"), url(../fonts/Aeroport-Light.ttf) format("truetype");
	font-weight: 300;
	font-style: normal
}

@font-face {
	font-family: 'Aeroport';
	src: local("../fonts/Aeroport Regular"), local("Aeroport-Regular"), url(../fonts/Aeroport.woff2) format("woff2"), url(../fonts/Aeroport.woff) format("woff"), url(../fonts/Aeroport.ttf) format("truetype");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: 'Aeroport';
	src: local("../fonts/Aeroport Medium"), local("Aeroport-Medium"), url(../fonts/Aeroport-Medium.woff2) format("woff2"), url(../fonts/Aeroport-Medium.woff) format("woff"), url(../fonts/Aeroport-Medium.ttf) format("truetype");
	font-weight: 500;
	font-style: normal
}

@font-face {
	font-family: 'Aeroport';
	src: local("../fonts/Aeroport Bold"), local("Aeroport-Bold"), url(../fonts/Aeroport-Bold.woff2) format("woff2"), url(../fonts/Aeroport-Bold.woff) format("woff"), url(../fonts/Aeroport-Bold.ttf) format("truetype");
	font-weight: 700;
	font-style: normal
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline
}

:focus {
	outline: 0
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.container {
	max-width: 1300px;
	padding: 0 50px;
	margin: 0 auto;
	width: 100%
}

@media (max-width:1100px) {
	.container {
		padding: 0 15px
	}
}

body {
	font-family: 'Aeroport';
	position: relative
}

.header {
	background-color: rgba(244, 222, 162, .6);
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 55;
	padding: 25px 0;
	-webkit-transition: .4s ease;
	transition: .4s ease
}

@media (max-width:900px) {
	.header {
		padding: 10px 0
	}
}

.header.fixed {
	background-color: #f8e7aa
}

.header .container,
.header .logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header .container {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.header .logo {
	margin-right: 20px
}

.header .logo img {
	max-width: 230px
}

@media (max-width:700px) {
	.header .logo {
		width: 90px;
		overflow: hidden
	}

	.header .logo img {
		max-width: 200px
	}
}

.header .langs {
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header .lang-item a,
.header .menu li a {
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal
}

.header .lang-item a {
	padding: 3px 6px 5px;
	color: #004b97;
	font-size: 14px
}

.header .lang-item.current-lang a {
	color: #ffe455;
	background-color: #004b97
}

.header .header__burger {
	display: block;
	width: 30px;
	height: 20px;
	position: relative;
	z-index: 1;
	margin-left: 10px
}

.header .header__burger span,
.header .header__burger:after,
.header .header__burger:before {
	background-color: #232323;
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.header .header__burger span {
	top: 9px
}

.header .header__burger:after,
.header .header__burger:before {
	content: ''
}

.header .header__burger:before {
	top: 0
}

.header .header__burger:after {
	bottom: 0
}

.header .header__burger.active:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 9px
}

.header .header__burger.active span {
	-webkit-transform: scale(0);
	transform: scale(0)
}

.header .header__burger.active:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: 9px
}

@media (min-width:990px) {
	.header .header__burger {
		display: none
	}
}

.header .menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style-type: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media (max-width:900px) {
	.header .menu {
		background-color: #f8e7aa;
		display: none;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		padding: 20px 0
	}
}

.header .menu li a {
	color: #232323;
	font-size: 18px;
	margin: 0 8px;
	border-bottom: 2px solid transparent;
	padding-top: 2px
}

.header .menu li a:hover {
	border-color: #232323
}

@media (max-width:1400px) {
	.header .menu li a {
		font-size: 16px
	}
}

.header .btn-1 {
	color: #fdfdfb;
	background-color: #0f0f0f;
	border: 0
}

@media (max-width:1200px) {
	.header .btn-1 {
		font-size: 18px;
		padding: 15px 30px 16px
	}
}

@media (max-width:700px) {
	.header .btn-1 {
		display: none
	}
}

.header .btn-1:after {
	background-image: -webkit-gradient(linear, left top, right top, from(#fddb4d), color-stop(65%, #9b442d), to(#640003));
	background-image: linear-gradient(to right, #fddb4d 0%, #9b442d 65%, #640003 100%);
	left: -1px;
	right: -1px;
	top: -1px;
	bottom: -1px
}

.btn-1,
a {
	text-decoration: none
}

.btn-1,
.btn-1:after,
a {
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out
}

.btn-1,
.btn-1:after {
	border-radius: 34px
}

.btn-1 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border: 3px solid #ff480e;
	padding: 15px 60px 16px;
	color: #ff480e;
	font-size: 22px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 20px;
	position: relative;
	z-index: 0
}

@media (max-width:900px) {
	.btn-1 {
		font-size: 18px;
		padding: 12px 40px 14px
	}
}

.btn-1:after {
	z-index: -1;
	content: '';
	position: absolute;
	left: -2px;
	right: -2px;
	top: -2px;
	bottom: -2px;
	background-image: -webkit-gradient(linear, left top, right top, from(#ff480e), color-stop(51%, #9b442d), to(#510f00));
	background-image: linear-gradient(to right, #ff480e 0%, #9b442d 51%, #510f00 100%);
	opacity: 0
}

.btn-1:hover {
	color: #fbf1d3
}

.about .slick-dots li.slick-active,
.btn-1:hover:after {
	opacity: 1
}

.home-top {
	height: 100vh;
	min-height: 750px;
	background-size: cover;
	background-position: top;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative
}

.home-top .desc,
.home-top .h2 {
	color: #232323;
	font-size: 80px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: 80px;
	text-align: left;
	margin-bottom: 30px
}

.home-top .desc {
	font-size: 24px;
	font-weight: 400;
	line-height: normal
}

.home-top .btn-1 {
	margin-bottom: 100px
}

.home-top .video-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 110px;
	height: 110px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	z-index: 0;
	cursor: pointer
}

.home-top .video-btn:after,
.home-top .video-btn:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 50%
}

.home-top .video-btn:after {
	border: 12px solid #ff480e;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 2;
	background-color: #0f0f0f
}

.home-top .video-btn:before {
	z-index: -1;
	background-color: #f3d49b;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: witr_squares 1.5s ease-in-out infinite;
	animation: witr_squares 1.5s ease-in-out infinite
}

.about,
.home-top .video-btn svg {
	position: relative;
	z-index: 3
}

@media (max-width:1440px) {
	.home-top {
		max-height: 100vh;
		height: 800px
	}

	.home-top .h2 {
		font-size: 60px;
		line-height: 60px
	}

	.home-top .btn-1 {
		margin-bottom: 80px
	}
}

@media (max-width:900px) {
	.home-top {
		background-position: top;
		height: 500px;
		min-height: 300px
	}

	.home-top .h2 {
		font-size: 40px;
		line-height: 40px;
		margin-bottom: 15px
	}

	.home-top .btn-1 {
		margin-bottom: 0
	}

	.home-top .video-btn {
		top: 60%
	}
}

@media (max-width:700px) {
	.home-top {
		height: 350px;
		min-height: 300px;
		background-position: 60%
	}

	.home-top .desc,
	.home-top .h2 {
		font-size: 22px;
		line-height: 22px;
		margin-bottom: 15px
	}

	.home-top .desc {
		font-size: 14px;
		line-height: 14px
	}

	.home-top .video-btn {
		top: 85%;
		width: 60px;
		height: 60px
	}

	.home-top .video-btn:after {
		border: 5px solid #ff480e
	}

	.home-top .btn-1 {
		padding: 9px 20px;
		font-size: 14px
	}
}

.about .el-2 {
	z-index: -1;
	position: absolute;
	width: 50%;
	height: 100%;
	max-width: 870px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-image: url(../img/about-bg.jpg)
}

@media (max-width:700px) {
	.about .el-2 {
		width: 39%;
		top: 0;
		height: 177px;
		background-size: 109%;
		background-position: right top
	}
}

.about .about__top {
	padding-top: 60px;
	width: 48%;
	max-width: 560px;
	margin-left: auto;
	margin-bottom: 70px
}

@media (max-width:900px) {
	.about .about__top {
		padding-top: 40px;
		margin-bottom: 60px
	}
}

@media (max-width:700px) {
	.about .about__top {
		padding-top: 15px;
		width: 58%;
		margin-bottom: 40px
	}
}

.about .h3 {
	color: #232323;
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: left;
	margin-bottom: 30px
}

@media (max-width:900px) {
	.about .h3 {
		font-size: 28px;
		margin-bottom: 10px
	}
}

.about .desc,
.about .scroll p {
	color: #232323;
	font-size: 22px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: left
}

@media (max-width:900px) {
	.about .desc {
		font-size: 14px
	}

	.about .desc br {
		display: none
	}
}

@media (max-width:700px) {
	.about .desc {
		font-size: 12px
	}
}

.about .about__slider {
	margin-bottom: 60px;
	max-width: 840px;
	width: 100%;
	margin-left: auto;
	margin-right: -10px
}

@media (max-width:1200px) {
	.about .about__slider {
		margin-bottom: 30px;
		max-width: 530px
	}
}

@media (max-width:900px) {
	.about .about__slider {
		max-width: 370px;
		margin-bottom: 15px
	}
}

@media (max-width:700px) {
	.about .about__slider {
		max-width: 370px;
		width: auto;
		margin: 0 -10px 15px
	}
}

.about .about__item {
	padding: 0 10px
}

@media (max-width:700px) {
	.about .about__item {
		padding: 0 5px
	}
}

.about .about__item .img {
	position: relative;
	z-index: 0
}

.about .about__item .img img {
	width: 100%
}

.about .about__item .soc,
.about .about__item .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.about .about__item .social {
	bottom: 20px;
	left: 0;
	position: absolute;
	width: 100%
}

.about .about__item .soc {
	margin: 0 6px;
	width: 35px;
	height: 35px;
	background-color: #fff;
	border-radius: 50%
}

.about .about__item .soc:hover {
	background-color: #fee455
}

.about .about__item .soc1 svg {
	width: auto;
	max-height: 20px
}

.about .about__item .soc2 svg {
	width: auto;
	max-height: 15px
}

.about .about__item .soc3 svg {
	width: auto;
	max-height: 17px
}

@media (max-width:700px) {
	.about .about__item .social {
		bottom: 10px
	}

	.about .about__item .soc {
		margin: 0 5px;
		width: 25px;
		height: 25px
	}

	.about .about__item .soc1 svg {
		max-height: 15px
	}

	.about .about__item .soc2 svg {
		width: auto;
		max-height: 10px
	}

	.about .about__item .soc3 svg {
		width: auto;
		max-height: 11px
	}
}

.about .about__item .name {
	padding-top: 20px;
	background-color: #fff;
	color: #232323;
	font-size: 18px;
	font-weight: 500;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center
}

@media (max-width:700px) {
	.about .about__item .name {
		padding-top: 10px;
		font-size: 16px
	}
}

.about .about__item .dcs {
	color: #232323;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	padding-bottom: 22px;
	background-color: #fff
}

@media (max-width:700px) {
	.about .about__item .dcs {
		font-size: 14px;
		padding-bottom: 15px
	}
}

.about .about__content {
	width: 50%;
	max-width: 560px;
	margin-left: auto
}

@media (max-width:700px) {
	.about .about__content {
		width: 100%
	}
}

.about .scroll {
	overflow: auto;
	max-height: 360px;
	padding-right: 30px
}

@media (max-width:700px) {
	.about .scroll {
		width: 100%;
		max-height: 220px
	}
}

.about .scroll p {
	margin-bottom: 25px
}

@media (max-width:900px) {
	.about .scroll p {
		font-size: 14px;
		margin-bottom: 15px
	}

	.about .scroll p br {
		display: none
	}
}

.about .scroll p:last-child {
	margin-bottom: 0
}

.about .scroll::-webkit-scrollbar {
	width: 9px
}

.about .scroll::-webkit-scrollbar-thumb {
	background-color: #000;
	border-radius: 3px
}

.about .slick-dots {
	margin-top: 30px;
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

@media (max-width:900px) {
	.about .slick-dots {
		margin-top: 10px
	}
}

@media (max-width:700px) {
	.about .slick-dots {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.about .slick-dots li {
	cursor: pointer;
	width: 29px;
	height: 12px;
	border-radius: 6px;
	background-color: #ff480e;
	opacity: .5;
	margin-left: 11px
}

.about .slick-dots button {
	display: none
}

::-webkit-scrollbar {
	width: 15px
}

::-webkit-scrollbar-track {
	border-radius: 3px;
	background-color: #fee455
}

::-webkit-scrollbar-thumb {
	background-color: #000
}

.what-did,
.what-did .el-4 {
	background-size: cover;
	background-repeat: no-repeat
}

.what-did {
	margin-top: 110px;
	padding: 110px 0 40px;
	background-image: url(../img/what-did-bg.png);
	background-position: top;
	position: relative;
	z-index: 1
}

@media (max-width:900px) {
	.what-did {
		margin-top: 60px;
		padding: 80px 0 40px
	}
}

@media (max-width:700px) {
	.what-did {
		padding: 60px 0 30px
	}
}

.what-did .el-4 {
	position: absolute;
	z-index: -1;
	left: -30px;
	bottom: -130px;
	width: 50%;
	min-height: 1173px;
	background-position: right;
	background-image: url(../img/what-did1.png)
}

@media (max-width:1700px) {
	.what-did .el-4 {
		min-height: 1400px
	}
}

@media (max-width:700px) {
	.what-did .el-4 {
		min-height: 470px;
		bottom: -20px
	}
}

.what-did .el-5 {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -30px;
	width: 166px;
	height: 230px;
	background-image: url(../img/what-did2.png)
}

@media (max-width:900px) {
	.what-did .el-5 {
		width: 90px;
		height: 130px;
		background-repeat: no-repeat;
		background-size: 100%
	}
}

@media (max-width:700px) {
	.what-did .el-5 {
		width: 60px;
		height: 90px;
		background-repeat: no-repeat;
		background-size: 100%
	}
}

.what-did .container {
	max-width: 1230px
}

.what-did .h3 {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: right;
	margin-bottom: 70px
}

@media (max-width:1100px) {
	.what-did .h3 {
		font-size: 40px
	}
}

@media (max-width:900px) {
	.what-did .h3 {
		font-size: 28px;
		margin-bottom: 30px
	}
}

.what-did .what-did__body {
	background-color: #fff;
	padding: 20px 20px 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

@media (max-width:900px) {
	.what-did .what-did__body {
		padding: 10px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}
}

.what-did .what-did__item {
	width: calc(100%/4 - 20px);
	margin: 0 10px 20px
}

@media (max-width:900px) {
	.what-did .what-did__item {
		width: calc(100%/3 - 20px);
		margin: 10px
	}
}

@media (max-width:700px) {
	.what-did .what-did__item {
		width: calc(100%/2 - 20px);
		margin: 10px
	}
}

.what-did .num {
	color: #ff480e;
	font-size: 40px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 50px;
	text-align: center
}

@media (max-width:900px) {
	.what-did .num {
		font-size: 28px;
		line-height: 28px
	}
}

.what-did .desc {
	color: #2a2a2a;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center
}

@media (max-width:900px) {
	.what-did .desc {
		font-size: 16px
	}
}

@media (max-width:700px) {
	.what-did .desc {
		font-size: 14px
	}
}

.donat {
	position: relative;
	overflow: hidden;
	z-index: 0;
	padding: 30px 0;
	background-size: cover;
	background-position: top
}

.donat .h3 {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center;
	margin-bottom: 10px
}

@media (max-width:900px) {
	.donat .h3 {
		font-size: 28px
	}
}

.donat .desc {
	max-width: 794px;
	margin: 0 auto;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 18px;
	text-align: center
}

.donat .tab_items {
	display: none
}

.donat .tab_items:first-child {
	display: block
}

.donat .tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 30px 0 0;
	padding: 0 20px;
	position: relative
}

@media (max-width:900px) {
	.donat .tabs {
		margin: 10px 0 0;
		padding: 0
	}
}

@media (max-width:700px) {
	.donat .tabs {
		overflow: auto;
		margin-right: -15px
	}

	.donat .tabs::-webkit-scrollbar {
		width: 9px;
		height: 3px
	}
}

.donat .tabs:before {
	content: '';
	left: 0;
	top: 40px;
	background-color: #fee455;
	position: absolute;
	width: 100%;
	height: 3px
}

@media (max-width:700px) {
	.donat .tabs:before {
		height: 2px;
		top: 43px;
		width: 780px
	}
}

.donat .tabss {
	cursor: pointer
}

@media (max-width:700px) {
	.donat .tabss {
		margin-right: 20px;
		margin-bottom: 15px
	}
}

.donat .tabss .title {
	font-size: 14px;
	font-family: "Aeroport";
	color: #fee455;
	line-height: 1.2;
	text-align: center;
	min-height: 34px;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}

@media (max-width:900px) {
	.donat .tabss .title {
		font-size: 12px
	}
}

.donat .tabss .ico {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media (max-width:900px) {
	.donat .tabss .ico svg {
		max-width: 70px;
		max-height: 40px
	}
}

.donat .tabss .ico path {
	fill: #fee455
}

.donat .tabss.active .title {
	color: #fff
}

.donat .tabss.active .ico path {
	fill: #fff
}

.donat .tabss:first-child .title {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.donat .tab_content {
	margin-top: 40px
}

.donat .tab_items-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; 
	align-items: flex-start
}

@media (max-width:700px) {
	.donat .tab_items-content {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.donat .left {
	width: 600px;
	max-width: 50%;
	height: 580px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media (max-width:1100px) {
	.donat .left {
		height: 535px
	}
}

@media (max-width:900px) {
	.donat .left {
		height: 480px
	}
}

@media (max-width:700px) {
	.donat .left {
		height: auto;
		width: 100%;
		max-width: 100%;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.donat .tab__slider {
	position: relative;
	width: calc(100% - 93px);
	border-style: solid;
	border-width: 5px;
	border-color: #ff480e;
	background-color: #fff
}

@media (max-width:700px) {
	.donat .tab__slider {
		width: 100%
	}
}

.donat .tab__slider .slick-arrow {
	z-index: 1;
	position: absolute;
	top: 25px;
	height: 30px;
	width: 20px;
	cursor: pointer
}

.donat .tab__slider .slick-arrow path {
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out
}

.donat .tab__slider .slick-arrow:hover path {
	fill: #ff480e
}

.donat .tab__slider .slick-arrow.prev {
	left: 20px
}

.donat .tab__slider .slick-arrow.next {
	right: 20px
}

.donat .tab__slider .tab-slide {
	padding: 30px 15px
}

.donat .tab__slider .tab-slide .titl {
	font-size: 18px;
	font-family: "Aeroport";
	color: #000;
	line-height: 1;
	text-align: center;
	margin-bottom: 15px
}

.donat .tab__slider .tab-slide .dsc {
	font-size: 14px;
	font-family: "Aeroport";
	color: rgba(2, 1, 0, .6);
	line-height: 1.286;
	text-align: center;
	min-height: 100px
}

@media (max-width:900px) {
	.donat .tab__slider .tab-slide .dsc br {
		display: none
	}
}

@media (max-width:700px) {
	.donat .tab__slider .tab-slide .dsc {
		min-height: 60px
	}
}

.donat .tab__slider .tab-slide .img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.donat .tab__slider .tab-slide .img img {
	max-width: 77%;
	height: auto;
	max-height: 320px
}

.donat .tab__slider-right {
	width: 78px;
	height: 100%;
	margin: -5px 0 -5px 15px
}

.donat .tab__slider-right img {
	max-width: 100%;
	max-height: 36px;
	margin: 0 auto
}

.donat .tab__slider-right .img-item {
	margin: 5px 0;
	padding: 23px 10px;
	border-style: solid;
	border-width: 3px;
	border-color: #fff;
	background-color: #fff
}

.donat .tab__slider-right .img-item.slick-current {
	border-color: #ff480e
}

@media (max-width:700px) {
	.donat .tab__slider-right {
		width: 100%;
		margin: 10px -5px 30px
	}

	.donat .tab__slider-right .img-item {
		margin: 0 5px;
		padding: 10px
	}

	.donat .tab__slider-right .slick-track {
		margin: 0
	}
}

.donat .right {
	max-width: 50%;
	width: 459px;
	margin-left: 70px
}

@media (max-width:900px) {
	.donat .right {
		margin-left: 20px
	}
}

@media (max-width:700px) {
	.donat .right {
		margin-left: 0;
		width: 100%;
		max-width: 100%
	}
}

.donat .right form input {
	width: 100%;
	height: 58px;
	border-radius: 5px;
	border: 1px solid #fff;
	background-color: rgba(0, 0, 0, .4);
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: left;
	padding: 0 30px;
	margin-bottom: 24px
}

.donat .right form input::-webkit-input-placeholder,
.donat .right form textarea::-webkit-input-placeholder {
	color: #fff
}

.donat .right form input::-moz-placeholder,
.donat .right form textarea::-moz-placeholder {
	color: #fff
}

.donat .right form input:-ms-input-placeholder,
.donat .right form input::-ms-input-placeholder,
.donat .right form textarea:-ms-input-placeholder,
.donat .right form textarea::-ms-input-placeholder {
	color: #fff
}

.donat .right form input::placeholder,
.donat .right form textarea::placeholder {
	color: #fff
}

@media (max-width:900px) {
	.donat .right form input {
		font-size: 14px;
		padding: 0 15px;
		margin-bottom: 14px
	}
}
.donat .right br {
	display: none;
}
.donat .right form textarea {
	width: 100%;
	height: 110px;
	border-radius: 5px;
	border: 1px solid #fff;
	background-color: rgba(0, 0, 0, .4);
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: left;
	padding: 23px 30px;
	margin-bottom: 27px
}

@media (max-width:900px) {
	.donat .right form textarea {
		font-size: 14px;
		padding: 10px 15px;
		margin-bottom: 15px;
		height: 80px
	}
}
.wpcf7-form-control-wrap {
	position: relative;
    width: 100%;
    display: block;
}

.wpcf7-not-valid-tip {
    color: #ffffff;
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    display: flex;
    bottom: 5px;
    font-size: 12px;
}
.donat .btn-1 {
	margin-bottom: 30px
}

.donat .btn {
	width: 211px;
	height: 59px;
	background-color: #ff480e;
	border: 0; 
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	-webkit-transition: .4s linear;
	transition: .4s linear;
	cursor: pointer
}

.donat .btn:hover {
	background-color: #fff;
	color: #ff480e
}

@media (max-width:700px) {
	.donat .btn {
		width: 170px;
		height: 50px;
		font-size: 16px; 
	}
}

.home-blog {
	padding: 80px 0 50px
}

@media (max-width:900px) {
	.home-blog {
		padding: 40px 0
	}
}

.home-blog .container {
	text-align: center;
	max-width: 1200px
}

.home-blog .link {
	display: inline-block;
	color: #ff480e;
	font-size: 18px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 5px
}

@media (max-width:900px) {
	.home-blog .link {
		font-size: 14px
	}
}

.home-blog .link:hover {
	color: #232323
}

.home-blog .h3 {
	color: #232323;
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center;
	margin-bottom: 50px
}

@media (max-width:900px) {
	.home-blog .h3 {
		font-size: 28px;
		margin-bottom: 30px
	}
}

.home-blog .home-blog__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media (max-width:900px) {
	.home-blog .home-blog__items {
		margin: 0 -5px
	}
}

@media (max-width:700px) {
	.home-blog .home-blog__items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.home-blog .home-blog__item {
	width: calc(100%/3 - 30px);
	margin: 0 15px
}

@media (max-width:900px) {
	.home-blog .home-blog__item {
		margin: 0 5px;
		width: calc(100%/3 - 10px)
	}
}

@media (max-width:700px) {
	.home-blog .home-blog__item {
		width: calc(100% - 10px);
		margin: 0 5px 30px
	}

	.home-blog .home-blog__item:last-child {
		margin-bottom: 0
	}
}

.home-blog .img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
	overflow: hidden;
	height: 236px
}

@media (max-width:1100px) {
	.home-blog .img {
		height: 220px
	}
}

@media (max-width:900px) {
	.home-blog .img {
		height: 170px
	}
}

@media (max-width:700px) {
	.home-blog .img {
		height: 220px
	}
}

.home-blog .img img {
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out
}

.home-blog .img:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.home-blog .date,
.home-blog .title {
	color: #ff5d1e;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center
}

.home-blog .title {
	color: #000;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px
}

.home-blog .title:hover {
	color: #ff5d1e
}

@media (max-width:900px) {
	.home-blog .title {
		font-size: 18px;
		margin-bottom: 15px
	}
}

.home-blog .desc {
	height: 66px;
	color: #969695;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center;
	overflow: hidden;
	margin-bottom: 30px
}

@media (max-width:900px) {
	.home-blog .desc {
		font-size: 14px;
		height: 60px;
		margin-bottom: 10px
	}
}

@media (max-width:700px) {
	.home-blog .desc {
		height: auto
	}

	.home-blog .desc br {
		display: none
	}
}

.home-blog .link-btn {
	width: 134px;
	height: 52px;
	border-radius: 5px;
	background-color: #ababaa;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 10px;
	text-align: center
}

.home-blog .link-btn:hover {
	background-color: rgba(255, 72, 14, .7)
}

@media (max-width:700px) {
	.home-blog .link-btn {
		width: 124px;
		height: 42px
	}
}

.portfolio {
	padding: 70px 0 90px
}

@media (max-width:900px) {
	.portfolio {
		padding: 30px 0 40px
	}
}

.portfolio .h3 {
	color: #232323;
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center;
	margin-bottom: 10px
}

@media (max-width:900px) {
	.portfolio .h3 {
		font-size: 28px
	}
}

.portfolio .desc {
	color: #2a2a2a;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center;
	margin-bottom: 40px
}

@media (max-width:900px) {
	.portfolio .desc {
		font-size: 14px;
		margin-bottom: 30px
	}

	.portfolio .desc br {
		display: none
	}
}

.portfolio .wrapper {
	max-width: 1920px;
	margin: 0 auto
}

.portfolio .wrapper .tabs {
	margin-bottom: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

@media (max-width:900px) {
	.portfolio .wrapper .tabs {
		margin-bottom: 30px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.portfolio .wrapper .tab {
	cursor: pointer;
	margin: 0 7px;
	min-width: 110px;
	padding: 13px;
	color: #2a2a2a;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 10px;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #d6d6d7;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out
}

.portfolio .wrapper .tab:hover {
	border: 1px solid #ff480e;
	color: #ff480e
}

.portfolio .wrapper .tab.active {
	background-color: #ff480e;
	color: #fff;
	pointer-events: none;
	border: 1px solid #ff480e
}

@media (max-width:500px) {
	.portfolio .wrapper .tab {
		width: calc(50% - 10px);
		margin: 0 5px 10px
	}
}

.portfolio .wrapper .tab_item .item-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.portfolio .wrapper .img {
	width: calc(100%/4);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	height: 390px
}

@media (max-width:1100px) {
	.portfolio .wrapper .img {
		width: calc(100%/3);
		height: 270px
	}
}

@media (max-width:990px) {
	.portfolio .wrapper .img {
		height: 200px
	}
}

@media (max-width:700px) {
	.portfolio .wrapper .img {
		width: calc(100%/2);
		height: 150px
	}
}

.home-blog .img img,
.portfolio .wrapper .img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%
}

.portfolio .wrapper .img:after,
.portfolio .wrapper .img:before {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	position: absolute;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out
}

.portfolio .wrapper .img:before {
	left: 0;
	top: 0;
	background-color: #fff;
	content: '';
	width: 100%;
	height: 100%
}

.portfolio .wrapper .img:after {
	content: '+';
	left: calc(50% - 22px);
	top: calc(50% - 15px);
	height: 30px;
	width: 30px;
	color: #ff480e;
	font-size: 72px;
	font-weight: 300;
	font-style: normal;
	letter-spacing: normal;
	line-height: 20px;
	text-align: center
}

.portfolio .wrapper .img:hover:after,
.portfolio .wrapper .img:hover:before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1)
}

.portfolio .wrapper .img:hover:before {
	opacity: .7
}

.gathering {
	background-color: #908368;
	background-repeat: no-repeat;
	background-position: right;
	background-size: auto 100%;
	position: relative;
	z-index: 0;
	min-height: 720px
}

@media (max-width:900px) {
	.gathering {
		background-size: 100%;
		background-position: top;
		min-height: 400px
	}
}

.gathering .el-1 {
	background-image: url(../img/gathering-el-1.png);
	position: absolute;
	z-index: -1;
	display: block;
	left: -2px;
	margin-bottom: -100px;
	max-width: 70%;
	width: 100%;
	background-size: 100%;
	height: calc(100% + 80px);
	background-repeat: no-repeat
}

@media (max-width:900px) {
	.gathering .el-1 {
		height: 50%;
		background-size: 70%
	}
}

.gathering .gathering__body {
	background-color: #fff;
	display: inline-block;
	padding: 30px 110px 30px 30px;
	margin: 70px 0 80px
}

@media (max-width:900px) {
	.gathering .gathering__body {
		margin: 300px 0 40px;
		padding-right: 30px;
		width: 100%
	}
}

@media (max-width:800px) {
	.gathering .gathering__body {
		margin: 250px 0 40px
	}
}

@media (max-width:700px) {
	.gathering .gathering__body {
		margin: 200px 0 40px
	}
}

@media (max-width:600px) {
	.gathering .gathering__body {
		margin: 150px 0 40px;
		padding: 20px
	}
}

.gathering .gathering__body .subtitle,
.gathering .gathering__body h3 {
	color: #ff480e;
	font-size: 18px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: left;
	margin-bottom: 15px
}

.gathering .gathering__body h3 {
	color: #232323;
	font-size: 48px;
	line-height: 100%;
	margin-bottom: 10px
}

@media (max-width:900px) {
	.gathering .gathering__body h3 {
		font-size: 28px
	}
}

.gathering .gathering__body p,
.gathering .gathering__body ul li {
	color: #2a2a2a;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 24px;
	text-align: left
}

.gathering .gathering__body p {
	margin-bottom: 50px
}

@media (max-width:600px) {
	.gathering .gathering__body p {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 20px
	}
}

.gathering .gathering__body ul {
	margin-bottom: 50px;
	list-style-type: none
}

@media (max-width:600px) {
	.gathering .gathering__body ul {
		margin-bottom: 20px
	}
}

.gathering .gathering__body ul li {
	margin: 0 0 15px
}

@media (max-width:600px) {
	.gathering .gathering__body ul li {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 10px
	}
}

.gathering .gathering__body ul li:before {
	content: '';
	width: 11px;
	height: 9px;
	margin-right: 12px;
	display: block;
	background-image: url(../img/check.png)
}

.gathering .gathering__body .bottom {
	max-width: 547px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 50px;
	border-top: 1px solid #d6d6d7
}

.gathering .gathering__body .bottom .bottom__item,
.gathering .gathering__body .bottom .bottom__item .ico,
.gathering .gathering__body ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.gathering .gathering__body .bottom .bottom__item {
	margin-left: 30px;
	margin-right: 54px
}

.gathering .gathering__body .bottom .bottom__item .ico {
	width: 68px;
	height: 68px;
	background-color: #d6d6d7;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 100%;
	color: #232323;
	font-size: 20px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: 18px;
	text-align: left;
	text-transform: uppercase;
	margin-right: 14px
}

.gathering .gathering__body .bottom .bottom__item .titl {
	opacity: .7;
	color: #232323;
	font-size: 12px;
	line-height: 15px;
	font-weight: 300;
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
	margin-bottom: 11px
}

.gathering .gathering__body .bottom .bottom__item .dsc {
	color: #2a2a2a;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 10px;
	text-align: left
}

.gathering .gathering__body .bottom .btn-2,
.gathering .gathering__ok {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.gathering .gathering__body .bottom .btn-2 {
	border-radius: 5px;
	background-color: #ff480e;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: 18px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 160px;
	height: 58px
}

.gathering .gathering__body .bottom .btn-2:hover {
	background-color: #232323
}

@media (max-width:700px) {
	.gathering .gathering__body .bottom {
		padding-top: 20px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}

	.gathering .gathering__body .bottom .bottom__item {
		margin-left: 0;
		margin-right: 5px
	}

	.gathering .gathering__body .bottom .bottom__item .ico {
		width: 40px;
		height: 40px;
		font-size: 12px;
		line-height: 12px;
		margin-right: 5px
	}

	.gathering .gathering__body .bottom .bottom__item .titl {
		font-size: 10px;
		line-height: 10px;
		margin-bottom: 5px
	}

	.gathering .gathering__body .bottom .bottom__item .dsc {
		font-size: 12px
	}

	.gathering .gathering__body .bottom .btn-2 {
		font-size: 14px;
		line-height: 14px;
		width: 110px;
		height: 40px
	}
}

.gathering .gathering__ok {
	background-color: rgba(255, 228, 85, .8);
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none
}

.gathering .gathering__ok.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.gathering .gathering__ok .title {
	color: #004b97;
	font-size: 55px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center;
	margin-bottom: 40px
}

@media (max-width:900px) {
	.gathering .gathering__ok .title {
		font-size: 28px;
		margin-bottom: 30px
	}
}

.gathering .gathering__ok .description {
	color: #fbe770;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 20px;
	padding: 24px 50px 25px;
	background-color: #004b97;
	display: inline-block
}

@media (max-width:900px) {
	.gathering .gathering__ok .description {
		font-size: 18px
	}
}

.tab_item {
	display: none
}

.tab_item:first-child {
	display: block
}

.logos,
.logos .h3 {
	margin-bottom: 50px
}

@media (max-width:900px) {
	.logos {
		margin-bottom: 40px
	}
}

.logos .h3 {
	color: #232323;
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center
}

@media (max-width:900px) {
	.logos .h3 {
		font-size: 28px;
		margin-bottom: 30px
	}
}

.logos .logos__items,
.modal .buttons .but {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.logos .logos__item {
	margin: 0 45px
}

@media (max-width:700px) {
	.logos .logos__item {
		margin: 0 15px
	}
}

.footer {
	background-image: url(../img/footer.jpg);
	min-height: 550px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover
}

@media (max-width:900px) {
	.footer {
		min-height: 300px;
		background-attachment: initial;
		background-position: center;
		background-size: 200%
	}
}

@media (max-width:700px) {

	.h3,
	h3 {
		font-size: 22px !important;
		line-height: 30px
	}
}

.fancybox-slide.fancybox-slide--html {
	text-align: right !important;
	padding: 0 !important
}

.fancybox-slide--html .fancybox-close-small,
.modal .link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.fancybox-slide--html .fancybox-close-small {
	padding: 0 !important;
	right: 20px !important;
	top: 20px !important;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.fancybox-slide--html .fancybox-close-small svg {
	width: 60px;
	height: 60px
}

.modal {
	position: relative;
	display: none;
	width: 650px;
	min-height: 100vh;
	max-width: 100%
}

.modal .link {
	position: absolute;
	bottom: 50px;
	font-size: 20px;
	font-family: "Aeroport";
	color: #000;
	line-height: 1.5
}

.modal .link:hover svg {
	-webkit-transform: translateX(-10px);
	transform: translateX(-10px)
}

.modal .link svg {
	-webkit-transition: .4s ease;
	transition: .4s ease;
	width: 70px;
	margin-right: 10px;
	height: auto
}

.modal.fancybox-content {
	background-color: #ff480e;
	padding-bottom: 100px
}

@media (max-width:1200px) {
	.modal.fancybox-content {
		margin-left: auto
	}
}

.modal .dsc {
	margin-top: 50px;
	font-size: 30px;
	font-family: "Aeroport";
	color: #000;
	line-height: 1.2;
	text-align: left;
	margin-bottom: 30px
}

.modal .buttons {
	width: 90%
}

.modal .buttons .but {
	height: 90px;
	background-color: #fff;
	margin-bottom: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-radius: 10px;
	padding: 0 40px 0 20px
}

.blog .blog__aside .blog__last-news .blog__last-news-item:last-child,
.modal .buttons .but:last-child {
	margin-bottom: 0
}

.modal .buttons .but svg {
	-webkit-transition: .4s ease;
	transition: .4s ease;
	width: 15px;
	height: auto
}

.modal .buttons .but:hover svg {
	-webkit-transform: translateX(10px);
	transform: translateX(10px)
}

@media (max-width:1100px) {
	.modal {
		padding: 25px 15px 100px !important
	}

	.modal .dsc {
		margin-top: 30px;
		font-size: 20px;
		font-family: "Aeroport";
		color: #000;
		line-height: 1.2;
		text-align: left;
		margin-bottom: 30px
	}

	.modal .buttons {
		width: 100%
	}

	.modal .buttons .but {
		height: 60px;
		background-color: #fff;
		margin-bottom: 20px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		border-radius: 10px;
		padding: 0 30px 0 20px
	}

	.modal .buttons .but img {
		max-width: 120px;
		max-height: 36px
	}

	.modal .buttons .but svg {
		width: 15px;
		height: auto
	}
}

.modal-2,
.modal-3,
.modal-4 {
	min-height: 100vh
}

.modal-2.fancybox-content {
	background-color: #fff
}

.modal-2 .cont {
	padding-top: 60px;
	text-align: center
}

.modal-2 .cont img {
	display: block;
	margin: 0 auto 30px
}

.modal-2 .cont h4,
.modal-3 .cont h4,
.modal-4 .cont h4 {
	font-size: 24px;
	color: #000;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 10px
}

.modal-2 .cont p,
.modal-3 .cont p,
.modal-4 .cont p {
	font-size: 18px;
	color: #000;
	line-height: 1.667;
	text-align: center;
	max-width: 420px;
	margin: 0 auto 25px
}

.modal-2 .cont p a {
	color: #6721c1
}

.modal-2 .cont p a:hover,
.modal-3 .cont p a:hover,
.modal-4 .cont p a:hover {
	color: #000
}

@media (max-width:700px) {
	.modal-2 .cont {
		padding-top: 40px
	}

	.modal-2 .cont img {
		max-height: 40px;
		margin: 0 auto 20px
	}
}

.modal-3.fancybox-content {
	background-color: #fff
}

.modal-3 .cont {
	padding-top: 60px;
	text-align: center
}

.modal-3 .cont img {
	display: block;
	margin: 0 auto 40px
}

.modal-3 .cont p a,
.modal-4 .cont p a {
	color: #e2904a
}

@media (max-width:700px) {
	.modal-3 .cont {
		padding-top: 40px
	}

	.modal-3 .cont img {
		max-height: 50px;
		margin: 0 auto 20px
	}
}

.modal-4.fancybox-content {
	background-color: #fff
}

.modal-4 .cont {
	padding-top: 60px;
	text-align: center
}

.modal-4 .cont img {
	display: block;
	max-width: 100%;
	margin: 40px auto 0
}

.modal-4 .cont p {
	margin: 0 auto 15px
}

.modal-4 .cont p b {
	text-decoration: underline
}

@media (max-width:700px) {
	.modal-4 .cont {
		padding-top: 40px
	}

	.modal-4 .cont img {
		margin: 20px auto 0
	}
}

.blog-top {
	min-height: 270px;
	padding-top: 100px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-size: cover;
	background-position: center
}

@media (max-width:700px) {
	.blog-top {
		min-height: 160px;
		padding-top: 50px
	}
}

.blog-top .h2 {
	font-size: 36px;
	font-family: "Aeroport";
	color: #232323;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 10px
}

.blog .blog__body,
.blog-top,
.blog-top .breadcrumbs__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.blog-top .breadcrumbs__list {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style-type: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.blog-top .breadcrumbs__list li {
	margin: 0 5px
}

.blog-top .breadcrumbs__list a,
.blog-top .breadcrumbs__list span {
	font-size: 20px;
	font-family: "Aeroport";
	color: #232323;
	line-height: 1.2
}

.blog-top .breadcrumbs__list a span {
	margin-left: 5px
}

.blog-top .breadcrumbs__list a span svg {
	width: 5px;
	height: auto
}

.blog-top .breadcrumbs__list a:hover {
	color: #004b97
}

.blog {
	padding: 50px 0
}

@media (max-width:700px) {
	.blog {
		padding: 40px 0
	}
}

.blog .blog__body {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media (max-width:700px) {
	.blog .blog__body {
		-ms-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse
	}
}

.blog .blog__aside {
	max-width: 350px;
	width: calc(40% - 30px)
}

.blog .blog__aside .blog__category {
	padding: 20px 30px 30px;
	margin-bottom: 30px;
	background-color: transparent;
	-webkit-box-shadow: 0 0 25px 0 rgba(122, 121, 126, .15);
	box-shadow: 0 0 25px 0 rgba(122, 121, 126, .15)
}

@media (max-width:700px) {
	.blog .blog__aside .blog__category {
		padding: 15px 20px 20px
	}
}

.blog .blog__aside .blog__category .titl,
.blog .blog__aside .blog__last-news .titl {
	font-size: 20px;
	font-family: "Aeroport";
	color: #232323;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	position: relative
}

.blog .blog__aside .blog__category .titl:before,
.blog .blog__aside .blog__last-news .titl:before {
	content: '';
	border-bottom: 3px solid #ff480e;
	position: absolute;
	bottom: -6px;
	width: 80px;
	height: 1px;
	display: block
}

.blog .blog__aside .blog__category ul {
	list-style-type: none
}

.blog .blog__aside .blog__category ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-family: "Aeroport";
	color: #010005;
	padding: 0 0 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #a8a9a9
}

.blog .blog__aside .blog__category ul li a:hover,
.blog .blog__aside .blog__last-news .blog__last-news-item .title:hover {
	color: #ff480e
}

.blog .blog__aside .blog__category ul li a svg {
	margin-right: 10px;
	width: 5px;
	height: auto
}

.blog .blog__aside .blog__last-news {
	padding: 20px 30px 30px;
	margin-bottom: 30px;
	background-color: transparent;
	-webkit-box-shadow: 0 0 25px 0 rgba(122, 121, 126, .15);
	box-shadow: 0 0 25px 0 rgba(122, 121, 126, .15)
}

@media (max-width:700px) {
	.blog .blog__aside .blog__last-news {
		padding: 15px 20px 20px
	}
}

.blog .blog__aside .blog__last-news .blog__last-news-item,
.blog .blog__item .img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.blog .blog__aside .blog__last-news .blog__last-news-item {
	margin-bottom: 10px
}

.blog .blog__aside .blog__last-news .blog__last-news-item .img {
	width: 70px;
	height: 70px;
	min-width: 70px;
	margin-right: 15px
}

.blog .blog__aside .blog__last-news .blog__last-news-item .img img,
.blog .blog__item .img img {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	width: 100%
}

.blog .blog__aside .blog__last-news .blog__last-news-item .title {
	margin-bottom: 10px;
	font-size: 16px;
	font-family: "Aeroport";
	color: #232323;
	font-weight: 700;
	line-height: 1.2
}

.blog .blog__aside .blog__last-news .blog__last-news-item .date {
	font-size: 16px;
	font-family: "Aeroport";
	color: #7a797e;
	line-height: 1.625
}

@media (max-width:700px) {
	.blog .blog__aside {
		width: 100%
	}
}

.blog .blog__right {
	width: 65%;
	max-width: 730px;
	margin: 0 50px
}

@media (max-width:1100px) {
	.blog .blog__right {
		margin: 0 0 0 30px
	}
}

@media (max-width:700px) {
	.blog .blog__right {
		width: 100%;
		margin: 0 0 40px
	}
}

.blog .blog__item .img {
	width: 100%
}

.blog .blog__item .text {
	padding: 30px
}

@media (max-width:700px) {
	.blog .blog__item .text {
		padding: 20px 0
	}
}

.blog .blog__item .title {
	font-size: 20px;
	font-family: "Aeroport";
	color: #232323;
	font-weight: 700;
	line-height: 1.2
}

.blog .blog__item .title:hover {
	color: #ff480e
}

.blog .blog__item .date,
.blog .blog__item .desc {
	font-size: 16px;
	font-family: "Aeroport";
	color: #7a797e;
	line-height: 1.625
}

.blog .blog__item .date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.blog .blog__item .date svg {
	margin-right: 5px
}

.blog .blog__item .desc {
	margin: 5px 0 10px
}

.blog .blog__item .btn-4 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-width: 1px;
	border-color: #a8a9a9;
	border-style: solid;
	height: 41px;
	font-size: 14px;
	font-family: "Aeroport";
	color: #2a2a2a;
	line-height: 1.2;
	text-align: center;
	padding: 0 15px 3px
}

.blog .blog__item .btn-4:hover {
	background-color: #a8a9a9;
	color: #fff
}