:root {
  --text: #ffffff;
  --background: #000000;
  --header__background: #171717;
  --header__border: #999999;
  --registration__button: linear-gradient(90deg, #b559fc -0.35%, #1795f9 99.55%),
    linear-gradient(90deg, #fe44b3 12.25%, #ffa09f 138%);
  --login__button: linear-gradient(90deg, #f40f3e 12.25%, #ffa09f 138%);
  --registration__button__border: #fe44b3;
  --select__background: #9b9b9b;
  --select__button: #6283fe;
  --feature__title: #6283fe;
  --section__line: #fe44b3;
  --about__line: #b559fc;
  --proud__line: linear-gradient(
    79.73deg,
    #15baf2 5%,
    #6283fe 45%,
    #b559fc 70%,
    #fe44b3 100%
  );
  --form__button: linear-gradient(
    78.16deg,
    #15baf2 8.84%,
    #6283fe 45.43%,
    #b559fc 68.29%,
    #fe44b3 95.73%
  );
  --form__background: linear-gradient(
    90deg,
    rgba(21, 186, 242, 0.48) 5%,
    rgba(98, 131, 254, 0.48) 45%,
    rgba(181, 89, 252, 0.48) 70%,
    rgba(254, 68, 179, 0.48) 100%
  );
  --footer__text: #9b9b9b;
  --footer__button: #b559fc;
  --footer__background: linear-gradient(180deg, #222222 0%, #141414 100%),
    linear-gradient(180deg, #383838 0%, #212121 100%); }

.header {
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 3px solid var(--header__border);
  -webkit-backdrop-filter: blur(7px) brightness(0.4);
          backdrop-filter: blur(7px) brightness(0.4);
  z-index: 1000; }
  .header__container {
    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: 100%;
    padding: 23px 50px;
    margin: 0 auto; }
    @media screen and (min-width: 1240px) {
      .header__container {
        width: 1210px; } }
    @media screen and (max-width: 767px) {
      .header__container {
        padding: 20px 20px;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .header__logo {
    display: inline-block;
    width: 120px;
    height: 43px;
    background-image: url(../images/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    @media screen and (min-device-pixel-ratio: 2), screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
      .header__logo {
        background-image: url(../images/logo2x.png); } }
  .header__navigation {
    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;
    margin-left: -40px; }
    @media screen and (max-width: 1023px) {
      .header__navigation {
        width: 80%; } }
    @media screen and (max-width: 767px) {
      .header__navigation {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-left: 0; } }
    .header__navigation__container {
      display: block; }
      @media screen and (max-width: 767px) {
        .header__navigation__container {
          display: none; } }
  .header__menu-button {
    display: none;
    position: relative;
    z-index: 10;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
    @media screen and (max-width: 767px) {
      .header__menu-button {
        display: block; } }
    .header__menu-button span {
      display: block;
      position: absolute;
      height: 6px;
      width: 100%;
      background: linear-gradient(79.73deg, #15baf2 5%, #6283fe 45%, #b559fc 70%, #fe44b3 100%);
      border-radius: 9px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out; }
    .header__menu-button span:nth-child(1) {
      top: 2px;
      -webkit-transform-origin: left center;
              transform-origin: left center; }
    .header__menu-button span:nth-child(2) {
      top: 17px;
      -webkit-transform-origin: left center;
              transform-origin: left center; }
    .header__menu-button span:nth-child(3) {
      top: 32px;
      -webkit-transform-origin: left center;
              transform-origin: left center; }
    .header__menu-button.is-open span:nth-child(1) {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      top: 3px;
      left: 6px; }
    .header__menu-button.is-open span:nth-child(2) {
      width: 0%;
      opacity: 0; }
    .header__menu-button.is-open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      top: 32px;
      left: 6px; }
    .header__menu-button.is-open {
      position: fixed;
      top: 20px;
      right: 20px; }
  .header__menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 40px 40px;
    background-color: #4a4a4a;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.16);
    z-index: 3; }
    @media screen and (max-width: 767px) {
      .header__menu-container {
        display: block;
        -webkit-transform: translateX(120%);
                transform: translateX(120%); } }
  .header__menu-container.is-open {
    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; }

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -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: 400;
  font-size: 14px;
  line-height: 12px; }
  @media screen and (max-width: 1023px) {
    .navigation__list {
      margin: 0;
      font-size: 12px;
      line-height: 14px; } }
  @media screen and (max-width: 767px) {
    .navigation__list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      font-size: 18px; } }

.navigation__item {
  white-space: nowrap; }
  .navigation__item:not(:last-child) {
    margin-right: 20px; }
    @media screen and (max-width: 767px) {
      .navigation__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px; } }

.navigation__link {
  position: relative;
  color: var(--text);
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out; }
  .navigation__link:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    border: 1px solid var(--section__line);
    border-radius: 6px;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out; }
  .navigation__link.active {
    color: var(--footer__button);
    -webkit-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out; }
    .navigation__link.active:after {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transition: -webkit-transform 0.5s ease-in-out;
      transition: -webkit-transform 0.5s ease-in-out;
      transition: transform 0.5s ease-in-out;
      transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out; }
  .navigation__link:hover {
    color: var(--footer__button);
    -webkit-transition: color 0.35s ease-in-out;
    transition: color 0.35s ease-in-out; }
    .navigation__link:hover:after {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transition: -webkit-transform 0.35s ease-in-out;
      transition: -webkit-transform 0.35s ease-in-out;
      transition: transform 0.35s ease-in-out;
      transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out; }

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 8px; }
  @media screen and (max-width: 767px) {
    .header__buttons {
      -ms-flex-item-align: center;
          align-self: center;
      margin-left: -80px; } }
  @media screen and (max-width: 500px) {
    .header__buttons {
      margin-left: -40px; } }
  @media screen and (max-width: 360px) {
    .header__buttons {
      margin-left: -20px; } }

.hero {
  margin: 100px auto 80px; }
  @media screen and (max-width: 1023px) {
    .hero {
      margin: 60px auto 60px; } }
  @media screen and (max-width: 767px) {
    .hero {
      margin: 50px auto 30px; } }
  .hero__title {
    margin-bottom: 85px;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    text-align: center; }
    @media screen and (max-width: 1023px) {
      .hero__title {
        font-size: 24px;
        margin-bottom: 50px; } }
    @media screen and (max-width: 767px) {
      .hero__title {
        margin-bottom: 30px; } }
  .hero__animation {
    margin: 0 auto; }
  .hero__animation__container {
    position: relative;
    width: 800px;
    height: 150px;
    margin: 0 auto;
    font-weight: 900;
    font-size: 140px;
    line-height: 96px; }
    @media screen and (max-width: 1200px) {
      .hero__animation__container {
        font-size: 110px;
        line-height: 82px; } }
    @media screen and (max-width: 1023px) {
      .hero__animation__container {
        width: 600px;
        height: 100px;
        font-size: 102px;
        line-height: 74px; } }
    @media screen and (max-width: 767px) {
      .hero__animation__container {
        width: 300px;
        height: 60px;
        font-size: 48px;
        line-height: 36px; } }
    @media screen and (max-width: 360px) {
      .hero__animation__container {
        width: 300px;
        height: 60px;
        font-size: 42px;
        line-height: 36px; } }
  .hero__animation__text {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    text-transform: none;
    opacity: 0; }
  .hero__line {
    width: 55%;
    height: 45px;
    margin: 0 auto;
    background-image: url(../images/line.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    @media screen and (min-device-pixel-ratio: 2), screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
      .hero__line {
        background-image: url(../images/line2x.png); } }
  .hero__container {
    position: relative;
    height: 700px;
    width: 106%;
    margin-left: -3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (min-width: 1200px) {
      .hero__container {
        height: 800px; } }
    @media screen and (max-width: 1023px) {
      .hero__container {
        height: 600px; } }
    @media screen and (max-width: 767px) {
      .hero__container {
        width: 100%;
        margin-left: 0;
        height: 300px; } }
    .hero__container__image {
      height: 100%;
      width: 100%;
      background-image: url(../images/Earth.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain; }
      @media screen and (min-device-pixel-ratio: 2), screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
        .hero__container__image {
          background-image: url(../images/Earth2x.png); } }
    .hero__container__overlay {
      display: none;
      position: absolute;
      top: 44%;
      left: 44%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.9);
      -webkit-filter: blur(40px);
              filter: blur(40px);
      z-index: 0; }
      @media screen and (max-width: 767px) {
        .hero__container__overlay {
          display: block; } }
    .hero__container__text {
      position: absolute;
      left: 57%;
      top: 17%;
      display: block;
      padding-right: 10%;
      font-weight: 700;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.055em;
      z-index: 1; }
      @media screen and (min-width: 1200px) {
        .hero__container__text {
          font-size: 29px;
          line-height: 37px; } }
      @media screen and (max-width: 1023px) {
        .hero__container__text {
          left: 60%;
          font-size: 22px;
          line-height: 32px;
          font-weight: 700;
          padding-right: 0;
          text-align: center; } }
      @media screen and (max-width: 767px) {
        .hero__container__text {
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          font-size: 16px;
          line-height: 24px;
          width: 100%; } }
    .hero__container__text > p {
      margin-bottom: 40px; }

.features {
  margin: 0 auto 30px;
  text-align: center; }
  .features__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-bottom: 90px;
    text-align: start; }
    @media screen and (max-width: 1023px) {
      .features__list {
        margin-bottom: 40px; } }
    @media screen and (max-width: 767px) {
      .features__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .features__item {
    width: 45%;
    padding: 30px 0;
    opacity: 0; }
    @media screen and (max-width: 1023px) {
      .features__item {
        padding: 20px 0; } }
    @media screen and (max-width: 767px) {
      .features__item {
        width: 100%;
        padding: 20px 10px;
        margin-bottom: 15px; } }
    .features__item:not(:last-child) > div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 20px; }
    .features__item--digital {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 60%;
      margin: 0 auto; }
      @media screen and (max-width: 1023px) {
        .features__item--digital {
          width: 70%; } }
      @media screen and (max-width: 767px) {
        .features__item--digital {
          width: 100%; } }
      .features__item--digital div:last-child {
        width: 65%; }
        @media screen and (max-width: 1023px) {
          .features__item--digital div:last-child {
            width: 75%; } }
        @media screen and (max-width: 767px) {
          .features__item--digital div:last-child {
            width: 100%; } }
  .features__image {
    width: 130px;
    height: 150px;
    margin-right: 27px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    @media screen and (max-width: 1023px) {
      .features__image {
        width: 100px;
        height: 120px; } }
    @media screen and (max-width: 767px) {
      .features__image {
        display: none; } }
    .features__image--design {
      background-image: url(../images/design.svg); }
    .features__image--develop {
      background-image: url(../images/develop.svg); }
    .features__image--smm {
      background-image: url(../images/smm.svg); }
    .features__image--marketing {
      background-image: url(../images/marketing.svg); }
    .features__image--digital {
      background-image: url(../images/digital.svg); }
  .features__title {
    font-weight: 900;
    font-size: 32px;
    line-height: 39px;
    color: var(--feature__title); }
    @media screen and (max-width: 1023px) {
      .features__title {
        font-size: 26px;
        line-height: 32px; } }
    @media screen and (max-width: 767px) {
      .features__title {
        text-align: center;
        width: 100%; } }
    .features__title--digital {
      margin-bottom: 23px; }
  .features__text {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-transform: none; }
    @media screen and (max-width: 1023px) {
      .features__text {
        font-size: 24px;
        line-height: 28px; } }
    @media screen and (max-width: 767px) {
      .features__text {
        text-align: center; } }
  .features__line {
    display: inline-block;
    width: 30%;
    border-bottom: 3px solid var(--section__line); }

.about {
  margin-bottom: 75px;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: none; }
  @media screen and (max-width: 1023px) {
    .about {
      margin-bottom: 60px; } }
  @media screen and (max-width: 767px) {
    .about {
      margin-bottom: 40px;
      font-size: 16px;
      line-height: 20px; } }
  .about__container {
    width: 75%;
    padding: 30px 30px 60px;
    border-left: 3px solid var(--feature__title);
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
    opacity: 0; }
    @media screen and (max-width: 1023px) {
      .about__container {
        padding: 20px 20px 40px; } }
    @media screen and (max-width: 767px) {
      .about__container {
        width: 80%; } }
    .about__container__text {
      margin-bottom: 30px;
      width: 75%;
      -webkit-transform: translateX(-120%);
              transform: translateX(-120%);
      opacity: 0; }
      @media screen and (max-width: 767px) {
        .about__container__text {
          width: 80%; } }
    .about__container__text--reverse {
      text-align: end;
      width: 75%;
      margin-left: auto;
      -webkit-transform: translateX(120%);
              transform: translateX(120%);
      opacity: 0; }
      @media screen and (max-width: 767px) {
        .about__container__text--reverse {
          width: 80%; } }
    .about__container__text--withLine {
      margin-bottom: 50px;
      padding-right: 16px;
      border-right: 3px solid var(--about__line); }

.proud {
  position: relative;
  width: 100%;
  margin-bottom: 15px; }
  .proud__title {
    font-style: italic;
    font-weight: 800;
    font-size: 64px;
    line-height: 82px;
    text-align: center;
    text-transform: none;
    margin-bottom: 20px; }
    @media screen and (max-width: 1023px) {
      .proud__title {
        font-size: 52px;
        line-height: 62px; } }
    @media screen and (max-width: 767px) {
      .proud__title {
        font-weight: 700;
        font-size: 36px;
        line-height: 48px;
        padding: 20px 10px 0; } }
  .proud__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .proud__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .proud__contentBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 30px; }
    @media screen and (max-width: 1400px) {
      .proud__contentBlock {
        padding: 0 15px; } }
    @media screen and (max-width: 1023px) {
      .proud__contentBlock {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media screen and (max-width: 767px) {
      .proud__contentBlock {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-bottom: 20px; } }
  .proud__amount {
    font-style: italic;
    font-weight: 700;
    font-size: 64px;
    line-height: 82px;
    margin-right: 11px; }
    @media screen and (max-width: 1400px) {
      .proud__amount {
        font-size: 54px; } }
    @media screen and (max-width: 1023px) {
      .proud__amount {
        font-size: 48px;
        line-height: 62px;
        margin-right: 0; } }
    @media screen and (max-width: 767px) {
      .proud__amount {
        font-size: 38px;
        line-height: 54px;
        margin-right: 20px; } }
  .proud__discription {
    font-style: italic;
    font-weight: 700;
    font-size: 29px;
    line-height: 25px;
    letter-spacing: -0.055em;
    text-transform: lowercase; }
    @media screen and (max-width: 1400px) {
      .proud__discription {
        font-size: 24px; } }
    @media screen and (max-width: 1023px) {
      .proud__discription {
        font-size: 22px;
        text-align: center; } }
  .proud__line {
    display: inline-block;
    width: 24%;
    height: 10px;
    background: linear-gradient(79.73deg, #15baf2 5%, #6283fe 45%, #b559fc 70%, #fe44b3 100%); }
    @media screen and (max-width: 767px) {
      .proud__line {
        width: 75%;
        height: 4px; } }
    .proud__line--left {
      position: static;
      margin-right: 15px; }
      @media screen and (max-width: 767px) {
        .proud__line--left {
          position: absolute;
          top: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%); } }
    .proud__line--right {
      margin-left: 15px; }
      @media screen and (max-width: 767px) {
        .proud__line--right {
          margin-right: 0; } }

.contact {
  position: relative;
  margin-bottom: 40px; }
  @media screen and (max-width: 767px) {
    .contact {
      overflow: hidden; } }
  .contact__imageContainer {
    position: relative;
    top: 0;
    left: 80px;
    width: 645px;
    height: 592px;
    margin: 0 auto;
    background-image: url(../images/planet.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    @media screen and (max-width: 1023px) {
      .contact__imageContainer {
        left: 0; } }
    @media screen and (max-width: 767px) {
      .contact__imageContainer {
        width: 360px;
        height: 420px; } }
    @media screen and (max-width: 360px) {
      .contact__imageContainer {
        width: 320px;
        height: 420px; } }
    @media screen and (min-device-pixel-ratio: 2), screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
      .contact__imageContainer {
        background-image: url(../images/planet2x.png); } }
  .contact__title {
    position: absolute;
    top: 25%;
    left: -20%;
    width: 800px;
    font-weight: 600;
    font-size: 40px;
    line-height: 41px;
    text-align: center; }
    @media screen and (max-width: 1023px) {
      .contact__title {
        font-size: 34px;
        line-height: 38px;
        font-weight: 700;
        width: 720px;
        left: -5%; } }
    @media screen and (max-width: 767px) {
      .contact__title {
        font-size: 26px;
        line-height: 28px;
        font-weight: 700;
        width: 320px;
        left: 48%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); } }
  .contact__phoneContainer {
    position: absolute;
    top: 37%;
    left: -33%;
    width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media screen and (max-width: 1400px) {
      .contact__phoneContainer {
        width: 900px; } }
    @media screen and (max-width: 1023px) {
      .contact__phoneContainer {
        width: 680px;
        left: 0; } }
    @media screen and (max-width: 767px) {
      .contact__phoneContainer {
        top: 33%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 360px;
        margin-left: -10px; } }
    @media screen and (max-width: 360px) {
      .contact__phoneContainer {
        width: 320px; } }
  .contact__phoneImage {
    position: relative;
    width: 400px;
    height: 71px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/phoneNumber.png); }
    @media screen and (max-width: 1400px) {
      .contact__phoneImage {
        width: 350px; } }
    @media screen and (max-width: 1023px) {
      .contact__phoneImage {
        width: 300px; } }
    @media screen and (max-width: 767px) {
      .contact__phoneImage {
        margin: 0 auto; } }
    @media screen and (max-width: 360px) {
      .contact__phoneImage {
        width: 260px; } }
    @media screen and (min-device-pixel-ratio: 2), screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
      .contact__phoneImage {
        background-image: url(../images/phoneNumber2x.png); } }
  .contact__phoneNumber {
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: -0.065em;
    color: var(--text);
    text-shadow: 1px 1px #000; }
    @media screen and (max-width: 1400px) {
      .contact__phoneNumber {
        font-size: 30px;
        line-height: 38px; } }
    @media screen and (max-width: 1023px) {
      .contact__phoneNumber {
        font-size: 24px;
        line-height: 30px; } }
    @media screen and (max-width: 360px) {
      .contact__phoneNumber {
        font-size: 19px;
        line-height: 24px; } }
  .contact__text {
    position: absolute;
    top: 58%;
    left: -5px;
    width: 526px;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    text-align: center; }
    @media screen and (max-width: 1023px) {
      .contact__text {
        font-size: 34px;
        font-weight: 700;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); } }
    @media screen and (max-width: 767px) {
      .contact__text {
        font-size: 26px;
        line-height: 28px;
        top: 68%;
        width: 360px; } }
    @media screen and (max-width: 360px) {
      .contact__text {
        width: 310px;
        font-size: 22px;
        line-height: 22px; } }
  .contact__button {
    position: absolute;
    bottom: 30%;
    left: 36px;
    padding: 20px 72px;
    font-weight: 600;
    font-size: 25px;
    line-height: 32px;
    background: var(--form__button);
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    border-radius: 50px;
    text-transform: uppercase;
    text-shadow: 1px 1px #000; }
    .contact__button:before {
      content: "";
      background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
      position: absolute;
      top: -3px;
      left: -3px;
      background-size: 400%;
      z-index: -1;
      -webkit-filter: blur(5px);
              filter: blur(5px);
      width: calc(100% + 6px);
      height: calc(100% + 6px);
      -webkit-animation: hovering2 20s linear infinite;
              animation: hovering2 20s linear infinite;
      opacity: 0;
      -webkit-transition: opacity 0.5s ease-in-out;
      transition: opacity 0.5s ease-in-out;
      border-radius: 50px; }
    .contact__button:active {
      color: #000; }
    .contact__button:active:after {
      background: transparent; }
    .contact__button:hover:before {
      opacity: 1;
      -webkit-transition: opacity 0.5s ease-in-out;
      transition: opacity 0.5s ease-in-out; }
    .contact__button:after {
      z-index: -1;
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: var(--form__button), #d9d9d9;
      border-radius: 50px;
      left: 0;
      top: 0; }

@-webkit-keyframes hovering2 {
  0% {
    background-position: 0 0; }
  50% {
    background-position: 400% 0; }
  100% {
    background-position: 0 0; } }

@keyframes hovering2 {
  0% {
    background-position: 0 0; }
  50% {
    background-position: 400% 0; }
  100% {
    background-position: 0 0; } }
    @media screen and (max-width: 1023px) {
      .contact__button {
        font-size: 22px;
        padding: 20px 35px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); } }
    @media screen and (max-width: 767px) {
      .contact__button {
        bottom: 20%;
        font-size: 13px;
        line-height: 18px;
        padding: 15px 15px; } }
    @media screen and (max-width: 360px) {
      .contact__button {
        font-size: 12px;
        line-height: 16px;
        padding: 10px 10px; } }
  .contact__line {
    display: block;
    width: 504px;
    margin: 0 auto;
    border: 3px solid var(--section__line); }
    @media screen and (max-width: 767px) {
      .contact__line {
        width: 70%;
        border-radius: 6px; } }

.comments {
  margin-bottom: 30px; }
  .comments__title {
    font-weight: 800;
    font-size: 64px;
    line-height: 82px;
    text-align: center;
    letter-spacing: -0.065em;
    margin-bottom: 32px; }
    @media screen and (max-width: 1400px) {
      .comments__title {
        font-size: 60px;
        line-height: 76px; } }
    @media screen and (max-width: 1023px) {
      .comments__title {
        font-size: 48px;
        line-height: 58px; } }
    @media screen and (max-width: 767px) {
      .comments__title {
        font-size: 28px;
        line-height: 32px; } }
  .comments__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media screen and (max-width: 767px) {
      .comments__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .comments__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 47%; }
    @media screen and (max-width: 767px) {
      .comments__list {
        width: 100%; } }
  .comments__item {
    position: relative;
    padding: 60px 70px 20px;
    width: 100%;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.055em; }
    @media screen and (max-width: 1400px) {
      .comments__item {
        padding: 50px 60px 20px;
        font-size: 22px;
        line-height: 26px; } }
    @media screen and (max-width: 1023px) {
      .comments__item {
        padding: 30px 40px;
        font-size: 20px;
        line-height: 24px; } }
    @media screen and (max-width: 767px) {
      .comments__item {
        font-size: 16px;
        line-height: 20px; } }
    .comments__item__text {
      position: relative;
      text-transform: none;
      margin-bottom: 10px; }
      .comments__item__text::before {
        content: "";
        position: absolute;
        top: -66px;
        left: -71px;
        width: 71px;
        height: 66px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url(../images/quotesStart.svg); }
        @media screen and (max-width: 1400px) {
          .comments__item__text::before {
            top: -60px;
            left: -65px;
            width: 65px;
            height: 60px; } }
        @media screen and (max-width: 1023px) {
          .comments__item__text::before {
            top: -35px;
            left: -40px;
            width: 40px;
            height: 35px; } }
        @media screen and (max-width: 767px) {
          .comments__item__text::before {
            top: -25px;
            left: -30px;
            width: 30px;
            height: 25px; } }
      .comments__item__text::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: -71px;
        width: 71px;
        height: 66px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url(../images/quotesEnd.svg); }
        @media screen and (max-width: 1400px) {
          .comments__item__text::after {
            right: -65px;
            width: 65px;
            height: 60px; } }
        @media screen and (max-width: 1023px) {
          .comments__item__text::after {
            right: -40px;
            width: 40px;
            height: 35px; } }
        @media screen and (max-width: 767px) {
          .comments__item__text::after {
            right: -35px;
            width: 30px;
            height: 25px; } }
    .comments__item__author {
      text-align: end;
      padding-right: 10px; }

.feedback {
  margin-bottom: 86px; }
  @media screen and (max-width: 1023px) {
    .feedback {
      margin-bottom: 40px; } }
  .feedback__title {
    font-weight: 800;
    font-size: 64px;
    line-height: 82px;
    text-align: center;
    letter-spacing: -0.065em;
    margin-bottom: 20px; }
    @media screen and (max-width: 1023px) {
      .feedback__title {
        font-size: 48px;
        line-height: 64px; } }
    @media screen and (max-width: 767px) {
      .feedback__title {
        font-size: 28px;
        line-height: 32px; } }
  .feedback__form {
    width: 100%;
    text-align: end; }
    @media screen and (max-width: 767px) {
      .feedback__form {
        text-align: center; } }
    .feedback__form__container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 32px; }
      @media screen and (max-width: 767px) {
        .feedback__form__container {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      .feedback__form__container label {
        width: 31%;
        text-align: left; }
        .feedback__form__container label > span {
          font-size: 12px;
          color: red;
          opacity: 0; }
          .feedback__form__container label > span.invalid {
            opacity: 1; }
        @media screen and (max-width: 767px) {
          .feedback__form__container label {
            width: 100%;
            margin-bottom: 15px; } }
      .feedback__form__container ~ label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .feedback__form__container ~ label > span {
          text-align: left;
          font-size: 12px;
          color: red;
          opacity: 0; }
          .feedback__form__container ~ label > span.invalid {
            opacity: 1; }
  .feedback__input {
    width: 100%;
    padding: 19px 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    color: var(--text);
    background: var(--form__background);
    border-radius: 16px;
    border: 2px solid var(--background); }
    .feedback__input.invalid {
      border: 2px solid red; }
    @media screen and (max-width: 767px) {
      .feedback__input {
        padding: 15px 10px;
        font-size: 13px;
        line-height: 16px; } }
    .feedback__input::-webkit-input-placeholder {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      opacity: 0.6; }
    .feedback__input::-moz-placeholder {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      opacity: 0.6; }
    .feedback__input::-ms-input-placeholder {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      opacity: 0.6; }
    .feedback__input::placeholder {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      opacity: 0.6; }
  .feedback__textarea {
    width: 100%;
    padding: 22px 15px;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    color: var(--text);
    background: var(--form__background);
    border-radius: 16px;
    border: 2px solid var(--background);
    border: none;
    resize: none; }
    .feedback__textarea.invalid {
      border: 2px solid red; }
    @media screen and (max-width: 1023px) {
      .feedback__textarea {
        margin-bottom: 5px; } }
    @media screen and (max-width: 767px) {
      .feedback__textarea {
        padding: 15px 10px;
        font-size: 13px;
        line-height: 16px;
        height: 150px; } }
    .feedback__textarea::-webkit-input-placeholder {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      opacity: 0.6; }
    .feedback__textarea::-moz-placeholder {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      opacity: 0.6; }
    .feedback__textarea::-ms-input-placeholder {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      opacity: 0.6; }
    .feedback__textarea::placeholder {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      opacity: 0.6; }
  .feedback__button {
    padding: 20px 75px;
    margin-top: 75px;
    font-weight: 800;
    font-size: 25px;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--text);
    background: var(--form__button), #d9d9d9;
    border-radius: 50px;
    position: relative;
    z-index: 0; }
    .feedback__button:before {
      content: "";
      background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
      position: absolute;
      top: -3px;
      left: -3px;
      background-size: 400%;
      z-index: -1;
      -webkit-filter: blur(5px);
              filter: blur(5px);
      width: calc(100% + 6px);
      height: calc(100% + 6px);
      -webkit-animation: hovering 20s linear infinite;
              animation: hovering 20s linear infinite;
      opacity: 0;
      -webkit-transition: opacity 0.5s ease-in-out;
      transition: opacity 0.5s ease-in-out;
      border-radius: 50px; }
    .feedback__button:active {
      color: #000; }
    .feedback__button:active:after {
      background: transparent; }
    .feedback__button:hover:before {
      opacity: 1;
      -webkit-transition: opacity 0.5s ease-in-out;
      transition: opacity 0.5s ease-in-out; }
    .feedback__button:after {
      z-index: -1;
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: var(--form__button), #d9d9d9;
      border-radius: 50px;
      left: 0;
      top: 0; }

@-webkit-keyframes hovering {
  0% {
    background-position: 0 0; }
  50% {
    background-position: 400% 0; }
  100% {
    background-position: 0 0; } }

@keyframes hovering {
  0% {
    background-position: 0 0; }
  50% {
    background-position: 400% 0; }
  100% {
    background-position: 0 0; } }
    @media screen and (max-width: 1023px) {
      .feedback__button {
        font-size: 22px;
        font-weight: 700;
        line-height: 28px;
        padding: 20px 50px;
        margin-top: 40px; } }
    @media screen and (max-width: 767px) {
      .feedback__button {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        padding: 15px 20px; } }

.footer {
  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;
  width: 100%;
  padding: 68px 0 39px;
  background: var(--footer__background); }
  @media screen and (max-width: 1023px) {
    .footer {
      padding: 40px 0 25px; } }
  @media screen and (max-width: 767px) {
    .footer {
      padding: 20px 0; } }
  .footer__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px; }
    @media screen and (max-width: 767px) {
      .footer__navigation {
        margin-bottom: 20px; } }
  .footer__navItem {
    padding-bottom: 2px;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: var(--footer__button);
    border-bottom: 1px solid var(--footer__background); }
    @media screen and (max-width: 1023px) {
      .footer__navItem {
        font-size: 16px;
        line-height: 16px; } }
    @media screen and (max-width: 767px) {
      .footer__navItem {
        font-size: 10px;
        line-height: 16px; } }
    .footer__navItem:not(:last-child) {
      margin-right: 65px; }
      @media screen and (max-width: 1023px) {
        .footer__navItem:not(:last-child) {
          margin-right: 40px; } }
      @media screen and (max-width: 767px) {
        .footer__navItem:not(:last-child) {
          margin-right: 10px; } }
  .footer__logo {
    width: 182px;
    height: 66px;
    margin-bottom: 30px;
    background-image: url(../images/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    @media screen and (max-width: 767px) {
      .footer__logo {
        margin-bottom: 20px; } }
    @media screen and (min-device-pixel-ratio: 2), screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
      .footer__logo {
        background-image: url(../images/logo2x.png); } }
  .footer__copyrightContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--footer__text);
    width: 100%;
    padding: 0 50px;
    text-transform: none; }
    @media screen and (min-width: 1240px) {
      .footer__copyrightContainer {
        width: 1210px; } }
    @media screen and (max-width: 1023px) {
      .footer__copyrightContainer {
        font-size: 16px;
        line-height: 20px; } }
    @media screen and (max-width: 767px) {
      .footer__copyrightContainer {
        padding: 0 10px;
        font-size: 12px;
        line-height: 14px; } }
  .footer__copyrightText {
    text-align: center;
    width: 100%; }
    .footer__copyrightText span {
      display: block; }

.langCheck {
  top: 0;
  min-width: 70px; }

@media (min-width: 993px) {
  .langCheck {
    display: block;
    position: relative;
    z-index: 1;
    min-width: 79px; } }

.langCheck__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border-radius: 10px;
  position: relative;
  z-index: 1; }

.langCheck__wrapper::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: transparent;
  z-index: 1; }

@media (min-width: 767px) {
  .langCheck__wrapper::after {
    width: 0; } }

.langCheck__wrapper:hover {
  -webkit-animation-name: bgShow;
  animation-name: bgShow;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

@-webkit-keyframes bgShow {
  0% {
    background-color: transparent; }
  100% {
    background-color: var(--select__background); } }

@keyframes bgShow {
  0% {
    background-color: transparent; }
  100% {
    background-color: var(--select__background); } }

.langCheck__wrapper:hover::after {
  -webkit-animation-name: bgShow2;
  animation-name: bgShow2;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

@-webkit-keyframes bgShow2 {
  0% {
    background-color: var(--select__background); }
  100% {
    background-color: var(--footer__text); } }

@keyframes bgShow2 {
  0% {
    background-color: var(--select__background); }
  100% {
    background-color: var(--footer__text); } }

.langCheck__wrapper:hover .langCheck__item.selected {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  opacity: 1; }

.langCheck__wrapper:hover .langCheck__item:not(.selected) {
  position: absolute;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-animation-name: showItem;
  animation-name: showItem;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1;
  width: 100%;
  background-color: var(--select__background); }

@media (min-width: 767px) {
  .langCheck__wrapper:hover .langCheck__item:not(.selected) {
    -webkit-animation-name: showItemDesc;
    animation-name: showItemDesc;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; } }

.langCheck__wrapper:hover .langCheck__item:not(.selected):hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  background-color: var(--select__background); }

.langCheck__wrapper:hover .langCheck__item:not(.selected):hover .langContext {
  color: #000; }

@-webkit-keyframes showItem {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes showItem {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes showItemDesc {
  0% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes showItemDesc {
  0% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

.langCheck__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  opacity: 0.5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.langCheck__item:hover {
  opacity: 1 !important; }

.langCheck__item .icon {
  margin: 3px 6px 3px 6px;
  width: 18px;
  border-radius: 50%;
  height: 18px;
  border: 2px solid;
  background-size: 29px; }

@media (min-width: 767px) {
  .langCheck__item .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.langCheck__item .langContext {
  display: inline-block;
  color: #fff;
  font-style: normal;
  font-family: Arial, serif;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  -webkit-transition: color 0.5s linear;
  transition: color 0.5s linear; }

.langCheck__item input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0; }

.langCheck__item.selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  height: 27px;
  width: 79px;
  overflow: hidden;
  opacity: 1;
  -webkit-box-shadow: inset 0px 2.40257px 6.00642px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 2.40257px 6.00642px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: var(--select__background);
  background: var(--select__background); }

.langCheck__item.selected::before {
  content: "";
  background-repeat: no-repeat;
  -webkit-transform: translate(22px, 5px);
  transform: translate(22px, 5px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

@media (min-width: 320px) {
  .langCheck__item.selected::before {
    content: "";
    position: absolute;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.langCheck__item.selected .icon {
  width: 18px;
  height: 18px;
  background-size: 26px;
  margin-left: 6px;
  margin-right: 12px;
  opacity: 1; }

.langCheck__item.selected .langContext {
  font-size: 12px;
  margin-left: -8px; }

.langCheck__item.selected .arrow {
  width: 25px;
  height: 27px;
  background-color: var(--select__button);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1; }

.langCheck__item.selected .arrow::after,
.langCheck__item.selected .arrow::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #373737;
  height: 2px;
  width: 7px;
  border-radius: 50px;
  position: absolute;
  top: 50%; }

@media (min-width: 767px) {
  .langCheck__item.selected .arrow::after,
  .langCheck__item.selected .arrow::before {
    width: 8px; } }

.langCheck__item.selected .arrow::before {
  left: 28%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

@media (min-width: 767px) {
  .langCheck__item.selected .arrow::before {
    left: 24%; } }

.langCheck__item.selected .arrow::after {
  right: 28%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); }

@media (min-width: 767px) {
  .langCheck__item.selected .arrow::after {
    right: 24%; } }

.langCheck__item.active {
  display: none; }

.langCheck__item:not(.selected) {
  position: absolute;
  top: 27px;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  opacity: 0;
  border-radius: 6px; }

.langCheck__item > a.langContext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: #fff; }

.langCheck__item > a.langContext .icon {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1; }

.icon {
  width: 12px;
  height: 12px; }

.fflag {
  background-image: url(../images/flagSprite42.png);
  background-repeat: no-repeat;
  background-size: 100% 49494%;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.fflag-en {
  background-position: center 24.394%; }

.fflag-ru {
  background-position: center 41.9083%; }

.fflag-ua {
  background-position: center 43.9036%; }

.fflag-gb {
  background-position: center 44.1253%; }

.fflag-be.ff-round,
.fflag-ci.ff-round,
.fflag-fr.ff-round,
.fflag-gn.ff-round,
.fflag-ie.ff-round,
.fflag-it.ff-round,
.fflag-ml.ff-round,
.fflag-ng.ff-round,
.fflag-ro.ff-round,
.fflag-td.ff-round {
  background-size: 100% 50000%; }

*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0; }

html,
body {
  height: 100%;
  width: 100%; }

body {
  text-transform: uppercase;
  color: var(--text);
  background-color: var(--background); }

img {
  display: block; }

button {
  cursor: pointer;
  text-shadow: 1px 1px #000; }

ul {
  list-style: none; }

a {
  text-decoration: none;
  cursor: pointer; }

header,
footer {
  font-family: "Open Sans", sans-serif;
  text-align: center; }

main {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  overflow: hidden; }

.container {
  width: 100%;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden; }
  @media screen and (min-width: 1240px) {
    .container {
      width: 1210px; } }
  @media screen and (max-width: 1023px) {
    .container {
      padding: 0 30px; } }
  @media screen and (max-width: 767px) {
    .container {
      padding: 0 10px; } }

.visually-hidden {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  -webkit-clip-path: none;
          clip-path: none;
  color: var(--background);
  background-color: var(--background); }

/*# sourceMappingURL=styles.min.css.map?8254bd062284474cafce3c9a5c89a7c7*/