@charset "UTF-8";
/*** Общие импорты ***/
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/*** Шрифты ***/
/*** Цвета ***/
/*** Основные стили ***/
body {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #404040;
  line-height: 1.5;
  position: relative;
}

ul:not([class]) {
  padding-left: 0;
}
ul:not([class]) li {
  list-style: none;
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 5px;
}
ul:not([class]) li:before {
  position: absolute;
  left: 16px;
  top: 10px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1b4f05;
}

a, button, input[type=button] {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

a:not([class]) {
  color: #308913;
  text-decoration: none !important;
  outline: none !important;
}
a:not([class]):hover, a:not([class]):focus, a:not([class]):active {
  color: #1b4f05;
}

textarea {
  outline: none !important;
  width: 100%;
  height: 100px;
  padding: 15px;
  border-radius: 3px;
}

a.button,
button.button,
input.button {
  text-decoration: none !important;
  font-size: 18px;
  border: 1px solid #1b4f05;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: none !important;
  outline: none !important;
  margin: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a.button.big,
button.button.big,
input.button.big {
  height: 50px;
  padding-left: 60px;
  padding-right: 60px;
}
a.button.small,
button.button.small,
input.button.small {
  height: 42px;
  padding-left: 42px;
  padding-right: 42px;
}
a.button.white,
button.button.white,
input.button.white {
  color: #1b4f05;
  background: #fff;
}
a.button.white:hover, a.button.white:focus, a.button.white:active,
button.button.white:hover,
button.button.white:focus,
button.button.white:active,
input.button.white:hover,
input.button.white:focus,
input.button.white:active {
  background: #1b4f05;
  color: #fff;
}
a.button.green,
button.button.green,
input.button.green {
  color: #fff;
  background: #1b4f05;
}
a.button.green:hover, a.button.green:focus, a.button.green:active,
button.button.green:hover,
button.button.green:focus,
button.button.green:active,
input.button.green:hover,
input.button.green:focus,
input.button.green:active {
  background: #fff;
  color: #1b4f05;
}

.block-shadow {
  position: relative;
}
.block-shadow > div {
  position: relative;
  z-index: 2;
}
.block-shadow:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  z-index: 1;
  background: #1b4f05;
  border-radius: 3px;
}

.block-title {
  color: #1b4f05;
  font-size: 48px;
  line-height: 60px;
  font-weight: 300;
  margin-bottom: 20px;
}
.block-title.white {
  color: #fff;
}

.block-sub-title {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}
.block-sub-title.white {
  color: #fff;
}

.section-block {
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-slider .slick-arrow {
  width: 45px;
  height: 45px;
  border: 1px solid #1b4f05;
  border-radius: 3px;
  z-index: 2;
  background: #fff;
}
.content-slider .slick-arrow.slick-prev:before, .content-slider .slick-arrow.slick-next:before {
  line-height: 43px;
  display: block;
  font-size: 24px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  color: #1b4f05;
}
.content-slider .slick-arrow.slick-prev:hover, .content-slider .slick-arrow.slick-next:hover {
  background: #1b4f05;
}
.content-slider .slick-arrow.slick-prev:hover:before, .content-slider .slick-arrow.slick-next:hover:before {
  color: #fff;
}
.content-slider .slick-arrow.slick-prev {
  left: -75px;
}
.content-slider .slick-arrow.slick-prev:before {
  content: "";
}
.content-slider .slick-arrow.slick-next {
  right: -75px;
}
.content-slider .slick-arrow.slick-next:before {
  content: "";
}
.content-slider .slick-dots {
  bottom: 30px;
}
.content-slider .slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 7px;
}
.content-slider .slick-dots li button {
  width: 15px;
  height: 15px;
}
.content-slider .slick-dots li button:before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #1b4f05;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
}
.content-slider .slick-dots li.slick-active button:before {
  background: #1b4f05;
  opacity: 1;
}
.content-slider .slick-dots li:hover button:before {
  opacity: 1;
}

/*** Блоки ***/
.header {
  background: #fff;
}
.header .header__logotype-block {
  display: flex;
  height: 100px;
  align-items: center;
}
.header .header__logotype-block .header__logotype {
  max-width: 122px;
  margin-right: 30px;
}
.header .header__logotype-block .header__logotype .header__logotype__link {
  display: block;
}
.header .header__logotype-block .header__logotype__text-block {
  font-size: 14px;
  line-height: 22px;
}
.header .header__logotype-block .header__logotype__text-block .header__city span.header-city {
  color: #308913;
}
.header .header__phone-block {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: flex-end;
}
.header .header__phone-block .header__phone {
  font-size: 24px;
  color: #404040;
  text-decoration: none !important;
}
.header .header__phone-block .header__phone:hover, .header .header__phone-block .header__phone:focus, .header .header__phone-block .header__phone:active {
  color: #308913;
}
.header .header__button-block {
  display: flex;
  height: 100px;
  align-items: center;
}
.header .header__button-block button.button {
  padding-bottom: 2px;
}
.header .header__menu-button-block {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: center;
}
.header .header__menu-button-block .header__menu-button {
  width: 50px;
  height: 50px;
  border: 1px solid #1b4f05;
  border-radius: 3px;
  background: #fff;
  font-size: 28px;
  color: #308913;
  outline: none !important;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .header__menu-button-block .header__menu-button:hover, .header .header__menu-button-block .header__menu-button:focus, .header .header__menu-button-block .header__menu-button:active {
  color: #fff;
  background: #1b4f05;
}
#mobile-header {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.35);
}
#mobile-header.active {
  display: block;
}

.first-banner {
  height: 700px;
  display: flex;
  align-items: center;
}

.first-banner__text-block {
  margin-bottom: 60px;
  padding-top: 30px;
}
.first-banner__text-block .first-banner__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: #fff;
  margin-bottom: 22px;
}
.first-banner__text-block .first-banner__title.color-black {
  color: #404040;
}
.first-banner__text-block .first-banner__sub-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
}
.first-banner__text-block .first-banner__sub-title.color-black {
  color: #404040;
}
.first-banner__text-block .first-banner__button-block {
  margin-bottom: 20px;
}

.first-banner__icons-block .first-banner__icon-item .icon-image__wrapper {
  margin-right: auto;
  margin-left: auto;
  width: 91px;
  height: 91px;
  display: flex;
  margin-bottom: 18px;
}
.first-banner__icons-block .first-banner__icon-item .icon-image__wrapper .icon-image {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #308913;
  border-radius: 3px;
  width: inherit;
  height: inherit;
}
.first-banner__icons-block .first-banner__icon-item .icon-text {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}
.first-banner__icons-block .first-banner__icon-item .icon-text.color-black {
  color: #404040;
}

.time-work-text {
  display: flex;
  align-items: flex-end;
}
.time-work-text .row {
  display: flex;
  align-items: flex-end;
}
.time-work-text .block-title {
  margin-bottom: 30px;
}
.time-work-text .time-work-text__text {
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 15px;
}
.small-services__text {
  margin-bottom: 26px;
}

.small-services__services-list-title {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  color: #1b4f05;
  margin-bottom: 20px;
}

.small-services__services-list .services-item {
  margin-bottom: 30px;
}
.small-services__services-list .services-item .services-item__image-wrapper {
  margin-bottom: 7px;
  display: flex;
  justify-content: center;
}
.small-services__services-list .services-item .services-item__text-wrapper .services-item__name {
  color: #1b4f05;
  text-align: center;
  font-weight: 700;
}
.small-services__services-list .services-item .services-item__text-wrapper .services-item__text {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  margin-bottom: 15px;
  height: 72px;
  overflow: hidden;
}
.small-services__services-list .services-item .services-item__button-wrapper {
  display: flex;
  justify-content: center;
}
.photo-gallery {
  background: #1b4f05;
  padding-top: 80px;
  padding-bottom: 60px;
}
.photo-gallery .block-title {
  margin-bottom: 5px;
}
.photo-gallery .photo-gallery__sub-title {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 30px;
}
.photo-gallery .photo-gallery__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.photo-gallery .photo-gallery__list .photo-gallery__item {
  display: block;
  margin-bottom: 15px;
}
.services {
  padding-top: 60px;
  padding-bottom: 20px;
}
.services .services__list .services__item {
  margin-bottom: 60px;
}
.services .services__list .services__item .services-title {
  font-size: 36px;
  font-weight: 300;
  color: #1b4f05;
  margin-bottom: 15px;
}
.services .services__list .services__item .services-text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 26px;
}
.services .services__list .services__item .services-advantages {
  margin-bottom: 20px;
}
.services .services__list .services__item .services-button {
  margin-bottom: 20px;
}
.services .services__list .services__item .services__image-block {
  margin-bottom: 20px;
}
.professional-fly {
  position: relative;
  padding-top: 48px;
  padding-bottom: 54px;
}
.professional-fly:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 79, 5, 0.85);
}
.professional-fly .block-title {
  margin-bottom: 5px;
}
.professional-fly .block-sub-title {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
}
.professional-fly .professional-fly__text {
  color: #fff;
}

.numbers__list {
  margin-top: 40px;
}
.numbers__list .numbers__item {
  max-width: 214px;
  min-width: 214px;
  margin-right: 5px;
  margin-bottom: 30px;
}
.numbers__list .numbers__item .number {
  background: #fff;
  border: 1px solid #1b4f05;
  border-radius: 3px;
  height: 117px;
  font-size: 60px;
  font-weight: 700;
  color: #1b4f05;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.numbers__list .numbers__item .text {
  background: transparent;
  text-align: center;
  color: #fff;
  padding-top: 5px;
  padding-left: 5px;
  padding-bottom: 10px;
}

.pilots {
  padding-bottom: 5px;
}
.pilots .pilots__list {
  padding-top: 15px;
}
.pilots .pilots__list .pilots__item {
  background: #1b4f05;
  display: flex;
  margin-bottom: 15px;
}
.pilots .pilots__list .pilots__item .pilot-photo {
  min-width: 278px;
}
.pilots .pilots__list .pilots__item .pilot-info {
  padding: 20px 15px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pilots .pilots__list .pilots__item .pilot-info .pilot-name {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}
.pilots .pilots__list .pilots__item .pilot-info .pilot-text {
  color: #fff;
  margin-bottom: 15px;
}
.pilots .pilots__list .pilots__item .pilot-button button:hover {
  border-color: #fff;
}

.pilots-slider {
  padding-top: 25px;
}

.planes .planes__text {
  text-align: center;
  margin-bottom: 30px;
}
.planes .planes__list .planes__item {
  margin-bottom: 30px;
}
.planes .planes__list .planes__item .planes__image {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.planes .planes__list .planes__item .planes__content {
  text-align: center;
}

.form_section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.form_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 79, 5, 0.85);
}
.form_section .container {
  position: relative;
}
.form_section .block-title {
  margin-bottom: 5px;
}
.form_section .block-sub-title {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}
.form_section .inputs-block {
  padding-top: 40px;
}
.form_section .inputs-block .form-group {
  margin-bottom: 15px;
}
.form_section .inputs-block .form-group input {
  height: 50px;
  border: none;
  border-radius: 3px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  outline: none !important;
}
.form_section .inputs-block .form-group button:hover, .form_section .inputs-block .form-group button:active, .form_section .inputs-block .form-group button:focus {
  border-color: #fff;
}

.security .block-sub-title {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
}
.security .security-text {
  padding-right: 60px;
  margin-bottom: 40px;
}
.security .security-button {
  margin-bottom: 15px;
}
.airport .airport__info {
  margin-bottom: 30px;
}
.airport .airport__info .airport__info__image-wrapper {
  margin-top: 10px;
}
.airport .airport__info .block-title {
  margin-bottom: 10px;
}
.airport .airport__info .block-sub-title {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}
.airport .airport__map .airport__map__image {
  height: 233px;
  position: relative;
}
.airport .airport__map .airport__map__image .airport__map__bg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(27, 79, 5, 0.8);
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.airport .airport__map .airport__map__image:hover .airport__map__bg {
  opacity: 1;
}
.airport .airport__map .airport__map__text {
  font-size: 18px;
}

.photo-video .photo-video__content {
  margin-bottom: 20px;
}
.photo-video .photo-video__content .photo-slider.content-slider .slick-arrow.slick-prev {
  left: 15px;
}
.photo-video .photo-video__content .photo-slider.content-slider .slick-arrow.slick-next {
  right: 15px;
}
.photo-video .photo-video__video-content {
  margin-bottom: 20px;
  height: 700px;
}

.social .block-title {
  margin-bottom: 5px;
}
.social .social-text {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.social .social-buttons {
  display: flex;
  justify-content: space-between;
}
.social .social-buttons .button {
  padding-left: 0;
  padding-right: 0;
  width: 263px;
  justify-content: center;
}
.social .social-buttons .button i {
  margin-right: 10px;
}
.social .social-slider.content-slider .slick-dots {
  bottom: -30px;
}

.instagram .instagram-slider .instagram-list.content-slider .slick-dots {
  bottom: -30px;
}
.instagram .instagram-slider .instagram-list .instagram-item {
  margin-bottom: 15px;
}
.advantages .block-title {
  margin-bottom: 5px;
}
.advantages .block-sub-title {
  margin-bottom: 20px;
}
.advantages .advantages__list .advantages__item {
  margin-bottom: 30px;
}
.advantages .advantages__list .advantages__item .advantages-image__wrapper {
  margin-right: auto;
  margin-left: auto;
  width: 170px;
  height: 170px;
  display: flex;
  margin-bottom: 13px;
}
.advantages .advantages__list .advantages__item .advantages-image__wrapper .advantages-image {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #308913;
  border-radius: 3px;
  width: inherit;
  height: inherit;
}
.advantages .advantages__list .advantages__item .advantages-title {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.advantages .advantages__list .advantages__item .advantages-text {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.gifts .block-title {
  margin-bottom: 5px;
}
.gifts .block-sub-title {
  margin-bottom: 50px;
}
.gifts .gifts__header-buttons {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gifts .gifts__header-buttons .gifts__header-button {
  height: 60px;
  flex: 1 1 auto;
  background: #fff;
  border-right: 1px solid #1b4f05;
  border-top: 1px solid #1b4f05;
  border-bottom: 1px solid #1b4f05;
  border-left: none;
  font-weight: 700;
  color: #1b4f05;
  outline: none !important;
}
.gifts .gifts__header-buttons .gifts__header-button:first-child {
  border-left: 1px solid #1b4f05;
}
.gifts .gifts__header-buttons .gifts__header-button.active {
  background: #1b4f05;
  color: #fff;
}
.gifts .gifts__header-buttons .gifts__header-button:hover, .gifts .gifts__header-buttons .gifts__header-button:active {
  background: #308913;
  color: #fff;
}
.gifts .gifts__list {
  overflow: hidden;
  position: relative;
}
.gifts .gifts__list .gifts__item {
  display: none;
  position: relative;
}
.gifts .gifts__list .gifts__item.active {
  display: block;
}
.gifts .gifts__list .gifts__item .gifts__item-slider {
  padding-top: 20px;
}
.gifts .gifts__list .gifts__item .gifts__item-slider.content-slider .slick-arrow.slick-prev, .gifts .gifts__list .gifts__item .gifts__item-slider.content-slider .slick-arrow.slick-next {
  background: rgba(255, 255, 255, 0.3);
}
.gifts .gifts__list .gifts__item .gifts__item-slider.content-slider .slick-arrow.slick-prev:hover, .gifts .gifts__list .gifts__item .gifts__item-slider.content-slider .slick-arrow.slick-next:hover {
  background: #1b4f05;
}
.gifts .gifts__list .gifts__item .gifts__item-slider.content-slider .slick-arrow.slick-prev:hover:before, .gifts .gifts__list .gifts__item .gifts__item-slider.content-slider .slick-arrow.slick-next:hover:before {
  color: #fff;
}
.gifts .gifts__list .gifts__item .gifts__item-slider.content-slider .slick-arrow.slick-prev {
  left: 0;
}
.gifts .gifts__list .gifts__item .gifts__item-slider.content-slider .slick-arrow.slick-next {
  right: 0;
}
.gifts .gifts__list .gifts__item .gifts__item-title {
  font-size: 36px;
  font-weight: 300;
  color: #1b4f05;
  margin-bottom: 10px;
}
.gifts .gifts__list .gifts__item .gifts__item-anons,
.gifts .gifts__list .gifts__item .gifts__item-task,
.gifts .gifts__list .gifts__item .gifts__item-resolve,
.gifts .gifts__list .gifts__item .gifts__item-result {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
}
.gifts .gifts__list .gifts__item .gifts__item-anons b,
.gifts .gifts__list .gifts__item .gifts__item-task b,
.gifts .gifts__list .gifts__item .gifts__item-resolve b,
.gifts .gifts__list .gifts__item .gifts__item-result b {
  color: #1b4f05;
  font-weight: 700;
}
.gifts .gifts__list .gifts__item .gifts__item-result ul {
  padding-top: 5px;
}
.gifts .gifts__list .gifts__item .gifts__item-result ul li {
  padding-left: 20px;
}
.gifts .gifts__list .gifts__item .gifts__item-result ul li:before {
  left: 3px;
}
.faq {
  padding-bottom: 80px;
}
.faq .block-title {
  margin-bottom: 5px;
}
.faq .block-sub-title {
  margin-bottom: 30px;
}
.faq .faq__list .faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.faq .faq__list .faq__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.faq .faq__list .faq__item.open .faq__item-question {
  color: #1b4f05;
}
.faq .faq__list .faq__item.open .faq__item-question i {
  color: #1b4f05;
  transform: rotate(45deg);
}
.faq .faq__list .faq__item.open .faq__item-answer {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding-top: 15px;
  font-size: 16px;
}
.faq .faq__list .faq__item .faq__item-question {
  font-size: 18px;
  padding-right: 60px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.faq .faq__list .faq__item .faq__item-question i {
  font-size: 24px;
  position: absolute;
  right: 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.faq .faq__list .faq__item .faq__item-answer {
  padding-top: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding-right: 60px;
  font-size: 0;
}

.price-block {
  background: #f9f9f9;
  padding-bottom: 60px;
}
.price-block .block-title {
  margin-bottom: 50px;
}
.price-block .price__list .price__item {
  background: #fff;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.price-block .price__list .price__item:hover {
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.35);
}
.price-block .price__list .price__item .name {
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1b4f05;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
}
.price-block .price__list .price__item .price {
  height: 100px;
  border-bottom: 3px solid #1b4f05;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 46px;
  font-weight: 700;
  color: #1b4f05;
}
.price-block .price__list .price__item .description {
  padding: 30px 15px;
}
.price-block .price__list .price__item .description ul li {
  padding-left: 20px;
}
.price-block .price__list .price__item .description ul li:before {
  left: 3px;
}
.price-block .price__list .price__item .button {
  border: 3px solid #1b4f05;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  background: #1b4f05;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.price-block .price__list .price__item .button:hover, .price-block .price__list .price__item .button:focus, .price-block .price__list .price__item .button:active {
  color: #1b4f05;
  background: #fff;
}

.routes .routes__list {
  margin-bottom: 30px;
}
.routes .routes__list .routes__item {
  margin-bottom: 30px;
}
.routes .routes__list .routes__item .routes__item-image {
  margin-bottom: 10px;
}
.routes .routes__list .routes__item .routes__item-name {
  font-size: 18px;
  font-weight: 700;
  color: #1b4f05;
  text-align: center;
  margin-bottom: 5px;
}
.routes .routes__list .routes__item .routes__item-text {
  text-align: center;
  margin-bottom: 10px;
}
.routes .routes__button {
  display: flex;
  justify-content: center;
}

.night .block-title {
  margin-bottom: 5px;
}
.night .block-sub-title {
  margin-bottom: 40px;
}
.night .night-slider {
  margin-bottom: 40px;
}
.night .night-button {
  display: flex;
  justify-content: center;
}

.reviews .block-title {
  margin-bottom: 5px;
}
.reviews .block-sub-title {
  margin-bottom: 30px;
}
.reviews .reviews__list .reviews__item {
  height: 600px;
  margin-bottom: 30px;
}
.reviews .reviews__list .reviews__item iframe {
  border: none;
  height: 100%;
  width: 100%;
}

footer {
  background: #262626;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}
footer .footer__logo {
  margin-bottom: 15px;
}
footer .footer__contacts {
  text-align: right;
}
footer .footer__contacts .footer__address {
  margin-bottom: 5px;
}
footer .footer__contacts .footer__phone {
  font-size: 24px;
}
footer .footer__contacts .footer__social a {
  font-size: 32px;
  color: #fff;
  margin-left: 15px;
}
footer .all-rights {
  margin-top: 15px;
}
footer .copyright {
  margin-top: 15px;
  text-align: right;
}

.main-menu {
  background: #fff;
  position: fixed;
  padding: 15px 0;
  top: 0;
  height: 100%;
  min-width: 360px;
  right: 0;
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 50;
}
.main-menu.open {
  display: block;
}
.main-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu .menu-list .menu-item .menu-link {
  height: 40px;
  padding-left: 30px;
  padding-right: 30px;
  border-bottom: 1px solid rgba(27, 79, 5, 0.15);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #1b4f05;
}
.main-menu .menu-list .menu-item:first-child {
  border-top: 1px solid rgba(27, 79, 5, 0.15);
}
.main-menu .menu-list .menu-item:hover .menu-link {
  color: #fff;
  background: #1b4f05;
  text-decoration: none;
}

.main-menu__phone {
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 700;
}
.main-menu__phone a {
  color: #1b4f05;
  text-decoration: none !important;
}
.main-menu__phone a:hover {
  color: #308913;
}

.close-button_main-menu {
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 30px 10px;
  display: flex;
}

.main-menu__close-button {
  width: 30px;
  height: 30px;
  border: 1px solid #1b4f05;
  border-radius: 3px;
  background: #fff;
  font-size: 18px;
  color: #308913;
  outline: none !important;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.main-menu__close-button:hover {
  color: #fff;
  background: #1b4f05;
}

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  width: 50px;
}
.scroll-to-top.active {
  display: block;
}
.scroll-to-top button {
  width: 50px;
  height: 50px;
  border: 1px solid #1b4f05;
  border-radius: 3px;
  background: #fff;
  font-size: 24px;
  color: #308913;
  outline: none !important;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.scroll-to-top button:hover {
  color: #fff;
  background: #1b4f05;
}

.modal-window {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
}
.modal-window.open {
  display: flex;
}
.modal-window .modal-window-content {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #1b4f05;
  width: 460px;
}
.modal-window .modal-window-content .modal-window-header {
  border-bottom: 1px solid rgba(27, 79, 5, 0.15);
  padding: 15px;
  padding-right: 45px;
  display: flex;
  align-items: center;
  position: relative;
}
.modal-window .modal-window-content .modal-window-header .modal-window-title {
  color: #1b4f05;
  font-size: 24px;
}
.modal-window .modal-window-content .modal-window-header .modal-window-close {
  position: absolute;
  right: 15px;
  width: 30px;
  height: 30px;
  border: 1px solid #1b4f05;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1b4f05;
  cursor: pointer;
}
.modal-window .modal-window-content .modal-window-header .modal-window-close:hover {
  background: #1b4f05;
  color: #fff;
}
.modal-window .modal-window-content .modal-window-body {
  border-bottom: 1px solid rgba(27, 79, 5, 0.15);
  padding: 30px 15px 15px;
}
.modal-window .modal-window-content .modal-window-body .modal-window-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-window .modal-window-content .modal-window-body .modal-window-form .form-group {
  width: 320px;
}
.modal-window .modal-window-content .modal-window-body .modal-window-form .form-group input {
  width: 100%;
  height: 50px;
  border: 1px solid #40404050;
  border-radius: 3px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  outline: none !important;
}
.modal-window .modal-window-content .modal-window-body .modal-window-form .form-group input:focus {
  border-color: #1b4f05;
}
.modal-window .modal-window-content .modal-window-body .modal-window-form .form-group button {
  width: 100%;
  justify-content: center;
}
.modal-window .modal-window-content .modal-window-footer {
  padding: 15px;
  font-size: 14px;
}

/*** Media ***/
@media all and (max-width: 1199px) {
  .block-title {
    font-size: 36px;
  }

  .header__button-block .button {
    line-height: 1.2;
  }

  .first-banner {
    height: 600px;
  }

  .first-banner__text-block {
    margin-bottom: 40px;
  }

  .first-banner__text-block .first-banner__title {
    font-size: 36px;
    line-height: 1.2;
  }

  .first-banner__text-block .first-banner__sub-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .time-work-text .time-work-text__text {
    font-size: 16px;
    line-height: 24px;
  }

  .pilots .pilots__list .pilots__item .pilot-photo {
    min-width: 170px;
  }

  .pilots .pilots__list .pilots__item .pilot-info .pilot-name {
    font-size: 18px;
    line-height: 1.5;
  }

  .form_section .inputs-block .form-group button {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    justify-content: center;
  }

  .social .content-slider .slick-arrow.slick-prev {
    left: 15px;
  }
  .social .content-slider .slick-arrow.slick-next {
    right: 15px;
  }

  .gifts .gifts__header-buttons .gifts__header-button {
    font-size: 14px;
  }

  .price-block .price__list .price__item .price {
    font-size: 48px;
  }

  .instagram .content-slider .slick-arrow.slick-prev {
    left: 15px;
  }

  .instagram .content-slider .slick-arrow.slick-next {
    right: 15px;
  }

  .photo-video .photo-video__video-content {
    margin-bottom: 20px;
    height: 600px;
  }
}
@media all and (max-width: 991px) {
  .header__slogan {
    display: none;
  }

  .first-banner {
    height: auto;
  }

  .header .header__phone-block .header__phone {
    font-size: 16px;
  }

  .first-banner__icon-item {
    margin-bottom: 15px;
  }

  .header__city {
    display: none;
  }

  .time-work-image__block.block-shadow:before {
    display: none;
  }

  .professional-fly__image {
    margin-bottom: 30px;
  }

  .content-slider .slick-arrow.slick-next {
    right: 0px;
  }

  .content-slider .slick-arrow.slick-prev {
    left: 0;
  }

  .form_section .inputs-block .form-group button {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    justify-content: center;
    width: 100%;
  }

  .airport .airport__info .airport__info__image-wrapper:before {
    display: none;
  }

  .photo-text {
    margin-bottom: 30px;
  }

  .about-us__text {
    margin-bottom: 30px;
  }

  .section-block {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .photo-video .photo-video__video-content {
    margin-bottom: 20px;
    height: 500px;
  }

  .reviews .reviews__list .reviews__item {
    height: 500px;
    margin-bottom: 30px;
  }

  .routes .routes__button button {
    font-size: 14px;
  }
}
@media all and (max-width: 767px) {
  .first-banner__text-block .first-banner__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .first-banner__text-block .first-banner__sub-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .time-work-text .block-title {
    line-height: 1.2;
  }

  .block-title {
    line-height: 1.2;
  }

  .social .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social .social-buttons button {
    margin-bottom: 15px;
  }

  .gifts .gifts__header-buttons {
    flex-direction: column;
  }

  .gifts .gifts__header-buttons .gifts__header-button {
    width: 100%;
    border: 1px solid #1b4f05;
    border-top: none;
  }
  .gifts .gifts__header-buttons .gifts__header-button:first-child {
    border-top: 1px solid #1b4f05;
  }

  footer .footer__contacts {
    text-align: center;
  }

  footer .all-rights {
    text-align: center;
  }

  footer .copyright {
    text-align: center;
  }

  .photo-video .photo-video__video-content {
    margin-bottom: 20px;
    height: 400px;
  }

  .reviews .reviews__list .reviews__item {
    height: 400px;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 575px) {
  .header .header__menu-button-block {
    justify-content: flex-end;
  }

  .photo-gallery .photo-gallery__list .photo-gallery__item {
    max-width: 47%;
  }

  .instagram .instagram-slider .instagram-list .instagram-item {
    display: flex;
    justify-content: center;
  }
}
@media all and (max-width: 459px) {
  .pilots .pilots__list .pilots__item {
    flex-direction: column;
  }

  .pilots .pilots__list .pilots__item .pilot-photo {
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
  }

  .advantages .advantages__list .advantages__item .advantages-image__wrapper {
    width: 110px;
    height: 110px;
  }

  .advantages .advantages__list .advantages__item .advantages-image__wrapper .advantages-image {
    padding: 15px;
  }
  .advantages .advantages__list .advantages__item .advantages-image__wrapper .advantages-image img {
    max-height: 100%;
  }

  .main-menu {
    max-width: 100%;
    min-width: 320px;
  }

  .pilots .pilots__list .pilots__item .pilot-info .pilot-name {
    text-align: center;
  }

  .pilots .pilots__list .pilots__item .pilot-info .pilot-text {
    text-align: center;
  }

  .pilot-button {
    display: flex;
    justify-content: center;
  }

  .photo-video .photo-video__video-content {
    margin-bottom: 20px;
    height: 300px;
  }

  .reviews .reviews__list .reviews__item {
    height: 300px;
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=styles.css.map */
