*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

* {
  padding: 0px;
  margin: 0px;
}

html,
body {
  height: 100%;
}

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
}

:focus,
:active,
:hover,
:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-focus-ring-color: rgba(0, 0, 0, 0) !important;
  -webkit-outline: none;
  outline: none;
}

ul,
ol {
  list-style-position: inside;
  list-style-type: none;
  text-align: left;
}

li {
  height: auto;
}

img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
  font-family: inherit;
}

input,
textarea,
button,
select {
  display: block;
  font-family: inherit;
}

button,
select {
  display: block;
  padding: 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  font-family: inherit;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-transform: none;
}

textarea {
  resize: none;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  width: 100%;
}

button {
  text-transform: none;
  cursor: pointer;
}

[hidden],
::-ms-clear {
  display: none;
}

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

:-moz-focusring {
  -webkit-outline: none;
  outline: none;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::-webkit-calendar-picker-indicator {
  opacity: 0;
}

[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
  display: none;
}

/* sass --watch scss/style.scss:css/style.css */
body {
  width: 100%;
  background-color: #F5EDEB;
  font-family: "Montserrat", "sans-serif";
  font-size: 18px;
  line-height: 28px;
  overflow-x: hidden;
}

body.modalOpened {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  width: 1240px;
  padding: 0 16px;
}

.pageWrapper {
  overflow: hidden;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
}

.logoLink,
.logoContainer {
  display: flex;
  color: #202020;
  font-size: 21px;
  line-height: 22px;
  max-width: 290px;
  font-weight: 500;
}
.logoLink img,
.logoContainer img {
  font-family: "Mersad", "sans-serif";
  height: 64px;
  font-size: 48px;
  line-height: 64px;
  font-weight: bold;
  text-transform: uppercase;
}

input,
textarea,
button {
  font-family: "Montserrat", "sans-serif";
}

.btnMain {
  font-family: "Montserrat", "sans-serif";
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  font-weight: bold;
  text-transform: none;
  border-radius: 8px;
  height: 56px;
  min-width: 190px;
  padding: 16px 28px;
  background-color: #2347EF;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .btnMain:hover {
    background-color: rgba(35, 71, 239, 0.8);
  }
}
@media (max-width: 991px) {
  .btnMain {
    font-size: 12px;
    line-height: 1;
    height: 32px;
    min-width: 125px;
    padding: 10px 18px;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .btnMain {
    border-radius: 8px;
  }
}

.imageContainer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.textContainer, .serviceCard .cardText {
  color: #333333;
}
.textContainer > *, .serviceCard .cardText > * {
  margin-top: 16px;
}
.textContainer > *:first-child, .serviceCard .cardText > *:first-child {
  margin-top: 0px;
}

.inputContainer {
  position: relative;
}
.inputContainer input,
.inputContainer textarea {
  display: block;
  width: 100%;
  border-radius: 0px;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #A8A8B1;
  padding: 0px 0px;
  box-shadow: 0px 0px 0px transparent;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  transition: border-color 0.2s;
}
.inputContainer input:focus,
.inputContainer textarea:focus {
  border-color: #000;
}
.inputContainer input {
  height: 52px;
}
.inputContainer textarea {
  height: 230px;
  padding: 7px 0px;
}
.inputContainer ::-webkit-input-placeholder {
  color: #9B9BA5;
}
.inputContainer ::-moz-placeholder {
  color: #9B9BA5;
}
.inputContainer :-moz-placeholder {
  color: #9B9BA5;
}
.inputContainer :-ms-input-placeholder {
  color: #9B9BA5;
}
.inputContainer :focus::-webkit-input-placeholder {
  color: #9B9BA5;
}
.inputContainer :focus::-moz-placeholder {
  color: #9B9BA5;
}
.inputContainer :focus:-moz-placeholder {
  color: #A8A8B1;
}
.inputContainer :focus:-ms-input-placeholder {
  color: #A8A8B1;
}

.checkInput label {
  display: block;
  position: relative;
  padding-left: 52px;
  min-height: 31px;
  font-size: 19px;
  line-height: 30px;
  color: #000;
  cursor: pointer;
}
.checkInput label a {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  color: #4890dc;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s;
}
.checkInput label a:hover {
  text-decoration-color: transparent;
}
.checkInput label:before, .checkInput label:after {
  content: "";
  display: block;
  position: absolute;
  width: 31px;
  height: 31px;
  left: 0;
  top: 50%;
  margin-top: -16px;
}
.checkInput label:before {
  border: 1px solid #000;
}
.checkInput label:after {
  content: "\e915";
  font-size: 16px;
  line-height: 31px;
  font-family: icomoon;
  text-align: center;
  opacity: 0;
  background-image: url(../img/icon-check.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.checkInput input {
  display: none;
}
.checkInput input:checked + label:after {
  opacity: 1;
}

b,
strong {
  color: inherit;
  font-weight: bold;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity 0.3s;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9B9BA5;
  font-size: inherit;
  line-height: inherit;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity 0.3s;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9B9BA5;
  font-size: inherit;
  line-height: inherit;
}

:-moz-placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity 0.3s;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9B9BA5;
  font-size: inherit;
  line-height: inherit;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity 0.3s;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9B9BA5;
  font-size: inherit;
  line-height: inherit;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
}

:focus::-moz-placeholder {
  opacity: 0;
}

:focus:-moz-placeholder {
  opacity: 0;
}

:focus:-ms-input-placeholder {
  opacity: 0;
}

@keyframes service-1-1 {
  0% {
    transform: scale(1) translate(0px, 0px);
  }
  100% {
    transform: scale(2.95) translate(-42px, 15px);
  }
}
@keyframes service-1-2 {
  0% {
    transform: scale(1) translate(0px, 0px);
  }
  100% {
    transform: scale(3.1) translate(32px, -41px);
  }
}
@keyframes service-1-3 {
  0% {
    transform: scale(1) translate(0px, 0px);
  }
  100% {
    transform: scale(6.25) translate(23px, 18px);
  }
}
@keyframes service-2-1 {
  0% {
    transform: rotate(22.21deg) translate(0px, 0px);
    width: 60px;
    height: 26px;
  }
  100% {
    transform: rotate(-4.02deg) translate(20px, -65px);
    width: 201px;
    height: 89px;
  }
}
@keyframes service-2-2 {
  0% {
    transform: rotate(-10.43deg) translate(0px, 0px);
    width: 66px;
    height: 20px;
  }
  100% {
    transform: rotate(-11.04deg) translate(-142px, -25px);
    width: 203px;
    height: 66px;
  }
}
@keyframes service-2-3 {
  0% {
    transform: rotate(-21.51deg) translate(0px, 0px);
    width: 66px;
    height: 9px;
  }
  100% {
    transform: rotate(-11.04deg) translate(-80px, 22px);
    width: 203px;
    height: 31px;
  }
}
@keyframes service-2-4 {
  0% {
    transform: rotate(-63.15deg) translate(0px, 0px);
    width: 71px;
    height: 11px;
  }
  100% {
    transform: rotate(-26.04deg) translate(40px, 18px) rotateX(180deg);
    width: 203px;
    height: 31px;
  }
}
@keyframes service-3-1 {
  0% {
    transform: rotate(-51.82deg) translate(0px, 0px);
    width: 29px;
    height: 9px;
  }
  100% {
    transform: rotate(-51.82deg) translate(-6px, 43px);
    width: 95px;
    height: 42px;
  }
}
@keyframes service-3-2 {
  0% {
    transform: rotate(-1.36deg) translate(0px, 0px);
    width: 77px;
    height: 11px;
  }
  100% {
    transform: rotate(68.18deg) translate(65px, 56px);
    width: 203px;
    height: 37px;
  }
}
@keyframes service-3-3 {
  0% {
    transform: rotate(-171.82deg) translate(0px, 0px);
    width: 19px;
    height: 6px;
  }
  100% {
    transform: rotate(-171.82deg) translate(70px, 22px);
    width: 91px;
    height: 42px;
  }
}
@keyframes service-3-4 {
  0% {
    transform: rotate(113.18deg) translate(0px, 0px);
    width: 27px;
    height: 8px;
  }
  100% {
    transform: rotate(113.18deg) translate(-11px, 60px);
    width: 91px;
    height: 47px;
  }
}
@keyframes service-3-5 {
  0% {
    transform: rotate(-17.91deg) translate(0px, 0px);
    width: 94px;
    height: 13px;
  }
  100% {
    transform: rotate(61.56deg) translate(-117px, 38px);
    width: 228px;
    height: 28px;
  }
}
@keyframes service-3-6 {
  0% {
    transform: rotate(23.18deg) translate(0px, 0px);
    width: 19px;
    height: 6px;
  }
  100% {
    transform: rotate(23.18deg) translate(-2px, -46px);
    width: 95px;
    height: 36px;
  }
}
@keyframes service-4-1 {
  0% {
    transform: translate(0px, 0px) rotate(176.21deg);
    width: 14px;
    height: 14px;
  }
  100% {
    transform: translate(-10px, -7px) rotate(-105deg);
    width: 200px;
    height: 200px;
  }
}
@keyframes service-4-2 {
  0% {
    transform: translate(0px, 0px) rotate(65.97deg);
    width: 58px;
    height: 58px;
  }
  100% {
    transform: translate(-161px, -73px) rotate(-90deg);
    width: 216px;
    height: 216px;
  }
}
@keyframes service-4-3 {
  0% {
    transform: translate(0px, 0px) rotate(172.34deg);
    width: 55px;
    height: 55px;
  }
  100% {
    transform: translate(76px, -105px) rotate(-138.13deg);
    width: 131px;
    height: 131px;
  }
}
@keyframes service-4-image {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes service-4-hover {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes service-5-1 {
  0% {
    transform: translate(0px, 0px);
    width: 10px;
    height: 56px;
  }
  100% {
    transform: translate(59px, -34px);
    width: 26px;
    height: 109px;
  }
}
@keyframes service-5-2 {
  0% {
    transform: translate(0px, 0px);
    width: 9px;
    height: 83px;
  }
  100% {
    transform: translate(54px, 19px);
    width: 26px;
    height: 152px;
  }
}
@keyframes service-5-3 {
  0% {
    transform: translate(0px, 0px);
    width: 10px;
    height: 43px;
  }
  100% {
    transform: translate(49px, 69px);
    width: 26px;
    height: 87px;
  }
}
@keyframes service-5-4 {
  0% {
    transform: translate(0px, 0px);
    width: 10px;
    height: 97px;
  }
  100% {
    transform: translate(37px, -132px);
    width: 26px;
    height: 176px;
  }
}
@keyframes service-5-5 {
  0% {
    transform: translate(0px, 0px);
    width: 9px;
    height: 67px;
  }
  100% {
    transform: translate(30px, 30px);
    width: 26px;
    height: 128px;
  }
}
@keyframes service-5-6 {
  0% {
    transform: translate(0px, 0px);
    width: 9px;
    height: 75px;
  }
  100% {
    transform: translate(20px, -98px);
    width: 26px;
    height: 142px;
  }
}
@keyframes service-5-7 {
  0% {
    transform: translate(0px, 0px);
    width: 10px;
    height: 82px;
  }
  100% {
    transform: translate(14px, 49px);
    width: 26px;
    height: 152px;
  }
}
@keyframes service-5-8 {
  0% {
    transform: translate(0px, 0px);
    width: 10px;
    height: 56px;
  }
  100% {
    transform: translate(2px, 42px);
    width: 26px;
    height: 109px;
  }
}
@keyframes service-5-9 {
  0% {
    transform: translate(0px, 0px);
    width: 9px;
    height: 96px;
  }
  100% {
    transform: translate(-35px, -18px);
    width: 26px;
    height: 142px;
  }
}
@keyframes service-6-1 {
  0% {
    transform: translate(0px, 0px) rotate(57.74deg);
    border-right: 37px solid #E35C0F;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    height: 44px;
  }
  100% {
    transform: translate(60px, 1px) rotate(-15deg);
    border-right: 134px solid #E35C0F;
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
    height: 161px;
  }
}
@keyframes service-6-2 {
  0% {
    transform: translate(0px, 0px) rotate(-147.04deg);
    height: 66px;
    width: 17px;
  }
  100% {
    transform: translate(64px, -62px) rotate(-6.49deg);
    width: 38px;
    height: 161px;
  }
}
@keyframes service-6-3 {
  0% {
    transform: translate(0px, 0px) rotate(122.64deg);
    height: 23px;
    width: 7px;
  }
  100% {
    transform: translate(1px, 10px) rotate(45deg);
    width: 17px;
    height: 54px;
  }
}
@keyframes service-6-4 {
  0% {
    transform: translate(0px, 0px) rotate(117.92deg);
    height: 48px;
    width: 7px;
  }
  100% {
    transform: translate(-6px, -40px) rotate(75deg);
    width: 17px;
    height: 54px;
  }
}
@keyframes service-6-5 {
  0% {
    transform: translate(0px, 0px) rotate(105deg);
    height: 24px;
    width: 5px;
  }
  100% {
    transform: translate(21px, -97px) rotate(105deg);
    width: 17px;
    height: 54px;
  }
}
@keyframes service-6-6 {
  0% {
    transform: translate(0px, 0px) rotate(-106.42deg);
    height: 28px;
    width: 9px;
  }
  100% {
    transform: translate(0px, -57px) rotate(-45deg);
    width: 30px;
    height: 91px;
  }
}
@keyframes service-6-7 {
  0% {
    transform: translate(0px, 0px) rotate(-62.45deg);
    height: 38px;
    width: 12px;
  }
  100% {
    transform: translate(48px, -75px) rotate(-14.44deg);
    width: 28px;
    height: 91px;
  }
}
@keyframes service-7-1 {
  0% {
    transform: translate(0px, 0px) rotate(5deg);
    height: 34px;
    width: 9px;
  }
  100% {
    transform: translate(65px, -16px) rotate(-55deg);
    width: 21px;
    height: 56px;
  }
}
@keyframes service-7-2 {
  0% {
    transform: translate(0px, 0px);
    height: 27px;
    width: 27px;
  }
  100% {
    transform: translate(-10px, -52px);
    width: 183px;
    height: 183px;
  }
}
@keyframes service-7-3 {
  0% {
    transform: translate(0px, 0px) rotate(65deg);
    height: 34px;
    width: 10px;
  }
  100% {
    transform: translate(9px, -36px) rotate(5deg);
    width: 21px;
    height: 56px;
  }
}
@keyframes service-7-4 {
  0% {
    transform: translate(0px, 0px) rotate(125deg);
    height: 34px;
    width: 9px;
  }
  100% {
    transform: translate(-15px, 1px) rotate(65deg);
    width: 21px;
    height: 56px;
  }
}
@keyframes service-7-5 {
  0% {
    transform: translate(0px, 0px) rotate(-175deg);
    height: 34px;
    width: 9px;
  }
  100% {
    transform: translate(-20px, -16px) rotate(125deg);
    width: 21px;
    height: 56px;
  }
}
@keyframes service-7-6 {
  0% {
    transform: translate(0px, 0px);
    height: 50px;
    width: 50px;
  }
  100% {
    transform: translate(-70px, -61px);
    width: 154px;
    height: 154px;
  }
}
@keyframes service-7-7 {
  0% {
    transform: translate(0px, 0px) rotate(-115deg);
    height: 34px;
    width: 10px;
  }
  100% {
    transform: translate(-36px, 48px) rotate(-175deg);
    width: 21px;
    height: 56px;
  }
}
@keyframes service-7-8 {
  0% {
    transform: translate(0px, 0px) rotate(-55deg);
    height: 34px;
    width: 9px;
  }
  100% {
    transform: translate(45px, -61px) rotate(-115deg);
    width: 21px;
    height: 56px;
  }
}
@keyframes eye {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.2);
  }
  100% {
    transform: scaleY(1);
  }
}
.headerInner {
  display: flex;
  padding: 28px 0;
  transition: padding-top 0.3s, padding-bottom 0.3s;
}
.headerInner .logoContainer {
  cursor: pointer;
  transition: font-size 0.3s, line-height 0.3s;
}
.headerInner .logoContainer img {
  margin-right: 18px;
  transition: height 0.3s, margin-right 0.3s;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: #F5EDEB;
  transition: transform 0.3s;
}

.menuContainer {
  margin-left: auto;
  margin-right: -14px;
}

.siteMenu {
  transition: padding-top 0.3s;
}
.siteMenu a {
  display: block;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.burger {
  display: none;
}

.headerFixed header {
  transform: translateY(-100%);
}
.headerFixed header.isVisible {
  transform: translateY(0%);
}

.modalOpened header {
  transform: translateY(0%);
}

@media (min-width: 1280px) {
  .siteMenu {
    display: flex;
  }
  .siteMenu a {
    font-size: 16px;
    color: #000;
    padding: 4px 14px;
    letter-spacing: 0.64px;
    transition: background-color 0.2s;
  }
  .siteMenu a.active {
    background-color: #BFFF14;
  }
  .siteMenu a:not(.active):hover {
    background-color: #faff25;
  }
  .siteMenu li {
    margin-left: 12px;
  }
  .menuHead {
    display: none;
  }
  .headerFixed .siteMenu {
    padding-top: 6px;
  }
  .headerFixed header .logoContainer {
    font-size: 18px;
    line-height: 18px;
  }
  .headerFixed header .logoContainer img {
    height: 56px;
  }
  .headerFixed .headerInner {
    padding: 20px 0;
  }
  .headerFixed .headerInner .logoContainer img {
    margin-right: 15px;
  }
}
@media (max-width: 1279px) {
  .menuContainer {
    position: fixed;
    width: 100%;
    height: 100dvh;
    background-color: #202020;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    padding: 0px calc((100vw - 908px) / 2);
    z-index: 3;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  .menuContainer.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
  }
  .menuContainer:before, .menuContainer:after {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    pointer-events: none;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .menuContainer:before {
    background-image: url(../img/back-menu.svg);
    background-size: 1665px auto;
    background-position: calc(50% - 190px) 100%;
  }
  .menuContainer:after {
    background-image: url(../img/back-vector-menu.svg);
    background-size: 641px auto;
    background-position: calc(50% + 367px) calc(100% + 187px);
  }
  .siteMenu {
    padding: 95px 0 93px;
  }
  .siteMenu a {
    display: inline-block;
    vertical-align: top;
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.96px;
  }
  .siteMenu li + li {
    margin-top: 28px;
  }
  .headerInner {
    display: flex;
    padding: 16px 0;
  }
  .headerInner .logoContainer {
    margin-top: 2px;
  }
  .headerInner .logoContainer img {
    margin-right: 9px;
    height: 32px;
    font-size: 32px;
    line-height: 1;
  }
  .burger {
    display: block;
    background-color: #BFFF14;
    width: 40px;
    height: 36px;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .burger > div {
    position: absolute;
    border-top: 2px solid #000;
    width: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
  }
  .burger > div:first-child {
    margin-top: -6px;
  }
  .burger > div:nth-child(2) {
    margin-top: -1px;
    opacity: 1;
  }
  .burger > div:nth-child(3) {
    margin-top: 4px;
  }
  .menuHead {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
  }
  .menuHead .logoContainer {
    margin-top: 0px;
    font-size: 23px;
    line-height: 25px;
    color: #fff;
  }
  .menuHead .logoContainer img {
    margin-right: 20px;
    height: 74px;
    font-size: 52px;
    line-height: 74px;
  }
  .menuHead .burger > div:first-child {
    margin-top: 0;
    transform: rotate(45deg);
  }
  .menuHead .burger > div:nth-child(2) {
    opacity: 0;
  }
  .menuHead .burger > div:nth-child(3) {
    margin-top: 0;
    transform: rotate(-45deg);
  }
}
@media (max-width: 991px) {
  .menuContainer {
    padding: 0px calc((100vw - 668px) / 2);
  }
  .menuContainer:before {
    background-position: calc(50% - 434px) 100%;
  }
  .menuContainer:after {
    background-position: calc(50% + 126px) calc(100% + 187px);
  }
}
@media (max-width: 1279px) and (min-width: 992px) and (max-height: 991px) {
  .menuContainer:before {
    background-position: calc(50% - 190px) -120px;
  }
  .menuContainer:after {
    background-position: calc(50% + 367px) 780px;
  }
}
@media (max-width: 991px) and (max-height: 839px) {
  .menuContainer:before {
    background-position: calc(50% - 434px) -200px;
  }
  .menuContainer:after {
    background-position: calc(50% + 126px) 690px;
  }
}
@media (max-width: 767px) {
  .menuContainer {
    padding: 0px 15px;
  }
  .menuContainer:before {
    background-size: 1264px auto;
    background-image: url(../img/back-menu-mob.svg);
    background-position: calc(50% - 182px) calc(100% + 240px);
  }
  .menuContainer:after {
    background-size: 421px auto;
    background-image: url(../img/back-vector-menu-mob.svg);
    background-position: calc(50% - 90px) calc(100% + 160px);
  }
  .menuHead {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
  }
  .menuHead .logoContainer {
    margin-top: 2px;
    font-size: 10px;
    line-height: 11px;
  }
  .menuHead .logoContainer img {
    margin-right: 9px;
    height: 32px;
    font-size: 32px;
    line-height: 1;
  }
  .siteMenu {
    padding: 61px 0 93px;
  }
  .siteMenu a {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  .siteMenu li + li {
    margin-top: 12px;
  }
}
@media (max-width: 767px) and (min-width: 480px) and (max-height: 559px) {
  .menuContainer:before {
    background-position: calc(50% - 182px) -160px;
  }
  .menuContainer:after {
    background-position: calc(50% - 90px) 420px;
  }
}
@media (max-width: 479px) {
  .menuContainer:before {
    background-size: 711px auto;
    background-position: calc(50% - 102px) 100%;
  }
  .menuContainer:after {
    background-position: calc(50% + 4px) calc(100% + 123px);
  }
}
@media (max-width: 479px) and (max-height: 639px) {
  .menuContainer:before {
    background-position: calc(50% - 102px) 61px;
  }
  .menuContainer:after {
    background-position: calc(50% + 4px) 420px;
  }
}
.accordionContent {
  overflow: hidden;
  height: 0px;
  transition: height 0.4s;
}

.accordion.active .accordionContent {
  height: auto;
}

.sectionTitle {
  font-family: "Mersad", "sans-serif";
  font-size: 72px;
  line-height: 1;
  color: #100064;
  font-weight: bold;
  margin-bottom: 26px;
}
.sectionTitle.center {
  text-align: center;
}

.itemTitle {
  font-size: 32px;
  line-height: 125%;
  color: #100064;
  font-weight: 900;
}

.headText {
  font-size: 21px;
  line-height: 32px;
  font-weight: bold;
  color: #333;
}
.headText + * {
  margin-top: 24px;
}
.headText.center {
  text-align: center;
}

.heroVisual {
  position: relative;
}
.heroVisual .characters {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -7px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.heroVisual .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.heroVisual .back,
.heroVisual .hoverBack {
  position: absolute;
  max-width: none;
  transform-origin: left top;
}
.heroVisual .template {
  display: block;
  opacity: 0;
  height: 100%;
  max-width: none;
  pointer-events: none;
}
.heroVisual .g {
  height: 100%;
  left: 0;
}
.heroVisual .g .back {
  left: -150.1953125%;
  top: -17.8631051753%;
  width: 368.5546875%;
  transform: scale(1);
}
.heroVisual .a {
  height: 80.6343906511%;
  left: 23.4042553191%;
  top: 6.6777963272%;
}
.heroVisual .a .back {
  left: -51.1827956989%;
  top: -6.4182194617%;
  width: 201.935483871%;
  transform: scale(1);
}
.heroVisual .a .character:after {
  width: 114.8706896552%;
  height: 70.041322314%;
  top: 60.3305785124%;
  right: -11.2068965517%;
}
.heroVisual .m {
  height: 75.6260434057%;
  left: 46.3947990544%;
  top: 2.8380634391%;
}
.heroVisual .m .back {
  left: -43.8030560272%;
  top: -6.4017660044%;
  width: 185.7385398981%;
  transform: scale(1);
}
.heroVisual .m .character:after {
  width: 90.6462585034%;
  height: 74.8344370861%;
  top: 69.2148760331%;
  left: -69.387755102%;
}
.heroVisual .m .inner:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/m-vector.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 55.612244898%;
  height: 64.0176600442%;
  z-index: 1;
  top: -11.0375275938%;
  left: -11.0544217687%;
}
.heroVisual .m .inner:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/z-vector-inner.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 76.1904761905%;
  height: 84.9889624724%;
  z-index: 1;
  bottom: -33.1125827815%;
  right: -37.074829932%;
}
.heroVisual .m .circle {
  width: 7.4702886248%;
  height: 9.7130242826%;
  position: absolute;
  background-color: #278AE4;
  top: 38.6313465784%;
  left: 48.3870967742%;
  z-index: 1;
  border-radius: 50%;
}
.heroVisual .z {
  height: 69.1151919866%;
  top: 1.1686143573%;
}
.heroVisual .z .back {
  left: -29.5165394402%;
  top: -3.3816425121%;
  width: 195.9287531807%;
  transform: scale(1);
}
.heroVisual .z .inner:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/z-vector-inner.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 114.2857142857%;
  height: 92.9951690821%;
  z-index: 1;
  bottom: -48.5507246377%;
  left: -39.7321428571%;
}
.heroVisual .z:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/z-vector-outer.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 114.2857142857%;
  height: 92.9951690821%;
  z-index: 1;
  bottom: -48.5507246377%;
  left: -39.7321428571%;
  z-index: -1;
}
.heroVisual .a .character:after,
.heroVisual .m .character:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/a-m-vector.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.heroVisual .character {
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: relative;
  pointer-events: all;
  height: 100%;
}
.heroVisual .character:hover .back,
.heroVisual .character:hover .hoverBack {
  transition: opacity 1.2s, transform 1.2s, left 1.2s, top 1.2s;
}
.heroVisual .charContainer {
  position: relative;
  pointer-events: none;
}
.heroVisual .charContainer.a, .heroVisual .charContainer.m {
  position: absolute;
}

.heroText {
  font-size: 40px;
  line-height: 120%;
  color: #100064;
  font-weight: bold;
  max-width: 896px;
  margin-left: auto;
  position: relative;
  margin-top: 110px;
}
.heroText:before {
  content: "";
  display: block;
  position: absolute;
  width: 394px;
  height: 346px;
  background-image: url(../img/vector-hero-text.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  top: -115px;
  left: -127px;
  z-index: -1;
}
.heroText:after {
  content: attr(data-text);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  z-index: 1;
  pointer-events: none;
  color: #DE14FF;
  -webkit-mask: url("../img/vector-hero-text.svg");
  mask: url("../img/vector-hero-text.svg");
  -webkit-mask-position: -127px -115px;
  mask-position: -127px -115px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero {
  position: relative;
  padding-top: 42px;
  z-index: 1;
  padding-bottom: 102px;
}

.games {
  padding-top: 92px;
  padding-bottom: 133px;
}
.games .sectionTitle {
  margin-bottom: 66px;
}

.happyColorCard .gameHead {
  padding-left: 168px;
  position: relative;
  margin-bottom: 48px;
}
.happyColorCard .gameIcon {
  border-radius: 24px;
  position: absolute;
  width: 128px;
  height: 128px;
  overflow: hidden;
  left: 0;
  bottom: 0;
}
.happyColorCard .gameIcon img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.happyColorCard .gameSlogan {
  font-size: 21px;
  line-height: 32px;
  color: #868686;
  font-weight: bold;
  margin-top: 8px;
}
.happyColorCard .gameVisual {
  position: relative;
}
.happyColorCard .gameVisual .imageContainer {
  margin: 0 auto;
  max-width: 595px;
}
.happyColorCard .addImage {
  position: absolute;
  top: 13.0841121495%;
  left: -13.4868421053%;
  width: 35.3618421053%;
}

.soonCard .detailed {
  font-size: 18px;
  line-height: 120%;
  font-weight: bold;
  color: #868686;
  max-width: 65.1490066225%;
}
.soonCard .itemTitle {
  margin-bottom: 8px;
}

.soonVisual {
  position: relative;
}
.soonVisual [class*=soonGame] {
  position: absolute;
}
.soonVisual [class*=soonGame] img {
  width: 100%;
}
.soonVisual [class*=soonGame]:before {
  content: "";
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.soonVisual .soonGame1:before {
  background-image: url(../img/goblin-bomb.png);
}
.soonVisual .soonGame3:before {
  background-image: url(../img/leg-chest.png);
}
.soonVisual:before, .soonVisual:after {
  content: "";
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.soonVisual:before {
  background-image: url(../img/grandfa.png);
  z-index: 1;
}
.soonVisual:after {
  background-image: url(../img/baloon.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .soonVisual .soonGame1:before {
    background-image: url(../img/goblin-bomb@2x.png);
  }
  .soonVisual .soonGame3:before {
    background-image: url(../img/leg-chest@2x.png);
  }
  .soonVisual:before {
    background-image: url(../img/grandfa@2x.png);
  }
  .soonVisual:after {
    background-image: url(../img/baloon@2x.png);
  }
}

.gamesSlider {
  overflow: visible;
}
.gamesSlider .swiper-button-prev {
  padding-right: 4px;
}
.gamesSlider .swiper-button-prev:after {
  content: "\e901";
}
.gamesSlider .swiper-button-next {
  padding-left: 4px;
}
.gamesSlider .swiper-button-next:after {
  content: "\e900";
}
.gamesSlider [class*=swiper-button] {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #0A4F17;
  color: #0A4F17;
  transition: opacity 0.3s;
}
.gamesSlider [class*=swiper-button]:after {
  font-family: icomoon;
  font-size: 28px;
  line-height: 66px;
}
.gamesSlider [class*=swiper-button]:hover {
  opacity: 0.8;
}

.about {
  padding-top: 102px;
  padding-bottom: 58px;
  position: relative;
}
.about:before {
  content: "";
  display: block;
  position: absolute;
  width: 2737px;
  height: 2053px;
  width: 100%;
  background-image: url(../img/body-back.svg);
  background-size: 2737px auto;
  background-position: calc(50% - 426px) center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
  left: 0;
  top: calc(50% - 1049px);
}

.aboutInner {
  align-items: flex-end;
}
.aboutInner .imageContainer {
  width: calc(50% + 152px - 44px);
  margin-left: -152px;
  position: relative;
}
.aboutInner .imageContainer img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aboutCollage {
  position: relative;
}
.aboutCollage.var1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.aboutCollage.var1:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 40px);
  left: 0px;
  top: 40px;
  background-color: #E6E6E6;
  z-index: -1;
  mix-blend-mode: darken;
}
.aboutCollage.var1 .image {
  width: 100%;
  position: relative;
}
.aboutCollage.var1 .image:first-child {
  max-width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.aboutCollage.var1 .image:nth-child(2) {
  width: calc(50% - 40px);
  margin-top: -81px;
}
.aboutCollage.var1 .image:nth-child(2):after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 121px;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: linear-gradient(180deg, #FAF6F5 50.88%, rgba(250, 246, 245, 0) 100%);
}
.aboutCollage.var1 .image:nth-child(3) {
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
.aboutCollage.var1 .image:nth-child(3) img {
  height: calc(100% - 40px);
  bottom: 0;
  left: 0;
  position: absolute;
  margin-top: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.principles {
  padding-top: 90px;
  padding-bottom: 125px;
}
.principles .sectionTitle {
  margin-bottom: 42px;
}

.principlesList {
  position: relative;
}
.principlesList .icon {
  position: absolute;
  right: 0;
  pointer-events: none;
}
.principlesList .icon img {
  margin: 0 auto;
}
.principlesList .accordion {
  padding: 24px 514px 24px 32px;
  position: relative;
}
.principlesList .textContainer, .principlesList .serviceCard .cardText, .serviceCard .principlesList .cardText {
  padding-top: 8px;
  padding-bottom: 8px;
}

.services {
  padding-top: 125px;
  padding-bottom: 165px;
}
.services .sectionTitle {
  text-align: center;
}
.services .headText {
  max-width: 1001px;
  margin-left: auto;
  margin-right: auto;
}
.services .headText + * {
  margin-top: 86px;
}

.hiring {
  background-color: #FFA8D8;
  padding-top: 100px;
  padding-bottom: 152px;
}
.hiring .sectionTitle {
  color: #373736;
  margin-bottom: 16px;
}
.hiring .itemTitle {
  color: #373736;
}

.hiringBullet {
  max-width: 584px;
  margin-left: auto;
  margin-top: -90px;
  padding-right: 102px;
}
.hiringBullet .btnMain {
  margin-top: 32px;
}

.nameImage {
  position: relative;
  width: 1302px;
  left: 50%;
  margin-left: -671px;
  pointer-events: none;
}

.serviceCard {
  display: flex;
  min-height: 352px;
  padding: 0 45px;
  transition: background-color 0.3s;
}
.serviceCard .cardVisual {
  width: 475px;
  position: relative;
}
.serviceCard .cardContent {
  max-width: 480px;
  align-self: center;
}
.serviceCard .cardText {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin-top: 16px;
}
.serviceCard .figure {
  position: absolute;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.45, 1, 0.65, 1.1);
}
.serviceCard .figure:before, .serviceCard .figure:after {
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.45, 1, 0.65, 1.1);
}

.service-1 .figure {
  border-radius: 50%;
  transform-origin: center center;
  mix-blend-mode: difference;
}
.service-1 .figure:first-child {
  background-color: #1E92FD;
}
.service-1 .figure:nth-child(2) {
  background-color: #ED3D00;
}
.service-1 .figure:nth-child(3) {
  background-color: #BFFF14;
}

.service-2 .figure:nth-child(4) {
  background-color: #1E92FD;
  mix-blend-mode: difference;
}
.service-2 .figure:nth-child(3) {
  background-color: #1E92FD;
}
.service-2 .figure:nth-child(2) {
  background-color: #2347EF;
  mix-blend-mode: multiply;
}
.service-2 .figure:first-child {
  background-color: #E04C19;
}

.service-3 .figure {
  transform-origin: center center;
}
.service-3 .figure:first-child {
  background-color: #007030;
  mix-blend-mode: hard-light;
}
.service-3 .figure:nth-child(2) {
  background-color: #4E6433;
}
.service-3 .figure:nth-child(3) {
  background-color: #842811;
  mix-blend-mode: hard-light;
}
.service-3 .figure:nth-child(4) {
  background-color: #2D490B;
  mix-blend-mode: hard-light;
}
.service-3 .figure:nth-child(5) {
  background-color: #4E6433;
  mix-blend-mode: hard-light;
}
.service-3 .figure:nth-child(6) {
  background-color: #3256FF;
  mix-blend-mode: hard-light;
}

.service-4 .figure {
  transform-origin: center center;
}
.service-4 .figure:not(:nth-child(2)) {
  mix-blend-mode: difference;
}
.service-4 .figure:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.service-4 .figure:first-child {
  z-index: 1;
}
.service-4 .figure:first-child:after {
  background-image: url(../img/service-4-1-hover.svg);
}
.service-4 .figure:nth-child(2):after {
  background-image: url(../img/service-4-2-hover.svg);
}
.service-4 .figure:nth-child(3):after {
  background-image: url(../img/service-4-3-hover.svg);
}

.service-5 .figure {
  position: absolute;
  mix-blend-mode: multiply;
}
.service-5 .figure:first-child {
  background-color: #2347EF;
}
.service-5 .figure:nth-child(2) {
  background-color: #1E92FD;
}
.service-5 .figure:nth-child(3) {
  background-color: #FFA8D8;
}
.service-5 .figure:nth-child(4) {
  background-color: #2347EF;
}
.service-5 .figure:nth-child(5) {
  background-color: #1E92FD;
}
.service-5 .figure:nth-child(6) {
  background-color: #FFA8D8;
}
.service-5 .figure:nth-child(7) {
  background-color: #1E92FD;
}
.service-5 .figure:nth-child(8) {
  background-color: #FFA8D8;
}
.service-5 .figure:nth-child(9) {
  background-color: #2347EF;
}

.service-6 .figure:first-child {
  mix-blend-mode: hard-light;
  width: 0;
}
.service-6 .figure:nth-child(2) {
  background-color: #093996;
  mix-blend-mode: hard-light;
}
.service-6 .figure:nth-child(3) {
  background-color: #DF3185;
  mix-blend-mode: difference;
}
.service-6 .figure:nth-child(4) {
  background-color: #DF3185;
  mix-blend-mode: difference;
}
.service-6 .figure:nth-child(5) {
  background-color: #DF3185;
  mix-blend-mode: difference;
}
.service-6 .figure:nth-child(6) {
  background-color: #E04C26;
  mix-blend-mode: hard-light;
}
.service-6 .figure:nth-child(7) {
  background-color: #2347EF;
}

.service-7 .figure:not(:nth-child(2), :nth-child(6)) {
  mix-blend-mode: difference;
  z-index: 1;
}
.service-7 .figure:first-child {
  background-color: #FF6F1E;
}
.service-7 .figure:nth-child(2) {
  background-color: #FFD31E;
  border-radius: 50%;
}
.service-7 .figure:nth-child(3) {
  background-color: #FF6F1E;
}
.service-7 .figure:nth-child(4) {
  background-color: #FF6F1E;
}
.service-7 .figure:nth-child(5) {
  background-color: #FF6F1E;
}
.service-7 .figure:nth-child(6) {
  background-color: #D8FF6D;
  border-radius: 50%;
  mix-blend-mode: hard-light;
}
.service-7 .figure:nth-child(7) {
  background-color: #FF6F1E;
}
.service-7 .figure:nth-child(8) {
  background-color: #FF6F1E;
}

@media (min-width: 1440px) {
  .heroVisual {
    height: 599px;
  }
  .heroVisual .characters {
    width: 1692px;
  }
  .heroVisual .template.smDesk {
    display: none;
  }
  .heroVisual .g .character {
    clip-path: url("#g");
  }
  .heroVisual .a .character {
    clip-path: url("#a");
  }
  .heroVisual .m .character {
    clip-path: url("#m");
  }
  .heroVisual .z .character {
    clip-path: url("#z");
  }
  .gamesSlider .swiper-button-prev {
    left: -96px;
  }
  .gamesSlider .swiper-button-next {
    right: -96px;
  }
}
@media (min-width: 1280px) {
  .happyColorCard {
    display: flex;
    align-items: flex-end;
  }
  .happyColorCard .textContainer, .happyColorCard .serviceCard .cardText, .serviceCard .happyColorCard .cardText {
    padding-left: 64px;
    padding-right: 90px;
  }
  .happyColorCard .gameDetailed {
    padding-right: 30px;
    width: 49.6688741722%;
    padding-left: 40px;
  }
  .happyColorCard .gameVisual {
    width: 50.3311258278%;
    margin-bottom: 26px;
  }
  .heroVisual .back,
  .heroVisual .hoverBack {
    will-change: opacity, transform, left, top;
    transition: opacity 2.1s, transform 2.1s, left 2.1s, top 2.1s;
  }
  .heroVisual .hoverBack {
    opacity: 0;
  }
  .heroVisual .g .hoverBack {
    width: 383.59375%;
    transform: scale(0.96);
    left: -156.25%;
    top: -17.8631051753%;
  }
  .heroVisual .g .character:hover .back {
    left: -214.84375%;
    top: -49.7495826377%;
    opacity: 0;
    transform: scale(1.04);
  }
  .heroVisual .g .character:hover .hoverBack {
    left: -229.4921875%;
    top: -66.4440734558%;
    opacity: 1;
    transform: scale(1);
  }
  .heroVisual .a .hoverBack {
    width: 176.3440860215%;
    transform: scale(1.15);
    left: -51.1827956989%;
    top: -6.4182194617%;
  }
  .heroVisual .a .back {
    transform-origin: center bottom;
  }
  .heroVisual .a .character:hover .back {
    opacity: 0;
    transform: scale(1.5);
  }
  .heroVisual .a .character:hover .hoverBack {
    left: -42.1505376344%;
    top: -55.0724637681%;
    opacity: 1;
    transform: scale(1);
  }
  .heroVisual .m .hoverBack {
    width: 152.1222410866%;
    transform: scale(1.2);
    transform-origin: left top;
    left: -43.8030560272%;
    top: -6.4017660044%;
  }
  .heroVisual .m .back {
    transform-origin: left top;
  }
  .heroVisual .m .circle {
    animation-name: none;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.45, 1, 0.65, 1.1);
    animation-duration: 0.2s;
  }
  .heroVisual .m .character:hover .back {
    opacity: 0;
    transform: scale(0.9);
  }
  .heroVisual .m .character:hover .hoverBack {
    left: -40.4074702886%;
    top: -2.4282560706%;
    opacity: 1;
    transform: scale(1);
  }
  .heroVisual .z .hoverBack {
    width: 227.989821883%;
    transform: scale(1);
    left: -48.3460559796%;
    top: -7.2463768116%;
  }
  .heroVisual .z .back {
    transform-origin: right top;
  }
  .heroVisual .z .character:hover .back {
    left: -45.8015267176%;
    top: -11.1111111111%;
    opacity: 0;
    transform: scale(1.25);
  }
  .heroVisual .z .character:hover .hoverBack {
    left: -84.2239185751%;
    top: -11.1111111111%;
    opacity: 1;
    transform: scale(1);
  }
  .heroVisual .character:hover + .circle {
    animation-name: eye;
  }
  .soonVisual {
    min-height: 454px;
  }
  .soonVisual:before {
    width: 273px;
    height: 588px;
    left: 80.298013245%;
    top: 0;
  }
  .soonVisual:after {
    width: 212px;
    height: 166px;
    left: 40.7284768212%;
    top: 75.1101321586%;
  }
  .soonCard .detailed {
    margin-top: 45px;
    padding-left: 8.4437086093%;
  }
  .soonGame1 {
    width: 754px;
    top: 3.7444933921%;
    left: -5.9602649007%;
  }
  .soonGame1:before {
    width: 195px;
    height: 195px;
    left: 84.8806366048%;
    top: -16.6666666667%;
  }
  .soonGame2 {
    width: 551px;
    left: 38.4105960265%;
    top: 36.3436123348%;
  }
  .soonGame3 {
    width: 300px;
    left: 59.2715231788%;
    top: -10.5726872247%;
    transform: rotate(3.72deg);
    transform-origin: left bottom;
  }
  .soonGame3:before {
    width: 224px;
    height: 229px;
    left: 56.7484662577%;
    top: 84.9765258216%;
    transform: rotate(-3.72deg);
  }
  .aboutInner {
    display: flex;
  }
  .aboutInner .imageContainer {
    margin-right: 44px;
    margin-bottom: 0px;
  }
  .aboutContent {
    width: 50%;
    padding-left: 20px;
    padding-top: 20px;
    order: 1;
  }
  .principlesList {
    margin-left: -29px;
    margin-right: -29px;
  }
  .principlesList .icon {
    top: 50%;
    opacity: 0;
    width: 452px;
    transform: translate(0px, 25%);
    transition: opacity 0.4s 0s, transform 0.4s;
  }
  .principlesList .accordionContent {
    opacity: 0;
    transition: height 0.4s, opacity 0.2s 0.2s;
  }
  .principlesList .accordion {
    transition: background-color 0.4s;
  }
  .principlesList .accordion.active {
    background-color: #fff;
  }
  .principlesList .accordion.active .accordionContent {
    opacity: 1;
    transition: height 0.4s, opacity 0.2s 0.2s;
  }
  .principlesList .accordion.active .icon {
    opacity: 1;
    transform: translate(0px, -50%);
    transition: opacity 0.3s 0s, transform 0.4s;
  }
  .serviceCard .figure {
    animation-duration: 0.8s;
    animation-play-state: paused;
  }
  .serviceCard .figure:before, .serviceCard .figure:after {
    animation-duration: 0.8s;
    animation-play-state: paused;
  }
  .serviceCard.hovered .figure {
    animation-play-state: running;
  }
  .serviceCard.hovered .figure:before, .serviceCard.hovered .figure:after {
    animation-play-state: running;
  }
  .service-1 .figure {
    transform: scale(1) translate(0px, 0px);
  }
  .service-1 .figure:first-child {
    width: 54px;
    height: 54px;
    left: calc(50% + 81px);
    top: calc(50% - 85px);
    animation-name: service-1-1;
  }
  .service-1 .figure:nth-child(2) {
    width: 36px;
    height: 36px;
    left: calc(50% - 48px);
    top: calc(50% + 70px);
    animation-name: service-1-2;
  }
  .service-1 .figure:nth-child(3) {
    width: 24px;
    height: 24px;
    left: calc(50% - 98px);
    top: calc(50% - 74px);
    animation-name: service-1-3;
  }
  .service-1:hover {
    background-color: #F8FDFF;
  }
  .service-2 .figure:nth-child(4) {
    width: 71px;
    height: 11px;
    left: calc(50% - 132px);
    top: calc(50% - 57px);
    transform: rotate(-63.15deg);
    animation-name: service-2-4;
  }
  .service-2 .figure:nth-child(3) {
    width: 66px;
    height: 9px;
    left: calc(50% + 2px);
    top: calc(50% - 66px);
    transform: rotate(-21.51deg);
    animation-name: service-2-3;
  }
  .service-2 .figure:nth-child(2) {
    width: 66px;
    height: 20px;
    left: calc(50% + 69px);
    top: calc(50% - 8px);
    transform: rotate(-10.43deg);
    animation-name: service-2-2;
  }
  .service-2 .figure:first-child {
    width: 60px;
    height: 26px;
    left: calc(50% - 82px);
    top: calc(50% + 77px);
    transform: rotate(22.21deg);
    animation-name: service-2-1;
  }
  .service-2:hover {
    background-color: #FFF9F7;
  }
  .service-3 .figure:first-child {
    width: 29px;
    height: 9px;
    left: calc(50% - 141px);
    top: calc(50% - 25px);
    transform: rotate(-51.82deg);
    animation-name: service-3-1;
  }
  .service-3 .figure:nth-child(2) {
    width: 77px;
    height: 11px;
    left: calc(50% - 36px);
    top: calc(50% - 80px);
    transform: rotate(-1.36deg);
    animation-name: service-3-2;
  }
  .service-3 .figure:nth-child(3) {
    width: 19px;
    height: 6px;
    left: calc(50% + 128px);
    top: calc(50% - 20px);
    transform: rotate(-171.82deg);
    animation-name: service-3-3;
  }
  .service-3 .figure:nth-child(4) {
    width: 27px;
    height: 8px;
    left: calc(50% + 139px);
    top: calc(50% + 17px);
    transform: rotate(113.18deg);
    animation-name: service-3-4;
  }
  .service-3 .figure:nth-child(5) {
    width: 94px;
    height: 13px;
    left: calc(50% + 8px);
    top: calc(50% + 96px);
    transform: rotate(-17.91deg);
    animation-name: service-3-5;
  }
  .service-3 .figure:nth-child(6) {
    width: 19px;
    height: 6px;
    left: calc(50% - 113px);
    top: calc(50% + 90px);
    transform: rotate(23.18deg);
    animation-name: service-3-6;
  }
  .service-3:hover {
    background-color: #F7FFF6;
  }
  .service-4 .figure:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    animation-name: service-4-image;
  }
  .service-4 .figure:after {
    opacity: 0;
    animation-name: service-4-hover;
  }
  .service-4 .figure:first-child {
    width: 14px;
    height: 14px;
    left: calc(50% - 85px);
    top: calc(50% - 77px);
    transform: rotate(176.21deg);
    animation-name: service-4-1;
  }
  .service-4 .figure:first-child:before {
    background-image: url(../img/service-4-1.svg);
  }
  .service-4 .figure:nth-child(2) {
    width: 58px;
    height: 58px;
    left: calc(50% + 95px);
    top: calc(50% - 31px);
    transform: rotate(65.97deg);
    animation-name: service-4-2;
  }
  .service-4 .figure:nth-child(2):before {
    background-image: url(../img/service-4-2.svg);
  }
  .service-4 .figure:nth-child(3) {
    width: 55px;
    height: 55px;
    left: calc(50% - 123px);
    top: calc(50% + 52px);
    transform: rotate(172.34deg);
    animation-name: service-4-3;
  }
  .service-4 .figure:nth-child(3):before {
    background-image: url(../img/service-4-3.svg);
  }
  .service-4:hover {
    background-color: #FFF9F9;
  }
  .service-5 .figure:first-child {
    height: 56px;
    width: 10px;
    left: calc(50% - 141px);
    top: calc(50% + 18px);
    animation-name: service-5-1;
  }
  .service-5 .figure:nth-child(2) {
    height: 82px;
    width: 9px;
    left: calc(50% - 110px);
    top: calc(50% - 70px);
    animation-name: service-5-2;
  }
  .service-5 .figure:nth-child(3) {
    height: 43px;
    width: 10px;
    left: calc(50% - 79px);
    top: calc(50% - 47px);
    animation-name: service-5-3;
  }
  .service-5 .figure:nth-child(4) {
    height: 97px;
    width: 10px;
    left: calc(50% - 48px);
    top: calc(50% + 46px);
    animation-name: service-5-4;
  }
  .service-5 .figure:nth-child(5) {
    height: 67px;
    width: 9px;
    left: calc(50% - 16px);
    top: calc(50% - 41px);
    animation-name: service-5-5;
  }
  .service-5 .figure:nth-child(6) {
    height: 75px;
    width: 9px;
    left: calc(50% + 15px);
    top: calc(50% + 57px);
    animation-name: service-5-6;
  }
  .service-5 .figure:nth-child(7) {
    height: 82px;
    width: 10px;
    left: calc(50% + 46px);
    top: calc(50% - 108px);
    animation-name: service-5-7;
  }
  .service-5 .figure:nth-child(8) {
    height: 56px;
    width: 10px;
    left: calc(50% + 77px);
    top: calc(50% - 42px);
    animation-name: service-5-8;
  }
  .service-5 .figure:nth-child(9) {
    height: 96px;
    width: 9px;
    left: calc(50% + 140px);
    top: calc(50% - 23px);
    animation-name: service-5-9;
  }
  .service-5:hover {
    background-color: #FFF7FF;
  }
  .service-6 .figure:first-child {
    left: calc(50% - 117px);
    top: calc(50% - 69px);
    transform: rotate(57.74deg);
    border-right: 37px solid #E35C0F;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    height: 44px;
    animation-name: service-6-1;
  }
  .service-6 .figure:nth-child(2) {
    height: 66px;
    width: 17px;
    left: calc(50% - 2px);
    top: calc(50% - 25px);
    transform: rotate(-147.04deg);
    animation-name: service-6-2;
  }
  .service-6 .figure:nth-child(3) {
    height: 23px;
    width: 7px;
    left: calc(50% + 83px);
    top: calc(50% - 93px);
    transform: rotate(122.64deg);
    animation-name: service-6-3;
  }
  .service-6 .figure:nth-child(4) {
    height: 48px;
    width: 7px;
    left: calc(50% + 111px);
    top: calc(50% - 2px);
    transform: rotate(117.92deg);
    animation-name: service-6-4;
  }
  .service-6 .figure:nth-child(5) {
    height: 24px;
    width: 5px;
    left: calc(50% + 85px);
    top: calc(50% + 99px);
    transform: rotate(105deg);
    animation-name: service-6-5;
  }
  .service-6 .figure:nth-child(6) {
    height: 28px;
    width: 9px;
    left: calc(50% - 9px);
    top: calc(50% + 98px);
    transform: rotate(-106.42deg);
    animation-name: service-6-6;
  }
  .service-6 .figure:nth-child(7) {
    height: 38px;
    width: 12px;
    left: calc(50% - 123px);
    top: calc(50% + 59px);
    transform: rotate(-62.45deg);
    animation-name: service-6-7;
  }
  .service-6:hover {
    background-color: #FDFFF5;
  }
  .service-7 .figure:first-child {
    height: 34px;
    width: 9px;
    left: calc(50% - 114px);
    top: calc(50% - 58px);
    transform: rotate(5deg);
    animation-name: service-7-1;
  }
  .service-7 .figure:nth-child(2) {
    height: 27px;
    width: 27px;
    left: calc(50% - 56px);
    top: calc(50% - 19px);
    animation-name: service-7-2;
  }
  .service-7 .figure:nth-child(3) {
    height: 34px;
    width: 10px;
    left: calc(50% + 31px);
    top: calc(50% - 60px);
    transform: rotate(65deg);
    animation-name: service-7-3;
  }
  .service-7 .figure:nth-child(4) {
    height: 34px;
    width: 9px;
    left: calc(50% + 120px);
    top: calc(50% - 31px);
    transform: rotate(125deg);
    animation-name: service-7-4;
  }
  .service-7 .figure:nth-child(5) {
    height: 34px;
    width: 9px;
    left: calc(50% + 98px);
    top: calc(50% + 75px);
    transform: rotate(-175deg);
    animation-name: service-7-5;
  }
  .service-7 .figure:nth-child(6) {
    height: 50px;
    width: 50px;
    left: calc(50% + 28px);
    top: calc(50% + 5px);
    animation-name: service-7-6;
  }
  .service-7 .figure:nth-child(7) {
    height: 34px;
    width: 10px;
    left: calc(50% + 27px);
    top: calc(50% + 32px);
    transform: rotate(-115deg);
    animation-name: service-7-7;
  }
  .service-7 .figure:nth-child(8) {
    height: 34px;
    width: 9px;
    left: calc(50% - 118px);
    top: calc(50% + 76px);
    transform: rotate(-55deg);
    animation-name: service-7-8;
  }
  .service-7:hover {
    background-color: #EEF9FF;
  }
}
footer {
  background-color: #000;
}

.footerInner {
  align-items: center;
}

.footerUp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 38px;
}

.footerDown {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  padding-bottom: 32px;
}

.footMenu {
  display: flex;
  margin: 0 auto;
}
.footMenu a {
  display: block;
  color: inherit;
}
.footMenu li {
  padding: 0 10px;
  position: relative;
}
.footMenu li + li:before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  left: -1px;
  top: 50%;
  margin-top: 1px;
}

.designedBy {
  display: flex;
  align-items: flex-end;
  padding-left: 48px;
}
.designedBy a {
  margin-left: 9px;
}
.designedBy img {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}

.contacts {
  display: table;
  padding-bottom: 8px;
  width: 51.3245033113%;
}

.contactItem {
  display: table-row;
  font-size: 18px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
}
.contactItem .pre {
  display: table-cell;
  vertical-align: top;
  text-align: right;
  white-space: nowrap;
  padding-right: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.contactItem .data {
  display: table-cell;
  vertical-align: top;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 100%;
}
.contactItem ul {
  font-size: 0px;
}
.contactItem li {
  display: inline-block;
  vertical-align: top;
  padding-right: 30px;
  position: relative;
}
.contactItem li:before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #fff;
  right: 14px;
  top: 50%;
  margin-top: 1px;
}
.contactItem li:last-child:before {
  display: none;
}
.contactItem a {
  display: block;
  color: #BFFF14;
  font-size: 18px;
}

.pre {
  display: block;
  font-size: 18px;
  color: #fff;
}

@media (min-width: 1280px) {
  .contactItem a {
    transition: text-decoration-color 0.3s;
    text-decoration: underline;
    text-decoration-color: transparent;
  }
  .contactItem a:hover {
    text-decoration-color: inherit;
  }
  .footMenu a {
    transition: color 0.3s;
  }
  .footMenu a:hover {
    color: #fff;
  }
}
@media (max-width: 1279px) {
  .contactItem {
    font-size: 16px;
  }
  .contactItem li {
    padding-right: 21px;
  }
  .contactItem li:before {
    right: 10px;
  }
  .contactItem a {
    font-size: 16px;
  }
  .contactItem .pre {
    padding-right: 16px;
    font-size: 16px;
    line-height: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .contactItem .data {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .contacts {
    width: 64.6706586826%;
    padding-bottom: 0px;
    margin-top: -8px;
  }
  .footerUp {
    padding-bottom: 28px;
    padding-top: 48px;
    align-items: flex-start;
  }
  .footerDown {
    font-size: 10px;
    line-height: 120%;
    padding-top: 14px;
    padding-bottom: 24px;
  }
  .designedBy {
    align-items: center;
    padding-left: 34px;
  }
  .designedBy a {
    margin-left: 7px;
  }
  .designedBy img {
    max-height: 15px;
    font-size: 15px;
  }
  .footMenu li {
    padding: 0 7px;
  }
  .footMenu li + li:before {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  footer .logoContainer {
    width: 156px;
  }
  .footerUp {
    display: block;
    padding-bottom: 48px;
    padding-top: 32px;
  }
  .contacts {
    display: flex;
    margin-top: 96px;
    width: calc(100% + 16px);
    flex-direction: row-reverse;
  }
  .contactItem {
    display: block;
    width: 50%;
    padding-right: 16px;
  }
  .contactItem li {
    display: block;
    padding-right: 0px;
  }
  .contactItem li:before {
    display: none;
  }
  .contactItem li + li {
    margin-top: 8px;
  }
  .contactItem .pre {
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 20px;
    display: block;
    text-align: left;
  }
  .contactItem .data {
    padding-top: 0px;
    padding-bottom: 0px;
    display: block;
  }
  .footerDown {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 12px;
  }
  .copyright {
    order: 1;
  }
  .designedBy {
    padding-left: 16px;
    order: 1;
    margin-left: auto;
  }
  .footMenu {
    margin: 0px;
    width: calc(100% + 14px);
    margin-left: -7px;
    margin-bottom: 17px;
  }
}
@media (max-width: 1439px) and (min-width: 1280px) {
  .heroVisual {
    height: 507px;
  }
  .heroVisual .characters {
    width: 1432.1268781302px;
  }
  .heroVisual .template:not(.smDesk) {
    display: none;
  }
  .heroVisual .g .character {
    clip-path: url("#g-1280");
  }
  .heroVisual .a .character {
    clip-path: url("#a-1280");
  }
  .heroVisual .m .character {
    clip-path: url("#m-1280");
  }
  .heroVisual .z .character {
    clip-path: url("#z-1280");
  }
}
@media (max-width: 1599px) {
  .gamesSlider [class*=swiper-button] {
    width: 56px;
    height: 56px;
  }
  .gamesSlider [class*=swiper-button]:after {
    font-size: 24px;
    line-height: 50px;
  }
  .gamesSlider .swiperNavigation {
    top: -122px;
  }
  .gamesSlider .swiper-button-prev {
    left: -80px;
  }
  .gamesSlider .swiper-button-next {
    right: -80px;
  }
}
@media (max-width: 1511px) {
  .aboutInner .imageContainer {
    width: calc(50% + (100vw - 1208px) / 2 - 44px);
    margin-left: calc((1208px - 100vw) / 2);
  }
}
@media (max-width: 1439px) {
  .gamesSlider .swiperNavigation {
    width: 136px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -122px;
    right: 0;
  }
  .gamesSlider [class*=swiper-button] {
    position: relative;
    top: auto;
    margin-top: 0px;
  }
  .gamesSlider .swiper-button-prev {
    left: auto;
  }
  .gamesSlider .swiper-button-next {
    right: auto;
  }
  .aboutInner .imageContainer {
    width: calc(50% + (100vw - 1208px) / 2 - 20px);
    margin-left: calc((1208px - 100vw) / 2);
    margin-right: 20px;
  }
}
@media (max-width: 1279px) {
  body {
    font-size: 16px;
  }
  .pageWrapper {
    padding-top: 68px;
  }
  .container {
    width: 940px;
  }
  .logoContainer {
    font-size: 10px;
    line-height: 11px;
  }
  .sectionTitle {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  .itemTitle {
    font-size: 24px;
    line-height: 130%;
  }
  .hero {
    padding-top: 20px;
  }
  .heroVisual {
    height: 304px;
  }
  .heroVisual .characters {
    width: 860px;
  }
  .heroVisual .template,
  .heroVisual .hoverBack {
    display: none;
  }
  .heroVisual .g {
    width: 30.2325581395%;
  }
  .heroVisual .g .character {
    -webkit-mask-image: url("../img/g-mask-1280.svg");
    mask-image: url("../img/g-mask-1280.svg");
  }
  .heroVisual .a {
    width: 27.4418604651%;
  }
  .heroVisual .a .character {
    -webkit-mask-image: url("../img/a-mask-1280.svg");
    mask-image: url("../img/a-mask-1280.svg");
  }
  .heroVisual .m {
    width: 34.7674418605%;
  }
  .heroVisual .m .character {
    -webkit-mask-image: url("../img/m-mask-1280.svg");
    mask-image: url("../img/m-mask-1280.svg");
  }
  .heroVisual .z {
    width: 23.1395348837%;
  }
  .heroVisual .z .character {
    -webkit-mask-image: url("../img/z-mask-1280.svg");
    mask-image: url("../img/z-mask-1280.svg");
  }
  .heroText {
    font-size: 18px;
    max-width: 440px;
    margin-top: 46px;
  }
  .heroText:before {
    width: 201px;
    height: 176px;
    top: -57px;
    left: -78px;
  }
  .heroText:after {
    -webkit-mask-position: -78px -57px;
    mask-position: -78px -57px;
    -webkit-mask-size: 201px 176px;
    mask-size: 201px 176px;
  }
  .gamesSlider .swiperNavigation {
    width: 104px;
    top: -78px;
  }
  .gamesSlider [class*=swiper-button] {
    width: 44px;
    height: 44px;
    border-width: 2px;
  }
  .gamesSlider [class*=swiper-button]:after {
    font-size: 20px;
    line-height: 40px;
  }
  .games {
    padding-top: 42px;
  }
  .games .sectionTitle {
    margin-bottom: 35px;
  }
  .happyColorCard .gameSlogan {
    font-size: 18px;
    line-height: 120%;
  }
  .happyColorCard .gameIcon {
    border-radius: 18px;
    width: 98px;
    height: 98px;
    bottom: auto;
    top: 50%;
    margin-top: -49px;
  }
  .happyColorCard .gameHead {
    padding-left: 114px;
    margin-bottom: 35px;
  }
  .happyColorCard .gameVisual {
    margin-top: 45px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .soonCard {
    display: flex;
    flex-direction: column;
  }
  .soonCard .detailed {
    max-width: 100%;
    padding-bottom: 12px;
  }
  .soonVisual {
    order: 1;
    max-width: 668px;
    margin: 19px auto 0;
    width: 100%;
    min-height: 723px;
  }
  .soonVisual:before {
    width: 243px;
    height: 525px;
    left: -2.245508982%;
    top: auto;
    bottom: -10.472541507%;
  }
  .soonVisual:after {
    width: 260px;
    height: 203px;
    left: 54.1916167665%;
    top: 49.0421455939%;
    transform: rotate(6.52deg);
    transform-origin: left bottom;
  }
  .soonGame1 {
    width: 671px;
    top: 0px;
    left: -18.5628742515%;
  }
  .soonGame1:before {
    width: 172px;
    height: 172px;
    left: 100%;
    top: -14.1772151899%;
  }
  .soonGame2 {
    width: 674px;
    transform: rotate(6.52deg);
    transform-origin: left bottom;
    left: 50.2994011976%;
    top: 21.0727969349%;
  }
  .soonGame3 {
    width: 308px;
    left: 17.2155688623%;
    top: 46.4878671775%;
    transform: rotate(-2.02deg);
    transform-origin: left top;
  }
  .soonGame3:before {
    width: 216px;
    height: 221px;
    left: 72.0779220779%;
    top: 67.4641148325%;
    transform: rotate(2.02deg);
  }
  .soonGame3:after {
    content: "";
    display: block;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/coins.png);
    width: 150px;
    height: 150px;
    left: 111.038961039%;
    top: 70.0956937799%;
    z-index: -1;
  }
}
@media only screen and (max-width: 1279px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 1279px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 1279px) and (-o-min-device-pixel-ratio: 2/1), only screen and (max-width: 1279px) and (min-device-pixel-ratio: 2), only screen and (max-width: 1279px) and (min-resolution: 192dpi), only screen and (max-width: 1279px) and (min-resolution: 2dppx) {
  .soonGame3:after {
    background-image: url(../img/coins@2x.png);
  }
}
@media (max-width: 1279px) {
  .headText {
    font-size: 18px;
  }
  .headText + * {
    margin-top: 55px;
  }
  .about:before {
    background-image: url(../img/body-back-tablet.svg);
    height: 2681px;
    background-size: 3330px auto;
    background-position: calc(50% - 327px) center;
    top: calc(50% - 1617px);
  }
  .aboutInner .imageContainer {
    margin-top: 55px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 668px;
  }
  .aboutCollage.var1:before {
    left: 0px;
    top: 36px;
    height: calc(100% - 36px);
  }
  .principlesList .icon {
    width: 172px;
    top: 0px;
    right: -16px;
  }
  .principlesList .accordionContent {
    height: auto;
    margin-top: 16px;
  }
  .principlesList .accordion {
    padding: 0px 228px 0px 0px;
    min-height: 140px;
  }
  .principlesList .accordion + .accordion {
    margin-top: 48px;
  }
  .principlesList .textContainer, .principlesList .serviceCard .cardText, .serviceCard .principlesList .cardText {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .principles {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .principles .sectionTitle {
    margin-bottom: 24px;
  }
  .nameImage {
    width: 100%;
    left: auto;
    margin-left: 0px;
  }
  .hiring {
    padding-top: 90px;
    padding-bottom: 96px;
  }
  .hiring .sectionTitle {
    margin-bottom: 5px;
  }
  .hiringBullet {
    max-width: 48.8023952096%;
    margin-top: -35px;
    padding-right: 0px;
  }
  .hiringBullet .itemTitle {
    line-height: 120%;
  }
  .hiringBullet .btnMain {
    margin-top: 20px;
  }
  .services {
    padding-bottom: 0px;
    padding-top: 97px;
  }
  .services .headText {
    max-width: 554px;
  }
  .services .headText + * {
    margin-top: 64px;
  }
  .serviceCard {
    margin: 0 calc((908px - 100vw) / 2);
    padding-left: calc((100vw - 908px) / 2);
    padding-right: calc((100vw - 908px) / 2);
    align-items: center;
  }
  .serviceCard .cardVisual {
    width: 295px;
    height: 270px;
  }
  .serviceCard .cardContent {
    width: calc(100% - 295px);
    padding-left: 47px;
    max-width: 100%;
  }
  .serviceCard .cardText {
    font-size: 20px;
    margin-top: 16px;
  }
  .service-1 {
    background-color: #F8FDFF;
  }
  .service-1 .figure:first-child {
    width: 54.2372881356%;
    height: 59.2592592593%;
    left: 8.4745762712%;
    top: 12.2222222222%;
  }
  .service-1 .figure:nth-child(2) {
    width: 38.3050847458%;
    height: 41.8518518519%;
    left: 45.4237288136%;
    top: 10.7407407407%;
  }
  .service-1 .figure:nth-child(3) {
    width: 50.8474576271%;
    height: 55.5555555556%;
    left: 33.8983050847%;
    top: 38.5185185185%;
  }
  .service-2 {
    background-color: #FFF9F7;
  }
  .service-2 .figure:first-child {
    width: 68.1355932203%;
    height: 32.962962963%;
    transform: rotate(-4.02deg);
    left: 17.2881355932%;
    top: 49.2592592593%;
  }
  .service-2 .figure:nth-child(2) {
    transform: rotate(-11.04deg);
    width: 68.813559322%;
    height: 24.4444444444%;
    left: 13.2203389831%;
    top: 43.7037037037%;
  }
  .service-2 .figure:nth-child(3) {
    transform: rotate(-11.04deg);
    width: 68.813559322%;
    height: 11.4814814815%;
    left: 14.5762711864%;
    top: 35.1851851852%;
  }
  .service-2 .figure:nth-child(4) {
    transform: rotate(-26.04deg) rotateX(180deg);
    width: 68.813559322%;
    height: 11.4814814815%;
    left: 9.4915254237%;
    top: 24.4444444444%;
  }
  .service-3 {
    background-color: #F7FFF6;
  }
  .service-3 .figure:first-child {
    width: 32.2033898305%;
    height: 15.5555555556%;
    transform: rotate(-51.82deg);
    left: 2.0338983051%;
    top: 45.1851851852%;
  }
  .service-3 .figure:nth-child(2) {
    width: 68.813559322%;
    height: 13.7037037037%;
    transform: rotate(68.18deg);
    left: 17.9661016949%;
    top: 43.7037037037%;
  }
  .service-3 .figure:nth-child(3) {
    width: 30.8474576271%;
    height: 15.5555555556%;
    transform: rotate(-171.82deg);
    left: 60.3389830508%;
    top: 23.7037037037%;
  }
  .service-3 .figure:nth-child(4) {
    width: 30.8474576271%;
    height: 17.4074074074%;
    transform: rotate(113.18deg);
    left: 69.4915254237%;
    top: 37.037037037%;
  }
  .service-3 .figure:nth-child(5) {
    width: 77.2881355932%;
    height: 10.3703703704%;
    transform: rotate(61.56deg);
    left: 11.5254237288%;
    top: 47.4074074074%;
  }
  .service-3 .figure:nth-child(6) {
    width: 32.2033898305%;
    height: 13.3333333333%;
    transform: rotate(23.18deg);
    left: 7.1186440678%;
    top: 60.7407407407%;
  }
  .service-4 {
    background-color: #FFF9F9;
  }
  .service-4 .figure:first-child {
    width: 67.7966101695%;
    height: 74.0740740741%;
    transform: rotate(-105deg);
    left: 7.1186440678%;
    top: 16.6666666667%;
  }
  .service-4 .figure:nth-child(2) {
    width: 73.2203389831%;
    height: 80%;
    transform: rotate(-90deg);
    left: 17.2881355932%;
    top: 8.8888888889%;
  }
  .service-4 .figure:nth-child(3) {
    width: 44.406779661%;
    height: 48.5185185185%;
    transform: rotate(-138.13deg);
    left: 24.0677966102%;
    top: 27.7777777778%;
  }
  .service-5 {
    background-color: #FFF7FF;
  }
  .service-5 .figure {
    width: 8.813559322%;
  }
  .service-5 .figure:first-child {
    height: 40.3703703704%;
    left: 12.2033898305%;
    top: 36.6666666667%;
  }
  .service-5 .figure:nth-child(2) {
    height: 56.2962962963%;
    left: 21.0169491525%;
    top: 23.3333333333%;
  }
  .service-5 .figure:nth-child(3) {
    height: 32.2222222222%;
    left: 29.8305084746%;
    top: 50.3703703704%;
  }
  .service-5 .figure:nth-child(4) {
    height: 65.5555555556%;
    left: 36.2711864407%;
    top: 11.4814814815%;
  }
  .service-5 .figure:nth-child(5) {
    height: 47.4074074074%;
    left: 44.7457627119%;
    top: 38.1481481481%;
  }
  .service-5 .figure:nth-child(6) {
    height: 52.5925925926%;
    left: 51.5254237288%;
    top: 27.037037037%;
  }
  .service-5 .figure:nth-child(7) {
    height: 56.2962962963%;
    left: 60.3389830508%;
    top: 20.3703703704%;
  }
  .service-5 .figure:nth-child(8) {
    height: 40.3703703704%;
    left: 66.7796610169%;
    top: 42.2222222222%;
  }
  .service-5 .figure:nth-child(9) {
    height: 52.5925925926%;
    left: 75.593220339%;
    top: 27.037037037%;
  }
  .service-6 {
    background-color: #FDFFF5;
  }
  .service-6 .figure:first-child {
    border-right: 134px solid #E35C0F;
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
    height: 59.6296296296%;
    transform: rotate(-15deg);
    left: 21.0169491525%;
    top: 19.2592592593%;
  }
  .service-6 .figure:nth-child(2) {
    width: 12.8813559322%;
    height: 59.6296296296%;
    transform: rotate(-6.49deg);
    left: 60.3389830508%;
    top: 12.2222222222%;
  }
  .service-6 .figure:nth-child(3) {
    width: 5.7627118644%;
    height: 20%;
    transform: rotate(45deg);
    left: 68.1355932203%;
    top: 14.0740740741%;
  }
  .service-6 .figure:nth-child(4) {
    width: 5.7627118644%;
    height: 20%;
    transform: rotate(75deg);
    left: 75.593220339%;
    top: 28.5185185185%;
  }
  .service-6 .figure:nth-child(5) {
    width: 5.7627118644%;
    height: 20%;
    transform: rotate(105deg);
    left: 75.9322033898%;
    top: 45.5555555556%;
  }
  .service-6 .figure:nth-child(6) {
    width: 10.1694915254%;
    height: 33.7037037037%;
    transform: rotate(-45deg);
    left: 36.6101694915%;
    top: 60%;
  }
  .service-6 .figure:nth-child(7) {
    width: 9.4915254237%;
    height: 33.7037037037%;
    transform: rotate(-14.44deg);
    left: 14.5762711864%;
    top: 39.2592592593%;
  }
  .service-7 {
    background-color: #EEF9FF;
  }
  .service-7 .figure:first-child {
    width: 7.1186440678%;
    height: 20.7407407407%;
    transform: rotate(-55deg);
    left: 23.3898305085%;
    top: 15.1851851852%;
  }
  .service-7 .figure:nth-child(2) {
    width: 62.0338983051%;
    height: 67.7777777778%;
    left: 17.9661016949%;
    top: 15.9259259259%;
  }
  .service-7 .figure:nth-child(3) {
    width: 7.4576271186%;
    height: 21.1111111111%;
    transform: rotate(5deg);
    left: 53.5593220339%;
    top: 6.6666666667%;
  }
  .service-7 .figure:nth-child(4) {
    width: 7.1186440678%;
    height: 20.7407407407%;
    transform: rotate(65deg);
    left: 75.593220339%;
    top: 31.4814814815%;
  }
  .service-7 .figure:nth-child(5) {
    width: 7.1186440678%;
    height: 20.7407407407%;
    transform: rotate(125deg);
    left: 66.7796610169%;
    top: 64.0740740741%;
  }
  .service-7 .figure:nth-child(6) {
    width: 52.2033898305%;
    height: 57.037037037%;
    left: 26.1016949153%;
    top: 21.1111111111%;
  }
  .service-7 .figure:nth-child(7) {
    width: 7.4576271186%;
    height: 21.1111111111%;
    transform: rotate(-175deg);
    left: 36.6101694915%;
    top: 72.2222222222%;
  }
  .service-7 .figure:nth-child(8) {
    width: 7.1186440678%;
    height: 20.7407407407%;
    transform: rotate(-115deg);
    left: 14.9152542373%;
    top: 48.1481481481%;
  }
}
@media (max-width: 991px) {
  .container {
    width: 700px;
  }
  .happyColorCard .gameVisual {
    margin-right: 0px;
  }
  .soonVisual {
    min-height: 783px;
  }
  .serviceCard {
    margin: 0 calc((668px - 100vw) / 2);
    padding-left: calc((100vw - 668px) / 2);
    padding-right: calc((100vw - 668px) / 2);
  }
}
@media (max-width: 767px) {
  body {
    font-size: 12px;
    line-height: 19px;
  }
  .container {
    width: 100%;
  }
  .sectionTitle {
    font-size: 24px;
    line-height: 29px;
  }
  .itemTitle {
    font-size: 16px;
  }
  .hero {
    padding-top: 4px;
    padding-bottom: 49px;
  }
  .heroVisual {
    height: 142px;
  }
  .heroVisual .characters {
    width: 403px;
  }
  .heroText {
    font-size: 14px;
    max-width: 242px;
    margin-top: 42px;
  }
  .heroText:before {
    width: 105px;
    height: 96px;
    top: -27px;
    left: -46px;
  }
  .heroText:after {
    -webkit-mask-position: -46px -27px;
    mask-position: -46px -27px;
    -webkit-mask-size: 105px 96px;
    mask-size: 105px 96px;
  }
  .gamesSlider .swiperNavigation {
    width: 76px;
    top: -51px;
  }
  .gamesSlider [class*=swiper-button] {
    width: 32px;
    height: 32px;
    border-width: 1px;
  }
  .gamesSlider [class*=swiper-button]:after {
    font-size: 16px;
    line-height: 30px;
  }
  .gamesSlider .swiper-button-next {
    padding-right: 2px;
  }
  .gamesSlider .swiper-button-prev {
    padding-left: 2px;
  }
  .games {
    padding-bottom: 0px;
  }
  .games .sectionTitle {
    margin-bottom: 22px;
  }
  .happyColorCard .gameSlogan {
    font-size: 12px;
    line-height: 160%;
    margin-top: 4px;
  }
  .happyColorCard .gameIcon {
    border-radius: 12px;
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
  .happyColorCard .gameHead {
    padding-left: 86px;
    margin-bottom: 27px;
  }
  .happyColorCard .gameVisual {
    width: 87.8048780488%;
    margin-top: 33px;
    max-width: 100%;
  }
  .soonCard .detailed {
    font-size: 12px;
    line-height: 160%;
    max-width: 448px;
    padding-bottom: 28px;
  }
  .soonCard .itemTitle {
    margin-bottom: 4px;
  }
  .soonVisual {
    min-height: 575px;
    margin-top: 0px;
    max-width: 448px;
    margin-left: 0px;
  }
  .soonVisual:before {
    width: 38.1097560976%;
    height: 54.7474747475%;
    left: -3.9634146341%;
    top: 36.3636363636%;
  }
  .soonVisual:after {
    width: 41.7682926829%;
    height: 21.6161616162%;
    left: 49.3902439024%;
    top: 39.1919191919%;
  }
  .soonGame1 {
    width: 108.2317073171%;
    left: -22.256097561%;
  }
  .soonGame1:before {
    width: 25.7075471698%;
    height: 43.6%;
    left: 78.7735849057%;
    top: -2.4%;
  }
  .soonGame2 {
    width: 108.2317073171%;
    left: 45.7317073171%;
    top: 15.7575757576%;
  }
  .soonGame3 {
    width: 49.3902439024%;
    left: 16.4634146341%;
    top: 38.9898989899%;
  }
  .soonGame3:before {
    width: 69.7435897436%;
    height: 53.0303030303%;
    left: 54.8717948718%;
    top: 70.0757575758%;
    z-index: 1;
  }
  .soonGame3:after {
    width: 48.7179487179%;
    height: 35.9848484848%;
    left: 84.6153846154%;
    top: 61.3636363636%;
    z-index: 0;
  }
  .headText {
    font-size: 14px;
    line-height: 22px;
  }
  .headText.center {
    text-align: left;
  }
  .headText + * {
    margin-top: 16px;
  }
  .about {
    padding-top: 32px;
  }
  .about:before {
    background-image: url(../img/body-back-mob.svg);
    height: 1802px;
    background-size: 2783px auto;
    background-position: calc(50% - 57px) center;
    top: calc(50% - 1172px);
  }
  .aboutInner .imageContainer {
    margin-top: 32px;
    padding-right: 0px;
    width: auto;
    margin-left: -16px;
    margin-right: -16px;
  }
  .aboutCollage.var1 {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .aboutCollage.var1:before {
    top: 16px;
    height: calc(100% - 16px);
  }
  .aboutCollage.var1 .image:first-child {
    max-width: calc(100% - 32px);
  }
  .aboutCollage.var1 .image:nth-child(2) {
    width: calc(50% - 16px);
    margin-top: -56px;
  }
  .aboutCollage.var1 .image:nth-child(2):after {
    height: 72px;
  }
  .aboutCollage.var1 .image:nth-child(3) img {
    height: calc(100% - 16px);
  }
  .principlesList .icon {
    position: relative;
    width: 123px;
    top: auto;
    right: auto;
    margin-left: -11px;
    margin-bottom: 24px;
  }
  .principlesList .accordionContent {
    margin-top: 8px;
  }
  .principlesList .accordion {
    padding: 0px;
    min-height: 0px;
  }
  .principlesList .accordion + .accordion {
    margin-top: 56px;
  }
  .principles {
    padding-top: 46px;
  }
  .principles .sectionTitle {
    margin-bottom: 32px;
  }
  .services {
    padding-top: 62px;
  }
  .services .sectionTitle {
    text-align: left;
  }
  .hiring {
    padding-bottom: 64px;
  }
  .hiringBullet {
    max-width: 48.8023952096%;
    margin-top: -10px;
    padding-right: 0px;
  }
  .hiringBullet .itemTitle {
    line-height: 120%;
  }
  .hiringBullet .btnMain {
    margin-top: 16px;
  }
  .serviceCard {
    margin: 0 -16px;
    padding-left: 24px;
    padding-right: 24px;
    min-height: 200px;
  }
  .serviceCard .cardVisual {
    width: 122px;
    height: 112px;
  }
  .serviceCard .cardContent {
    width: calc(100% - 122px);
    padding-left: 26px;
  }
  .serviceCard .cardText {
    font-size: 12px;
    line-height: 160%;
    margin-top: 8px;
  }
  .services .headText {
    max-width: 100%;
  }
  .services .headText + * {
    margin-top: 48px;
  }
  .service-6 .figure:first-child {
    border-right: 55px solid #E35C0F;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
  }
}
@media (max-width: 767px) and (min-width: 480px) {
  .heroVisual {
    height: 189px;
  }
  .heroVisual .characters {
    width: 537px;
  }
}
@media (max-width: 479px) {
  .soonVisual {
    min-height: 495px;
    max-width: 328px;
  }
  .hiringBullet .btnMain {
    width: 100%;
  }
}
.innerPage {
  margin-bottom: auto;
  padding-top: 68px;
  padding-bottom: 128px;
}
@media (max-width: 1279px) {
  .innerPage {
    padding-top: 48px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .innerPage {
    padding-top: 24px;
    padding-bottom: 55px;
  }
}

.textContent {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
}
@media (max-width: 1279px) {
  .textContent {
    font-size: 16px;
    line-height: 172%;
  }
}
@media (max-width: 767px) {
  .textContent {
    font-size: 12px;
    line-height: 160%;
  }
}
.textContent h1,
.textContent .firstCap {
  display: block;
  margin-top: 68px;
  margin-bottom: 52px;
  font-family: "Mersad", "sans-serif";
  font-size: 72px;
  line-height: 72px;
  color: #100064;
  font-weight: 700;
}
@media (max-width: 1279px) {
  .textContent h1,
  .textContent .firstCap {
    margin-top: 48px;
    margin-bottom: 28px;
    font-size: 36px;
    line-height: 120%;
  }
}
@media (max-width: 767px) {
  .textContent h1,
  .textContent .firstCap {
    margin-top: 24px;
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 120%;
  }
}
.textContent h1:first-child,
.textContent .firstCap:first-child {
  margin-top: 0px;
}
.textContent h1:last-child,
.textContent .firstCap:last-child {
  margin-bottom: 0px;
}
.textContent h2,
.textContent .secCap {
  display: block;
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 40px;
  color: #100064;
  font-weight: 800;
}
@media (max-width: 1279px) {
  .textContent h2,
  .textContent .secCap {
    margin-top: 32px;
    font-size: 24px;
    line-height: 130%;
    font-weight: 900;
  }
}
@media (max-width: 767px) {
  .textContent h2,
  .textContent .secCap {
    font-size: 16px;
    line-height: 130%;
  }
}
.textContent h2:first-child,
.textContent .secCap:first-child {
  margin-top: 0px;
}
.textContent h2:last-child,
.textContent .secCap:last-child {
  margin-bottom: 0px;
}
.textContent p,
.textContent ul {
  margin-top: 16px;
  margin-bottom: 16px;
}
.textContent p:first-child,
.textContent ul:first-child {
  margin-top: 0px;
}
.textContent p:last-child,
.textContent ul:last-child {
  margin-bottom: 0px;
}
.textContent .lg {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
}
.textContent .lg:first-child {
  margin-top: 0px;
}
.textContent .lg:last-child {
  margin-bottom: 0px;
}
@media (max-width: 1279px) {
  .textContent .lg {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 172%;
  }
}
@media (max-width: 767px) {
  .textContent .lg {
    font-size: 14px;
    line-height: 160%;
  }
}
.textContent ul {
  padding-left: 12px;
}
@media (max-width: 1279px) {
  .textContent ul {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .textContent ul {
    padding-left: 8px;
  }
}
.textContent ul li {
  position: relative;
  padding-left: 16px;
}
@media (max-width: 1279px) {
  .textContent ul li {
    padding-left: 14px;
  }
}
@media (max-width: 767px) {
  .textContent ul li {
    padding-left: 10px;
  }
}
.textContent ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 14px;
  width: 3px;
  height: 3px;
  background-color: #333333;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .textContent ul li::before {
    width: 2px;
    height: 2px;
    top: 10px;
  }
}

.errorMessage {
  padding-top: 20px;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 1279px) {
  .errorMessage {
    padding-top: 8px;
  }
}
@media (max-width: 767px) {
  .errorMessage {
    padding-top: 16px;
    margin-bottom: 48px;
  }
}
.errorMessage .code {
  display: block;
  font-size: 124px;
  line-height: 100%;
  color: #100064;
  font-weight: 900;
}
@media (max-width: 1279px) {
  .errorMessage .code {
    font-size: 92px;
  }
}
@media (max-width: 767px) {
  .errorMessage .code {
    font-size: 60px;
  }
}
.errorMessage .message {
  display: block;
  margin-top: 22px;
  font-size: 32px;
  line-height: 40px;
  color: #100064;
  font-weight: 800;
}
@media (max-width: 1279px) {
  .errorMessage .message {
    margin-top: 20px;
    font-size: 24px;
    line-height: 130%;
    font-weight: 900;
  }
}
@media (max-width: 767px) {
  .errorMessage .message {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
