:root {
  --white-1000: #fff;
  --white-900: #fafafa;
  --white-800: #F5F5F5;
  --white-700: #F0F0F0;
  --white-600: #E6E6E6;
  --white-500: #DCDCDC;
  --white-400: #D2D2D2;
  --white-100: #B4B4B4;
  --black-800: #1A1A1A;
  --black-200: #474747;
  --black-100: #515151;
  --orange-800: #EE542E;
  --orange-500: #FF724C;
  --blue-800: #119BFF;
  --purple-800: #9747FF;
}


body {
  padding-top: 100px;
  background-color: #fff;
  color: var(--black-100);
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
h4 {
  color: var(--black-800);
}

.container {
  width: 100%;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px 0 14px;
  overflow: hidden;
  color: var(--black-800);
  border: 1px solid var(--white-600);
  border-radius: 100px;
  font-size: 16px;
  line-height: 1.45em;
  transition: .5s;
}

.btn * {
  pointer-events: none;
}

.btn-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--orange-800);
  transition: .5s;
}

.btn.btn-inverse {
  border: 1px solid var(--white-1000);
  color: var(--white-1000);
}
  


.btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 56px;
  left: 0;
  right: 0;
  top: 56px;
  transition: .5s;
  border-radius: 40px;
  background-color: var(--orange-800);
  transform: scale(0.1);
}

.btn-inverse.btn::before {
  background-color: var(--white-1000);
}

.btn:hover {
  color: var(--white-1000);
}

.btn-inverse.btn:hover {
  color: var(--black-800);
}

.btn:hover .btn-icon {
  background-color: var(--white-1000);
}
.btn-icon > svg {
  color: var(--white-1000);
}
.btn:hover .btn-icon > svg {
  color: var(--orange-800);
}

.btn-inverse.btn:hover .btn-icon {
  background-color: var(--orange-800);
}
.btn-inverse.btn-icon > svg {
  color: var(--white-1000);
}
.btn-inverse.btn:hover .btn-icon > svg {
  color: var(--white-1000);
}

.btn:hover::before {
  transform: translateY(-56px) scale(1);
}


@media screen and (min-width: 768px) {
  .container {
    padding: 0 5vw;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    padding: 0;
    max-width: 1320px;
    margin: 0 auto;
  }
}









@media screen and (max-width: 992px) {
  .burger-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--white-600);
    width: 62px;
    height: 62px;
    cursor: pointer;
    transition: .3s ease-in;
    flex-shrink: 0;
  }

  .burger {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--orange-800);
    transition: 0.5s ease;
    flex-shrink: 0;
    border-radius: 5px;
  }

  .burger::after, .burger::before {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    background-color: var(--orange-800);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    will-change: transform;
    transition: transform 0.3s ease-in;
  }
  .burger::after {
    top: -6px;
  }
  .burger::before {
    bottom: -6px;
  }
  .burger-btn-x.burger-btn .burger {
    background-color: transparent;
  }
  .burger-btn-x.burger-btn .burger::before {
    transform: translateY(6px) rotate(135deg);
    bottom: 6px;
  }
  .burger-btn-x.burger-btn .burger::after {
    transform: translateY(-6px) rotate(45deg);
    top: 6px;
  }

}


@media screen and (min-width: 992px) {
  .burger-btn {
    display: none;
  }
}




/* header========================================================== */
/* header========================================================== */


.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 100px;
  width: 100%;
  z-index: 100;
  background-color: var(--white-1000);
}

.header::after {
  content:'';
  position: absolute;
  left: 0;
  bottom: 0;
  background-repeat: repeat-x;
  height: 1px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='1' viewBox='0 0 18 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='8' height='1' fill='%23D2D2D2' /%3E%3C/svg%3E");
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: block;
  width: 140px;
}

.nav-item {
  position: relative;
  font-size: 14px;
  line-height: 1.45em;
  color: var(--black-800);
  padding: 20px 30px;
}

.header-contact {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--white-600);
  cursor: pointer;
}



@media screen and (max-width: 992px) {
  .header-nav {
    position: fixed;
    right: -100%;
    top: 100px;
    bottom: 0;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 40px 10px;
    width: 100%;
    background-color: var(--white-900);
    transition: .5s;
  }

  .nav-item {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 40px;
  }

  .header-nav.open {
    display: flex;
    transform: translateX(-100%);
    opacity: 1;
    z-index: 101;
  }
}


@media screen and (min-width: 992px) {
  .header-nav {
    display: flex;
  }
  .nav-item::after {
    content: '';
    position: absolute;
    display: block;
    inset: 10px;
    border: 1px dashed var(--blue-800);
    opacity: 0;
    transition: opacity .1s ease, transform .6s ease-in;
    pointer-events: none;
  }
  .nav-item:hover::after {
    opacity: .6;
    transform: rotate(-3deg);
  }
  
  .header-contact {
    height: 48px;
    width: auto;
    padding: 0 26px 0 14px;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45em;
    color: var(--black-800);
  }

}

/* header========================================================== */
/* header========================================================== */





/* main-section========================================================== */
/* main-section========================================================== */

.title-decor {
  position: relative;
  display: inline-block;
  transform: rotate(-2deg);
  border: 1px solid var(--blue-800);
  padding: 0 5px;
}

.title-decor2 {
  position: relative;
  display: inline-block;
  transform: rotate(2.5deg);
  border: 1px solid var(--purple-800);
  padding: 0 5px;
}


.main-decor-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
}

.main-decor2 {
  position: absolute;
  width: 70%;
  top: 0;
  left: -15.4vw;
  transform: rotate(-3.58deg);
  overflow: hidden;
  padding: 5px;
}
.main-decor3 {
  position: absolute;
  width: 70%;
  top: 0;
  right: -35.9vw;
  transform: rotate(2.47deg);
  overflow: hidden;
  padding: 5px;
}

.main-case-wrapper {
  position: relative;
  padding: 10px;
  border: 1px solid var(--blue-800);
}

.square1,
.square2,
.square3,
.square4 {
  position: absolute;
  border: 1px solid var(--blue-800);
  width: 8px;
  height: 8px;
  background: var(--white-1000);
}

.square1 {
  left: -4px;
  top: -4px;
}
.square2 {
  right: -4px;
  top: -4px;
}
.square3 {
  left: -4px;
  bottom: -4px;
}
.square4 {
  right: -4px;
  bottom: -4px;
}
.square-purple {
  border: 1px solid var(--purple-800);
}


.main-cursor1 {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2;
}
.main-cursor2 {
  position: absolute;
  top: 200px;
  left: 10px;
  z-index: 2;
}


@media screen and (max-width: 992px) {
  .main-decor1 {
    display: none;
  }
  .main-decor12 {
    width: 70%;
    left: 15.4%;
  }
  .main-pin1,
  .main-pin2 {
    display: none;
  }
}


@media screen and (min-width: 992px) {
  .main-decor-wrapper {
    height: 55vh;
    min-height: 400px;
    max-height: 500px;
  }

  .main-decor1 {
    position: absolute;
    width: 25%;
    top: 10px;
    left: 6.5vw;
    transform: rotate(2.72deg);
    overflow: hidden;
    padding: 5px;
  }
  .main-decor2 {
    width: 25%;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(-5.6deg);
  }
  .main-decor3 {
    width: 25%;
    top: -5px;
    right: 9.5vw;
    transform: rotate(3.5deg);
  }

  .main-cursor1 {
    right: initial;
    top: 34.7%;
    left: 18.2%;
  }
  .main-cursor2 {
    left: initial;
    top: 15.9%;
    right: 16.5%;
  }

  .main-pin1,
  .main-pin2 {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
  }
  .main-pin1 {
    left: 16.3%;
    bottom: 14%;
  }
  .main-pin2 {
    right: 21.4%;
    top: 65%;
  }
}
/* main-section========================================================== */
/* main-section========================================================== */


.subtitle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 28px;
  padding: 8px;
  border: 1px solid var(--blue-800);
}
.subtitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}









/* about-section========================================================== */
/* about-section========================================================== */
.about-card {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--white-800);
}

.about-cursor1 {
  position: absolute;
  top: 9.43%;
  right: 12%;
  z-index: 2;
}
.about-cursor2 {
  position: absolute;
  top: 48.2%;
  right: 9.75%;
  z-index: 2;
}

.about-card-top {
  position: relative;
  width: 100%;
  padding-bottom: 88%;
}

.about-card-image {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
}

.about-card-title {
  position: absolute;
  left: 40px;
  top: 40px;
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  font-size: 14px;
  border: 1px solid var(--white-800);
  background-color: var(--white-1000);
}


/* about-section========================================================== */
/* about-section========================================================== */







/* case-section========================================================== */
/* case-section========================================================== */

.case-card {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  border: 1px solid var(--white-700);
  border-radius: 20px;
  width: 100%;
  padding: 30px 0;
  gap: 40px;
  overflow: hidden;
  background: var(--white-900);
}

.case-card-info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-card-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.case-card-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--white-500);
  border-radius: 16px;
  background-color: var(--black-100);
  padding-bottom: 73%;
}

.case-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (min-width: 992px) {
  .case-card {
    padding: 40px 0;
    flex-direction: column;
  }
  .case-card-info {
    gap: 0;
  }
  .case-card-info-item {
    height: 48px;
    padding: 0 14px;
    border-radius: 100px;
    background-color: var(--white-1000);
  }
}

/* case-section========================================================== */
/* case-section========================================================== */





/* advantages-section========================================================== */
/* advantages-section========================================================== */

.advantages-card {
  width: 100%;
  border: 1px solid var(--white-800);
  border-radius: 20px;
  background-color: var(--white-1000);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
}
.advantages-card-last {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background-color: var(--orange-800);
  border: 1px solid var(--orange-500);
  border-radius: 20px;
  padding: 40px;
  gap: 40px;
  color: var(--white-1000);
}

.advantages-card-image {
  width: 100%;
  padding-bottom: 55%;
  border-radius: 12px;
  overflow: hidden;
}

.advantagesSwiper-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-600);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  padding: 14px;
  cursor: pointer;
  transition: .3s;
}
.advantagesSwiper-button svg {
  flex-shrink: 0;
  transition: .3s;
  user-select: none;
  pointer-events: none;
}
.advantagesSwiper-button.swiper-button-disabled {
  cursor: default;
}
.advantagesSwiper-button.swiper-button-disabled svg {
  opacity: .4;
}

.advantagesSwiper-button-next {
  transform: rotate(180deg);
}

.advantagesSwiper-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-inactive-color: #E6E6E6;
  --swiper-pagination-color: #119BFF;
  --swiper-theme-color: #119BFF;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

@media screen and (min-width: 992px) {

  .swiper-container {
    padding: 0 5%;
  }
}
@media screen and (min-width: 1400px) {

  .swiper-container {
    padding: 0 calc((100% - 1320px) / 2);
  }
}
/* advantages-section========================================================== */
/* advantages-section========================================================== */



/* stages-section========================================================== */
/* stages-section========================================================== */
  .stage-image {
    width: 100%;  
    height: 66px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 6px;
  }
  .stage-image img {
    height: 54px;
    flex-shrink: 0;
  }
  .stage1-image {
    background: linear-gradient(90deg, #ff8660 0%, rgba(255, 134, 96, 0.2) 50%, rgba(255, 134, 96, 0) 100%);
  }
  .stage2-image {
    background: linear-gradient(90deg, #43cdff 0%, rgba(67, 205, 255, 0.2) 50%, rgba(67, 205, 255, 0) 100%);
  }
  .stage3-image {
    background: linear-gradient(90deg, #43cdff 0%, rgba(67, 205, 255, 0.2) 50%, rgba(67, 205, 255, 0) 100%);
  }
  .stage4-image {
    background: linear-gradient(90deg, #c979ff 0%, rgba(201, 121, 255, 0.2) 50%, rgba(201, 121, 255, 0) 100%);
  }
  .stage5-image {
    background: linear-gradient(90deg, #ff8660 0%, rgba(255, 134, 96, 0.2) 50%, rgba(255, 134, 96, 0) 100%);
  }
  .stage6-image {
    background: linear-gradient(90deg, #c979ff 0%, rgba(201, 121, 255, 0.2) 50%, rgba(201, 121, 255, 0) 100%);
  }

  .stagesSwiper-pagination {
    position: relative;
    --swiper-pagination-progressbar-size: 4px;
    --swiper-pagination-color: #119BFF;
    --swiper-pagination-progressbar-bg-color: #F5F5F5;
  }

@media screen and (max-width: 992px) {
  .stage-slide {
    width: 230px;
  }
  .tab-cell {
    width: 230px;
    border-right: 1px solid var(--white-700);
  }
  .tab-cell-head {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    border-bottom: 1px solid var(--white-700);
  }
}

@media screen and (min-width: 992px) {
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
  }
  .table-cursor1 {
    position: absolute;
    top: 25%;
    left: 72.5%;
    z-index: 2;
  }
  .table-cursor2 {
    position: absolute;
    bottom: 17.6%;
    left: 33.6%;
    z-index: 2;
  }
  .table {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 1000px;
  }

  .tab-row {
    position: relative;
    display: flex;
    height: 86px;
    width: 100%;
    border-bottom: 1px solid var(--white-700);
  }

  .tab-col {
    width: 15.5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tab-col:not(:last-child) {
    border-right: 1px solid var(--white-700);
  }

  .tab-col:first-child {
    width: 23%;
    justify-content: flex-start;
  }

  .info-icon {
    width: 26px; 
    height: 26px; 
    background-color: var(--white-900); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    border: 1px solid var(--white-800);
  }

  .stage-image {
    position: absolute;
    top: 10px;
    bottom: 10px;
    margin: auto;    
    height: 66px;
    border-radius: 100px;
  }
  .stage1-image {
    width: 14.9%;
    left: 24%;
    background: linear-gradient(90deg, #ff8660 0%, rgba(255, 134, 96, 0.2) 50%, rgba(255, 134, 96, 0) 100%);
  }
  .stage2-image {
    width: 14.9%;
    left: 36.6%;
    background: linear-gradient(90deg, #43cdff 0%, rgba(67, 205, 255, 0.2) 50%, rgba(67, 205, 255, 0) 100%);
  }
  .stage3-image {
    width: 26.9%;
    left: 44%;
    background: linear-gradient(90deg, #43cdff 0%, rgba(67, 205, 255, 0.2) 50%, rgba(67, 205, 255, 0) 100%);
  }
  .stage4-image {
    width: 21%;
    left: 65.9%;
    background: linear-gradient(90deg, #c979ff 0%, rgba(201, 121, 255, 0.2) 50%, rgba(201, 121, 255, 0) 100%);
  }
  .stage5-image {
    width: 13.1%;
    left: 81.8%;
    background: linear-gradient(90deg, #ff8660 0%, rgba(255, 134, 96, 0.2) 50%, rgba(255, 134, 96, 0) 100%);
  }
  .stage6-image {
    width: 66px;
    left: 94.9%;
    background: linear-gradient(90deg, #c979ff 0%, rgba(201, 121, 255, 0.2) 50%, rgba(201, 121, 255, 0) 100%);
  }
}

/* stages-section========================================================== */
/* stages-section========================================================== */

.footer-card {
  padding: 40px;
  border: 1px solid var(--black-400);
  border-radius: 20px;
  color: var(--white-900);
}

.footer-card-link {
  display: flex;
  align-items: center;
  position: relative;
  height: 30px;
  border-radius: 50px;
  padding: 6px;
  background-color: var(--white-1000);
  font-size: 10px;
  line-height: 160%;
  color: var(--black-800);
  gap: 4px;
}

.footer-card-avatar {
  position: relative;
  border: 2px solid var(--white-800);
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.footer-card-avatar-inner {
  position: absolute;
  right: 4px;
  top: 4px;
  flex-shrink: 0;
}





/* CASE-PAGE=============================================== */
/* CASE-PAGE=============================================== */

.breadcrumbs {
  display: flex;
  align-items: center;
  max-width: 100%;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 14px;
  height: 1.6em;
}

.breadcrumbs-item {
  position: relative;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1;
  color: var(--white-100);
}

.breadcrumbs-item:not(:last-child):before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.5px;
  height: 14px;
  margin: auto 0;
  right: -1px;
  background-color: currentColor;
  transform: rotate(14deg);
  pointer-events: none;
}

.breadcrumbs-item:last-child {
  color: var(--black-800);
}

.page-spn-cover1 {
  width: 100%;
  height: 440px;
  background-color: var(--black-800);
  border-radius: 10px;
  overflow: hidden;
}

.square-block {
  width: 100%;
  background-color: var(--black-800);
  overflow: hidden;
}
.square-block::before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  pointer-events: none;
}

.case-pg-btn-prev.disabled  .btn-icon {
  background: var(--white-100);
}
.case-pg-btn-prev.disabled {
  pointer-events: none;
  cursor: default;
}
.btn-icon-prev {
  transform: rotate(180deg);
}
.case-pg-btn-next {
  padding: 0 14px 0 26px;
}

@media screen and (min-width: 992px) {
  .page-spn-cover1 {
    height: auto;
  }
  .page-spn-cover1::before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 53%;
    pointer-events: none;
  }
}

/* CASE-PAGE=============================================== */
/* CASE-PAGE=============================================== */



















@media screen and (min-width: 992px) {
  .order1--lg {
    order: 1;
  }
  .order2--lg {
    order: 2;
  }
}


@media screen and (min-width: 1200px) {
  .order1--xl {
    order: 1;
  }
  .order2--xl {
    order: 2;
  }
}

.swiper-slide {
  height: auto;
}
.ml-5 {
  margin-left: -5px;
}

.border {
  border: 1px solid var(--white-800);
}

.bg-white {
  background-color: var(--white-1000);
}
.bg-light {
  background-color: var(--white-900);
}
.bg-orange {
  background-color: var(--orange-800);
}
.bg-dark {
  background-color: var(--black-800);
}
.dark {
  color: var(--black-800);
}

.grey {
  color: var(--white-100);
}
/* 
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: calc((100% - 1320px) / 2);
  height: 100%;
  border: 1px solid red;
  pointer-events: none;
} */