@font-face {
    font-family: Unbounded;
    src: url("../fonts/Unbounded-VariableFont_wght.ttf");
    /* font-display: swap; */
}
@font-face {
    font-family: Syne;
    src: url("../fonts/Syne-VariableFont_wght.ttf");
    /* font-display: swap; */
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-VariableFont_slnt\,wght.ttf");
}


* {
    user-select: none;
    margin: 0;
    padding: 0;
    font-family: Unbounded, sans-serif;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    box-sizing: border-box;
    color: #fff;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

html { font-size: 1rem; }
@media screen and (max-width:1920px) { html { font-size: calc(0.4833153928955866rem + 0.4305705059203445vw); } }
@media screen and (max-width:991px) { html { font-size: calc(0.009865470852017832rem + 2.062780269058296vw); } }
@media screen and (max-width:768px) { html { font-size: calc(0.5017301038062283rem + 1.0380622837370244vw); } }
@media screen and (max-width:479px) { html { font-size: calc(0.054621848739495715rem + 4.201680672268908vw); } }
@media screen and (max-width:360px) { html { font-size: calc(-0.0027855153203342614rem + 4.456824512534818vw); } }

body {
    background: #262626;
    position: relative;
}
body.active {
  overflow: hidden;
}
.container {
    margin: 0 auto;
    width: 1520px;
    position: relative;
}
a {
    text-decoration: none;
}
h1, h2, h3 {
    font-weight: 700;
}
h1 {
    font-size: clamp(32px, 9vw, 125px);
    text-transform: uppercase;
}
h2 {
    font-size: clamp(21px, 6vw, 64px);
    margin-bottom: 80px;
    text-transform: uppercase;
}
p, span a {
    font-weight: 300;
}
ul, li {
  list-style: none;
}
/*---------------------------------------------------------------------BACKGROUND SECTION */
.bg-img {
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.bg-circle {
    width: 257px;
    height: 227px;
    top: -5%;
    right: 49%;
    background-image: url(/assets/img/bg-circle.webp);
    animation: rotation 250s infinite linear;
}
.bg-cube {
  width: 223px;
  height: 221px;
  bottom: 6%;
  right: 33%;
  background-image: url(/assets/img/bg-cube.webp);
  animation: rotation 250s infinite linear;
}
.bg-cylinder {
  width: 165px;
  height: 245px;
  bottom: 33%;
  right: 20%;
  background-image: url(/assets/img/bg-cylinder.webp);
  animation: rotation-reverse 350s infinite linear;
}
.about .bg-stick {
  left: -12%;
}
.bg-circle.circle-2 {
  width: 209px;
  height: 185px;
  right: 7%;
  top: 92%;
  animation: rotation-reverse 250s infinite linear;
}
.bg-stick {
  width: 165px;
  height: 245px;
  bottom: -3%;
  left: 5%;
  background-image: url(/assets/img/bg-stick.webp);
  animation: rotation-reverse 350s infinite linear;
}
.creation .circle-2 {
  top: 106%;
  animation: rotation 250s infinite linear;
}
.bg-pill {
  width: 155px;
  height: 188px;
  bottom: -3%;
  left: 22%;
  background-image: url(/assets/img/bg-pill.webp);
  animation: rotation-reverse 350s infinite linear;
}
.steps .bg-pill {
  left: 13%;
}
.steps .bg-cylinder {
  right: 0;
  bottom: 29%;
  left: 2%;
  animation: rotation 350s infinite linear;
}
.bg-cone {
  width: 200px;
  height: 217px;
  top: 51%;
  left: -15%;
  background-image: url(/assets/img/bg-cone.webp);
  animation: rotation-reverse 350s infinite linear;
}
.reviews .bg-cylinder {
  bottom: 74%;
  right: 50%;
  animation: rotation 350s infinite linear;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
  
    50% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
  }
  @keyframes rotation-reverse {
    0% {
        transform: rotate(0deg);
    }
  
    50% {
        transform: rotate(-360deg);
    }
    100% {
        transform: rotate(0deg);
    }
  }
  .bg-shadow {
    width: 217px;
    height: 217px;
    border-radius: 10000px;
    background: #45FF35;
    filter: blur(300px);
    position: absolute;
  }
  .shadow-left {
    left: 0;
  }
  .shadow-right {
    right: 0;
  }
  .offer .bg-shadow {
    bottom: 0;
  }
  .about .shadow-right{
    top: 17%;
  }
  .creation .bg-shadow {
    bottom: 0;
    right: 50%;
    width: 300px;
    height: 300px;
    filter: blur(400px);
  }
  .reviews .bg-shadow {
    bottom: 0;
    right: 50%;
    width: 300px;
    height: 300px;
    filter: blur(400px);
  }

  
/*------------------------------------------ ANIMATIONS */
@media (hover: hover) {
  .case-info-tecn-btn:hover {
    background-color: transparent;
    color: #45FF35;
  }
  .main-case-inner:hover  .case-more {
    bottom: 0px;
    transition: all 0.3s ease;
  }
  .cases-link:hover {
    background: linear-gradient(135deg, #beff35 0%, #51ff35 100%);
    color: #262626;
    border: 1px solid linear-gradient(135deg, #beff35 0%, #51ff35 100%);
    transition: all 0.3s ease;
  }
}

@media (hover: none) {

}
@keyframes fade-in-right {
  from {
    right: -350px;
  }

  to {
    right: 0px;
  }
}
/*---------------------------------------------------------------------HEADER SECTION */
.bg {
  display: none;
  background-color: rgba(0, 0, 0, 0.80);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.bg.active {
  display: block;
}
.header {
    padding-top: 50px;
    z-index: 7;
}
.header.active {
  position: relative;
  z-index: 7;
}
.header.active .header-inner {
  display: flex !important;
  position: fixed;
  flex-direction: column;
  right: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  bottom: 0;
  justify-content: center;
  animation: fade-in-right 0.3s ease;
}
.header.active .menu-item {
  text-align: center;
}
.header .container {
    display: flex;
    justify-content: space-between;
}
.header-inner {
    display: flex;
    gap: 100px;
}
.menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.logo {
    font-family: Syne;
    display: block;
    max-height: max-content;
    position: sticky;
    top: 15px;
    font-size: 32px;
    font-weight: 400;
    color: #BEFF35;
}
.menu-item {
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
}
.menu-item.green {
    color: #BEFF35;
    display: flex;
    align-items: center;
}
.menu-item.green::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background: url(../img/menu-green-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 8px;
}
.btn-opener {
  display: none;
}

.menu-item::after {
  content: '';
  background-color: rgba(0, 0, 0, 0);
  display: block;
  margin-top: 7px;
  width: 1px;
  height: 3px;
  transition: all 0.3s ease;

}

.menu-item:hover.menu-item::after {
  content: '';
  background-color: rgba(255, 255, 255, 1);
  display: block;
  width: 38px;
  height: 3px;
  transition: all 0.3s ease;
}

.menu-item.green:hover.menu-item.green::after {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background: url(../img/menu-green-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.bg-2 {
  display: none;
  background-color: rgba(0, 0, 0, 0.80);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.bg-2.active {
  display: block;
}
.contacts-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2a2a2a;
  z-index: 6;
  padding: 25px;
  border-radius: 5px;
}
.contacts-popup.active {
  display: block;
}
.popup-close {
  display: block;
  margin-left: auto;
  margin-bottom: 20px;
  cursor: pointer;
}
.popup-title {
  margin-bottom: 25px;
}
.popup-messengers-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.popup-messengeer-link {
}
.popup-messenger {
  width: 35px;
  height: 35px;
}
.profi-widget {
}






  /*---------------------------------------------------------------------OFFER SECTION */
  .offer-text {
    font-size: 24px;
    margin-top: 30px;
    max-width: 750px;
  }
  .arrow-down {
    margin-top: 266px;
    display: block;
    width: 26px;
    height: 80px;
    position: relative;
  }
  .arrow-down-img {
    width: 26px;
    height: 80px;
    position: absolute;
    top: 0;
  }
  .arrow-down-img:hover {
    top: 12px;
    animation: arrow-down 2.5s infinite ease-in-out;
  }

  @keyframes arrow-down {
    0% {
      top: 0;
    }
  
    50% {
      top: 12px;
    }
    100% {
        top: 0;
    }
  }

  /*---------------------------------------------------------------------ABOUT SECTION */

  .about {
    padding-top: 200px;
  }

  .about-outer {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .about-left-inner {
    width: 750px;
    height: 930px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .about-text {
    font-size: clamp(21px, 2vw, 32px);
  }
  .about-text b {
    color: #BEFF35;
    font-size: inherit;
    font-weight: 300;
  }
  .about-img-left, .about-img-right {
    border-radius: 62px;
    background-color: #BEFF35;
    width: 100%;
    height: 720px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .about-img-left {
    background-image: url(../img/about-left-img.webp);
  }
  .about-right-inner {
    width: 750px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
  }
  .about-img-right {
    width: 100%;
    height: 480px;
    background-image: url(../img/about-right-img.webp);
  }
  .about-text-right {
    font-size: 16px;
  }
  .about-right-inner-text-wrapper {
    padding: 120px 100px;
    border-radius: 62px;
    border: 2px solid #BEFF35;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /*---------------------------------------------------------------------CREATION SECTION */
  
.creation {
  padding-top: 200px;
}
.creation-title {
  width: 750px;
}
.swiper {
  width: 1265px;
  margin-left: 0;
  margin-right: 0;
}

.swiper-btn {
  display: block;
  width: 80px;
  height: 26px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.swiper-btn:active {
  opacity: 0.5;
}
.btn-left, .btn-left-2 {
  background-image: url(/assets/img/slider-btn-left.svg);
}
.btn-right, .btn-right-2 {
  background-image: url(/assets/img/slider-btn-right.svg);
}
.swiper-outer {
  display: flex;
  justify-content: space-between;
}
.swiper-nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 370px;
}
.swiper-pagination-fraction, .swiper-pagination-custom,
 .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
}
.creation  .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  opacity: 1;
  background: linear-gradient(170deg, rgba(190, 255, 53, 0.50) 0%, rgba(81, 255, 53, 0.50) 100%);
}
.creation  .swiper-pagination-bullet-active {
  width: 120px;
  background: none;
  background: linear-gradient(170deg, #BEFF35 0%, #51FF35 100%);
}
.swiper-btns-wrapper {
  display: flex;
  gap: 50px;
}

.creation .swiper-slide {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 416px;
  width: 622px !important;
  border-radius: 62px;
  align-content: center;
  justify-content: center;
  padding: 40px;
  user-select: none;

}
.slide-header {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.slide-header-dec {
  width: 50px;
  height: 121px;
  flex-shrink: 0;
  border-radius: 25px;
  background: linear-gradient(170deg, #BEFF35 0%, #51FF35 100%);
}
.slide-header-img {
  width: 220px;
  height: 120px;
  border-radius: 10px;
}
.slide-title {
  margin-bottom: 20px;
  font-size: 48px;
  color: #000;
}
.slide-text {
  font-size: 16px;
  font-weight: 300;
  color: #000;
}

  /*---------------------------------------------------------------------STEPS SECTION */

  .steps {
    padding-top: 210px;
  }
  .steps-title {
    width: 875px;
  }
  .steps-outer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    column-gap: 90px;
    row-gap: 30px;
  }
  .step {
    display: flex;
    align-items: start;
    gap: 30px;
    width: 520px;
  }
  .step-num {
    border-radius: 77px;
    background: #51FF35;
    box-shadow: 1px 3px 10px 0px #BEFF35 inset;
    color: #272727;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    width: 60px;
    height: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bublik 20s infinite alternate;
  }

  @keyframes bublik {
    50% {
      background: #B2FF35;
      box-shadow: 3px 6px 10px 0px #51FF35 inset;
    }
  }

  .step-text-wrapper {
    width: 495px;
    height: 130px;
  }
  .step-title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 300;
  }
  .step-text {
    font-size: 16px;
  }

  /*---------------------------------------------------------------------CASES SECTION */

  .cases {
    padding-top: 200px;
  }

  .cases-outer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 50px;
  }
  .case {
    width: 750px;
    /* position: relative; */
  }
  .case-img-wrapper {
    margin-bottom: 30px; 
    width: 100%;
    /* border-radius: 30px 30px 0 0; */
    position: relative;
    overflow: hidden;
  }
  .case-img {
    width: 100%;
    /* border-radius: 30px 30px; */
  }

  .link-text {
    font-size: 48px;
    font-weight: 200;
    text-transform: uppercase;
    display: block;
    max-width: max-content;
    margin-right: auto;
  }
  
  .case-arrow {
    width: 194px;
    height: 43px;
    background-image: url(../img/slider-btn-right.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-left: auto;
  } 

.main-case-inner {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.case-more {
  position: absolute;
  width: 100%;
  bottom: -200px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.80);
  height: 50%;
  padding: 40px 90px;
  transition: all 0.3s ease;
}

  .case-title {
    margin-top: 30px;
    font-size: 32px;
    font-weight: 300;
  }
  .case-subtitle {
    color: #8E8E8E;
    font-size: 16px;
    font-weight: 300;
    margin-top: 10px;
    display: block;
  }

.cases-link {
  display: block;
  max-width: max-content;
  border-radius: 25px;
  border: 1px solid #BEFF35;
  color: #BEFF35;
  font-size: 16px;
  font-weight: 300;
  padding: 20px 30px;
  margin-top: 80px;
  transition: all 0.3s ease;
}



/*---------------------------------------------------------------------REVIEWS SECTION */


.reviews {
  padding-top: 200px;
  padding-bottom: 100px;
}
.swiper-reviews {
  width: 100%;
  overflow: hidden;
}
.swiper-buttons {
  display: flex;
  flex-wrap: wrap;
}
.swiper-buttons .swiper-pagination-bullet {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 1px solid #45FF35;
  background: transparent;
  opacity: 1;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-buttons .swiper-pagination-bullet-active {
  background: linear-gradient(170deg, #A4D834 0%, #45CF2F 100%);
}
.reviews-swiper-btns-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.arrows-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.reviews-swiper-btns-wrapper {
  margin-bottom: 30px;
}

.reviews .swiper-slide {
  height: 400px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px;
  border-radius: 62px;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slide-1 {
  background-image: url(../img/slider-p.svg);
}
.slide-2 {
  background-image: url(../img/slider-_.svg);
}
.slide-3 {
  background-image: url(../img/slider-a.svg);
}
.swiper-title {
  color: #000;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}
.swiper-text {
  color: #000;
  font-size: 16px;
  font-weight: 300;
}
.swiper-source {
  color: #8E8E8E;
  font-size: 15px;
  font-weight: 300;
  word-wrap: break-word;
}

/*---------------------------------------------------------------------FOOTER SECTION */

  footer {
    padding: 80px 0;
    background: #000;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    row-gap: 20px;
}

/*---------------------------------------------------------------------CASES-LIST SECTION */
.cases-list {
  padding-bottom: 100px;
}
.cases-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.563rem;
  justify-content: center;
}
.case-wrapper {
  width: 45%;
  width: clamp(330px, 48%, 750px);
  display: flex;
  flex-direction: column;
  border: 2px solid #45CF2F;
  border-radius: 30px;
}
.case-img-1 {
  width: 100%;
  height: auto;
  border-radius: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.case-info {
  padding: 20px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.case-info-upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  column-gap: 10px;
  row-gap: 15px;
  flex-wrap: wrap;
}
.caase-info-name {
  font-size: clamp(20px, 2.5vw, 35px);
}
.case-info-struct {
  font-size: clamp(18px, 2vw, 28px);
}
.case-info-lower {
  margin-top: auto;
}
.case-info-tecn-title {
  margin-bottom: 20px;
  display: block;
}
.case-info-lower-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 25px;
  align-items: center;
  justify-content: space-between;
}
.case-info-tecn-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}
.case-info-tecn-img {
  /* width: 56px;
  height: 56px; */
  width: 3.5rem;
  height: 3.5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.figma {
  background-image: url(../img/figma-ico.svg);
}
.html5 {
  background-image: url(../img/html5.svg);
}
.css3 {
  background-image: url(../img/css3.svg);
}
.js {
  background-image: url(../img/js.svg);
}
.jquery {
  background-image: url(../img/jquery.svg);
}
.wp {
  background-image: url(../img/wp.svg);
}
.elementor {
  background-image: url(../img/elementor.svg);
}
.case-info-tecn-btn {
  color: #000;
  background-color: #45FF35;
  border: 1px solid #45FF35;
  border-radius: 10px;
  padding: 12px 36px;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  transition: all 0.3s ease;
}
/*---------------------------------------------------------------------CASE INNER SECTION */
.case-inner {
  padding: 43px 0 100px 0;
}
.case-inner-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.case-inner-info {
  width: 620px;
}
.case-inner-title {
  margin-bottom: 80px;
  margin-bottom: 1.5rem;
}
.case_inner_text {
  font-size: 16px;
  margin-bottom: 30px;
}
.case-inner-list-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
.case-inner-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-inner-list-line {
  display: block;
  content: "";
  width: 10px;
  border-radius: 25px;
  background: linear-gradient(135deg, #beff35 0%, #51ff35 100%);
}

.case-inner-btn {
  font-weight: 300;
  font-size: 16px;
  color: #262626;
  display: block;
  border-radius: 25px;
  padding: 20px 30px;
  max-width: max-content;
  background: linear-gradient(135deg, #beff35 0%, #51ff35 100%);
}

.case-inner-img {
  width: 878px;
  height: 468px;
  border-radius: 30px;
}

/*---------------------------------------------------------------------ADAPTIVES */

@media(max-width: 1600px) {
  .container {
    width: 1200px;
}
  .about-left-inner, .about-right-inner {
    width: 590px;
  }
  .about-right-inner-text-wrapper {
    padding: 100px;
  }
.creation .swiper-slide {
  width: 100% !important;

}
.swiper {
  width: 850px;
}
.step {
  width: 438px;
  justify-content: space-between;
  gap: 0;
}
.step-text {
  width: 100%;
}
.step-text-wrapper {
  width: 348px;
  height: 100%;
}
.step-title {
  max-width: max-content;
}
.case {
  width: 590px;
}
.case-inner-wrapper {
  flex-direction: column-reverse;
  align-items: start;
}
}

@media(max-width: 1205px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  .swiper-outer {
    flex-direction: column-reverse;
  }
  .swiper-btns-wrapper {
    display: none;
  }
  .swiper-nav-wrapper {
    margin-top: 50px;
  }
  .swiper {
    width: 100%;
  }
  .about-outer {
    justify-content: center;
  }
  .about-left-inner, .about-right-inner {
    width: 100%;
    height: auto;
  }
  .about-img-left {
    margin: 30px 0;
  }
  .case {
    width: clamp(330px, 95%, 750px);
  }
  .link-text {

  }
  .swiper-reviews {
    width: 100%;
  }
  .arrows-wrapper {
    display: none;
  }
  .swiper-buttons .swiper-pagination-bullet {
    width: 37px;
  }
  .cases-outer-wrapper {
    justify-content: center;
  }
  .main-case-inner {
    border-radius: 15px;
  }
}
@media(max-width: 1000px) {
  .step-text-wrapper {
    width: 500px;
  }
  .steps-title {
    width: 100%;
  }
  .step {
    gap: 25px;
    width: auto;
  }
  .steps-outer-wrapper .step:nth-child(2) {
    order: 4;
  }
  .steps-outer-wrapper .step:nth-child(3) {
    order: 2;
  }
  .steps-outer-wrapper .step:nth-child(4) {
    order: 5;
  }
  .steps-outer-wrapper .step:nth-child(5) {
    order: 3;
  }
  .steps-outer-wrapper .step:nth-child(6) {
    order: 6;
  }
  .creation-title {
    width: 100%;
  }
  .case-inner-img {
    width: 100%;
    height: auto;
  }
  .case-inner-info {
    width: 100%;
  }
}


@media(max-width: 991px) {
  .case-info-tecn-img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .case-info-lower-inner {
    flex-direction: column;
    align-items: start;
  }
  .case-info-tecn-btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.75rem 2.25rem;
  }

}



@media(max-width: 479px) {
  .case-info-tecn-btn {
    font-size: 0.875rem;
    padding: 0.6rem 1.75rem;
  }
  .case-info-upper {
    margin-bottom: 2.188rem;
  }

}



@media(max-width: 700px) {
  .cases-list {
    margin-top: -45px;
  }
  h2 {
    margin-bottom: 30px;
  }
  .cases-list-title {
    font-size: 35px;
  }
  .step {
    width: 100%;
  }
  .step-title {
    width: 26px;
  }
  .switch-btn {
    display: none;
  }
  .switch-btn.switch-btn.mobile {
    display: block;
  }
  .header-inner {
    display: none;
  }
  .menu-item.green {
    justify-content: center;
  }
  .menu-item {
    font-size: 22px;
  }
  .header .container {
    align-items: center;
  }
  .header {
    padding-bottom: 100px;
    padding-top: 15px;
  }
  .btn-opener {
    display: block;
    width: 32px;
    height: 22px;
    background: none;
    text-decoration: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/menu-btn.svg);
  }
  .btn-opener.active {
    background-image: url(../img/menu-close1.svg);
  }
  .arrow-down {
    margin-top: 110px;
  }
  .creation, .about, .steps, .cases, .reviews {
    padding-top: 100px;
  }
  .bg-circle {
    width: 129px;
    height: 113px;
    display: none;
    animation: none;
  }
  .bg-cube {
    width: 162px;
    height: 110px;
    display: none;
    animation: none;
  }
  .bg-cylinder {
    width: 82px;
    height: 122px;
    display: none;
    animation: none;
  }

  .bg-circle.circle-2 {
    width: 105px;
    height: 92px;
    display: none;
    animation: none;
  }
  .bg-stick {
    width: 82px;
    height: 122px;
    display: none;
    animation: none;
  }

  .bg-pill {
    width: 78px;
    height: 94px;
    display: none;
    animation: none;
  }

  .bg-cone {
    width: 100px;
    height: 108px;
    display: none;
    animation: none;
  }
  .bg-shadow {
    display: none;
  }
  .about-right-inner-text-wrapper {
    padding: 25px;
  }
  section {
  }
  .about-img-left {
    height: 255px;
    border-radius: 32px;
  }
  .about-img-right {
    height: 170px;
    border-radius: 32px;
  }
  .about-right-inner-text-wrapper {
    border-radius: 32px;
  }
  .slide-title {
    font-size: 28px;
  }
  .slide-header {
    gap: 0;
    justify-content: space-between;
  }
  .slide-header-dec {
    width: 40px;
  }
  .creation .swiper-slide {
    padding: 30px 15px;
  }
  .step-title {
    font-size: 25px;
  }
  .step-num {
    font-size: 25px;
  }
  .link-text {
    font-size: 25px;
  }
  .case-arrow {
    width: 60px;
    height: 20px;
  }
  .swiper-buttons {
    row-gap: 15px;
  }
  .reviews .swiper-slide {
    padding: 30px 15px;
    border-radius: 32px;
  }
  .case-wrapper {
    width: 100%;
  }
}
