@charset "UTF-8";
/* Burger Icon VARS */
/* Registration form vars*/
/* Инпуты */
/* Выбор города */
/* Подтверждение условий конкурса */
/* Кнопка */
/* Label */
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&display=swap");
html {
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

article,
aside,
footer,
header,
nav,
section {
  display: block; }

figcaption,
figure,
main {
  /* 1 */
  display: block; }

figure {
  margin: 1em 40px; }

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

a:active,
a:hover {
  outline-width: 0; }

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

b,
strong {
  font-weight: inherit; }

b,
strong {
  font-weight: bolder; }

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

dfn {
  font-style: italic; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

audio,
video {
  display: inline-block; }

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

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

button,
input {
  /* 1 */
  overflow: visible; }

button,
select {
  /* 1 */
  text-transform: none; }

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

details,
menu {
  display: block; }

summary {
  display: list-item; }

canvas {
  display: inline-block; }

template {
  display: none; }

[hidden] {
  display: none; }

/* Burger Icon VARS */
/* Registration form vars*/
/* Инпуты */
/* Выбор города */
/* Подтверждение условий конкурса */
/* Кнопка */
/* Label */
/* Burger Icon */
.toggle {
  width: 4rem;
  position: relative;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 0 .5rem; }
  .toggle input {
    display: none; }
    .toggle input:checked + label:before {
      -webkit-animation: animationOne 1s ease forwards;
      animation: animationOne 1s ease forwards; }
    .toggle input:checked + label:after {
      content: '';
      position: absolute;
      top: 50%;
      margin-top: -2px;
      width: 100%;
      height: 0.3rem;
      -webkit-border-radius: 10px;
              border-radius: 10px;
      background: #2e2382; }
    .toggle input:checked + label:after {
      -webkit-animation: animationTwo 1s ease forwards;
      animation: animationTwo 1s ease forwards; }
    .toggle input:checked + label .burger:before {
      -webkit-animation: animationBurgerTop 1s ease forwards;
      animation: animationBurgerTop 1s ease forwards; }
    .toggle input:checked + label .burger:after {
      -webkit-animation: animationBurgerBottom 1s ease forwards;
      animation: animationBurgerBottom 1s ease forwards; }
  .toggle label {
    position: relative;
    width: 100%;
    height: 40px;
    display: block;
    cursor: pointer;
    background: transparent; }
    .toggle label:before, .toggle label:after {
      content: '';
      position: absolute;
      margin-top: -2px;
      -webkit-border-radius: 10px;
              border-radius: 10px;
      background: #2e2382;
      top: 50%;
      width: 100%;
      height: 0.3rem; }
    .toggle label:before {
      -webkit-animation: animationOneReverse 1s ease forwards;
      animation: animationOneReverse 1s ease forwards; }
    .toggle label:after {
      -webkit-animation: animationTwoReverse 1s ease forwards;
      animation: animationTwoReverse 1s ease forwards; }
    .toggle label .burger:before, .toggle label .burger:after {
      content: '';
      position: absolute;
      width: 100%;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      background: #2e2382;
      height: 0.3rem; }
    .toggle label .burger:before {
      top: 0.9rem;
      -webkit-animation: animationBurgerTopReverse 1s ease forwards;
      animation: animationBurgerTopReverse 1s ease forwards; }
    .toggle label .burger:after {
      bottom: 1rem;
      -webkit-animation: animationBurgerBottomReverse 1s ease forwards;
      animation: animationBurgerBottomReverse 1s ease forwards; }

@-webkit-keyframes animationOneReverse {
  0% {
    -webkit-transform: rotate(315deg); }
  25% {
    -webkit-transform: rotate(360deg); }
  50%, 100% {
    -webkit-transform: rotate(0deg); } }

@keyframes animationOneReverse {
  0% {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg); }
  25% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); }
  50%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@-webkit-keyframes animationOne {
  0%, 50% {
    -webkit-transform: rotate(0deg); }
  75% {
    -webkit-transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(315deg); } }

@keyframes animationOne {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg); } }

@-webkit-keyframes animationTwoReverse {
  0% {
    -webkit-transform: rotate(405deg); }
  25% {
    -webkit-transform: rotate(450deg); }
  50%, 100% {
    -webkit-transform: rotate(0deg); } }

@keyframes animationTwoReverse {
  0% {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg); }
  25% {
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); }
  50%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@-webkit-keyframes animationTwo {
  0%, 50% {
    -webkit-transform: rotate(0deg); }
  75% {
    -webkit-transform: rotate(450deg); }
  100% {
    -webkit-transform: rotate(405deg); } }

@keyframes animationTwo {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  75% {
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); }
  100% {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg); } }

@-webkit-keyframes animationBurgerTopReverse {
  0%, 50% {
    -webkit-transform: translateY(0.9rem);
    opacity: 0; }
  51% {
    -webkit-transform: translateY(0.9rem);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1; } }

@keyframes animationBurgerTopReverse {
  0%, 50% {
    -webkit-transform: translateY(0.9rem);
            transform: translateY(0.9rem);
    opacity: 0; }
  51% {
    -webkit-transform: translateY(0.9rem);
            transform: translateY(0.9rem);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1; } }

@-webkit-keyframes animationBurgerTop {
  0% {
    -webkit-transform: translateY(0px);
    opacity: 1; }
  50% {
    -webkit-transform: translateY(0.9rem);
    opacity: 1; }
  51%, 100% {
    -webkit-transform: translateY(0.9rem);
    opacity: 0; } }

@keyframes animationBurgerTop {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1; }
  50% {
    -webkit-transform: translateY(0.9rem);
            transform: translateY(0.9rem);
    opacity: 1; }
  51%, 100% {
    -webkit-transform: translateY(0.9rem);
            transform: translateY(0.9rem);
    opacity: 0; } }

@-webkit-keyframes animationBurgerBottomReverse {
  0%, 50% {
    -webkit-transform: translateY(-0.9rem);
    opacity: 0; }
  51% {
    -webkit-transform: translateY(-0.9rem);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1; } }

@keyframes animationBurgerBottomReverse {
  0%, 50% {
    -webkit-transform: translateY(-0.9rem);
            transform: translateY(-0.9rem);
    opacity: 0; }
  51% {
    -webkit-transform: translateY(-0.9rem);
            transform: translateY(-0.9rem);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1; } }

@-webkit-keyframes animationBurgerBottom {
  0% {
    -webkit-transform: translateY(0px);
    opacity: 1; }
  50% {
    -webkit-transform: translateY(-0.9rem);
    opacity: 1; }
  51%, 100% {
    -webkit-transform: translateY(-0.9rem);
    opacity: 0; } }

@keyframes animationBurgerBottom {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1; }
  50% {
    -webkit-transform: translateY(-0.9rem);
            transform: translateY(-0.9rem);
    opacity: 1; }
  51%, 100% {
    -webkit-transform: translateY(-0.9rem);
            transform: translateY(-0.9rem);
    opacity: 0; } }

html {
  font-size: 10px; }
  html.modal--active {
    overflow: hidden; }

body {
  font-size: 1.6rem;
  color: #000;
  font-family: "Comfortaa", cursive; }
  @media (min-width: 48em) {
    body {
      overflow: hidden; } }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
  background: none; }

.header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000; }
  @media (min-width: 48em) {
    .header {
      position: fixed; } }
  .header img.dark {
    display: none; }
  .header.dark span {
    color: #232323; }
  .header.dark .white {
    display: none; }
  .header.dark .dark {
    display: inline-block; }
  .header--wrapper {
    max-width: 125rem;
    padding: 2rem 1.5rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 75em) {
      .header--wrapper {
        max-width: 120rem;
        padding: 1rem 1.5rem; } }
    @media (min-width: 100em) {
      .header--wrapper {
        max-width: 125rem;
        padding: 2rem 1.5rem; } }
  .header__logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .header__logo img {
      display: block;
      width: 5rem;
      margin-right: 1rem; }
      @media (min-width: 48em) {
        .header__logo img {
          width: 5rem;
          margin-right: 1.5rem; } }
      @media (min-width: 62em) {
        .header__logo img {
          width: 6rem;
          margin-right: 2.5rem; } }
      @media (min-width: 75em) {
        .header__logo img {
          width: 6rem;
          margin-right: 2rem; } }
      @media (min-width: 100em) {
        .header__logo img {
          width: 8rem;
          margin-right: 2.5rem; } }
    .header__logo span {
      display: block;
      font-size: 1.5rem;
      color: #fff; }
      @media (min-width: 48em) {
        .header__logo span {
          font-size: 1.5rem; } }
      @media (min-width: 62em) {
        .header__logo span {
          font-size: 1.8rem; } }
      @media (min-width: 75em) {
        .header__logo span {
          font-size: 2rem; } }
      @media (min-width: 100em) {
        .header__logo span {
          font-size: 2.1rem; } }
  .header__menu {
    display: none; }
    @media (min-width: 48em) {
      .header__menu {
        display: block; } }
    .header__menu li {
      display: inline-block;
      margin-right: 1rem; }
      @media (min-width: 48em) {
        .header__menu li {
          margin-right: 3.5rem; } }
      @media (min-width: 62em) {
        .header__menu li {
          margin-right: 3rem; } }
      @media (min-width: 75em) {
        .header__menu li {
          margin-right: 2rem; } }
      .header__menu li:last-child {
        margin-right: 0; }
      .header__menu li a {
        color: #fff; }
        .header__menu li a img, .header__menu li a span {
          display: inline-block;
          vertical-align: middle; }
        .header__menu li a span {
          font-size: 1.4rem;
          margin-left: 1rem; }
          @media (min-width: 48em) {
            .header__menu li a span {
              font-size: 1.4rem;
              margin-left: 1rem; } }
          @media (min-width: 62em) {
            .header__menu li a span {
              margin-left: 1.25rem;
              font-size: 1.6rem; } }
          @media (min-width: 75em) {
            .header__menu li a span {
              font-size: 1.6rem; } }

.slick-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 100;
  color: transparent;
  width: 5.6rem;
  height: 5.6rem;
  top: 50%;
  margin-top: -2.8rem;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  background: #fff; }
  @media (min-width: 48em) {
    .slick-arrow {
      width: 4.5rem;
      height: 4.5rem;
      margin-top: -2.25rem; } }
  @media (min-width: 62em) {
    .slick-arrow {
      width: 5rem;
      height: 5rem;
      margin-top: -2.5rem; } }
  @media (min-width: 75em) {
    .slick-arrow {
      width: 4.7rem;
      height: 4.7rem;
      margin-top: -2.35rem; } }
  @media (min-width: 100em) {
    .slick-arrow {
      width: 5.6rem;
      height: 5.6rem;
      margin-top: -2.8rem; } }
  .slick-arrow svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 3rem;
    color: #303030; }
    @media (min-width: 48em) {
      .slick-arrow svg {
        font-size: 2.4rem;
        top: .2rem; } }
    @media (min-width: 62em) {
      .slick-arrow svg {
        font-size: 2.6rem; } }
    @media (min-width: 75em) {
      .slick-arrow svg {
        font-size: 2.4rem; } }
    @media (min-width: 100em) {
      .slick-arrow svg {
        font-size: 3rem; } }

.slick-prev {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  left: 2rem;
  background-size: 1.4rem; }

.slick-next {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  right: 2rem; }

.slick-list, .slick-track {
  height: 100%; }

.slick-slide {
  height: 100%; }
  .slick-slide > div {
    height: 100%; }

.main {
  background: -webkit-linear-gradient(327.03deg, #201E28 -10.3%, #223949 94.13%);
  background: linear-gradient(122.97deg, #201E28 -10.3%, #223949 94.13%); }
  @media (min-width: 48em) {
    .main {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      padding-top: 0;
      height: 100vh; } }
  .main.dark .slick-arrow {
    border: 1px solid #232323; }
  .main--slide {
    position: relative;
    overflow: hidden; }
    @media (min-width: 48em) {
      .main--slide {
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .main--slide-1 {
      padding-top: 5.5rem;
      padding-bottom: 5rem;
      background: url("../img/slide-1.jpg?v=4") no-repeat center center;
      background-size: cover; }
      @media (min-width: 48em) {
        .main--slide-1 {
          padding-top: 0;
          padding-bottom: 0; } }
      .main--slide-1 h1 {
        color: #232323 !important; }
      .main--slide-1 ul li {
        color: #232323 !important; }
        .main--slide-1 ul li svg {
          color: #232323 !important; }
      .main--slide-1:after {
       
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.85); }
    .main--slide-2 {
      padding-top: 5rem;
      padding-bottom: 10rem;
      background: url("../img/slide-2.jpg") no-repeat;
      background-size: cover;
      background-position: 45% center; }
      @media (min-width: 48em) {
        .main--slide-2 {
          padding-top: 0;
          padding-bottom: 0;
          background-position: center center; } }
    .main--slide-3 {
      background: url("../img/slide-3.jpg") no-repeat;
      background-size: cover;
      padding-top: 5rem;
      padding-bottom: 6rem; }
      @media (min-width: 48em) {
        .main--slide-3 {
          padding-top: 0;
          padding-bottom: 0; } }
  .main--content {
    max-width: 140rem;
    padding: 0 1.5rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    position: relative;
    z-index: 100; }
    @media (min-width: 48em) {
      .main--content {
        padding: 0 10rem; } }
    @media (min-width: 75em) {
      .main--content {
        max-width: 130rem;
        padding-top: 5rem; } }
    @media (min-width: 100em) {
      .main--content {
        max-width: 140rem;
        padding-top: 0; } }
    .main--content .content {
      width: 100%; }
      @media (min-width: 48em) {
        .main--content .content {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -webkit-flex-direction: row-reverse;
              -ms-flex-direction: row-reverse;
                  flex-direction: row-reverse; } }
      .main--content .content img {
        max-width: 100%; }
        @media (min-width: 48em) {
          .main--content .content img {
            max-width: 120%; } }
        @media (min-width: 75em) {
          .main--content .content img {
            max-width: 97%; } }
        @media (min-width: 100em) {
          .main--content .content img {
            max-width: 120%; } }
      .main--content .content--left {
        width: 100%; }
        @media (min-width: 48em) {
          .main--content .content--left {
            width: 50%; } }
      .main--content .content--right {
        width: 100%;
        margin-bottom: 3rem; }
        @media (min-width: 48em) {
          .main--content .content--right {
            width: 50%;
            margin-bottom: 0; } }
    .main--content .instruct {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (min-width: 62em) {
        .main--content .instruct {
          width: inherit; } }
      @media (min-width: 48em) {
        .main--content .instruct--left {
          width: 60%; } }
      @media (min-width: 62em) {
        .main--content .instruct--left {
          width: inherit; } }
    .main--content .articles {
      width: 100%;
      text-align: center; }
      .main--content .articles .slick-arrow {
        top: 0rem !important;
        -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
                transform: translateY(-100%);
        width: 4.5rem;
        height: 4.5rem; }
        @media (min-width: 48em) {
          .main--content .articles .slick-arrow {
            top: -1.5rem !important; } }
        @media (min-width: 75em) {
          .main--content .articles .slick-arrow {
            top: 1.5rem !important;
            width: 4rem;
            height: 4rem; } }
        @media (min-width: 100em) {
          .main--content .articles .slick-arrow {
            top: -1.5rem !important;
            width: 4.5rem;
            height: 4.5rem; } }
      .main--content .articles .slick-next {
        right: 0; }
        .main--content .articles .slick-next svg {
          font-size: 1.8rem;
          left: 3px;
          -webkit-transform: rotate(-90deg);
              -ms-transform: rotate(-90deg);
                  transform: rotate(-90deg); }
      .main--content .articles .slick-prev {
        left: 0; }
        .main--content .articles .slick-prev svg {
          left: -2px;
          font-size: 1.8rem;
          -webkit-transform: rotate(90deg);
              -ms-transform: rotate(90deg);
                  transform: rotate(90deg); }
      .main--content .articles__items {
        margin-top: 4rem; }
        @media (min-width: 48em) {
          .main--content .articles__items {
            margin-top: 2rem; } }
        @media (min-width: 62em) {
          .main--content .articles__items {
            margin-top: 4rem; } }
        @media (min-width: 75em) {
          .main--content .articles__items {
            margin-top: 1rem; } }
        @media (min-width: 100em) {
          .main--content .articles__items {
            margin-top: 4rem; } }
      .main--content .articles__item {
        text-align: left;
        padding: 1rem 1.5rem;
        cursor: pointer; }
        .main--content .articles__item:hover {
          background: #FFFFFF;
          -webkit-border-radius: .5rem;
                  border-radius: .5rem;
          -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
                  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12); }
          .main--content .articles__item:hover h3, .main--content .articles__item:hover p {
            color: #372792; }
        .main--content .articles__item--image {
          -webkit-border-radius: .5rem;
                  border-radius: .5rem;
          overflow: hidden;
          height: 15.7rem; }
          .main--content .articles__item--image img {
            width: 100%; }
        .main--content .articles__item--desc {
          margin-top: 2rem; }
          @media (min-width: 48em) {
            .main--content .articles__item--desc {
              margin-top: 2rem; } }
          @media (min-width: 62em) {
            .main--content .articles__item--desc {
              margin-top: 3rem; } }
          .main--content .articles__item--desc h3 {
            color: #fff;
            margin-bottom: 2rem;
            font-size: 1.6rem;
            font-weight: bold; }
            @media (min-width: 48em) {
              .main--content .articles__item--desc h3 {
                font-size: 1.4rem;
                margin-bottom: 2rem; } }
            @media (min-width: 62em) {
              .main--content .articles__item--desc h3 {
                margin-bottom: 3rem;
                font-size: 1.8rem; } }
            @media (min-width: 75em) {
              .main--content .articles__item--desc h3 {
                margin-bottom: 1.5rem; } }
            @media (min-width: 100em) {
              .main--content .articles__item--desc h3 {
                margin-bottom: 3rem; } }
          .main--content .articles__item--desc p {
            font-size: 1.3rem;
            line-height: 2rem;
            color: #fff; }
            @media (min-width: 48em) {
              .main--content .articles__item--desc p {
                font-size: 1.3rem; } }
            @media (min-width: 62em) {
              .main--content .articles__item--desc p {
                font-size: 1.4rem; } }
            @media (min-width: 75em) {
              .main--content .articles__item--desc p {
                font-size: 1.3rem; } }
            @media (min-width: 100em) {
              .main--content .articles__item--desc p {
                font-size: 1.4rem;
                height: inherit; } }

h1.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff; }
  @media (min-width: 48em) {
    h1.title {
      font-size: 3rem; } }
  @media (min-width: 62em) {
    h1.title {
      font-size: 3.6rem; } }
  @media (min-width: 75em) {
    h1.title {
      font-size: 3.6rem;
      line-height: 4.6rem; } }
  @media (min-width: 100em) {
    h1.title {
      font-size: 4.5rem;
      line-height: inherit; } }

ul.check {
  margin-top: 2rem; }
  @media (min-width: 48em) {
    ul.check {
      margin-top: 5rem; } }
  ul.check li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    color: #fff; }
    @media (min-width: 48em) {
      ul.check li {
        margin-bottom: 3rem;
        padding-left: 4rem; } }
    @media (min-width: 62em) {
      ul.check li {
        margin-bottom: 3.75rem; } }
    @media (min-width: 100em) {
      ul.check li {
        margin-bottom: 4.5rem; } }
    ul.check li:last-child {
      margin-bottom: 0; }
    ul.check li svg {
      position: absolute;
      left: 0;
      font-size: 1.8rem;
      color: #fff; }
      @media (min-width: 48em) {
        ul.check li svg {
          font-size: 2rem; } }
      @media (min-width: 62em) {
        ul.check li svg {
          font-size: 2.3rem; } }
    ul.check li span {
      font-size: 1.4rem; }
      @media (min-width: 48em) {
        ul.check li span {
          font-size: 1.6rem; } }
      @media (min-width: 62em) {
        ul.check li span {
          font-size: 1.8rem; } }

ul.more {
  margin-top: 5rem; }
  @media (min-width: 75em) {
    ul.more {
      margin-top: 3rem; } }
  @media (min-width: 100em) {
    ul.more {
      margin-top: 5rem; } }
  ul.more li {
    cursor: pointer;
    position: relative;
    padding-right: 4rem;
    padding-bottom: 1rem;
    margin-bottom: 3.5rem;
    color: #fff;
    border-bottom: 1px solid #fff; }
    @media (min-width: 48em) {
      ul.more li {
        margin-bottom: 3rem; } }
    @media (min-width: 62em) {
      ul.more li {
        margin-bottom: 3.5rem; } }
    @media (min-width: 75em) {
      ul.more li {
        margin-bottom: 2.2rem; } }
    @media (min-width: 100em) {
      ul.more li {
        margin-bottom: 3.5rem; } }
    ul.more li:last-child {
      margin-bottom: 0; }
    ul.more li svg {
      position: absolute;
      right: 0;
      font-size: 1.6rem;
      color: #fff;
      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg); }
      @media (min-width: 48em) {
        ul.more li svg {
          font-size: 1.8rem; } }
      @media (min-width: 75em) {
        ul.more li svg {
          font-size: 1.6rem; } }
      @media (min-width: 100em) {
        ul.more li svg {
          font-size: 1.8rem; } }
    ul.more li span {
      font-size: 1.6rem; }
      @media (min-width: 48em) {
        ul.more li span {
          font-size: 1.6rem; } }
      @media (min-width: 62em) {
        ul.more li span {
          font-size: 1.6rem; } }
      @media (min-width: 75em) {
        ul.more li span {
          font-size: 1.6rem; } }
      @media (min-width: 100em) {
        ul.more li span {
          font-size: 1.8rem; } }

.footer {
  width: 100%;
  height: 5rem;
  z-index: 1000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700; }
  @media (min-width: 48em) {
    .footer {
      height: 4.2rem;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0; } }
  .footer.dark p {
    color: #232323; }
  .footer.dark .white {
    display: none; }
  .footer.dark .dark {
    display: inline-block; }
  .footer--wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
    max-width: 125rem;
    margin: 0 auto;
    padding: 0 1.5rem; }
  .footer .dark {
    display: none; }
  @media (min-width: 48em) {
    .footer a {
      height: 100%; } }
  .footer a img {
    width: 9rem; }
    @media (min-width: 48em) {
      .footer a img {
        height: 75%;
        width: auto; } }

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor; }

.icon-arrow-down {
  font-size: 45.1847rem;
  width: 1em; }

.icon-close {
  font-size: 3rem;
  width: 1em; }

.icon-facebook {
  font-size: 9.6123rem;
  width: 1.00001em; }

.icon-instagram {
  font-size: 16.9063rem;
  width: 1em; }

.icon-mail {
  font-size: 49.02rem;
  width: 1em; }

.icon-ok {
  font-size: 9.5481rem;
  width: 1em; }

.icon-repeat {
  font-size: 1.7rem;
  width: 0.94118em; }

.icon-vk {
  font-size: 30.436rem;
  width: 1em; }

/* Burger Icon VARS */
/* Registration form vars*/
/* Инпуты */
/* Выбор города */
/* Подтверждение условий конкурса */
/* Кнопка */
/* Label */
/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  .modal__content {
    display: none;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 2.5rem 1.5rem;
    min-height: 100%; }
    @media (min-width: 48em) {
      .modal__content {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        min-height: inherit;
        width: 95%;
        padding: 4rem; } }
    .modal__content button.close-icon {
      cursor: pointer;
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 3rem;
      height: 3rem;
      background: none;
      -webkit-border-radius: 100%;
      border-radius: 100%;
      z-index: 100; }
      .modal__content button.close-icon svg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        color: #333;
        font-size: 2rem; }
      .modal__content button.close-icon:hover svg {
        color: #333;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out; }
    .modal__content.active {
      display: block; }
    .modal__content.anim {
      height: auto;
      opacity: 1;
      pointer-events: all;
      visibility: visible;
      -webkit-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
      @media (min-width: 48em) {
        .modal__content.anim {
          -webkit-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1); } }
  .modal.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    @media (min-width: 48em) {
      .modal.active {
        background: rgba(0, 0, 0, 0.6); } }
  .modal__wrapper {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    height: 100%;
    padding: 2rem 0; }
    @media (min-width: 48em) {
      .modal__wrapper {
        padding: 5rem 2rem; } }
  .modal__instruct {
    max-width: 95%;
    background: #fff;
    -webkit-border-radius: 1rem;
            border-radius: 1rem; }
    @media (min-width: 48em) {
      .modal__instruct {
        max-width: 80rem; } }
    .modal__instruct b {
      color: #372792;
      display: block;
      font-family: "Comfortaa", cursive;
      font-weight: 700;
      margin-bottom: .5rem; }
    .modal__instruct h4 {
      text-align: center;
      color: #737373;
      font-size: 2.4rem;
      margin-bottom: 4rem; }
    .modal__instruct p {
      font-family: 'Arial', sans-serif;
      color: #333;
      font-size: 1.4rem;
      line-height: 2.1rem;
      margin-bottom: 2rem; }
      .modal__instruct p:last-child {
        margin-bottom: 0; }
  .modal__article {
    max-width: 95%;
    background: #fff;
    -webkit-border-radius: 1rem;
            border-radius: 1rem; }
    @media (min-width: 48em) {
      .modal__article {
        max-width: 80rem; } }
    .modal__article img {
      display: block;
      text-align: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: 1rem; }
    .modal__article h2 {
      text-align: center;
      color: #737373;
      font-size: 2.4rem;
      margin-bottom: 4rem; }
    .modal__article h4 {
      font-size: 1.6rem !important;
      text-align: left;
      color: #333 !important;
      margin-bottom: 2rem; }
    .modal__article h3 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1rem; }
    .modal__article table.horizontal {
      width: 100%;
      margin: 0;
      padding: 0;
      border: 0;
      border-collapse: collapse;
      color: #2b2b2b;
      margin-bottom: 2rem; }
    .modal__article table.horizontal td {
      font-size: 1.4rem;
      font-family: 'Arial', sans-serif;
      line-height: 2.1rem;
      color: #505050;
      padding: 5px 10px;
      border: 1px solid #dcdcdc;
      color: #2b2b2b; }
    .modal__article ul {
      padding-left: 2rem;
      margin-bottom: 2.5rem;
      margin-top: -1rem; }
      .modal__article ul.circle li {
        position: relative;
        padding-left: 1.65rem; }
        .modal__article ul.circle li:after {
          content: '';
          position: absolute;
          left: 0;
          top: .8rem;
          bottom: 0;
          width: .5rem;
          height: .5rem;
          -webkit-border-radius: 100%;
                  border-radius: 100%;
          display: block;
          background: #505050; }
      .modal__article ul li {
        color: #505050;
        font-family: 'Arial', sans-serif;
        font-size: 1.5rem;
        line-height: 2.2rem;
        margin-bottom: 1rem; }
        .modal__article ul li span {
          color: #303030;
          font-weight: bold; }
        .modal__article ul li:last-child {
          margin-bottom: 0; }
    .modal__article p {
      color: #505050;
      font-family: 'Arial', sans-serif;
      font-size: 1.5rem;
      line-height: 2.2rem;
      margin-bottom: 2rem; }
      .modal__article p:last-child {
        margin-bottom: 0; }
    .modal__article div {
      margin-bottom: 2rem; }

/**
 * Swiper 3.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: December 13, 2016
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  border: 2px solid #d9d9d9;
  -webkit-border-radius: 100%;
          border-radius: 100%; }

.swiper-button-next i {
  position: relative;
  top: 5px;
  left: 8px; }

.swiper-button-prev i {
  position: relative;
  top: 5px;
  left: 7px; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto; }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto; }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px; }

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5); }

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff; }

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000; }

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible; }

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

/* Scrollbar */
.swiper-scrollbar {
  -webkit-border-radius: 10px;
          border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 10px;
          border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
      transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

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

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

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #fff;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }
