@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #FAFAFA;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  font-style: normal;
  min-width: 360px;
  -webkit-text-size-adjust: none;
}
body li {
  list-style-type: none;
}
body svg {
  width: 100%;
  height: 100%;
}
body img {
  max-width: 100%;
  height: auto;
}
body a {
  text-decoration: none;
}
body.opened-module-form {
  overflow: hidden;
}

.site {
  overflow: hidden;
}

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

h1,
.h1 {
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  color: #000000;
}

h2,
.h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 48px;
  color: #0F328D;
}

h3,
.h3 {
  color: #0F328D;
  font-weight: 400;
  font-size: 32px;
  line-height: 36px;
}

h4,
.h4 {
  color: #0F328D;
  font-weight: 400;
  font-size: 27px;
  line-height: 31px;
}

h5,
.h5 {
  color: #0F328D;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}

h6,
.h6 {
  color: #0F328D;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.fancybox__content, .fancybox__html5video, .fancybox__iframe {
  outline: none;
}

@media screen and (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  h1,
.h1 {
    font-size: 46px;
    line-height: 54px;
  }

  h2,
.h2 {
    font-size: 32px;
    line-height: 44px;
  }

  h3,
.h3 {
    font-size: 28px;
    line-height: 32px;
  }

  h4,
.h4 {
    font-size: 25px;
    line-height: 30px;
  }

  h5,
.h5 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media screen and (max-width: 576px) {
  h1,
.h1 {
    font-size: 32px;
    line-height: 48px;
  }

  h2,
.h2 {
    font-size: 28px;
    line-height: 40px;
  }

  h3,
.h3 {
    font-size: 24px;
    line-height: 28px;
  }

  h4,
.h4 {
    font-size: 22px;
    line-height: 28px;
  }

  h5,
.h5 {
    font-size: 20px;
    line-height: 24px;
  }

  .container {
    padding: 0 16px;
  }
}
@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplay-Regular.ttf") format("truetype");
  src: url("../fonts/SFProDisplay-Regular.eot");
  src: url("../fonts/SFProDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Regular.woff2") format("woff2"), url("../fonts/SFProDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplay-Bold.ttf") format("truetype");
  src: url("../fonts/SFProDisplay-Bold.eot");
  src: url("../fonts/SFProDisplay-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/SFProDisplay-Bold.woff2") format("woff2"), url("../fonts/SFProDisplay-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
input,
textarea {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #0F328D;
  width: 100%;
  border: 1px solid #0F328D;
  border-radius: 5px;
  background-color: transparent;
  outline: none;
  padding: 11px 15px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
input:hover, input:focus,
textarea:hover,
textarea:focus {
  -webkit-box-shadow: 0 5px 10px rgba(15, 50, 141, 0.5);
          box-shadow: 0 5px 10px rgba(15, 50, 141, 0.5);
}

textarea {
  min-height: 120px;
  max-width: 100%;
  min-width: 100%;
}

.input-block {
  padding-bottom: 25px;
  position: relative;
}
.input-block label {
  display: block;
  color: #0F328D;
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 10px;
}

.header {
  background-color: #0F328D;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.header__container {
  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;
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -2px;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__affiche {
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  margin-right: 30px;
  margin-top: -2px;
  letter-spacing: -0.03em;
}
.header__affiche:hover {
  border-color: transparent;
}
.header-cities {
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  color: #FFFFFF;
  position: relative;
  margin-right: 74px;
  margin-top: -2px;
  border: none;
  background: none;
  font-family: "Oswald", sans-serif;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.header-cities__svg {
  width: 20px;
  display: none;
}
.header-cities:after {
  content: "";
  position: absolute;
  top: 6px;
  right: -11px;
  border: 4px solid transparent;
  border-top: 7px solid #FFFFFF;
}
.header-cities:hover {
  border-color: #FFFFFF;
}

.logo {
  display: block;
  width: 198px;
  margin-left: 20px;
}

.info {
  font-weight: 300;
  font-size: 21px;
  line-height: 34px;
  color: #736F6F;
  padding-top: 28px;
}
.info__block {
  padding-bottom: 18px;
}
.info__block a {
  color: #736F6F;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.info__block a:hover {
  border-color: #736F6F;
}
.info__block.mail a {
  border-bottom: 1px solid #736F6F;
}
.info__block.mail a:hover {
  border-color: transparent;
}

@media screen and (max-width: 1320px) {
  .header__cities {
    margin-right: 45px;
  }
}
@media screen and (max-width: 1023px) {
  .header__affiche {
    display: none;
  }

  .header-cities__text {
    display: none;
  }

  .header-cities {
    border-bottom: none;
    margin-right: 30px;
    margin-top: 3px;
  }

  .header-cities:after {
    display: none;
  }

  .header-cities__svg {
    display: block;
  }

  .header__right .languages {
    display: none;
  }

  .header__right .socials {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .info {
    font-size: 16px;
    line-height: 20px;
  }

  .info__block {
    padding-bottom: 14px;
  }
}
.footer {
  background-color: #0F328D;
  padding-top: 33px;
  padding-bottom: 78px;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 61px;
}
.footer__left-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 7px;
}
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;
}
.footer__right-block {
  padding-top: 26px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35.5%;
          flex: 0 0 35.5%;
}
.footer .logo {
  width: 364px;
  margin-left: -24px;
}
.footer .menu-item a {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  border-bottom: 1px solid #FFFFFF;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.footer .menu-item a:hover {
  border-color: transparent;
  color: #FFFFFF;
}
.footer .menu {
  padding-top: 22px;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
.footer .menu-item {
  padding-bottom: 11px;
  margin-right: 25px;
}
.footer .socials li {
  height: 36px;
  margin-right: 22px;
}
.footer .info {
  padding-top: 25px;
}
.footer .info,
.footer .info__block a {
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
}
.footer .info__block a:hover {
  border-color: #FFFFFF;
}
.footer .info__block {
  padding-bottom: 5px;
}
.footer .info__block.mail a {
  border-bottom: 1px solid #FFFFFF;
}
.footer .info__block.mail a:hover {
  border-color: transparent;
}
.footer__bot {
  border-top: 1px solid #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  padding-top: 7px;
}
.footer__bot-left a {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  margin-right: 47px;
}
.footer__bot-left a:hover {
  border-color: transparent;
}
.footer__bot-left a:last-child {
  margin-right: 0;
}
.footer__bot-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__bot-right img {
  margin-right: -2px;
}

@media screen and (max-width: 1320px) {
  .footer .menu-item a {
    font-size: 18px;
    line-height: 22px;
  }

  .footer .info, .footer .info__block a {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1250px) {
  .footer .logo {
    width: 250px;
  }

  .footer__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 72%;
            flex: 0 0 72%;
  }
}
@media screen and (max-width: 1023px) {
  .footer__top {
    display: block;
  }

  .footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__right {
    display: block;
  }

  .footer .menu {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
    text-align: center;
  }

  .footer .menu-item {
    margin-right: 0;
  }

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

  .footer .socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer .socials li {
    margin-left: 11px;
    margin-right: 11px;
  }

  .footer__bot {
    display: block;
    text-align: center;
  }

  .footer__bot-left {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__bot-left a {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer__bot-right {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer .menu {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .footer__top {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .footer .menu {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
.btn {
  width: 100%;
  border: none;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  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;
  padding: 14px 25px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s;
  transition: box-shadow 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
}
.btn-blue {
  background-color: #0F328D;
  border: 1px solid #0F328D;
  color: #FFFFFF;
}
.btn-blue:hover {
  color: #0F328D;
  background-color: transparent;
}
.btn-transparent {
  border: 1px solid #FAFAFA;
  color: #FFFFFF;
}
.btn-transparent:hover {
  color: #0F328D;
  background-color: #FFFFFF;
}

.menu {
  padding-top: 85px;
}
.menu-block {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  opacity: 0;
  height: 100%;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  -webkit-transition: opacity ease-in-out 0.5s, -webkit-transform ease-in-out 0.5s;
  transition: opacity ease-in-out 0.5s, -webkit-transform ease-in-out 0.5s;
  transition: transform ease-in-out 0.5s, opacity ease-in-out 0.5s;
  transition: transform ease-in-out 0.5s, opacity ease-in-out 0.5s, -webkit-transform ease-in-out 0.5s;
  -webkit-box-shadow: -5px 0 10px rgba(15, 50, 141, 0.5);
          box-shadow: -5px 0 10px rgba(15, 50, 141, 0.5);
}
.menu-block__menus {
  background-color: #FFFFFF;
  width: 580px;
  min-height: 100%;
  padding: 45px 90px 40px 146px;
}
.menu-block__menus .languages {
  position: absolute;
  top: 48px;
  right: 41px;
}
.menu-block__menus .languages li a {
  text-transform: uppercase;
  width: 30px;
  height: 30px;
  color: #0F328D;
}
.menu-block__menus .languages li a:hover {
  border-color: #0F328D;
}
.menu-block__menus .languages li.active a {
  border-color: #0F328D;
}
.menu-block__menus .languages li:first-child {
  margin-right: 3px;
}
.menu-block__menus .languages li.current-lang a {
  border-color: #0F328D;
}
.menu-block__menus .socials {
  padding-top: 69px;
}
.menu-block__menus .socials li {
  height: 28px;
  margin-right: 26px;
}
.menu-block__menus .socials li a svg {
  fill: #0F328D;
}
.menu-block__menus .header-cities {
  font-size: 21px;
  line-height: 24px;
  color: #000000;
  display: none;
}
.menu-block__menus .header-cities:after {
  border-top: 7px solid #000000;
}
.menu__esc {
  position: relative;
  width: 34px;
  height: 34px;
  z-index: 5;
  border: none;
  background: none;
}
.menu__esc .line {
  width: 40px;
  height: 2px;
  display: block;
  background-color: #0F328D;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  left: -3px;
  top: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.menu__esc .line.l1 {
  -webkit-transform: translateY(15px) translateZ(0) rotate(135deg);
          transform: translateY(15px) translateZ(0) rotate(135deg);
}
.menu__esc .line.l2 {
  -webkit-transform: translateY(15px) translateZ(0) rotate(-135deg);
          transform: translateY(15px) translateZ(0) rotate(-135deg);
}
.menu__esc:hover .line {
  background-color: #EE3537;
}
.menu-item {
  padding-bottom: 23px;
}
.menu-item a {
  display: inline-block;
  font-size: 21px;
  line-height: 24px;
  color: #000000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.menu-item a:hover {
  color: #0F328D;
}
.menu-item.active a {
  font-weight: 300;
  color: #0F328D;
  border-bottom: 1px solid #0F328D;
}
.menu-toggle {
  display: block;
  width: 25px;
  height: 44px;
  position: relative;
  border: none;
  z-index: 100;
  top: 2px;
  cursor: pointer;
  border: none;
  background: none;
}
.menu-toggle .line {
  width: 27px;
  height: 3px;
  display: block;
  background-color: #FFFFFF;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: calc(50% - 1.5px);
  left: calc(50% - 2px);
  margin: 0 -10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.menu-toggle .l1 {
  margin-top: -7px;
}
.menu-toggle .l3 {
  margin-top: 7px;
}
.menu-toggle:hover .line {
  background-color: #ffb14e;
}
.menu-opened .menu-block {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media screen and (max-width: 1320px) {
  .menu-block__menus {
    padding-left: 16px;
    width: 400px;
  }
}
@media screen and (max-width: 1023px) {
  .menu-block__menus .header-cities {
    display: inline-block;
  }

  .menu {
    padding-top: 25px;
  }

  .menu-block__menus {
    padding-top: 20px;
  }

  .menu-block__menus .languages {
    top: 23px;
  }

  .menu-block__menus .socials {
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .menu-block__menus {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px;
  }

  .menu-block {
    width: 100%;
  }

  .menu-item {
    padding-bottom: 14px;
  }

  .menu-block__menus .header-cities {
    font-size: 16px;
    line-height: 18px;
  }

  .menu-block__menus .socials {
    padding-top: 25px;
  }

  .menu-block__menus .socials li {
    height: 18px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 576px) {
  .menu-block__menus .languages {
    right: 15px;
    margin-right: 0;
  }
}
.module-form {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: -1;
  display: block;
  text-align: center;
  opacity: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: opacity 0.5s, z-index 0.5s;
  transition: opacity 0.5s, z-index 0.5s;
}

.module-form:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.module-form.open {
  opacity: 1;
  z-index: 3000;
}

.module-form__bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.78);
  z-index: 0;
}

.module-form__block {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  text-align: left;
  background-color: #FFFFFF;
  width: 98%;
  max-width: 1038px;
  padding: 55px 82px;
  z-index: 5;
}

.module-form__close {
  position: absolute;
  top: 56px;
  right: 82px;
  width: 32px;
  height: 32px;
  z-index: 5;
  border: none;
  background: none;
}

.module-form__close .line {
  width: 40px;
  height: 1px;
  display: block;
  background-color: #0F328D;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: 0;
  left: -4px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.module-form__close .line.l1 {
  -webkit-transform: translateY(15px) translateZ(0) rotate(135deg);
          transform: translateY(15px) translateZ(0) rotate(135deg);
}

.module-form__close .line.l2 {
  -webkit-transform: translateY(15px) translateZ(0) rotate(-135deg);
          transform: translateY(15px) translateZ(0) rotate(-135deg);
}

.module-form__close:hover .line {
  background-color: #EE3537;
}

@media screen and (max-width: 1230px) {
  .module-form__block {
    width: 98%;
  }
}
@media screen and (max-width: 768px) {
  .module-form__close {
    top: 30px;
    right: 25px;
  }
}
@media screen and (max-width: 576px) {
  .module-form__block {
    padding: 30px 20px;
  }
}
.languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
.languages li a {
  width: 26px;
  height: 26px;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  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;
  color: #FFFFFF;
  padding-bottom: 2px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.languages li a:hover {
  border-color: #FFFFFF;
}
.languages li.current-lang a {
  border-color: #FFFFFF;
}
.languages li:first-child {
  margin-right: 7px;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.socials li {
  height: 18px;
  width: auto;
  margin-right: 10px;
}
.socials li a {
  display: block;
  height: 100%;
}
.socials li a svg {
  display: block;
  fill: #FFFFFF;
  -webkit-transition: fill 0.3s, stroke 0.3s;
  transition: fill 0.3s, stroke 0.3s;
}
.socials li a:hover svg {
  fill: #ffb14e;
}
.socials li:last-child {
  margin-right: 0;
}

.search {
  padding-right: 50px;
  padding-left: 14px;
  height: 43px;
  cursor: pointer;
  position: relative;
}
.search__icon {
  width: 16px;
  height: 16px;
  border: none;
  background: none;
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  z-index: 5;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
.search__icon svg {
  display: block;
  stroke: #FFFFFF;
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.search__icon:hover svg {
  stroke: #ffb14e;
}
.search__esc {
  position: absolute;
  top: calc(50% - 9px);
  right: 12px;
  width: 20px;
  height: 20px;
  z-index: 5;
  cursor: pointer;
  border: none;
  background: none;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.search__esc .line {
  width: 20px;
  height: 1px;
  display: block;
  background-color: #0F328D;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  left: 0;
  top: -6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.search__esc .line.l1 {
  -webkit-transform: translateY(15px) translateZ(0) rotate(135deg);
          transform: translateY(15px) translateZ(0) rotate(135deg);
}
.search__esc .line.l2 {
  -webkit-transform: translateY(15px) translateZ(0) rotate(-135deg);
          transform: translateY(15px) translateZ(0) rotate(-135deg);
}
.search__esc:hover .line {
  background-color: #EE3537;
}
.search__block {
  height: 100%;
  width: 0;
  opacity: 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: width 0.3s, opacity 0.3s;
  transition: width 0.3s, opacity 0.3s;
}
.search__block input {
  width: 100%;
  height: 100%;
  padding-left: 44px;
  padding-right: 44px;
  padding-top: 10.5px;
  padding-bottom: 10.5px;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  border: 1px solid transparent;
  color: #0F328D;
  outline: none;
  background-color: #FFFFFF;
  border-radius: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.search__block input::-webkit-input-placeholder {
  color: #0F328D;
}
.search__block input::-moz-placeholder {
  color: #0F328D;
}
.search__block input:-ms-input-placeholder {
  color: #0F328D;
}
.search__block input:-moz-placeholder {
  color: #0F328D;
}
.search__block input:hover, .search__block input:focus {
  border-color: #ffb14e;
}
.search.open .search__block {
  width: 449px;
  opacity: 1;
}
.search.open .search__icon {
  left: 25px;
}
.search.open .search__icon svg {
  stroke: #0F328D;
}
.search.open .search__icon:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 1320px) {
  .search.open .search__block {
    width: 240px;
  }

  .search {
    padding-right: 24px;
  }
}
@media screen and (max-width: 1023px) {
  .search {
    padding-right: 0;
  }
}
@media screen and (max-width: 576px) {
  .search__block {
    right: 0;
  }

  .search {
    position: absolute;
    right: 15px;
    z-index: 150;
  }

  .search.open .search__block {
    width: calc(100vw - 30px);
  }
}
.cities__search {
  height: 32px;
  max-width: 411px;
  position: relative;
  margin-bottom: 52px;
}
.cities__search input {
  width: 100%;
  height: 100%;
  padding-left: 16px;
  padding-right: 45px;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  padding-top: 3px;
  padding-bottom: 4px;
  color: #0F328D;
  border: 1px solid #0F328D;
  border-radius: 0;
  outline: none;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.cities__search input::-webkit-input-placeholder {
  color: #0F328D;
}
.cities__search input::-moz-placeholder {
  color: #0F328D;
}
.cities__search input:-ms-input-placeholder {
  color: #0F328D;
}
.cities__search input:-moz-placeholder {
  color: #0F328D;
}
.cities__search input:hover, .cities__search input:focus {
  -webkit-box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
          box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
}
.cities__search-icon {
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
}
.cities__search-icon svg {
  stroke: #0F328D;
}
.cities__list {
  -webkit-columns: 4;
     -moz-columns: 4;
          columns: 4;
  -webkit-column-gap: 112px;
     -moz-column-gap: 112px;
          column-gap: 112px;
  font-size: 16px;
  line-height: 16px;
}
.cities__list li {
  width: 210px;
  padding-right: 20px;
  margin-right: 20px;
  margin-bottom: 8px;
}
.cities__list li a {
  color: #000000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.cities__list li a:hover {
  color: #0F328D;
}
.cities__list li.hidden {
  display: none;
}

@media screen and (max-width: 1023px) {
  .cities__list {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
}
@media screen and (max-width: 768px) {
  .cities__list {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
@media screen and (max-width: 576px) {
  .cities__list li {
    width: auto;
  }

  .cities__search {
    margin-right: 50px;
    margin-bottom: 35px;
  }
}
.select2-results__options {
  -webkit-box-shadow: 0px 4px 20px rgba(0, 74, 79, 0.2);
          box-shadow: 0px 4px 20px rgba(0, 74, 79, 0.2);
  border: none;
  background: #0F328D;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid #0F328D;
  border-radius: 5px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.select2-container--default .select2-selection--single:hover {
  -webkit-box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
          box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
}

.select2-container {
  z-index: 10;
}

.select2-container .select2-selection--single {
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 13px 40px 15px 22px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #0F328D;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: 6px solid transparent;
  border-top: 9px solid #0F328D;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  -webkit-transform-origin: 50% 22%;
          transform-origin: 50% 22%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.select2-results__option--selectable {
  font-size: 24px;
  line-height: 26px;
  color: #FFFFFF;
  padding: 10px 20px 10px 32px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #ECF2F9;
  color: #0F328D;
}

.select2-dropdown {
  border: none;
  -webkit-box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
          box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
}

.select2-dropdown--below .select2-results {
  border-radius: 0 0 5px 5px;
}
.select2-dropdown--below .select2-results .simplebar-content-wrapper {
  border-radius: 0 0 5px 5px;
}

.select2-dropdown--above .select2-results {
  border-radius: 5px 5px 0 0;
}
.select2-dropdown--above .select2-results .simplebar-content-wrapper {
  border-radius: 5px 5px 0 0;
}

.select2-selection__clear {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 18px;
  right: 18px;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ECF2F9;
  color: #0F328D;
}

.select2-results, .simplebar-content-wrapper {
  max-height: 350px;
}

.simplebar-track.simplebar-vertical {
  top: 10px;
  bottom: 10px;
  right: 3px;
}

.calendar {
  position: relative;
  z-index: 5;
}
.calendar__head {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #0F328D;
  border: 1px solid #0F328D;
  border-radius: 5px;
  padding: 13px 40px 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.calendar__head:after {
  content: "";
  position: absolute;
  top: 27px;
  right: 19px;
  border: 6px solid transparent;
  border-top: 9px solid #0F328D;
}
.calendar__head:hover {
  -webkit-box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
          box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
}
.calendar svg {
  width: 19px;
  margin-top: 1px;
  margin-right: 7px;
  fill: #0F328D;
}
.calendar__main {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
}
.calendar.open .calendar__head {
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
          box-shadow: 0 4px 10px rgba(15, 50, 141, 0.5);
}
.calendar.open .calendar__main {
  display: block;
}
.calendar input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.calendar__clear {
  display: none;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 25px;
  right: 34px;
  z-index: 5;
  background: none;
  border: none;
}
.calendar__clear .line {
  width: 15px;
  height: 2px;
  display: block;
  background-color: #0F328D;
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: -9px;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.calendar__clear .line.l1 {
  -webkit-transform: translateY(15px) translateZ(0) rotate(135deg);
          transform: translateY(15px) translateZ(0) rotate(135deg);
}
.calendar__clear .line.l2 {
  -webkit-transform: translateY(15px) translateZ(0) rotate(-135deg);
          transform: translateY(15px) translateZ(0) rotate(-135deg);
}
.calendar__clear:hover .line {
  background-color: #EE3537;
}
.calendar__clear.vis {
  display: block;
}

.ui-datepicker {
  width: 100%;
  padding: 16px 18px 22px 18px;
  border-radius: 0 0 5px 5px;
  background-color: #ffffff;
  border: none;
  font-family: "Oswald", Arial, sans-serif;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 74, 79, 0.2);
          box-shadow: 0px 4px 20px rgba(0, 74, 79, 0.2);
}

.ui-datepicker .ui-datepicker-title {
  font-size: 16px;
  line-height: 17px;
  text-transform: capitalize;
  color: #000000;
  padding: 16px 20px 16px 20px;
}

.ui-datepicker .ui-datepicker-year {
  color: #b3b3b3;
}

.ui-datepicker .ui-datepicker-header {
  border: none;
  border-bottom: 2px solid #f3f3f3;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 12px;
  height: 12px;
  border-top: 2px solid #9e9e9e;
  border-right: 2px solid #9e9e9e;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: none;
  top: 22px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.ui-datepicker .ui-datepicker-prev {
  left: 16px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.ui-datepicker .ui-datepicker-next {
  right: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ui-datepicker .ui-state-hover.ui-datepicker-prev-hover,
.ui-datepicker .ui-state-hover.ui-datepicker-next-hover {
  border-top: 2px solid #ffb14e;
  border-right: 2px solid #ffb14e;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: none;
}

.ui-datepicker th {
  font-size: 11px;
  line-height: 1.2;
  color: #ffb14e;
}

.ui-datepicker table {
  margin-top: 14px;
  border-bottom: 2px solid #f3f3f3;
}

.ui-datepicker table tr:nth-child(2n) {
  background: none;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 1;
}
.ui-state-disabled .ui-state-default,
.ui-widget-content .ui-state-disabled .ui-state-default,
.ui-widget-header .ui-state-disabled .ui-state-default {
  color: #bababa;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: none;
  background: transparent;
  font-size: 13px;
  line-height: 1.2;
  color: #000000;
  cursor: default;
  padding: 7.5px;
  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;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.ui-state-default.ui-priority-secondary {
  color: #e2e2e2;
  opacity: 1;
}

.ui-datepicker .event .ui-state-active {
  color: #912200;
  border: 1px solid #cfd3dd;
}

.ui-datepicker .ui-datepicker-today .ui-state-default {
  color: #76c6ec;
}

.ui-datepicker .ui-state-hover,
.ui-datepicker .ui-datepicker-today .ui-state-hover {
  color: #ffb14e;
}

@media screen and (max-width: 1320px) {
  .ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    padding: 5px;
    font-size: 11px;
  }
}
@media screen and (max-width: 1023px) {
  .ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    padding: 7.5px;
    font-size: 13px;
  }
}
.loader {
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(100% - 35px);
  left: calc(50% - 15px);
  z-index: -1;
  display: block;
  -webkit-transform-origin: 50% calc(0% - 33px);
          transform-origin: 50% calc(0% - 33px);
  -webkit-animation: clock 2s infinite ease-in-out;
          animation: clock 2s infinite ease-in-out;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
  will-change: transform;
}
.loader.load {
  top: calc(100% + 30px);
}
.loader .loader-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.loader__chain {
  position: absolute;
  top: -33px;
  left: calc(100% - 88px);
  width: 150px;
  height: 34px;
  overflow: hidden;
}
.loader__chain img {
  display: block;
  position: relative;
  bottom: 100%;
}

.loader .arc {
  position: relative;
  border: 2px solid #0F328D;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.loader .arc::after,
.loader .arc::before {
  content: "";
  position: absolute;
  top: 4%;
  left: 48%;
  width: 4%;
  height: 46%;
  background-color: #0F328D;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  border-radius: 5px;
  -webkit-animation: rotate 2s infinite linear;
          animation: rotate 2s infinite linear;
}

.loader .arc::after {
  height: 36%;
  top: 14%;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes clock {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
@keyframes clock {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
.main-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.main-slider__bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  height: 100vh;
  min-height: 500px;
}
.main-slider__bg .container {
  height: 100%;
}
.main-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-top: 88px;
}
.main-slider__content-date {
  font-weight: 400;
  font-size: 200px;
  line-height: 250px;
  margin-left: -22px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 2px 2px 0px #255C99;
}
.main-slider__content-place {
  font-weight: 400;
  font-size: 50px;
  line-height: 74px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 2px 2px 0px #255C99;
  margin-left: 7px;
}
.main-slider__arrows {
  width: 100%;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1810px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-slider__arrows-block {
  position: absolute;
  top: calc(50% - 79px);
  left: 0;
  right: 0;
  width: 100%;
}
.main-slider__arrows-left, .main-slider__arrows-right {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  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;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
.main-slider__arrows-left svg, .main-slider__arrows-right svg {
  width: 33px;
}
.main-slider__arrows-left:hover, .main-slider__arrows-right:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.main-slider__arrows-right {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.events {
  padding-top: 60px;
  padding-bottom: 100px;
}
.events__top {
  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;
  padding-bottom: 60px;
}
.events__top-right form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.events__top-right .input-block {
  margin-left: 30px;
  padding-bottom: 0;
}
.events__top .input-block {
  width: 306px;
}
.events__top-left h1 {
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: #0F328D;
}
.events__info {
  height: 100%;
  position: relative;
}
.events__first-block {
  height: 100%;
}
.events__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -30px;
}
.events__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 306px;
          flex: 0 0 306px;
  margin-left: 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.events__item:hover .events__block {
  opacity: 1;
}
.events__item:hover .events__buy {
  opacity: 0;
}
.events__img {
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  padding-bottom: 141.5%;
}
.events__img img {
  opacity: 0;
  position: absolute;
}
.events__buy {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0F328D;
  font-weight: 300;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  padding: 9px 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.events__block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  will-change: transform;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.events__block:before {
  content: "";
  background: rgba(9, 48, 92, 0.9);
  opacity: 0.9;
  backdrop-filter: blur(50px);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.events__text {
  display: block;
  position: relative;
  z-index: 5;
  color: #FFFFFF;
  text-align: center;
  padding: 46px 32px 24px 32px;
}
.events__date {
  font-size: 20px;
  line-height: 24px;
}
.events__date span {
  font-size: 24px;
  line-height: 28px;
}
.events__name {
  margin-top: 17px;
  margin-bottom: 14px;
  height: 127px;
  font-size: 42px;
  line-height: 42px;
  display: block;
  color: #FFFFFF;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  word-wrap: break-word;
}
.events__name:hover {
  color: #ffb14e;
}
.events__place, .events__price {
  font-size: 20px;
  line-height: 22px;
  height: 50px;
}
.tour__item .events__place, .tour__item .events__price {
  font-size: 18px;
  line-height: 20px;
}
.events__place-more, .events__price-more {
  font-size: 20px;
  line-height: 22px;
}
.tour__item .events__place-more, .tour__item .events__price-more {
  font-size: 18px;
  line-height: 20px;
}
.tour__item .events__place {
  height: auto;
  font-size: 18px;
  line-height: 20px;
}
.events__price {
  margin-top: 4px;
}
.tour__item .events__price {
  height: auto;
  margin-bottom: 5px;
}
.events__count {
  font-size: 18px;
  line-height: 20px;
}
.events__btn {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 3px;
  margin-top: 8px;
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  width: auto;
}
.events .banner {
  margin-left: 30px;
  margin-bottom: 70px;
  margin-top: 26px;
}
.events .banner img {
  width: 100%;
  display: block;
}
.events__more {
  max-width: 270px;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 24px;
  line-height: 36px;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.events__more:hover {
  background-color: #FAFAFA;
}
.events__short {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  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;
  padding: 8px 14px 40px 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFFFFF;
}
.events__short .events__place {
  font-size: 20px;
  height: auto;
}
.events__short .events__place div {
  font-size: 16px;
  opacity: 0.85;
}
.events__short .events__date {
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  padding-left: 12px;
}
.tour__item .events__short .events__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tour__item .events__short .events__date div {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}
.tour__item .events__short .events__date span:last-child {
  display: block;
  font-size: 16px;
  line-height: 18px;
}
.tour__item .events__short .events__date span:first-child {
  display: block;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
}
.tour__item .events__short .events__date .events__date-center {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 14px;
  font-size: 30px;
  text-align: 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;
}
.events__short .events__date div {
  display: block;
  font-size: 22px;
  font-weight: bold;
}

@media screen and (max-width: 1600px) {
  .main-slider__content {
    margin-left: 120px;
  }
}
@media screen and (max-width: 1420px) {
  .events__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 30px);
            flex: 0 0 calc(25% - 30px);
  }
}
@media screen and (max-width: 1320px) {
  .main-slider__content-date {
    font-size: 150px;
    line-height: 200px;
  }

  .main-slider__content-place {
    font-size: 40px;
    line-height: 50px;
  }

  .main-slider__arrows-block {
    top: calc(50% - 10px);
  }

  .events__text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .events__name {
    font-size: 38px;
    line-height: 38px;
  }

  .events__top-right form {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .events__top .input-block {
    width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    margin-left: 0;
  }

  .events__top-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
  }

  .events__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3% - 30px);
            flex: 0 0 calc(33.3% - 30px);
  }
}
@media screen and (max-width: 1023px) {
  .main-slider__arrows-block {
    display: none;
  }

  .main-slider__content {
    margin-left: 40px;
  }

  .main-slider__content-place {
    margin-left: 0;
  }

  .events__list {
    margin-left: -15px;
  }

  .events__block {
    display: none;
  }

  .events__item:hover .events__buy {
    opacity: 1;
  }

  .events__item {
    margin-left: 15px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
  }

  .events__text {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .events__top {
    display: block;
  }

  .events__top .input-block {
    width: 32%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }

  .events__top-left {
    text-align: center;
    margin-bottom: 30px;
  }

  .events__top-left h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .events .banner {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .main-slider__content-date {
    font-size: 100px;
    line-height: 120px;
    margin-left: 0;
  }

  .main-slider__bg {
    height: 400px;
    min-height: 0;
  }

  .events__top-right form {
    display: block;
  }

  .events__top .input-block {
    width: 100%;
    margin-bottom: 20px;
  }

  .events {
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .events__top {
    padding-bottom: 30px;
  }

  .events .banner__name {
    font-size: 50px;
    line-height: 56px;
  }

  .events .banner__date,
.events .banner__place {
    font-size: 20px;
    line-height: 28px;
  }

  .events .banner {
    margin-top: 6px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .main-slider__content {
    margin-left: 0;
    padding-top: 150px;
  }

  .main-slider__bg {
    height: 300px;
    min-height: 0;
  }

  .main-slider__content-date {
    font-size: 70px;
    line-height: 85px;
    margin-left: 0;
  }

  .main-slider__content-place {
    font-size: 30px;
    line-height: 40px;
  }

  .events__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 5px);
            flex: 0 0 calc(50% - 5px);
    margin-left: 5px;
  }

  .events__list {
    margin-left: -5px;
  }

  .events__info {
    max-width: 400px;
    margin: 0 auto;
  }

  .events__short {
    padding-left: 8px;
    padding-right: 8px;
  }
  .events__short .events__place {
    font-size: 13px;
    line-height: 15px;
  }
  .events__short .events__place div {
    font-size: 11px;
  }
  .events__short .events__date {
    font-size: 11px;
    line-height: 13px;
    padding-left: 8px;
  }
  .events__short .events__date div {
    font-size: 18px;
    line-height: 13px;
  }

  .events .banner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% + 32px);
            flex: 0 0 calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .events .banner__name {
    font-size: 30px;
    line-height: 36px;
  }

  .events .banner__date,
.events .banner__place {
    font-size: 18px;
    line-height: 22px;
  }

  .events__more {
    margin-top: 30px;
  }

  .events__top-left h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .tour__item .events__short .events__date span:first-child {
    font-size: 16px;
    line-height: 18px;
    display: inline-block;
  }

  .tour__item .events__short .events__date span:last-child {
    display: inline-block;
  }

  .tour__item .events__short .events__date div {
    font-size: 14px;
  }

  .tour__item .events__short .events__date .events__date-center {
    font-size: 20px;
  }

  .tour__item .events__short {
    display: block;
  }

  .tour__item .events__short .events__date {
    padding-left: 0;
    padding-top: 5px;
  }

  .tour__item .events__short .events__date div {
    display: inline-block;
  }

  .tour__item .events__short .events__date .events__date-center {
    display: inline-block;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 0;
  }

  .tour__item .events__short .events__date {
    display: block;
    text-align: left;
  }
}
.event-bg {
  width: 100%;
  margin-top: 65px;
  max-height: 392px;
  overflow: hidden;
}
.event-bg img {
  width: 100%;
}

.event-btn {
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  -webkit-box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.15);
}
.event-btn .btn {
  border-radius: 0;
}

.event-main {
  padding-top: 107px;
}
.event-main__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 57.4%;
  margin-bottom: 85px;
}
.event-main__nav li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.event-main__nav li a {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  padding: 17px 20px;
  border: 1px solid #0F328D;
  background: #FFFFFF;
  color: #000000;
  -webkit-transition: color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.event-main__nav li a:hover {
  -webkit-box-shadow: 0 5px 15px rgba(15, 50, 141, 0.5);
          box-shadow: 0 5px 15px rgba(15, 50, 141, 0.5);
}
.event-main__nav li:first-child a {
  border-radius: 5px 0 0 5px;
}
.event-main__nav li:last-child a {
  border-radius: 0 5px 5px 0;
}
.event-main__nav li.active a {
  background-color: #0F328D;
  color: #FFFFFF;
}
.event-main__nav li.active a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.event-main__block {
  position: relative;
}
.event-main__h {
  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;
  width: 57.4%;
}
.event-main__h h1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 79%;
          flex: 1 0 79%;
}
.event-main__play {
  width: 88px;
  height: 88px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 88px;
          flex: 0 0 88px;
}
.event-main__play svg {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.event-main__play:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.event-main__dates {
  padding-top: 14px;
  padding-bottom: 133px;
}
.event-main__dates h3 {
  color: #000000;
}

.sidebar {
  float: right;
  width: 418px;
  margin-top: -315px;
}
.sidebar-info {
  padding: 50px 41px 60px 41px;
  background-color: #0F328D;
}
.sidebar-info__icon {
  width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  margin-top: 3px;
  margin-right: 10px;
}
.sidebar-info__icon svg {
  fill: #FFFFFF;
}
.sidebar-info__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 24px;
  line-height: 27px;
  color: #FFFFFF;
  padding-bottom: 36px;
}
.sidebar-info__date {
  font-size: 32px;
  line-height: 36px;
}
.sidebar-info .btn {
  margin-top: 16px;
}
.sidebar__img {
  margin-top: 54px;
  width: 100%;
}
.sidebar__img img {
  width: 100%;
}

.text-block {
  width: 57.4%;
  padding-top: 31px;
  padding-bottom: 133px;
  font-family: "SFProDisplay", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}
.text-block h2,
.text-block .h2,
.text-block h3,
.text-block .h3,
.text-block h4,
.text-block .h4,
.text-block h5,
.text-block .h5,
.text-block h6,
.text-block .h6 {
  font-family: "Oswald", sans-serif;
}
.text-block h2,
.text-block .h2 {
  padding-bottom: 35px;
}
.text-block h3,
.text-block .h3,
.text-block h4,
.text-block .h4,
.text-block h5,
.text-block .h5 {
  padding-bottom: 4px;
  padding-top: 10px;
}
.text-block h6,
.text-block .h6 {
  padding-bottom: 5px;
}
.text-block p {
  margin-bottom: 30px;
}
.text-block a {
  font-weight: 700;
  letter-spacing: -0.02em;
  border-bottom: 1px solid transparent;
  color: #0F328D;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.text-block a:hover {
  border-color: #0F328D;
}
.text-block ul {
  margin-bottom: 30px;
}
.text-block ul li {
  padding-left: 30px;
  position: relative;
}
.text-block ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 14px;
  left: 12px;
  background-color: #000000;
  border-radius: 50%;
}
.text-block ol {
  margin-bottom: 30px;
  padding-left: 28px;
}
.text-block ol li {
  padding-left: 2px;
  position: relative;
  list-style-type: decimal;
}
.text-block blockquote {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  color: #0F328D;
  background-color: #F2F6FF;
  padding: 26px 70px 26px 70px;
  margin-bottom: 44px;
}
.text-block blockquote p {
  margin-bottom: 0;
}
.text-block table {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  border-collapse: collapse;
}
.text-block table td, .text-block table th {
  text-align: center;
  border: 1px solid #0F328D;
  padding: 2px 10px;
}
.text-block table th {
  background-color: #FFFFFF;
  color: #0F328D;
}
.text-block figure {
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
}
.text-block figure figcaption {
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  font-style: italic;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  padding: 10px 20px;
  background-color: rgba(15, 50, 141, 0.7);
}

.dates-list {
  padding-top: 37px;
}
.dates-list li {
  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;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  padding-top: 28px;
  padding-bottom: 43px;
  border-top: 1px solid #0F328D;
}
.dates-list__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.dates-list__block:first-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.dates-list strong {
  display: block;
  font-weight: 400;
}
.dates-list__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 230px;
          flex: 0 0 230px;
  margin-right: 20px;
}
.dates-list__date a {
  color: #000000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.dates-list__date a:hover {
  color: #0F328D;
}
.dates-list__place {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  margin-right: 20px;
}
.dates-list__price {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  text-align: right;
}
.dates-list__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 306px;
          flex: 0 0 306px;
  margin-left: 50px;
}

@media screen and (max-width: 1200px) {
  .sidebar {
    width: 350px;
  }

  .sidebar-info__list li {
    font-size: 20px;
    font-weight: 24px;
  }

  .sidebar-info__date {
    font-size: 26px;
    font-weight: 30px;
  }

  .sidebar-info .btn {
    font-size: 18px;
  }

  .dates-list__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 190px;
            flex: 0 0 190px;
  }

  .dates-list__place {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
  }

  .dates-list__price {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
@media screen and (max-width: 1023px) {
  .sidebar {
    float: none;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }

  .event-main__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .event-main__nav {
    width: 100%;
    margin-bottom: 50px;
  }

  .event-bg {
    display: none;
  }

  .event-main__h {
    width: 100%;
  }

  .sidebar__img {
    max-width: 400px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .sidebar-info__text br {
    display: none;
  }

  .text-block {
    width: 100%;
  }

  .event-main__h {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .dates-list li {
    display: block;
    font-size: 20px;
    font-weight: 26px;
  }

  .dates-list__block {
    display: block;
    text-align: center;
  }

  .dates-list__price {
    text-align: center;
    margin-bottom: 20px;
  }

  .dates-list__date, .dates-list__place {
    margin-bottom: 15px;
  }

  .dates-list__btn {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .event-main__play {
    width: 44px;
    height: 44px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
  }

  .event-main__h {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .event-main__h h1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 54px);
            flex: 0 0 calc(100% - 54px);
  }

  .event-btn {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .event-main__nav {
    margin-bottom: 20px;
  }

  .event-main__nav li a {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 16px;
  }

  .sidebar-info {
    padding: 25px 20px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .sidebar-info__list li {
    font-size: 20px;
    line-height: 24px;
  }

  .sidebar-info__date {
    font-size: 24px;
    line-height: 28px;
  }

  .text-block {
    padding-top: 30px;
    padding-bottom: 50px;
    font-size: 16px;
    line-height: 20px;
  }

  .text-block p {
    margin-bottom: 20px;
  }

  .text-block ul li {
    padding-left: 20px;
  }

  .text-block ul li:before {
    left: 2px;
  }

  .text-block blockquote {
    margin-left: -16px;
    margin-right: -16px;
    padding: 20px 25px;
    margin-bottom: 20px;
  }
}
.contacts {
  margin-top: 65px;
  padding-top: 90px;
  padding-bottom: 149px;
}
.contacts__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contacts__h {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
}
.contacts__h h1 {
  font-size: 48px;
  line-height: 50px;
  color: #0F328D;
}
.contacts__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 418px;
          flex: 0 0 418px;
  width: 418px;
  margin-top: 18px;
}
.contacts__form h4 {
  padding-bottom: 30px;
}
.contacts__form .btn {
  margin-top: 34px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.contacts__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.6%;
          flex: 0 0 31.6%;
  font-size: 21px;
  line-height: 27px;
  color: #0F328D;
  padding-top: 102px;
}
.contacts__info-block {
  margin-bottom: 30px;
}
.contacts__info-block a {
  display: inline-block;
  padding-top: 2px;
  font-size: 27px;
  line-height: 30px;
  color: #0F328D;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.contacts__info-block a:hover {
  border-color: #0F328D;
}
.contacts__info-block.mail a {
  border-bottom: 1px solid #0F328D;
}
.contacts__info-block.mail a:hover {
  border-color: transparent;
}
.contacts__info-block.last {
  padding-top: 20px;
}
.contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 18px;
}
.contacts__socials li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 194px;
          flex: 0 0 194px;
  margin-right: 11px;
  margin-bottom: 12px;
}
.contacts__socials li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  line-height: 20px;
  padding: 13px 23px 13px 18px;
  color: #FAFAFA;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  border-radius: 5px;
  border: none;
}
.contacts__socials li a svg {
  width: auto;
  height: 22px;
  fill: #FFFFFF;
}
.contacts__socials li.facebook a {
  background-color: #3A559F;
}
.contacts__socials li.facebook a:hover {
  -webkit-box-shadow: 0 5px 13px rgba(58, 85, 159, 0.5);
          box-shadow: 0 5px 13px rgba(58, 85, 159, 0.5);
}
.contacts__socials li.instagram a {
  background: url("../img/bg_inst.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.contacts__socials li.instagram a:hover {
  -webkit-box-shadow: 0 5px 13px rgba(202, 32, 141, 0.5);
          box-shadow: 0 5px 13px rgba(202, 32, 141, 0.5);
}
.contacts__socials li.youtube a {
  background-color: #FF0000;
}
.contacts__socials li.youtube a:hover {
  -webkit-box-shadow: 0 5px 13px rgba(255, 0, 0, 0.5);
          box-shadow: 0 5px 13px rgba(255, 0, 0, 0.5);
}

@media screen and (max-width: 1023px) {
  .contacts {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .contacts__h h1 {
    font-size: 46px;
    line-height: 54px;
  }

  .contacts__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .contacts__h {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-bottom: 20px;
  }

  .contacts__form, .contacts__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .contacts__flex {
    display: block;
  }

  .contacts__form, .contacts__info {
    width: 100%;
  }

  .contacts {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .contacts__form {
    padding-top: 0;
  }

  .contacts__info {
    padding-top: 20px;
  }

  .contacts__socials {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .contacts__socials li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
    margin-right: 0;
  }

  .contacts__info-block.last {
    padding-top: 0;
  }

  .contacts__form .btn {
    margin-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .contacts__h h1 {
    font-size: 32px;
    line-height: 48px;
  }

  .contacts__socials {
    display: block;
  }

  .contacts__socials li {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts__info {
    font-size: 18px;
    line-height: 22px;
  }

  .contacts__info-block a {
    font-size: 21px;
    line-height: 25px;
  }
}
.page-404 {
  margin-top: 65px;
  padding-top: 118px;
  padding-bottom: 302px;
}
.page-404__container {
  max-width: 418px;
  margin: 0 auto;
}
.page-404__block {
  padding-top: 62px;
  position: relative;
}
.page-404__text {
  max-width: 200px;
  font-size: 48px;
  line-height: 50px;
  color: #0F328D;
}
.page-404__img {
  position: absolute;
  top: 24px;
  right: 0;
}
.page-404 .btn {
  margin-top: 90px;
  padding-top: 19px;
  padding-bottom: 19px;
}

@media screen and (max-width: 1023px) {
  .page-404__text {
    font-size: 46px;
    line-height: 54px;
  }
}
@media screen and (max-width: 768px) {
  .page-404 {
    margin-top: 65px;
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .page-404__img {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100px;
    margin: 0 auto;
  }

  .page-404__block {
    padding-top: 30px;
  }

  .page-404__text {
    max-width: none;
    text-align: center;
  }

  .page-404 .btn {
    margin-top: 0;
  }

  .page-404__main-img {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 576px) {
  .page-404__text {
    font-size: 32px;
    line-height: 48px;
  }
}
.text-page {
  padding-top: 100px;
}
.text-page h1 {
  font-family: "Oswald", sans-serif;
  padding-bottom: 35px;
}
.text-page .text-block {
  width: 100%;
  max-width: 900px;
}

@media screen and (max-width: 768px) {
  .text-page {
    padding-top: 70px;
  }
}