/* Переопределяем фон сайта для светлого кейса */
body { background: #DFE1F0; }
.grid-bg, .particles { display: none; }

/* Хлебные крошки — тёмный текст */
.breadcrumbs__list a { color: #000; }
.breadcrumbs__list span { color: #000; }
.breadcrumbs__list li+li::before { color: #000; }

/* Шапка — тёмный текст для светлого фона */
.header { border-bottom-color: rgba(0,0,0,0.08); }
.header__logo img { filter: brightness(0); }
.header__menu ul li a { color: rgba(0,0,0,0.65); }
.header__menu ul li a:hover,
.header__menu ul li a.nav-active { color: var(--accent-color); }
.header__menu ul li a::after { background: var(--accent-color); }
.header__btn { background: #090C14; color: #fff; }
.header__btn:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* Текст в контенте кейса */
.main-base-light { color: #1a1a2e; }

/* Форма обратной связи — сохраняем тёмный фон на всю ширину */
.contact-form-section {
    background: #090C14;
    max-width: 100%;
    padding: 80px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form-section > * {
    width: 100%;
    max-width: 770px;
}

@font-face {
  font-family: Futura;
  font-display: swap;
  src: url("../fonts/Futura Book font.woff2") format("woff2"), url("../fonts/Futura Book font.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Nunito;
  font-display: swap;
  src: url("../fonts/Nunito-Regular.woff2") format("woff2"), url("../fonts/Nunito-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: GT;
  font-display: swap;
  src: url("../fonts/GT-Eesti-Display-Thin-Trial.woff2") format("woff2"), url("../fonts/GT-Eesti-Display-Thin-Trial.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: GT;
  font-display: swap;
  src: url("../fonts/GT-Eesti-Display-Bold-Italic-Trial.woff2") format("woff2"), url("../fonts/GT-Eesti-Display-Bold-Italic-Trial.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: GT;
  font-display: swap;
  src: url("../fonts/GT-Eesti-Display-UltraBold-Trial.woff2") format("woff2"), url("../fonts/GT-Eesti-Display-UltraBold-Trial.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: GT;
  font-display: swap;
  src: url("../fonts/GT-Eesti-Display-Bold-Trial.woff2") format("woff2"), url("../fonts/GT-Eesti-Display-Bold-Trial.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Lilex;
  font-display: swap;
  src: url("../fonts/Lilex-Bold.woff2") format("woff2"), url("../fonts/Lilex-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Lilex;
  font-display: swap;
  src: url("../fonts/Lilex-Medium.woff2") format("woff2"), url("../fonts/Lilex-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Lilex;
  font-display: swap;
  src: url("../fonts/Lilex-Regular.woff2") format("woff2"), url("../fonts/Lilex-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 991.98px) {
  .fade-in-js-header {
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  }
}

@media (min-width: 991.98px) {
  .fade-in-js-header.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade-in-js {
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.fade-in-js.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.container-base {
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 575.98px) {
  .container-base {
    max-width: 540px;
  }
}
@media (min-width: 767.98px) {
  .container-base {
    max-width: 720px;
  }
}
@media (min-width: 991.98px) {
  .container-base {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-base {
    max-width: 1400px;
    padding: 0 30px 0 100px;
  }
}

.img-adaptive {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.img-adaptive > picture img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.img-adaptive > img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.main-base-light {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  font-size: 16px;
  background-color: #DFE1F0;
}

.dream-case-main {
  padding-top: 24px;
  position: relative;
}
.dream-case-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .dream-case-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dream-case-main__description {
  max-width: min(400px, 100%);
  width: 100%;
  z-index: 2;
}
@media (max-width: 1380px) {
  .dream-case-main__description {
    max-width: calc(100px + 300 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 991.98px) {
  .dream-case-main__description {
    max-width: 100%;
  }
}
.dream-case-main__list {
  font-family: Lilex;
  font-size: 18px;
  font-weight: 400;
  line-height: 127%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--text-color);
}
@media (max-width: 1380px) {
  .dream-case-main__list {
    font-size: calc(16px + 2 * (100vw - 320px) / 1060);
  }
}
.dream-case-main__text-main {
  z-index: 2;
}
.dream-case-main__title-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
@media (max-width: 991.98px) {
  .dream-case-main__title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    margin: 0 0 16px 0;
  }
}
.dream-case-main__title-h1 {
  font-size: 80px;
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-color);
}
@media (max-width: 1380px) {
  .dream-case-main__title-h1 {
    font-size: calc(40px + 40 * (100vw - 320px) / 1060);
  }
}
.dream-case-main__details {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 110px;
  color: var(--text-color);
}
@media (max-width: 991.98px) {
  .dream-case-main__details {
    max-width: none;
  }
}
.dream-case-main__p {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media (max-width: 1380px) {
  .dream-case-main__p {
    font-size: calc(35px + 5 * (100vw - 320px) / 1060);
  }
}
.dream-case-main__p-accent {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0043f1), color-stop(50%, transparent));
  background: linear-gradient(to right, #0043f1 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: -100% 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dream-case-main__p-accent span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .dream-case-main__p-accent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2px 10px;
    margin-left: 0;
    width: 95vw;
  }
}
.dream-case-main__img {
  padding: 0 0 50% 0;
  margin-top: -140px;
  z-index: 1;
  background-position: top;
}
@media (max-width: 1200px) {
  .dream-case-main__img {
    margin-top: -110px;
  }
}
@media (max-width: 991.98px) {
  .dream-case-main__img {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 767.98px) {
  .dream-case-main__img {
    padding: 0 0 65% 0;
  }
}
.dream-case-main__screen {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  height: 70%;
}
@media (max-width: 991.98px) {
  .dream-case-main__screen {
    top: 32%;
  }
}
.dream-case-main__img-screen {
  position: relative;
  height: 100%;
}
@media (max-width: 991.98px) {
  .dream-case-main__img-screen {
    padding: 0 0 60% 0;
  }
}
@media (max-width: 767.98px) {
  .dream-case-main__img-screen {
    padding: 0 0 74% 0;
  }
}
.dream-case-main__img-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.dream-case-main__p-delay-1 {
  -webkit-animation: fillBackgroundAndColor 2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
          animation: fillBackgroundAndColor 2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}
.dream-case-main__p-delay-2 {
  -webkit-animation: fillBackgroundAndColor 2s cubic-bezier(0.4, 0, 0.2, 1) 2.3s forwards;
          animation: fillBackgroundAndColor 2s cubic-bezier(0.4, 0, 0.2, 1) 2.3s forwards;
}

@-webkit-keyframes fillBackgroundAndColor {
  from {
    background-position: 100% 0;
    color: #000;
  }
  to {
    background-position: 0% 0;
    color: #fff;
  }
}

@keyframes fillBackgroundAndColor {
  from {
    background-position: 100% 0;
    color: #000;
  }
  to {
    background-position: 0% 0;
    color: #fff;
  }
}
.dream-case-text {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% auto;
  grid-template-columns: 30% auto;
  gap: 20px;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .dream-case-text {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.dream-case-text__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .dream-case-text__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dream-case-text__col-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.dream-case-text__title-h2 {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
}
@media (max-width: 1380px) {
  .dream-case-text__title-h2 {
    font-size: calc(26px + 6 * (100vw - 320px) / 1060);
  }
}
.dream-case-text__title-accent {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.dream-case-text__svg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
}
.dream-case-text__svg svg {
  width: 100%;
  height: 100%;
}
.dream-case-text__accent-span {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.dream-case-text__p-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dream-case-text__p-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.dream-case-text__p-col p {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 127%;
  letter-spacing: 0.01em;
}
.dream-case-text__p {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 127%;
  letter-spacing: 0.01em;
}
.dream-case-text__ul {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 127%;
  letter-spacing: 0.01em;
  margin: 0 0 0 20px;
}
.dream-case-text__ul li {
  position: relative;
  list-style-type: disc;
}

.draw-path {
  fill: none;
  stroke: #3D58E5;
  stroke-width: 5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.draw-path-animate .draw-path {
  -webkit-animation: draw 1s linear forwards;
          animation: draw 1s linear forwards;
}

.dream-case-about__wrap {
  position: relative;
}
.dream-case-about__wrap_bt {
  position: relative;
  padding-bottom: 300px;
}
@media (max-width: 1380px) {
  .dream-case-about__wrap_bt {
    padding-bottom: calc(100px + 200 * (100vw - 320px) / 1060);
  }
}
.dream-case-about__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dfe1ef));
  background: linear-gradient(180deg, #fff 0%, #dfe1ef 100%);
}
.dream-case-about__inner {
  padding: 32px 0;
}
@media (max-width: 767.98px) {
  .dream-case-about__inner {
    padding: 60px 0 32px 0;
  }
}
.dream-case-about__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.dream-case-about__image-desc {
  position: relative;
  padding: 0 0 150% 0;
  width: 60%;
}
@media (max-width: 767.98px) {
  .dream-case-about__image-desc {
    display: none;
  }
}
.no-webp .dream-case-about__image-desc:before {
  background: url("../img/na-mechtu/3.png") no-repeat; }
.dream-case-about__image-desc:before {
  content: "";
  background-size: contain;
  position: absolute;
  bottom: -176px;
  left: -234px;
  z-index: 2;
  width: 100%;
  min-height: 330px;
}
.dream-case-about__image-desc img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dream-case-about__image-mob {
  position: relative;
  padding: 0 0 150% 0;
  min-width: 250px;
}
@media (max-width: 767.98px) {
  .dream-case-about__image-mob {
    width: 100%;
    min-height: 1280px;
  }
}
@media (max-width: 575.98px) {
  .dream-case-about__image-mob {
    min-height: 1700px;
  }
}
.no-webp .dream-case-about__image-mob:before {
  background: url("../img/na-mechtu/4.png") no-repeat; }
.dream-case-about__image-mob:before {
  content: "";
  background-size: contain !important;
  position: absolute;
  bottom: -215px;
  left: -145px;
  z-index: 2;
  width: 100%;
  height: 300px;
}
@media (max-width: 767.98px) {
  .dream-case-about__image-mob:before {
    bottom: -95px;
    left: 50px;
    height: 150px;
    width: 300px;
  }
}
@media (max-width: 575.98px) {
  .dream-case-about__image-mob:before {
    bottom: -60px;
    left: 100px;
    height: 100px;
    width: 200px;
  }
}
.dream-case-about__image-mob img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dream-case-about__cloud {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.dream-case-about__cloud-img {
  padding: 0 0 54% 0;
}

.grid-dream-case-about {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 0px 1fr 0px 1fr 0px 1fr;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 0px 0.8fr 0px 1fr 0px 1fr;
  grid-template-rows: 1fr 0.8fr 1fr 1fr;
  gap: 0px 0px;
      grid-template-areas: "grid-dream-case-about-1 grid-dream-case-about-2 . grid-dream-case-about-3" "grid-dream-case-about-1 . . ." "grid-dream-case-about-1 . grid-dream-case-about-4 ." "grid-dream-case-about-1 . . .";
  padding-top: 120px;
}
@media (max-width: 1380px) {
  .grid-dream-case-about {
    padding-top: calc(32px + 88 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 991.98px) {
  .grid-dream-case-about {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: 0.5fr 0.5fr 0.5fr 0.8fr 1fr;
    grid-template-rows: 0.5fr 0.5fr 0.5fr 0.8fr 1fr;
    gap: 56px 0px;
  }
}
@media (max-width: 991.98px) {
  .grid-dream-case-about__img {
    max-height: 400px;
  }
}
.grid-dream-case-about__img svg {
  width: 100%;
  height: 100%;
}
.grid-dream-case-about__img svg #path3 {
  -webkit-animation: moveX 2s infinite ease-in-out;
          animation: moveX 2s infinite ease-in-out;
}
.grid-dream-case-about__img svg #path4 {
  -webkit-animation: moveX 3.5s infinite ease-in-out;
          animation: moveX 3.5s infinite ease-in-out;
}
.grid-dream-case-about__img svg #path5 {
  -webkit-animation: moveX 2.8s infinite ease-in-out;
          animation: moveX 2.8s infinite ease-in-out;
}
.grid-dream-case-about__img svg #path6 {
  -webkit-animation: moveX 3.2s infinite ease-in-out;
          animation: moveX 3.2s infinite ease-in-out;
}
.grid-dream-case-about__img svg #path7 {
  -webkit-animation: moveX 3.2s infinite ease-in-out;
          animation: moveX 3.2s infinite ease-in-out;
}
.grid-dream-case-about__img svg #path8 {
  -webkit-animation: moveX 3.2s infinite ease-in-out;
          animation: moveX 3.2s infinite ease-in-out;
}
.grid-dream-case-about-1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 7;
  -ms-grid-column: 1;
  grid-area: grid-dream-case-about-1;
}
@media (max-width: 991.98px) {
  .grid-dream-case-about-1 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: 4/1/6/4;
  }
}

.grid-dream-case-about-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: grid-dream-case-about-2;
}
@media (max-width: 991.98px) {
  .grid-dream-case-about-2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
  }
}

.grid-dream-case-about-3 {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: grid-dream-case-about-3;
}
@media (max-width: 991.98px) {
  .grid-dream-case-about-3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-area: 2/2/3/4;
  }
}

.grid-dream-case-about-4 {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  grid-area: grid-dream-case-about-4;
}
@media (max-width: 991.98px) {
  .grid-dream-case-about-4 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3/1/4/3;
  }
}

.grid-dream-case-about__img,
.grid-dream-case-about__item {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
  will-change: opacity, transform;
}

.grid-dream-case-about__img.animate,
.grid-dream-case-about__item.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.grid-dream-case-about-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.grid-dream-case-about-2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.grid-dream-case-about-3 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.grid-dream-case-about-4 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

@-webkit-keyframes countUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes countUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.item-grid-dream-about__span.animate-text {
  -webkit-animation: countUp 0.8s ease-out forwards;
          animation: countUp 0.8s ease-out forwards;
  opacity: 0;
}

.item-grid-dream-about_a {
  margin: 0 0 0 25px;
}

.item-grid-dream-about {
  font-family: var(--font-main);
  position: relative;
}
.item-grid-dream-about__span {
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.item-grid-dream-about__p {
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 240px;
}
.item-grid-dream-about__elem {
  position: absolute;
  top: 0;
  left: -25px;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

@-webkit-keyframes moveX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes moveX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.dream-case-process__logo {
  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;
}
.dream-case-process__logo-inner {
  width: 486px;
}
@media (max-width: 1380px) {
  .dream-case-process__logo-inner {
    width: calc(300px + 186 * (100vw - 320px) / 1060);
  }
}
.dream-case-process__logo-inner svg {
  width: 100%;
  height: 100%;
}
.points-dream-case-process {
  margin-top: 100px;
  border-bottom: 2px solid #fff;
  padding: 0 0 32px 0;
}
@media (max-width: 1380px) {
  .points-dream-case-process {
    margin-top: calc(30px + 70 * (100vw - 320px) / 1060);
  }
}
.points-dream-case-process__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  justify-items: end;
  gap: 20px;
  margin: 0 0 40px 0;
}
@media (max-width: 991.98px) {
  .points-dream-case-process__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 50px;
  }
}
.points-dream-case-process__item {
  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;
  gap: 85px;
}
@media (max-width: 1200px) {
  .points-dream-case-process__item {
    gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .points-dream-case-process__item {
    gap: 40px;
  }
}
@media (max-width: 991.98px) {
  .points-dream-case-process__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.points-dream-case-process__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
  position: relative;
}
.points-dream-case-process__svg {
  max-width: 160px;
}
.points-dream-case-process__svg svg {
  width: 100%;
  height: 100%;
}
.points-dream-case-process__p {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
}
.points-dream-case-process__icon {
  width: 50px;
  width: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.points-dream-case-process__icon svg {
  width: 100%;
  height: 100%;
}

.points-dream-case-process__main,
.points-dream-case-process__icon {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  will-change: opacity, transform;
}

.points-dream-case-process__main.animate,
.points-dream-case-process__icon.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.points-dream-case-process__item:nth-child(1) .points-dream-case-process__main {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.points-dream-case-process__item:nth-child(1) .points-dream-case-process__icon {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.points-dream-case-process__item:nth-child(2) .points-dream-case-process__main {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.points-dream-case-process__item:nth-child(2) .points-dream-case-process__icon {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.points-dream-case-process__item:nth-child(3) .points-dream-case-process__main {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.points-dream-case-process__item:nth-child(3) .points-dream-case-process__icon {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.logos-dream-case-process {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  padding: 40px 0 0 0;
}
@media (max-width: 767.98px) {
  .logos-dream-case-process {
    gap: 0;
  }
}
.logos-dream-case-process__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 60px;
  padding-right: 30px;
  padding-bottom: 60px;
  padding-left: 30px;
}
@media (max-width: 1380px) {
  .logos-dream-case-process__item {
    padding-top: calc(40px + 20 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 1380px) {
  .logos-dream-case-process__item {
    padding-right: calc(22px + 8 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 1380px) {
  .logos-dream-case-process__item {
    padding-bottom: calc(40px + 20 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 1380px) {
  .logos-dream-case-process__item {
    padding-left: calc(22px + 8 * (100vw - 320px) / 1060);
  }
}
.logos-dream-case-process-1 {
  border: 1px solid #3d58e5;
}
@media (max-width: 767.98px) {
  .logos-dream-case-process-1 {
    border: none;
  }
}

.logos-dream-case-process-2 {
  background-color: #fff;
}

.logos-dream-case-process-3 {
  background-color: #000f50;
}

.logos-dream-case-process-4 {
  background-color: #3d58e5;
}

.typography-dream-case-process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0 0 0;
}
@media (max-width: 991.98px) {
  .typography-dream-case-process {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.typography-dream-case-process__colors {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
  width: 50%;
}
@media (max-width: 991.98px) {
  .typography-dream-case-process__colors {
    width: 100%;
  }
}
.typography-dream-case-process__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
  width: 50%;
  padding: 0 0 0 32px;
  position: relative;
}
@media (max-width: 991.98px) {
  .typography-dream-case-process__text {
    width: 100%;
    padding: 0;
  }
}
.typography-dream-case-process__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #fff;
}
@media (max-width: 991.98px) {
  .typography-dream-case-process__text::before {
    display: none;
  }
}
.typography-dream-case-process__title {
  font-family: "Raleway", sans-serif;
  color: #000;
  font-size: 55px;
  font-weight: 500;
  line-height: 120%;
  padding: 30px 0 0 0;
}
.typography-dream-case-process__fonts {
  font-family: "Raleway", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: #000;
}
.typography-dream-case-process__fonts p:first-child {
  letter-spacing: 0.15em;
}
.typography-dream-case-process__fonts p:nth-child(2) {
  letter-spacing: 0.2em;
}
.typography-dream-case-process__fonts p:last-child {
  letter-spacing: 0.25em;
}
.typography-dream-case-process__font {
  font-family: "Raleway", sans-serif;
  padding: 0 0 30px 0;
}
.typography-dream-case-process__font p {
  font-size: 80px;
  line-height: 140%;
  font-weight: 500;
  color: #000;
}
.typography-dream-case-process__font span {
  font-weight: 500;
  font-size: 40px;
  color: #000;
}

.color-dream-case-process {
  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;
}
.color-dream-case-process__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 0 16px 0;
}
@media (max-width: 1380px) {
  .color-dream-case-process__circle {
    width: calc(100px + 100 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 1380px) {
  .color-dream-case-process__circle {
    height: calc(100px + 100 * (100vw - 320px) / 1060);
  }
}
.color-dream-case-process__p {
  font-family: var(--font-third);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 8px 0;
}
.color-dream-case-process__span {
  font-family: var(--font-third);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

.color-dream-case-process-1 {
  background-color: #000f50;
}

.color-dream-case-process-2 {
  background-color: #3d58e5;
}

.color-dream-case-process-3 {
  background-color: #f8faff;
}

.color-dream-case-process-4 {
  background: -webkit-gradient(linear, left top, left bottom, from(#01d7f1), to(#0173f1));
  background: linear-gradient(180deg, #01d7f1 0%, #0173f1 100%);
}

.images-dream-case-process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 32px 0;
}
@media (max-width: 767.98px) {
  .images-dream-case-process {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.images-dream-case-process__item {
  position: relative;
  padding: 0 0 50% 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .images-dream-case-process__item {
    padding: 0 0 74% 0;
  }
}
@media (max-width: 575.98px) {
  .images-dream-case-process__item {
    padding: 0 0 100% 0;
    width: 100vw;
    margin: 0 0 0 -15px;
  }
}
.images-dream-case-process__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dream-case-decisions {
  position: relative;
  overflow: hidden;
  padding-top: 32px;
  padding-bottom: 180px;
}
@media (max-width: 1380px) {
  .dream-case-decisions {
    padding-bottom: calc(50px + 130 * (100vw - 320px) / 1060);
  }
}
.dream-case-decisions__img-1 {
  position: absolute;
  bottom: 0;
  left: -50px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 250px;
}
@media (max-width: 1380px) {
  .dream-case-decisions__img-1 {
    width: calc(100px + 150 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 991.98px) {
  .dream-case-decisions__img-1 {
    left: -70px;
  }
}
@media (max-width: 575.98px) {
  .dream-case-decisions__img-1 {
    left: -20px;
  }
}
.dream-case-decisions__img-2 {
  position: absolute;
  top: 0;
  right: -200px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 640px;
}
@media (max-width: 1380px) {
  .dream-case-decisions__img-2 {
    width: calc(200px + 440 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 767.98px) {
  .dream-case-decisions__img-2 {
    top: 50px;
    right: -180px;
  }
}
@media (max-width: 575.98px) {
  .dream-case-decisions__img-2 {
    top: 150px;
    right: -100px;
  }
}
.dream-case-decisions__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 0px 1fr 0px 1fr 0px 0.8fr;
  grid-template-rows: 1fr 1fr 1fr 0.8fr;
  gap: 0px 0px;
      grid-template-areas: ". grid-dream-case-decisions-2" "grid-dream-case-decisions-1 grid-dream-case-decisions-2" "grid-dream-case-decisions-1 grid-dream-case-decisions-3" ". grid-dream-case-decisions-3";
}
@media (max-width: 767.98px) {
  .dream-case-decisions__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 15px 0;
        grid-template-areas: "grid-dream-case-decisions-2" "grid-dream-case-decisions-1";
  }
}
.dream-case-decisions__cloud {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .dream-case-decisions__cloud {
    bottom: 400px;
  }
}
.dream-case-decisions__cloud-img {
  padding: 0 0 51% 0;
  background-position: top;
}
@media (max-width: 767.98px) {
  .dream-case-decisions__cloud-img {
    padding: 0 0 95% 0;
  }
}

.grid-dream-case-decisions__img {
  position: relative;
  padding: 0 0 63% 0;
}
@media (max-width: 767.98px) {
  .grid-dream-case-decisions__img {
    padding: 0 0 50% 0;
  }
}
.grid-dream-case-decisions__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.grid-dream-case-decisions__detail {
  position: relative;
  max-width: 300px;
}
@media (max-width: 767.98px) {
  .grid-dream-case-decisions__detail {
    display: none;
  }
}
.grid-dream-case-decisions__detail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.grid-dream-case-decisions-1 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: grid-dream-case-decisions-1;
}

.grid-dream-case-decisions-2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: grid-dream-case-decisions-2;
}

.grid-dream-case-decisions-3 {
  -ms-grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: grid-dream-case-decisions-3;
}

@media (max-width: 767.98px) {
  .grid-dream-case-decisions-1 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .grid-dream-case-decisions-2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
}

.item-dream-case-decisions_center {
  padding-top: 40px;
}
@media (max-width: 1380px) {
  .item-dream-case-decisions_center {
    padding-top: calc(10px + 30 * (100vw - 320px) / 1060);
  }
}

.item-dream-case-decisions {
  position: relative;
  z-index: 2;
}
.item-dream-case-decisions:not(:last-child) {
  margin: 0 0 32px 0;
}
.item-dream-case-decisions_reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .item-dream-case-decisions_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.item-dream-case-decisions__img {
  position: relative;
  padding: 0 0 35% 0;
  max-width: 734px;
}
@media (max-width: 991.98px) {
  .item-dream-case-decisions__img {
    padding: 0 0 60% 0;
  }
}
.item-dream-case-decisions__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-dream-case-decisions__img-center {
  position: relative;
  padding: 0 0 30% 0;
}
@media (max-width: 991.98px) {
  .item-dream-case-decisions__img-center {
    padding: 0 0 50% 0;
  }
}
.item-dream-case-decisions__img-center img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-dream-case-decisions__img-left {
  position: relative;
  padding: 0 0 30% 0;
  max-width: 784px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .item-dream-case-decisions__img-left {
    padding: 0 0 50% 0;
  }
}
.item-dream-case-decisions__img-left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-dream-case-decisions__img-wrap {
  margin: 70px 0 32px 0;
}
.item-dream-case-decisions__image-desc {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin: 0 0 0 60px;
}
@media (max-width: 767.98px) {
  .item-dream-case-decisions__image-desc {
    display: none;
  }
}
.item-dream-case-decisions__image-mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 0 32px 0;
}
@media (min-width: 767.98px) {
  .item-dream-case-decisions__image-mob {
    display: none;
  }
}

.text-dream-case-decisions_center {
  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;
  gap: 24px;
}

.text-dream-case-decisions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% auto;
  grid-template-columns: 25% auto;
  gap: 20px;
  padding: 32px 0;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .text-dream-case-decisions {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.text-dream-case-decisions__title {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}
.text-dream-case-decisions__title_center {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 1380px) {
  .text-dream-case-decisions__title_center {
    font-size: calc(20px + 20 * (100vw - 320px) / 1060);
  }
}
.text-dream-case-decisions__p {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 127%;
  letter-spacing: 0.01em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.text-dream-case-decisions__p_center {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.01em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: center;
  max-width: 700px;
}
.text-dream-case-decisions__span-underline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 600;
  position: relative;
}
.text-dream-case-decisions__span-underline svg {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
}

.text-dream-case-decisions-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 468px;
  padding: 32px 24px;
}
@media (max-width: 991.98px) {
  .text-dream-case-decisions-col {
    padding: 0;
  }
}

.img-desc-item-dream-decisions__img {
  position: relative;
  padding: 0 0 33.4% 0;
  width: 60%;
}
.img-desc-item-dream-decisions__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-desc-item-dream-decisions__svg {
  position: absolute;
  right: 0;
  top: -40px;
  width: 238px;
  height: 313px;
}
@media (max-width: 1380px) {
  .img-desc-item-dream-decisions__svg {
    width: calc(100px + 138 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 1380px) {
  .img-desc-item-dream-decisions__svg {
    height: calc(100px + 213 * (100vw - 320px) / 1060);
  }
}
.img-desc-item-dream-decisions__svg svg {
  width: 100%;
  height: 100%;
}

.img-mob-item-dream-decisions__img {
  position: relative;
  padding: 0 0 157% 0;
  width: 100%;
}
.img-mob-item-dream-decisions__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-mob-item-dream-decisions__svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 238px;
  height: 313px;
}
@media (max-width: 1380px) {
  .img-mob-item-dream-decisions__svg {
    width: calc(180px + 58 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 1380px) {
  .img-mob-item-dream-decisions__svg {
    height: calc(180px + 133 * (100vw - 320px) / 1060);
  }
}
.img-mob-item-dream-decisions__svg svg {
  width: 100%;
  height: 100%;
}

.dream-case-functionality {
  position: relative;
  overflow: hidden;
  padding: 20px 0 0 0;
}
.dream-case-functionality__img-cloud {
  position: absolute;
  left: -100px;
  bottom: 0;
  width: 590px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1600px) {
  .dream-case-functionality__img-cloud {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .dream-case-functionality__img-cloud {
    display: none;
  }
}
.dream-case-functionality__mockups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .dream-case-functionality__mockups {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.mockups-dream-case-func__item {
  position: relative;
  padding: 0 0 31.7% 0;
  width: 100%;
  margin: 0 0 32px 0;
}
@media (max-width: 991.98px) {
  .mockups-dream-case-func__item {
    padding: 0 0 58.5% 0;
  }
}
.mockups-dream-case-func__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mockups-dream-case-func__img_index {
  z-index: 1;
}
.mockups-dream-case-func__cloud {
  position: absolute;
  left: -130px;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 300px;
  height: 200px;
}
@media (max-width: 575.98px) {
  .mockups-dream-case-func__cloud {
    position: absolute;
    left: -90px;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 200px;
    height: 150px;
  }
}
.mockups-dream-case-func__cloud2 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
}

.dream-case-collaboration__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
}
@media (max-width: 991.98px) {
  .dream-case-collaboration__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8px;
    gap: 16px;
  }
}
.item-dream-case-collab {
  position: relative;
  padding: 0 0 40% 0;
  width: 50%;
}
@media (max-width: 991.98px) {
  .item-dream-case-collab {
    padding: 0 0 94% 0;
    width: 100%;
  }
}
.item-dream-case-collab img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.item-dream-case-collab__text {
  position: absolute;
  top: 43px;
  left: 15px;
  z-index: 2;
  font-family: var(--font-main);
  font-weight: 700;
  text-transform: uppercase;
  color: #000f50;
}
@media (max-width: 991.98px) {
  .item-dream-case-collab__text {
    top: 25px;
    left: 13px;
  }
}
.item-dream-case-collab__title {
  line-height: 120%;
  font-size: 40px;
}
@media (max-width: 991.98px) {
  .item-dream-case-collab__title {
    font-size: 17px;
  }
}
.item-dream-case-collab__p {
  line-height: 120%;
  font-size: 17px;
}

.dream-case-banner {
  background-color: #fff;
  padding: 0 20px 20px 20px;
}
@media (max-width: 991.98px) {
  .dream-case-banner {
    display: none;
  }
}

.dream-case-banner__img {
  position: relative;
  padding: 0 0 59.2% 0;
  width: 100%;
}
.dream-case-banner__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.text-dream-case-result {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% auto;
  grid-template-columns: 30% auto;
  gap: 20px;
  padding: 32px 0;
  margin: 0 0 16px 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .text-dream-case-result {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.text-dream-case-result__title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: #000;
}
.text-dream-case-result__p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 18px;
  line-height: 128%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.dream-case-result {
  padding-bottom: 130px;
}
@media (max-width: 1380px) {
  .dream-case-result {
    padding-bottom: calc(32px + 98 * (100vw - 320px) / 1060);
  }
}
.dream-case-result__img {
  position: relative;
  padding: 0 0 45% 0;
  width: 100%;
}
@media (max-width: 991.98px) {
  .dream-case-result__img {
    display: none;
  }
}
.dream-case-result__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.dream-case-result__img_mob {
  position: relative;
  padding: 0 0 100% 0;
  width: 100%;
}
@media (min-width: 991.98px) {
  .dream-case-result__img_mob {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .dream-case-result__img_mob {
    padding: 0 0 140% 0;
  }
}
.dream-case-result__img_mob img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.btn-main-arrow {
  border-radius: 28px;
  background: var(--accent-color);
  color: #fff;
  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;
  line-height: 120%;
  padding: 17px 30px 17px 40px;
  gap: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: var(--font-third);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn-main-arrow svg path {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .btn-main-arrow:hover {
    background-color: #fff;
    color: var(--accent-color);
  }
  .btn-main-arrow:hover svg path {
    fill: var(--accent-color);
    -webkit-transform: translate(10px, -20%) rotate(45deg);
        -ms-transform: translate(10px, -20%) rotate(45deg);
            transform: translate(10px, -20%) rotate(45deg);
  }
}

.link-all-projects {
  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;
  line-height: 120%;
  padding: 22px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  background: var(--accent-color);
  font-family: var(--font-third);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
@media (any-hover: hover) {
  .link-all-projects:hover {
    background-color: #fff;
    color: var(--accent-color);
  }
}

.case-realize-idea {
  background: var(--footer-bg);
}
.case-realize-idea__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 75px;
  padding-bottom: 75px;
  gap: 20px;
}
@media (max-width: 1380px) {
  .case-realize-idea__body {
    padding-top: calc(30px + 45 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 1380px) {
  .case-realize-idea__body {
    padding-bottom: calc(30px + 45 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 991.98px) {
  .case-realize-idea__body {
    -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;
  }
}
.case-realize-idea__title {
  font-family: var(--font-main);
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 480px;
  line-height: 120%;
}
@media (max-width: 1380px) {
  .case-realize-idea__title {
    font-size: calc(35px + 5 * (100vw - 320px) / 1060);
  }
}
@media (max-width: 991.98px) {
  .case-realize-idea__title {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .case-realize-idea__title {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .case-realize-idea__btn {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.webp .dream-case-about__image-desc:before { background: url(../img/na-mechtu/3.webp) no-repeat; }
.webp .dream-case-about__image-mob:before { background: url(../img/na-mechtu/4.webp) no-repeat; }
