@charset "UTF-8";
html.has-scroll-smooth {
  overflow: hidden;
}
html.has-scroll-dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}
[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  opacity: 0;
}
.c-scrollbar:hover {
  -webkit-transform: scaleX(1.45);
          transform: scaleX(1.45);
}
.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}
[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
[data-scroll-direction=horizontal] .c-scrollbar:hover {
  -webkit-transform: scaleY(1.3);
          transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}
.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-regular.woff2") format("woff2"), url("../fonts/poppins-regular.woff") format("woff"), url("../fonts/poppins-regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-medium.woff2") format("woff2"), url("../fonts/poppins-medium.woff") format("woff"), url("../fonts/poppins-medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-semibold.woff2") format("woff2"), url("../fonts/poppins-semibold.woff") format("woff"), url("../fonts/poppins-semibold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
/* stylelint-disable-line at-rule-no-unknown */
.page {
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
}
.page * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.page body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}
.page__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 0 15px;
}
.page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.page__footer-wrapper {
  width: 100%;
}

@media screen and (min-width: 576px) {
  .page__inner {
    padding: 0 32px;
  }
}
@media screen and (min-width: 768px) {
  .page__inner {
    padding: 0 39px;
  }
}
@media screen and (min-width: 992px) {
  .page__inner {
    padding: 0 29px;
  }
}
@media screen and (min-width: 1600px) {
  .page__inner {
    padding: 0 127px;
  }
}
@media screen and (min-width: 1920px) {
  .page__inner {
    width: 1920px;
    margin: 0 auto;
  }
}
.popup {
  display: none;
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 34, 47, 0.75);
  overflow: hidden;
}
.popup__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 300px;
  max-width: calc(100vw - 20px);
  min-height: 100px;
  max-height: calc(100vh - 20px);
  overflow: hidden;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: fadeIn 0.25s ease-in;
          animation: fadeIn 0.25s ease-in;
}
.popup__inner {
  scrollbar-color: rgba(0, 0, 0, 0.4) #d1d1d1;
  scrollbar-width: thin;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  margin: 90px 50px 75px 75px;
  padding-right: 20px;
}
.popup__inner::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #d1d1d1;
  border-radius: 3px;
}
.popup__inner::-webkit-scrollbar-thumb {
  border-radius: 3px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
}
.popup__close {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  /* stylelint-disable-next-line plugin/selector-bem-pattern */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
.popup__close:hover {
  opacity: 0.65;
}

@media screen and (max-width: calc(1600px - 1px)) {
  .popup__inner {
    scrollbar-color: rgba(0, 0, 0, 0.4) #d1d1d1;
    scrollbar-width: thin;
    /* stylelint-disable-next-line */
    /* stylelint-disable-next-line */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    margin: 90px 50px 75px 75px;
    padding-right: 20px;
  }
  .popup__inner::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #d1d1d1;
    border-radius: 3px;
  }
  .popup__inner::-webkit-scrollbar-thumb {
    border-radius: 3px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: calc(768px - 1px)) {
  .popup__body {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }
  .popup__inner {
    scrollbar-color: rgba(0, 0, 0, 0.4) #d1d1d1;
    scrollbar-width: thin;
    /* stylelint-disable-next-line */
    /* stylelint-disable-next-line */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    max-width: 100%;
    margin: 20px 10px 25px 25px;
  }
  .popup__inner::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #d1d1d1;
    border-radius: 3px;
  }
  .popup__inner::-webkit-scrollbar-thumb {
    border-radius: 3px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .popup__close {
    top: 25px;
    right: 25px;
  }
}
@-webkit-keyframes flareAnimation {
  /* stylelint-disable-line keyframes-name-pattern */
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes flareAnimation {
  /* stylelint-disable-line keyframes-name-pattern */
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
.loader {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
}
.loader__wrapper {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: fadeIn 2.5s ease-in;
          animation: fadeIn 2.5s ease-in;
}
.loader__logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}
.loader__logo svg {
  width: 100%;
  height: 100%;
}

.up-btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: 50;
  right: 1vw;
  bottom: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: url("../img/up-btn.svg") no-repeat center center/45%, #263238;
  cursor: pointer;
  visibility: hidden;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
}
.up-btn.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  -webkit-animation: fadeInUpBtn 0.5s ease;
          animation: fadeInUpBtn 0.5s ease;
  opacity: 0.35;
}
.up-btn.active:hover {
  opacity: 1;
}
@-webkit-keyframes fadeInUpBtn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    /* stylelint-disable-line property-no-vendor-prefix */
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 0.35;
    -webkit-transform: translate3d(0, 0, 0);
    /* stylelint-disable-line property-no-vendor-prefix */
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBtn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    /* stylelint-disable-line property-no-vendor-prefix */
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 0.35;
    -webkit-transform: translate3d(0, 0, 0);
    /* stylelint-disable-line property-no-vendor-prefix */
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (min-width: 576px) {
  .up-btn {
    right: 3vw;
    width: 54px;
    height: 54px;
    background: url("../img/up-btn.svg") no-repeat center center/50%, #263238;
  }
}
@media screen and (min-width: 768px) {
  .up-btn {
    right: 4vw;
  }
}
@media screen and (min-width: 992px) {
  .up-btn {
    right: 5vw;
    width: 80px;
    height: 80px;
    background: url("../img/up-btn.svg") no-repeat center center/55%, #263238;
  }
}
.btn {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  /* stylelint-disable-next-line plugin/selector-bem-pattern */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  background-color: #263238;
  color: #ffffff;
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.65;
}
.btn:visited {
  color: #ffffff;
}
.btn:active {
  color: #f5f5f5;
}
.btn--lets-talk {
  width: 100%;
  max-width: 330px;
  height: 65px;
  margin-top: 69px;
  border: 2px solid #263238;
  border-radius: 5px;
  background-color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  cursor: pointer;
}
.btn--lets-talk:active {
  color: #000;
}
.btn--home {
  width: 100%;
  height: 60px;
  margin: 35px auto 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.btn--skills {
  width: 178px;
  height: 50px;
  margin-top: 35px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}
.btn--contacts-form-subscribe {
  margin-top: 17px;
  height: 60px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
}
.btn--popup-submit {
  -ms-flex-item-align: center;
      align-self: center;
  min-width: 250px;
  min-height: 50px;
  margin-top: 20px;
  font-weight: 500;
}

@media screen and (min-width: 576px) {
  .btn--lets-talk {
    height: 70px;
    font-size: 22px;
    line-height: 33px;
  }
  .btn--home {
    width: 305px;
    height: 75px;
    margin: 37px auto 96px;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
  }
  .btn--skills {
    -ms-flex-item-align: end;
        align-self: flex-end;
    width: 200px;
    height: 50px;
    margin-top: auto;
    font-weight: 500;
  }
  .btn--contacts-form-subscribe {
    position: absolute;
    top: 0;
    right: 0;
    width: 193px;
    height: 60px;
    margin: 0 0 0 -7px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (min-width: 768px) {
  .btn--lets-talk {
    margin-top: 60px;
    width: 210px;
    height: 60px;
    font-size: 18px;
    line-height: 27px;
  }
  .btn--home {
    width: 236px;
    height: 65px;
    margin: 32px auto 0 0;
  }
  .btn--skills {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 200px;
    max-width: 100%;
    height: 50px;
    font-weight: 500;
  }
  .btn--contacts-form-subscribe {
    position: relative;
    top: unset;
    right: unset;
    width: 145px;
    height: 50px;
    margin: 0;
    border-radius: 5px;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
  }
  .btn--popup-submit {
    min-height: 60px;
    margin-top: 50px;
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .btn--lets-talk {
    width: 160px;
    height: 50px;
    margin: 0 0 0 100px;
    font-size: 18px;
    line-height: 27px;
  }
  .btn--home {
    width: 292px;
    height: 80px;
    margin: 35px auto 0 0;
    font-weight: 300;
    font-size: 24px;
    line-height: 36px;
  }
  .btn--skills {
    width: 196px;
    height: 57px;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
  }
  .btn--contacts-form-subscribe {
    width: 193px;
    min-width: 193px;
    height: 60px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1600px) {
  .btn {
    border-radius: 15px;
  }
  .btn--lets-talk {
    width: 220px;
    height: 70px;
    margin: 0 0 0 110px;
    font-size: 24px;
    line-height: 36px;
  }
  .btn--home {
    width: 100%;
    max-width: 438px;
    height: 118px;
    margin: 60px auto 0 0;
    font-weight: 300;
    font-size: 36px;
    line-height: 54px;
  }
  .btn--skills {
    width: 218px;
    height: 60px;
    font-size: 20px;
    line-height: 30px;
  }
  .btn--contacts-form-subscribe {
    width: 264px;
    min-width: 264px;
    height: 80px;
    font-size: 20px;
    line-height: 30px;
  }
}
.header {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: sticky;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  padding: 36px 0 29px;
}
.header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: calc((100% - 100vw) / 2);
  width: 100vw;
  height: 100%;
  /* stylelint-disable */
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(20%, white), to(white));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, white 20%, white 100%);
  /* stylelint-enable */
}
.header__logo {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  /* stylelint-disable-next-line plugin/selector-bem-pattern */
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: sticky;
  z-index: 105;
  width: 71px;
  height: 36px;
}
.header__logo:hover {
  opacity: 0.65;
}
.header__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header__mobile-burger-btn {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  /* stylelint-disable-next-line plugin/selector-bem-pattern */
  z-index: 1;
  width: 34px;
  height: 19px;
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #ffffff;
  background-image: url("../img/mobile-menu-burger.svg");
  -webkit-transition: background-image 0.35s ease-in;
  transition: background-image 0.35s ease-in;
  cursor: pointer;
}
.header__mobile-burger-btn:hover {
  opacity: 0.65;
}
.header__mobile-burger-btn:hover:not(.header__mobile-burger-btn.active), .header__mobile-burger-btn:active:not(.header__mobile-burger-btn.active) {
  background-image: url("../img/mobile-menu-burger-active.svg");
}

@media screen and (min-width: 576px) {
  .header {
    padding: 39px 0 11px;
  }
  .header__logo {
    width: 89px;
    height: 45px;
  }
  .header__mobile-burger-btn {
    -webkit-transition: opacity 0.25s ease-in;
    transition: opacity 0.25s ease-in;
    /* stylelint-disable-next-line plugin/selector-bem-pattern */
    width: 42px;
    height: 24px;
  }
  .header__mobile-burger-btn:hover {
    opacity: 0.65;
  }
}
@media screen and (min-width: 768px) {
  .header {
    padding: 39px 0;
  }
  .header__mobile-burger-btn {
    -webkit-transition: opacity 0.25s ease-in;
    transition: opacity 0.25s ease-in;
    /* stylelint-disable-next-line plugin/selector-bem-pattern */
    width: 30px;
    height: 17px;
  }
  .header__mobile-burger-btn:hover {
    opacity: 0.65;
  }
}
@media screen and (min-width: 992px) {
  .header {
    padding: 25px 0;
  }
  .header__mobile-burger-btn {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .header {
    padding: 55px 0;
  }
  .header__logo {
    width: 106px;
    height: 54px;
  }
}
.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;
  gap: 15px;
  width: 100%;
  border-top: 1px solid #c4c4c4;
  padding: 26px 0 46px;
}
.footer__logo {
  width: 71px;
  height: 36px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__links-wrapper {
  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-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__link {
  color: #8f95a5;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  text-decoration: none;
}
.footer__link:not(:last-of-type)::after {
  content: "•";
  margin: 0 5px;
}
.footer__link:active {
  color: #f5f5f5;
}
.footer__link:visited {
  color: #8f95a5;
}
.footer__link:hover:not(::after) {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  /* stylelint-disable-next-line plugin/selector-bem-pattern */
}
.footer__link:hover:not(::after):hover {
  opacity: 0.65;
}

@media screen and (min-width: 576px) {
  .footer {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
    padding: 24px 0 26px;
  }
  .footer__logo {
    width: 89px;
    height: 45px;
  }
  .footer__links-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer__link {
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 18px 0 15px;
  }
  .footer__links-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer__link {
    font-size: 13px;
    line-height: 20px;
  }
}
@media screen and (min-width: 992px) {
  .footer {
    padding: 22px 0 24px;
  }
  .footer__link {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1600px) {
  .footer {
    padding: 31px 0 64px;
  }
  .footer__link {
    font-size: 24px;
    line-height: 36px;
  }
}
.main-nav {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0);
}
.main-nav.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-nav__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  padding: 135px 15px 20px;
  background-color: #ffffff;
  overflow-y: auto;
  -webkit-animation: slideInLeft 0.25s ease-in;
          animation: slideInLeft 0.25s ease-in;
}
.main-nav__close-btn {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  /* stylelint-disable-next-line plugin/selector-bem-pattern */
  position: absolute;
  top: 37px;
  right: 7px;
  width: 34px;
  height: 34px;
  border: none;
  background: url("../img/mobile-menu-close.svg") no-repeat center center/auto, rgba(255, 255, 255, 0);
  cursor: pointer;
  -webkit-animation: fadeIn 0.5s ease-in;
          animation: fadeIn 0.5s ease-in;
}
.main-nav__close-btn:hover {
  opacity: 0.65;
}
.main-nav__list {
  position: relative;
  list-style: none;
}
.main-nav__list::before {
  content: "";
  display: block;
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c4c4c4;
}
.main-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 65px;
}
.main-nav__link {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  /* stylelint-disable-next-line plugin/selector-bem-pattern */
  color: #8f95a5;
  font-weight: 500;
  font-size: 22px;
  line-height: 65px;
  text-decoration: none;
}
.main-nav__link:hover {
  opacity: 0.65;
}
.main-nav__link:visited {
  color: #8f95a5;
}

@media screen and (min-width: 576px) {
  .main-nav__close-btn {
    top: 45px;
    right: 23px;
    width: 39px;
    height: 39px;
  }
  .main-nav__wrapper {
    padding: 173px 32px 30px;
  }
}
@media screen and (min-width: 768px) {
  .main-nav {
    background-color: rgba(7, 34, 47, 0.75);
  }
  .main-nav__close-btn {
    right: 39px;
  }
  .main-nav__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 430px;
  }
}
@media screen and (min-width: 992px) {
  .main-nav {
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    -webkit-animation: none;
            animation: none;
  }
  .main-nav__close-btn {
    display: none;
  }
  .main-nav__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    max-width: unset;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
  }
  .main-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2em;
  }
  .main-nav__list::before {
    display: none;
  }
  .main-nav__link {
    color: #263238;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    opacity: 1;
  }
  .main-nav__link:visited {
    color: #263238;
  }
}
@media screen and (min-width: 1600px) {
  .main-nav__link {
    font-size: 20px;
    line-height: 30px;
  }
  .main-nav__link:visited {
    color: #263238;
  }
}
.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home__text-wrapper {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.home__title {
  margin: 16px 0 20px;
  color: #000000;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.home__text {
  color: #8f95a5;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}
.home__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
}

@media screen and (min-width: 576px) {
  .home__title {
    margin: 17px 0 26px;
    font-size: 34px;
    line-height: 45px;
  }
  .home__text {
    color: #8f95a5;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
  }
  .home__img {
    -ms-flex-item-align: center;
        align-self: center;
    width: 424px;
    height: 424px;
  }
}
@media screen and (min-width: 768px) {
  .home {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .home__title {
    position: relative;
    width: 217px;
    margin: 28px 0 25px;
    font-size: 36px;
    line-height: 45px;
    text-align: left;
  }
  .home__title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 5px;
    left: 100%;
    width: 43px;
    height: 47px;
    background: url("../img/title-light.svg") no-repeat center center/contain;
  }
  .home__text {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }
  .home__img {
    -ms-flex-item-align: center;
        align-self: center;
    width: 50%;
    height: auto;
    max-height: calc(50vw - 2 * 32px);
  }
}
@media screen and (min-width: 992px) {
  .home__title {
    width: 290px;
    margin: 55px 0 27px;
    font-size: 48px;
    line-height: 64px;
  }
  .home__title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 34px;
    left: calc(100% + 31px);
    width: 49px;
    height: 54px;
  }
  .home__text {
    width: 80%;
    font-size: 20px;
    line-height: 30px;
  }
  .home__img {
    -ms-flex-item-align: center;
        align-self: center;
    width: 50%;
    height: auto;
    max-height: calc(50vw - 2 * 39px);
  }
}
@media screen and (min-width: 1600px) {
  .home {
    gap: 0 57px;
  }
  .home__title {
    width: 386px;
    margin: 55px 0 40px;
    font-size: 64px;
    line-height: 80px;
  }
  .home__title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 40px;
    left: calc(100% + 66px);
    width: 71px;
    height: 78px;
  }
  .home__text {
    font-size: 24px;
    line-height: 36px;
  }
  .home__img {
    width: 50%;
    height: auto;
    max-height: unset;
  }
}
.skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.skills__title {
  color: #000000;
  font-weight: 600;
  font-size: 24px;
  line-height: 80px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .skills__title {
    font-size: 30px;
    line-height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .skills__title {
    font-size: 36px;
    line-height: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .skills__title {
    font-size: 48px;
    line-height: 80px;
  }
}
.skills__items-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 21px;
}

@media screen and (min-width: 576px) {
  .skills__items-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 34px 30px;
  }
}
@media screen and (min-width: 768px) {
  .skills {
    margin-top: 53px;
  }
  .skills__items-wrapper {
    display: grid;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: repeat(3, minmax(227px, 1fr));
    grid-template-rows: auto minmax(210px, 1fr);
    grid-gap: 7px 10px;
    margin-top: 53px;
  }
}
@media screen and (min-width: 992px) {
  .skills {
    margin-top: 75px;
  }
  .skills__items-wrapper {
    grid-template-columns: repeat(3, minmax(302px, 1fr));
    grid-template-rows: auto minmax(241px, 1fr);
    grid-gap: 13px 21px;
  }
}
@media screen and (min-width: 1600px) {
  .skills {
    margin-top: 103px;
  }
  .skills__items-wrapper {
    grid-template-columns: repeat(3, minmax(435px, 1fr));
    grid-template-rows: auto minmax(343px, 1fr);
    grid-gap: 18px 20px;
    margin-top: 92px;
  }
}
.skills-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  border-radius: 5px;
  padding: 0 16px 45px;
  background-color: #f5f5f5;
}
.skills-item__img {
  -ms-flex-item-align: center;
      align-self: center;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.skills-item__img--speaking {
  width: 213px;
  height: 213px;
  margin-top: 8px;
}
.skills-item__img--writing {
  width: 204px;
  height: 204px;
  margin-top: 16px;
}
.skills-item__img--reading {
  width: 236px;
  height: 157px;
  margin-top: 29px;
}
.skills-item__img--listening {
  width: 232px;
  height: 154px;
  margin-top: 33px;
}
.skills-item__title {
  margin-top: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 80px;
  color: #263238;
  text-align: left;
}
.skills-item__text {
  color: #8f95a5;
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
}
.skills-item__text:not(:last-of-type) {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 576px) {
  .skills-item {
    position: relative;
    width: 240px;
    height: 534px;
    padding: 162px 16px 36px;
  }
  .skills-item__img {
    position: absolute;
  }
  .skills-item__img--speaking {
    top: -8px;
    left: 9px;
    width: 185px;
    height: 185px;
    margin: 0;
  }
  .skills-item__img--writing {
    top: 5px;
    left: 23px;
    width: 182px;
    height: 182px;
    margin: 0;
  }
  .skills-item__img--reading {
    top: 30px;
    left: -2px;
    width: 198px;
    height: 132px;
    margin: 0;
  }
  .skills-item__img--listening {
    top: 38px;
    left: 12px;
    width: 206px;
    height: 137px;
    margin: 0;
  }
  .skills-item__text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  .skills-item__title {
    width: 100%;
    margin: 0;
  }
  .skills-item__text {
    width: 100%;
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (min-width: 768px) {
  .skills-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: relative;
    width: auto;
    height: auto;
    padding: 14px 28px 34px;
  }
  .skills-item:first-of-type {
    grid-row: span 2;
  }
  .skills-item__text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 100%;
  }
  .skills-item:last-of-type {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    grid-column: span 2;
    /* stylelint-disable */
    /* stylelint-enable */
  }
  .skills-item:last-of-type .skills-item__text-wrapper {
    margin-top: -18px;
  }
  .skills-item__img {
    -ms-flex-item-align: start;
        align-self: flex-start;
    position: relative;
    max-width: 100%;
  }
  .skills-item__img--speaking {
    top: unset;
    left: unset;
    width: 214px;
    height: 214px;
    margin: 17px 4% 2px -16px;
  }
  .skills-item__img--writing {
    top: unset;
    left: unset;
    width: 200px;
    height: 200px;
    margin: 0 auto -41px -11px;
  }
  .skills-item__img--reading {
    top: unset;
    left: unset;
    width: 216px;
    height: 144px;
    margin: 20px auto 0 -17px;
  }
  .skills-item__img--listening {
    -ms-flex-item-align: center;
        align-self: center;
    top: unset;
    left: unset;
    width: 254px;
    max-width: calc(100% - 200px);
    height: 169px;
    margin: 0 2px 0 auto;
  }
  .skills-item__title {
    font-size: 22px;
    line-height: 80px;
  }
  .skills-item__text {
    margin-bottom: 1em;
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (min-width: 992px) {
  .skills-item {
    padding: 16px 29px 34px;
  }
  .skills-item__img--speaking {
    width: 260px;
    height: 260px;
    margin: -16px 6.86% 0 7.26%;
  }
  .skills-item__img--writing {
    width: 205px;
    height: 205px;
    margin: -11px -19px -30px auto;
  }
  .skills-item__img--reading {
    width: 243px;
    height: 162px;
    margin: 0 auto 3px -23px;
  }
  .skills-item__img--listening {
    width: 254px;
    max-width: calc(100% - 200px);
    height: 169px;
    margin: 0 2px 0 auto;
  }
  .skills-item__text {
    margin-bottom: 26px;
  }
}
@media screen and (min-width: 1600px) {
  .skills-item {
    padding: 35px 43px 44px;
  }
  .skills-item__img--speaking {
    width: 390px;
    height: 390px;
    margin: -16px auto 0 -7px;
  }
  .skills-item__img--writing {
    width: 293px;
    height: 293px;
    margin: -20px 19px -36px auto;
  }
  .skills-item__img--reading {
    width: 371px;
    height: 247px;
    margin: -36px auto -1px -1 px;
  }
  .skills-item__img--listening {
    width: 50%;
    max-width: 100%;
    height: auto;
    margin: 0 -18px 0 auto;
  }
  .skills-item__title {
    font-size: 30px;
    line-height: 80px;
  }
  .skills-item__text {
    margin-bottom: 33px;
    font-size: 16px;
    line-height: 24px;
  }
}
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
}
.about__title {
  color: #000000;
  font-weight: 600;
  font-size: 24px;
  line-height: 80px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .about__title {
    font-size: 30px;
    line-height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .about__title {
    font-size: 36px;
    line-height: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .about__title {
    font-size: 48px;
    line-height: 80px;
  }
}
.about__img {
  width: 100%;
  height: auto;
  margin: 24px auto 23px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__text {
  color: #8f95a5;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}
.about__facts-wrapper {
  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;
}

@media screen and (min-width: 576px) {
  .about__img {
    width: 352px;
    height: 352px;
    margin: 23px auto 25px;
  }
  .about__text {
    font-size: 14px;
    line-height: 21px;
  }
  .about__facts-wrapper {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    margin-top: 106px;
  }
  .about__title {
    text-align: left;
    margin: 0 0 12px;
  }
  .about__img {
    grid-row: span 2;
    width: auto;
    height: auto;
    margin: 29px auto 0;
  }
  .about__text {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }
  .about__facts-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    margin-top: 11px;
  }
}
@media screen and (min-width: 992px) {
  .about {
    grid-template-columns: auto 38.75%;
    grid-gap: 0 72px;
  }
  .about__img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    margin: 0;
  }
  .about__text {
    margin-top: 13px;
  }
  .about__facts-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 50px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1600px) {
  .about {
    grid-template-columns: auto 44.05%;
    grid-gap: 0 190px;
    margin-top: 282px;
  }
  .about__text {
    margin-top: 23px;
    font-size: 20px;
    line-height: 30px;
  }
  .about__facts-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 90px;
    margin-top: 46px;
  }
}
.about-fact {
  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;
  margin: 30px auto 0;
}
.about-fact__number {
  color: #2a3246;
  font-weight: 600;
  font-size: 24px;
  line-height: 62px;
  text-align: center;
}
.about-fact__position {
  font-size: 15px;
  line-height: 22px;
  color: #8f95a5;
  text-align: center;
}

@media screen and (min-width: 576px) {
  .about-fact {
    margin: 21px auto 0;
  }
  .about-fact__position {
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (min-width: 768px) {
  .about-fact {
    margin: 0;
  }
  .about-fact__number {
    font-size: 30px;
    line-height: 72px;
  }
  .about-fact__position {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1600px) {
  .about-fact__number {
    font-size: 48px;
    line-height: 72px;
  }
  .about-fact__position {
    font-size: 20px;
    line-height: 30px;
  }
}
.pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 84px;
}
.pricing__title {
  color: #000000;
  font-weight: 600;
  font-size: 24px;
  line-height: 80px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .pricing__title {
    font-size: 30px;
    line-height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .pricing__title {
    font-size: 36px;
    line-height: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .pricing__title {
    font-size: 48px;
    line-height: 80px;
  }
}
.pricing__items-wrapper {
  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%;
  margin-top: 50px;
  gap: 65px;
}

@media screen and (min-width: 576px) {
  .pricing {
    margin-top: 119px;
  }
  .pricing__items-wrapper {
    margin-top: 54px;
    gap: 70px;
  }
}
@media screen and (min-width: 768px) {
  .pricing {
    margin-top: 31px;
  }
  .pricing__items-wrapper {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
    gap: 5px;
  }
}
@media screen and (min-width: 992px) {
  .pricing__items-wrapper {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1600px) {
  .pricing {
    margin-top: 188px;
  }
  .pricing__items-wrapper {
    gap: 52px;
    margin-top: 57px;
  }
}
.pricing-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pricing-item__img {
  -ms-flex-item-align: center;
      align-self: center;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.pricing-item__img--self-study {
  width: 248px;
  height: 248px;
  margin-bottom: 28px;
}
.pricing-item__img--live {
  width: 257px;
  height: 197px;
  margin-bottom: 12px;
}
.pricing-item__img--personal {
  width: 241px;
  height: 241px;
  margin-bottom: 7px;
}
.pricing-item__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pricing-item__title {
  margin-bottom: 25px;
  color: #263238;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
.pricing-item__text {
  color: #8f95a5;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}
.pricing-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 30px;
  border-radius: 5px;
  padding: 5px 15px;
  background: #eeeeee;
  font-size: 14px;
  line-height: 21px;
  color: #546269;
}
.pricing-item__price span {
  font-size: 18px;
  line-height: 27px;
  color: #263238;
}

@media screen and (min-width: 576px) {
  .pricing-item {
    width: 400px;
  }
  .pricing-item__img {
    -ms-flex-item-align: center;
        align-self: center;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  .pricing-item__img--self-study {
    width: 291px;
    height: 291px;
    margin-bottom: 29px;
  }
  .pricing-item__img--live {
    width: 314px;
    height: 241px;
    margin-bottom: 21px;
  }
  .pricing-item__img--personal {
    width: 253px;
    height: 253px;
    margin-bottom: 15px;
  }
  .pricing-item__title {
    margin-bottom: 21px;
    font-size: 24px;
    line-height: 28px;
  }
  .pricing-item__text {
    font-size: 14px;
    line-height: 21px;
  }
  .pricing-item__price {
    margin-top: 31px;
    font-size: 16px;
    line-height: 24px;
  }
  .pricing-item__price span {
    font-size: 24px;
    line-height: 36px;
  }
}
@media screen and (min-width: 768px) {
  .pricing-item {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    width: 100%;
  }
  .pricing-item__img--self-study, .pricing-item__img--live, .pricing-item__img--personal {
    width: 100%;
    height: 210px;
    margin-bottom: 0;
  }
  .pricing-item__title {
    margin: 15px 0;
    font-size: 20px;
    line-height: 140%;
    text-align: left;
  }
  .pricing-item__text {
    margin-bottom: 23px;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
  }
  .pricing-item__price {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: auto;
  }
}
@media screen and (min-width: 992px) {
  .pricing-item {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    width: calc((100% - 10px) / 3);
  }
  .pricing-item__img--self-study, .pricing-item__img--live, .pricing-item__img--personal {
    height: 242px;
    -o-object-position: left center;
       object-position: left center;
  }
  .pricing-item__title {
    margin: 5px 0 14px;
  }
  .pricing-item__text {
    margin-bottom: 31px;
  }
  .pricing-item__price {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: auto;
  }
}
@media screen and (min-width: 1600px) {
  .pricing-item {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    width: calc((100% - 104px) / 3);
  }
  .pricing-item__img--self-study, .pricing-item__img--live, .pricing-item__img--personal {
    height: 340px;
    -o-object-position: center center;
       object-position: center center;
  }
  .pricing-item__title {
    margin: 11px 0 20px;
    font-size: 30px;
    line-height: 48px;
  }
  .pricing-item__text {
    margin-bottom: 29px;
    font-size: 20px;
    line-height: 30px;
  }
  .pricing-item__price {
    padding: 3px 27px 3px 12px;
    font-size: 18px;
    line-height: 27px;
  }
  .pricing-item__price span {
    font-size: 30px;
    line-height: 45px;
  }
}
.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 72px;
}
.contacts__title {
  color: #000000;
  font-weight: 600;
  font-size: 24px;
  line-height: 80px;
  text-align: center;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
@media screen and (min-width: 576px) {
  .contacts__title {
    font-size: 30px;
    line-height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .contacts__title {
    font-size: 36px;
    line-height: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .contacts__title {
    font-size: 48px;
    line-height: 80px;
  }
}
.contacts__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 253px;
  height: 228px;
  margin: 38px auto;
}
.contacts__text-wrapper {
  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-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.contacts__text {
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #8f95a5;
}
.contacts__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 30px auto 57px;
}
.contacts__form-input {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  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%;
  height: 50px;
  border: 1px solid #8f95a5;
  border-radius: 5px;
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  font-size: 14px;
  padding: 0 26px;
  color: #263238;
  -webkit-transition: border-color 0.25s ease-in;
  transition: border-color 0.25s ease-in;
}
.contacts__form-input::-webkit-input-placeholder {
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  color: #8f95a5;
  font-size: 12px;
  line-height: 18px;
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.contacts__form-input::-moz-placeholder {
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  color: #8f95a5;
  font-size: 12px;
  line-height: 18px;
  -moz-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.contacts__form-input:-ms-input-placeholder {
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  color: #8f95a5;
  font-size: 12px;
  line-height: 18px;
  -ms-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.contacts__form-input::-ms-input-placeholder {
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  color: #8f95a5;
  font-size: 12px;
  line-height: 18px;
  -ms-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.contacts__form-input::placeholder {
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  color: #8f95a5;
  font-size: 12px;
  line-height: 18px;
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.contacts__form-input:focus-within {
  border: 1px solid #263238;
  outline: 0;
}
.contacts__form-input:focus-within::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0);
}
.contacts__form-input:focus-within::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.contacts__form-input:focus-within:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0);
}
.contacts__form-input:focus-within::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0);
}
.contacts__form-input:focus-within::placeholder {
  color: rgba(255, 255, 255, 0);
}

@media screen and (min-width: 576px) {
  .contacts {
    margin-top: 163px;
  }
  .contacts__img {
    width: 358px;
    height: 322px;
    margin: 83px auto 34px;
  }
  .contacts__text {
    font-size: 16px;
    line-height: 24px;
  }
  .contacts__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    width: 100%;
    margin: 60px auto 144px;
  }
  .contacts__form-input {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    font-size: 16px;
    padding: 0 200px 0 26px;
  }
  .contacts__form-input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 21px;
  }
  .contacts__form-input::-moz-placeholder {
    font-size: 14px;
    line-height: 21px;
  }
  .contacts__form-input:-ms-input-placeholder {
    font-size: 14px;
    line-height: 21px;
  }
  .contacts__form-input::-ms-input-placeholder {
    font-size: 14px;
    line-height: 21px;
  }
  .contacts__form-input::placeholder {
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (min-width: 768px) {
  .contacts {
    display: grid;
    grid-template-columns: 233px 1fr;
    grid-template-rows: repeat(3, auto);
    -ms-flex-line-pack: center;
        align-content: center;
    grid-gap: 0 38px;
    margin: 140px 0 112px;
  }
  .contacts__img {
    align-self: center;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    grid-row: span 3;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .contacts__text-wrapper {
    max-width: 100%;
  }
  .contacts__title {
    margin-bottom: -9px;
    text-align: left;
  }
  .contacts__text {
    font-size: 14px;
    line-height: 21px;
    text-align: left;
  }
  .contacts__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    gap: 6px;
    max-width: 100%;
    margin: 26px 0 0;
  }
  .contacts__form-input {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    border-radius: 5px;
    font-size: 16px;
    padding: 14px 24px;
  }
  .contacts__form-input::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 1em;
  }
  .contacts__form-input::-moz-placeholder {
    font-size: 12px;
    line-height: 1em;
  }
  .contacts__form-input:-ms-input-placeholder {
    font-size: 12px;
    line-height: 1em;
  }
  .contacts__form-input::-ms-input-placeholder {
    font-size: 12px;
    line-height: 1em;
  }
  .contacts__form-input::placeholder {
    font-size: 12px;
    line-height: 1em;
  }
}
@media screen and (min-width: 992px) {
  .contacts {
    grid-template-columns: 312px 1fr;
    grid-gap: 0 109px;
    margin: 140px 0 157px;
  }
  .contacts__img {
    -o-object-position: center top;
       object-position: center top;
  }
  .contacts__title {
    margin: 0 0 3px 10px;
  }
  .contacts__text {
    font-size: 16px;
    line-height: 24px;
  }
  .contacts__form {
    gap: 14px;
    margin: 34px 0 0;
  }
  .contacts__form-input {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    height: 60px;
    border-radius: 10px;
    font-size: 16px;
    padding: 16px 24px 16px 38px;
  }
  .contacts__form-input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 1.5em;
  }
  .contacts__form-input::-moz-placeholder {
    font-size: 14px;
    line-height: 1.5em;
  }
  .contacts__form-input:-ms-input-placeholder {
    font-size: 14px;
    line-height: 1.5em;
  }
  .contacts__form-input::-ms-input-placeholder {
    font-size: 14px;
    line-height: 1.5em;
  }
  .contacts__form-input::placeholder {
    font-size: 14px;
    line-height: 1.5em;
  }
}
@media screen and (min-width: 1600px) {
  .contacts {
    grid-template-columns: 477px 1fr;
    grid-gap: 0 111px;
    margin: 261px 0 133px;
  }
  .contacts__img {
    -o-object-position: center;
       object-position: center;
  }
  .contacts__title {
    margin: 0 0 37px;
  }
  .contacts__text {
    font-size: 20px;
    line-height: 30px;
  }
  .contacts__form {
    gap: 12px;
    margin: 52px 0 0;
  }
  .contacts__form-input {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 80px;
    font-size: 20px;
    padding: 16px 24px 16px 33px;
  }
  .contacts__form-input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 1.5em;
  }
  .contacts__form-input::-moz-placeholder {
    font-size: 16px;
    line-height: 1.5em;
  }
  .contacts__form-input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 1.5em;
  }
  .contacts__form-input::-ms-input-placeholder {
    font-size: 16px;
    line-height: 1.5em;
  }
  .contacts__form-input::placeholder {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.subscribe-popup__email {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.subscribe-popup__message {
  text-align: center;
  font-weight: 400;
  color: #8f95a5;
}

@media screen and (min-width: 768px) {
  .subscribe-popup__email {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 28px;
  }
  .subscribe-popup__message {
    font-size: 18px;
  }
}

@-webkit-keyframes fadeIn {from {opacity: 0;}to {opacity: 1;}}

@keyframes fadeIn {from {opacity: 0;}to {opacity: 1;}}

@-webkit-keyframes slideInLeft {from {-webkit-transform: translate3d(-100%, 0, 0);transform: translate3d(-100%, 0, 0);visibility: visible;}to {-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}}

@keyframes slideInLeft {from {-webkit-transform: translate3d(-100%, 0, 0);transform: translate3d(-100%, 0, 0);visibility: visible;}to {-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}}
/*# sourceMappingURL=style.css.map */
