html {
  height: 100%;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, address {
  display: block;
}

audio, canvas {
  display: inline-block;
}

video {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

address {
  font-style: normal;
}

ul, ol, li, form, fieldset, a, img, div, figure, address {
  margin: 0;
  padding: 0;
  border: 0;
}

ul {
  list-style: inside;
}

ol {
  list-style: inside;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal inside;
}

ol {
  padding: 10px 0;
}

ol li {
  margin: 0 0 20px 0;
}

body {
  height: 100%;
  position: relative;
}

body, td, input, textarea, button {
  margin: 0px;
  padding: 0px;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  text-decoration: none !important;
}

a, a:active, a:focus {
  outline: none;
}

b,
strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.main {
  position: relative;
}

.cbc {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

input::-webkit-input-placeholder {
  opacity: 1;
  color: #292a2b;
}

input::-moz-placeholder {
  opacity: 1;
  color: #292a2b;
}

input:-ms-input-placeholder {
  opacity: 1;
  color: #292a2b;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #292a2b;
}

textarea::-moz-placeholder {
  opacity: 1;
  color: #292a2b;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  color: #292a2b;
}

input[type="submit"] {
  cursor: pointer;
}

textarea,
button,
input[type="text"],
input[type="submit"],
input[type="password"] {
  -webkit-appearance: none;
  outline: none;
}

body, td, input, textarea, button {
  color: #292a2b;
  font-family: "Fira Sans", Arial;
  font-size: 26px;
}

/* elements */
.title-h1,
.title-h2,
.title-h3 {
  padding: 0;
  margin: 0;
  color: #292a2b;
  font-family: "Fira Sans";
  font-weight: normal;
}

.title-h1 {
  font-size: 55px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1600px) {
  .title-h1 {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .title-h1 {
    font-size: 38px;
  }
}

@media (max-width: 360px) {
  .title-h1 {
    font-size: 34px;
  }
}

.title-h2 {
  font-size: 54px;
  line-height: 56px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

@media (max-width: 1600px) {
  .title-h2 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .title-h2 {
    margin-bottom: 40px;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .title-h2 {
    font-size: 34px;
  }
}

.title-h3 {
  font-size: 24px;
  margin-bottom: 0;
  color: #292a2b;
}

@media (max-width: 576px) {
  .title-h3 {
    font-size: 16px;
    line-height: 22px;
  }
}

.subtitle {
  font-size: 26px;
  color: #171717;
  margin: -40px 0 60px;
  text-align: center;
}

@media (max-width: 1600px) {
  .subtitle {
    font-size: 22px;
    margin: -40px 0 40px;
  }
}

@media (max-width: 992px) {
  .subtitle {
    font-size: 26px;
    margin: -20px 0 40px;
  }
}

@media (max-width: 576px) {
  .subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin: -20px 0 20px;
  }
}

.button {
  display: inline-block;
  padding: 1px 20px 0;
  min-width: 180px;
  height: 50px;
  border: none;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 7px;
  background-color: #03204b;
  text-transform: uppercase;
}

.button--red {
  -webkit-box-shadow: 0 0 22px rgba(224, 8, 19, 0.25);
          box-shadow: 0 0 22px rgba(224, 8, 19, 0.25);
  background-color: #e90732;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff0041), to(#e00a2c));
  background-image: linear-gradient(180deg, #ff0041 0%, #e00a2c 100%);
}

.button--red:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e00a2c), to(#ff0041));
  background-image: linear-gradient(180deg, #e00a2c 0%, #ff0041 100%);
}

.button--blue {
  -webkit-box-shadow: 0 0 22px rgba(32, 70, 151, 0.25);
          box-shadow: 0 0 22px rgba(32, 70, 151, 0.25);
  background-color: #03204b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0d59a1), to(#0a366f));
  background-image: linear-gradient(180deg, #0d59a1 0%, #0a366f 100%);
}

.button--blue:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.button--lg {
  font-size: 26px;
  height: 70px;
  line-height: 70px;
  border-radius: 10px;
  min-width: 260px;
}

.button-box {
  text-align: center;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 1200px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 576px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.space-bottom {
  padding-bottom: 60px;
}

.typography {
  counter-reset: section-counter;
  font-size: 18px;
  line-height: 26px;
}

@media (max-width: 568px) {
  .typography {
    font-size: 14px;
    line-height: 22px;
  }
}

.typography section {
  padding: 35px 0;
}

.typography section:first-child {
  padding-top: 0;
}

.typography h1,
.typography h2,
.typography h3 {
  padding: 0;
  margin: 0;
  font-family: "Fira Sans";
  font-weight: 300;
}

.typography h1 {
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: 700;
}

@media (max-width: 576px) {
  .typography h1 {
    font-size: 36px;
  }
}

.typography h2 {
  font-size: 36px;
  line-height: 38px;
  margin-bottom: 25px;
  position: relative;
}

.typography h3 {
  font-size: 26px;
  line-height: 36px;
}

@media (max-width: 576px) {
  .typography h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}

.typography P {
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 25px;
}

.typography P:last-child {
  margin-bottom: 0;
}

.typography figure {
  margin: 30px 0;
}

.typography figure:last-child {
  margin-bottom: 0;
}

.typography figcaption {
  font-size: 13px;
  font-weight: bold;
  line-height: 13px;
  margin-top: 3px;
}

.typography img {
  max-width: 100%;
}

.typography a {
  color: #03204b;
  text-decoration: underline;
}

.typography a:hover {
  text-decoration: none;
}

.typography ul {
  margin-bottom: 30px;
}

.typography ul li {
  font-size: 17px;
  line-height: 26px;
  padding-left: 25px;
  margin-bottom: 8px;
  position: relative;
}

.typography ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 15px;
  height: 1px;
  background-color: #03204b;
}

.typography ol {
  margin-bottom: 30px;
  counter-reset: custom-counter;
  list-style: none;
}

.typography ol:last-child {
  margin-bottom: 0;
}

.typography ol li {
  font-size: 17px;
  line-height: 26px;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
  list-style: none;
}

.typography ol li::before {
  content: counter(custom-counter) ".";
  counter-increment: custom-counter;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 17px;
  line-height: 26px;
  color: #03204b;
}

.typography table {
  width: 100%;
  margin: 30px 0;
  font-size: 13px;
}

.typography table caption {
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 15px;
}

.typography table th {
  border-bottom: 1px solid #03204b;
  font-weight: normal;
  text-align: left;
  padding: 0 10px 15px;
}

.typography table td {
  padding: 17px 10px 0;
}

.typography table th:first-child,
.typography table td:first-child {
  padding-left: 0;
}

.typography table th:last-child,
.typography table td:last-child {
  padding-right: 0;
}

.forms__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.forms textarea,
.forms input[type="text"],
.forms input[type="password"],
.forms input[type="email"],
.forms input[type="tel"] {
  width: 100%;
  height: 70px;
  padding: 0 20px;
  font-size: 20px;
  text-align: center;
  color: #292a2b;
  border: 1px solid #707070;
  background-color: #fff;
}

@media (max-width: 992px) {
  .forms textarea,
  .forms input[type="text"],
  .forms input[type="password"],
  .forms input[type="email"],
  .forms input[type="tel"] {
    font-size: 16px;
    height: 60px;
  }
}

.forms textarea {
  padding: 18px;
  resize: none;
  height: 80px;
}

.forms__field {
  margin-bottom: 25px;
  width: 100%;
}

.forms__field:last-child {
  margin: 0;
}

.forms__check, .forms__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 20px;
}

@media (max-width: 568px) {
  .forms__check, .forms__radio {
    font-size: 14px;
    line-height: 20px;
  }
}

.forms__check .jq-checkbox {
  margin-right: 12px;
}

.forms__check--dark .jq-checkbox {
  border-color: #333;
}

.forms__check--dark .jq-checkbox.checked .jq-checkbox__div {
  background-image: url(../images/check.svg);
}

.forms__radio .jq-radio {
  margin-right: 12px;
}

.forms__buttons {
  padding-top: 20px;
  text-align: center;
}

@media (max-width: 568px) {
  .forms__buttons {
    display: block;
  }
  .forms__buttons .button {
    margin-top: 30px;
  }
}

.error {
  background: #faeded !important;
}

@media (min-width: 567px) {
  .fix-scroll__fly.fixed {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
  }
  .fix-scroll__fly.fixed .fix-scroll__wrap {
    max-width: 1460px;
    margin: 0 auto;
    position: relative;
  }
}

@media (max-width: 1600px) {
  .fix-scroll__fly.fixed .fix-scroll__wrap {
    padding-right: 40px;
  }
}

@media (max-width: 992px) and (min-width: 567px) {
  .fix-scroll {
    height: auto !important;
  }
  .fix-scroll__fly.fixed .fix-scroll__wrap {
    padding-right: 20px;
  }
}

.fix-scroll--bottom .fix-scroll__fly.fixed {
  top: auto;
  bottom: 0;
  -webkit-box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.1);
}

.burger-btn {
  position: relative;
  display: block;
  width: 38px;
  height: 27px;
  border-top: 3px solid #03204b;
  border-bottom: 3px solid #03204b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.burger-btn::after {
  content: '';
  left: 0;
  display: block;
  width: 38px;
  height: 3px;
  background: #03204b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 9px;
}

.burger-btn:hover {
  border-color: #292a2b;
}

.burger-btn:hover:after {
  background: #292a2b;
}

.close-btn {
  width: 21px;
  height: 21px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

.close-btn::before, .close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 2px;
  background-color: #292a2b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.close-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.close-btn:hover::before, .close-btn:hover::after {
  background-color: #292a2b;
}

.close-btn:hover::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.close-btn:hover::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.page-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: #292a2b;
  opacity: 0.95;
}

/* plugins */
.fancybox-is-open .fancybox-bg {
  background: #292a2b;
  opacity: 0.99;
}

.fancybox-content {
  overflow: visible;
}

.fancybox-close-small {
  padding: 0;
  right: 15px;
  top: 15px;
  color: #292a2b;
  width: 44px;
}

@media (max-width: 767px) {
  .fancybox-close-small {
    right: 0;
    top: 0;
    z-index: 1000;
  }
}

.fancybox-close-small svg {
  border: none;
  opacity: 1;
}

.slider img {
  max-width: 100%;
}

.member-card img {border-radius: 50%;}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 70px 0 0 0;
}

@media (max-width: 992px) {
  .slick-dots {
    margin: 30px 0 0 0;
  }
}

@media (max-width: 567px) {
  .slick-dots {
    margin: 20px 0 0 0;
  }
}

.slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #949495;
  opacity: 1;
  margin: 0 8px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.slick-dots li:hover {
  background-color: #e3174b;
}

@media (max-width: 767px) {
  .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }
}

.slick-dots li.slick-active {
  background-color: #e3174b !important;
}

.slick-dots button {
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-indent: 1000px;
  overflow: hidden;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 33px;
  height: 62px;
  margin-top: -31px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-indent: 1000px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slick-arrow:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.slick-prev {
  left: 50%;
  margin-left: -680px;
  background-image: url(../images/slider-prev.svg);
}

@media (max-width: 1600px) {
  .slick-prev {
    left: 40px;
    margin-left: 0;
  }
}

.slick-next {
  right: 50%;
  margin-right: -680px;
  background-image: url(../images/slider-next.svg);
}

@media (max-width: 1600px) {
  .slick-next {
    right: 40px;
    margin-right: 0;
  }
}

.slick-disabled {
  color: #292a2b;
}

.slick-disabled:hover {
  -webkit-transform: none;
          transform: none;
}

/* support class style */
.clear {
  clear: both;
  float: none !important;
}

.cf:before, .cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-center {
  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;
}

.disp_none {
  display: none;
}

.full-bg {
  margin-left: -1000px;
  margin-right: -1000px;
  padding-left: 1000px;
  padding-right: 1000px;
}

@media (max-width: 960px) {
  .full-bg {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.white-bg {
  background-color: #fff;
}

.black-bg {
  background-color: #292a2b;
}

.gray-bg {
  background-color: #efefef;
}

.lgray-bg {
  background-color: #f6f5f3;
}

.blue-bg {
  background-color: #03204b;
}

.red-bg {
  background-color: #e90732;
}

.blue-link {
  color: #03204b;
}

.blue-link:hover {
  color: #292a2b;
}

.clr-blue {
  color: #03204b;
}

.clr-white {
  color: #fff;
}

.clr-red {
  color: #e90732;
}

.w100p {
  width: 100%;
}

.nowrap {
  white-space: nowrap;
}

.decor-link {
  border-bottom: 1px solid;
}

.decor-link:hover {
  color: #03204b;
  border-bottom-color: transparent;
}

@media (max-width: 568px) {
  .decor-link {
    border-bottom-color: transparent;
  }
}

.pb-0 {
  padding-bottom: 0;
}

.container {
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
  max-width: 1440px;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

.cbc {
  max-width: 100vw;
  padding-top: 240px;
}

@media (max-width: 1600px) {
  .cbc {
    padding-top: 200px;
  }
}

@media (max-width: 767px) {
  .cbc {
    padding-top: 130px;
  }
}

/* page content */
/* header */
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 170px;
}

@media (max-width: 1600px) {
  .header__wrap {
    height: 130px;
  }
}

@media (max-width: 992px) {
  .header__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 130px;
    padding: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 -20px;
  }
}

.header__left {
  padding-top: 10px;
  padding-right: 30px;
}

@media (max-width: 1600px) {
  .header__left {
    padding: 0;
  }
}

@media (max-width: 992px) {
  .header__left {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .header__left {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
    display: none;
  }
}

.header__right {
  padding-top: 10px;
  padding-left: 40px;
}

@media (max-width: 1600px) {
  .header__right {
    padding: 0;
  }
}

@media (max-width: 992px) {
  .header__right {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .header__right {
    display: none;
  }
}

.header__logo {
  position: relative;
  left: 8px;
}

@media (max-width: 1200px) {
  .header__logo {
    left: 0;
  }
}

.header__logo img {
  width: 319px;
}

@media (max-width: 1600px) {
  .header__logo img {
    width: 270px;
  }
}

@media (max-width: 1200px) {
  .header__logo img {
    width: 220px;
  }
}

@media (max-width: 992px) {
  .header__logo {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

@media (max-width: 767px) {
  .header__logo {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__logo {
    margin-left: 20px;
  }
}

@media (max-width: 992px) {
  .header__feedback, .header__phone {
    width: 50%;
    margin-bottom: 3px;
    background-color: #03204b;
    color: #fff;
    padding: 0 20px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__feedback *, .header__phone * {
    color: #fff;
  }
}

.header__feedback {
  padding-top: 7px;
  position: relative;
  left: -12px;
  font-size: 20px;
  color: #03204b;
}

.header__feedback a:hover {
  color: #e00813;
}

@media (max-width: 1600px) {
  .header__feedback {
    font-size: 18px;
    padding-top: 0;
  }
}

@media (max-width: 1200px) {
  .header__feedback {
    left: 0;
  }
}

@media (max-width: 992px) {
  .header__feedback {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .header__feedback {
    padding-right: 20px;
    font-size: 16px;
  }
}

.header__phone {
  padding-top: 7px;
  font-size: 22px;
  color: #03204b;
  position: relative;
  right: -20px;
}

@media (max-width: 1600px) {
  .header__phone {
    font-size: 18px;
    padding-top: 0;
  }
}

@media (max-width: 1200px) {
  .header__phone {
    right: 0;
  }
}

@media (max-width: 992px) {
  .header__phone {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .header__phone {
    font-size: 16px;
    padding-left: 20px;
  }
}

.header__nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 1200px) {
  .header__button {
    min-width: 160px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    font-weight: normal;
  }
}

@media (max-width: 992px) {
  .header__button {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .header__button {
    min-width: 260px;
  }
}

.header__burger {
  display: none;
}

@media (max-width: 767px) {
  .header__burger {
    display: block;
    position: absolute;
    right: 20px;
    top: 72px;
  }
}

.h-nav {
  background: #03204b;
}

.h-nav__wrap {
  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;
  height: 70px;
}

@media (max-width: 1200px) {
  .h-nav__wrap {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.h-nav__item {
  margin: 0 30px;
}

@media (max-width: 1200px) {
  .h-nav__item {
    margin: 0;
  }
}

.h-nav__link {
  display: block;
  color: #fff;
  font-size: 20px;
}

@media (max-width: 992px) {
  .h-nav__link {
    font-size: 18px;
  }
}

.h-nav__link:hover, .h-nav__link.active {
  color: #e90732;
}

.h-nav__close {
  display: none;
}

@media (max-width: 767px) {
  .h-nav__close {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .h-nav {
    position: fixed;
    left: -320px;
    top: 0;
    width: 320px;
    height: 100% !important;
    z-index: 2001;
    padding: 60px 0 0 0;
    z-index: 10000;
    overflow: auto;
    background: url(../images/logo.svg) #fff 20px 20px no-repeat;
    background-size: 111px 20px;
  }
  .h-nav__wrap {
    display: block;
    background: none;
    height: auto;
    padding: 0;
  }
  .h-nav__item {
    display: block;
    width: auto;
    border-bottom: 1px solid #efefef;
  }
  .h-nav__item:first-child {
    border-top: 1px solid #efefef;
  }
  .h-nav__item::after {
    display: none;
  }
  .h-nav__item--subn .h-nav__link::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 0;
    height: 100%;
    width: 20px;
    display: block;
    background: url(../images/chevron-down.svg) center no-repeat;
  }
  .h-nav__item--subn.open {
    background-color: #f9f9f9;
  }
  .h-nav__item--subn.open .h-nav__link::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .h-nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px !important;
    color: #292a2b;
    height: 54px;
    padding: 0 20px;
    position: relative;
  }
  .h-nav__link:hover {
    color: #292a2b;
  }
}

/* fix nav */
@media (min-width: 768px) {
  .header-fix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 998;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 240px;
    padding-top: 0;
  }
  .header-fix * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-fix.sm {
    height: 125px;
  }
  .header-fix.sm .header__wrap {
    padding-top: 0;
    height: 80px;
  }
  .header-fix.sm .header__left,
  .header-fix.sm .header__right {
    padding-top: 0;
  }
  .header-fix.sm .header__logo img {
    width: 200px;
  }
  .header-fix.sm .header__feedback,
  .header-fix.sm .header__phone {
    padding-top: 3px;
    font-size: 18px;
  }
  .header-fix.sm .header__button {
    min-width: 155px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: normal;
  }
  .header-fix.sm .h-nav__wrap {
    height: 45px;
  }
  .header-fix.sm .h-nav__link {
    font-size: 16px;
  }
}

@media (max-width: 1600px) {
  .header-fix {
    height: 200px;
  }
}

@media (max-width: 992px) {
  .header-fix.sm {
    height: 140px;
  }
  .header-fix.sm .header__wrap {
    height: 105px;
  }
  .header-fix.sm .header__feedback,
  .header-fix.sm .header__phone {
    font-size: 14px;
  }
  .header-fix.sm .header__feedback,
  .header-fix.sm .header__phone {
    margin-bottom: 3px;
  }
  .header-fix.sm .header__logo img {
    width: 170px;
  }
  .header-fix.sm .header__button {
    min-width: 130px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
  }
  .header-fix.sm .h-nav {
    height: 35px;
  }
  .header-fix.sm .h-nav__link {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .header-fix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 998;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 130px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  }
  .header-fix .header__wrap,
  .header-fix .header__wrap * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-fix.sm {
    height: 105px;
  }
  .header-fix.sm .header__wrap {
    height: 105px;
  }
  .header-fix.sm .h-logo__logo {
    width: 60%;
  }
  .header-fix.sm .header__burger {
    top: 59px;
  }
}

.header-fix .header__feedback a,
.header-fix .header__feedback span,
.header-fix .header__phone a,
.header-fix .header__phone span {
  -webkit-transition: none;
  transition: none;
}

/* pages */
.promo-1 {
  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;
  height: 800px;
  background: url(../images/main_img_1.jpg) center no-repeat;
  background-size: cover;
  text-align: center;
}

@media (max-width: 1600px) {
  .promo-1 {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .promo-1 {
    height: 420px;
  }
}

.promo-1 img {
  max-width: 100%;height:140px;
}

.promo-1__wrap {
  max-width: 610px;
  padding: 60px 20px 40px 20px;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .promo-1__wrap {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@media (max-width: 992px) {
  .promo-1__wrap {
    padding: 20px;
    -webkit-transform: scale(0.58);
            transform: scale(0.58);
  }
}

@media (max-width: 567px) {
  .promo-1__wrap {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    margin: 0 -30px;
  }
}

.promo-1__logo {
  margin-bottom: 35px;
}

.promo-1__title {
  margin: 0 -30px 30px;
  text-transform: uppercase;
}

.promo-1__title .red-text {
  color: #e3174b;
  font-weight: bold;
  text-shadow: 1px 1px 0px #fff;
  font-size: 65px;
}

@media (max-width: 567px) {
  .promo-1__title .red-text {
    font-size: 45px;
  }
}

.promo-1__title .white-text {
  color: #fff;
  font-weight: normal;
  font-size: 65px;
}

@media (max-width: 567px) {
  .promo-1__title .white-text {
    font-size: 45px;
  }
}

.promo-1__note {
  color: #f6033b;
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 30px;
}

@media (max-width: 567px) {
  .promo-1__note {
    font-size: 28px;
  }
}

.promo-1__date {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

@media (max-width: 567px) {
  .promo-1__date {
    font-size: 40px;
  }
}

.text-box {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 20px;
}

.text-box--sm {
  max-width: 900px;
}

@media (max-width: 992px) {
  .photo-slider {
    position: relative;
    margin: 0 -60px;
  }
}

.photo-slider img {
  display: block;
}

.photo-slider .slick-dots {
  margin: 0;
  position: absolute;
  bottom: 20px;
  z-index: 10;
  left: 0;
  right: 0;
}

.photo-slider .slick-dots li {
  background: #fff;
}

.member-card {
  text-align: center;
}

.member-card__photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  margin: 0 auto 40px;
  width: 250px;
  height: 250px;
}

.member-card__title {
  color: #e90732;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.author-info {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
}

@media (max-width: 1200px) {
  .author-info {
    margin: 0 -20px;
  }
}

.author-info__group {
  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;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .author-info__group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.author-info__group:last-child {
  margin-bottom: 0;
}

.author-info__photo {
  padding: 0 20px;
}

@media (max-width: 992px) {
  .author-info__photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

.author-info__photo img {
  max-width: 100%;
}

.author-info__text {
  max-width: 550px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .author-info__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    max-width: 100%;
  }
}

.place-box {
  text-align: center;
  padding: 0 20px 90px;
}

.place-box__logo {
  margin-bottom: 10px;
}

.place-box__logo img {
  max-width: 100%;height:300px;
}

.place-box__date {
  font-size: 60px;
  font-weight: 700;
  color: #03204b;
  margin-bottom: 35px;
}

@media (max-width: 992px) {
  .place-box__date {
    font-size: 40px;
  }
}

@media (max-width: 567px) {
  .place-box__date {
    font-size: 36px;
    margin-bottom: 15px;
  }
}

.place-box__image {
  padding-top: 30px;
}

.place-box__image img {
  max-width: 100%;
}

.place-box__button {
  margin-bottom: 50px;
}

@media (max-width: 567px) {
  .place-box__button {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    margin-bottom: 15px;
  }
}

.place-box__price {
  color: #949494;
  font-size: 22px;
}

@media (max-width: 567px) {
  .place-box__price {
    font-size: 18px;
  }
}

/* popup */
.popup {
  display: none;
}

.popup-scheme {
  padding: 0;
}

/* footer */
#footer {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #262b2f;
  color: #8e9597;
  padding: 0 20px;
}

.footer-nav-h {
  max-width: 1175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  font-size: 16px;
  line-height: 19px;
  color: #8e9597;
  font-weight: 500;
  padding: 59px 0 48px;
  border-bottom: 1px solid #33373b;
}

.footer-nav-h .ttl {
  float: left;
  font-weight: 500;
  margin: 0 22px 0 0;
}

.footer-nav-h ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  font-weight: bold;
  font-size: 13px;
}

.footer-nav-h ul li {
  float: left;
  padding: 0 0 0 20px;
}

.footer-nav-h ul li:first-child {
  padding-left: 0;
}

.footer-nav-h ul li a {
  color: #fff;
}

.footer-h {
  max-width: 1175px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 51px 0 55px;
  font-size: 13px;
  line-height: 20px;
  color: #8e9597;
  overflow: hidden;
}

.copy {
  margin: 0 30px 0 0;
}

.copy a {
  color: #48a3c6;
  text-decoration: none;
}

.pay-list {
  margin: 4px 0 0 0;
  padding: 0;
  list-style: none;
}

.pay-list li {
  display: inline-block;
  margin: 0 14px 0 0;
}

.pay-list li img {
  float: left;
}

.soc-list {
  margin: 5px 20px 0 20px;
  white-space: nowrap;
}

.soc-list img {
  margin: 0 0 -12px 5px;
}

.counter {
  margin: 5px 0 0;
}

.counter img {
  display: block;
}

.design {
  width: 160px;
  font-size: 13px;
  line-height: 16px;
  color: #8e9597;
  padding: 3px 0 0;
}

.design img {
  float: left;
  margin: 6px 11px 0 0;
}

.design p {
  overflow: hidden;
  margin: 0;
}

.design a {
  color: #8e9597;
}

@media (max-width: 1024px) {
  .footer-nav-h .ttl {
    margin: 0 22px 10px 0;
  }
  .soc-list .ttl {
    display: none;
  }
}

@media (max-width: 992px) {
  .footer-nav-h {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-nav-h__col {
    width: 100%;
    margin: 10px 0;
  }
  .footer-h {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .footer-h > * {
    width: 100%;
    margin: 20px 0;
  }
  .design > * {
    display: inline-block;
    vertical-align: middle;
  }
  .design img {
    float: none;
    margin-top: 0;
  }
}

@media (max-width: 567px) {
  .footer-nav-h {
    text-align: center;
  }
  .footer-nav-h .ttl {
    display: block;
    float: none;
  }
  .footer-nav-h ul {
    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;
    float: none;
  }
  .footer-nav-h ul li {
    float: none;
    margin: 5px 0;
  }
}
.mero_items {display:flex;justify-content:space-around;margin-bottom:50px;flex-wrap:wrap;}
.mero_items .item {width:32%;margin-bottom:50px}
.mero_items .item img {width:100%}
.mero_items .item .title {color: #325574;line-height: 1.3;font-weight: bold;}
.mero_items .item .date {font-size: 18px;line-height: 1.4;color: #2b2e2f;margin:10px 0}
.mero_items .item .place {font-size: 18px;line-height: 1.4;color: #2b2e2f;margin:10px 0}
.mero_items .item .btn {display: inline-block;padding: 1px 20px 0;min-width: 180px;height: 50px;border: none;text-align: center;line-height: 50px;font-size: 18px;font-weight: bold;color: #fff;text-decoration: none;-webkit-transition: 0.3s;transition: 0.3s;cursor: pointer;border-radius: 7px;background-color: #03204b;text-transform: uppercase;min-width: 155px;height: 40px;line-height: 40px;font-size: 14px;font-weight: normal;webkit-box-shadow: 0 0 22px rgba(32, 70, 151, 0.25);box-shadow: 0 0 22px rgba(32, 70, 151, 0.25);background-color: #03204b;background-image: -webkit-gradient(linear, left top, left bottom, from(#0d59a1), to(#0a366f));background-image: linear-gradient(180deg, #0d59a1 0%, #0a366f 100%);}
@media (max-width: 968px) {
.mero_items {display:block;justify-content:space-between;margin-bottom:50px}
.mero_items .item {width:100%;margin-bottom:40px}
.mero_items .item .title {font-size: 21px;}
}
/*# sourceMappingURL=style.css.map */