textarea {
  resize: none;
}

.form-control-label {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
  width: 100%;
}
.form-control-label .form-control-label-text {
  color: #5A7184;
  font: 600 15px "Open Sans SemiBold";
  padding-bottom: 7px;
}
.form-control-label .form-control-input {
  padding: 16px 17px;
  height: 60px;
  border-radius: 11px;
  border: 1px solid #c3cad9;
  background-color: #FFF;
  color: #959EAD;
  font: 400 20px "Open Sans Regular";
  outline: none;
}
.form-control-label .form-control-search {
  height: 48px;
  padding: 11px 36px 11px 12px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form-control-label .form-control-select {
  width: 100%;
  border-radius: 11px;
  border: 1px solid #c3cad9;
  font: 400 20px "Open Sans Regular";
  color: #959EAD;
  padding: 16px 17px;
  height: 60px;
  outline: none;
  appearance: none;
  background: url("./images/icons/select-arrow.svg") no-repeat 98% 50% #fff;
}
.form-control-label .form-control-textarea {
  padding: 16px 17px;
  border-radius: 11px;
  border: 1px solid #c3cad9;
  background-color: #FFF;
  color: #959EAD;
  font: 400 20px "Open Sans Regular";
  outline: none;
}

.form-control-checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  height: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-control-checkbox-container .form-control-label-text {
  padding: 0;
}
.form-control-checkbox-container .form-control-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-control-checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 4px;
}
.form-control-checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.form-control-checkbox-container input:checked ~ .checkmark {
  background-color: #F73;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-control-checkbox-container input:checked ~ .checkmark:after {
  position: absolute;
  content: "";
  display: block;
  background-image: url("./images/icons/checkbox-active-icon.svg");
  background-repeat: no-repeat no-repeat;
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
}
.form-control-checkbox-container label {
  display: flex;
  width: 100%;
  column-gap: 15px;
}

.form-control-button {
  width: 100%;
  border-radius: 11px;
  background-color: #F73;
  min-height: 60px;
  outline: none;
  border: none;
  color: #FFF;
  font: 700 20px "Open Sans Bold";
  cursor: pointer;
}

.form-control-button[disabled] {
  cursor: not-allowed;
  background-color: #ccc;
}

.form-control-switcher {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  height: 34px;
}
.form-control-switcher .input-wrapper {
  position: relative;
  height: 34px;
  width: 69px;
}
.form-control-switcher input {
  opacity: 0;
  width: 0;
  height: 0;
}
.form-control-switcher .slider {
  position: absolute;
  cursor: pointer;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 69px;
  background-color: #f6f3f7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}
.form-control-switcher .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #F73;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.form-control-switcher input:checked + .slider:before {
  background-color: #5BC484;
}
.form-control-switcher input:disabled + .slider:before {
  background-color: #e8e6eb;
}
.form-control-switcher input:checked + .slider:before {
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
}
.form-control-switcher .slider.round:before {
  border-radius: 50%;
}
.form-control-switcher .item-text-switcher {
  color: #2D2C37;
  font: 600 24px "Open Sans SemiBold";
  opacity: 0.3;
}
.form-control-switcher .item-text-switcher-active {
  opacity: 1;
}

.form-control-label-indent-free {
  margin: 0;
  padding: 0;
}

.form-control-label-search {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form-control-label-search::before {
  content: "";
  display: block;
  position: absolute;
  right: 14px;
  background-image: url("./images/icons/search.svg");
  width: 18px;
  height: 21px;
  z-index: 10;
}

.wpcf7-form.submitting .form-button:disabled,
.wpcf7-form.submitting input[type=submit]:disabled {
  color: #F73;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-color: #F73;
  background-image: url(./images/icons/loader.svg);
  background-size: 44px 44px;
  background-position: center center;
  background-repeat: no-repeat;
}
.wpcf7-form input, .wpcf7-form textarea {
  width: 100%;
}
.wpcf7-form input[type=checkbox] {
  width: 20px;
  accent-color: #FF7733;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: red;
}

.screen-reader-response {
  display: none;
}
@font-face {
  font-family: "Open Sans ExtraBold";
  src: url("./fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Open Sans Bold";
  src: url("./fonts/OpenSans-Bold.eot");
  src: url("./fonts/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/OpenSans-Bold.woff") format("woff"), url("./fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Open Sans Regular";
  src: url("./fonts/OpenSans-Regular.eot");
  src: url("./fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/OpenSans-Regular.woff") format("woff"), url("./fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Open Sans SemiBold";
  src: url("./fonts/OpenSans-SemiBold.eot");
  src: url("./fonts/OpenSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("./fonts/OpenSans-SemiBold.woff") format("woff"), url("./fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Open Sans Light";
  src: url("./fonts/OpenSans-Light.eot");
  src: url("./fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("./fonts/OpenSans-Light.woff") format("woff"), url("./fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none !important;
}

.wrapper {
  padding-right: 86px !important;
  padding-left: 86px !important;
}

.inner-content-wrapper {
  padding-top: 80px;
  padding-bottom: 120px;
  max-width: 1440px;
}

.ignore-padding, .swiper-ignore-padding.swiper-initialized {
  width: 100% !important;
  overflow-x: visible !important;
}

.inner-content-wrapper {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.header-block {
  display: flex;
  flex-direction: column;
}
.header-block .title {
  font: 700 62px/62px "Open Sans Bold";
  color: #2D2C37;
  margin-top: 15px;
}
.header-block .sub-title {
  color: rgba(88, 86, 103, 0.5);
  font: 600 18px "Open Sans SemiBold";
  text-transform: uppercase;
}

.underline-text {
  position: relative;
  width: min-content;
  line-height: 90px;
}
.underline-text .decoration-svg.line {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: -12px;
  z-index: 0;
}

.tippy-box {
  background-color: transparent !important;
}

.tippy-arrow {
  color: #FFF !important;
  margin-top: 4px;
}

.swiper-pagination-bullet-active {
  background-color: #36B37E !important;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .inner-content-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .inner-content-wrapper {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .header-block .title {
    font-size: 30px !important;
    line-height: 30px !important;
  }
  .header-block .sub-title {
    font-size: 14px !important;
    line-height: 21px !important;
  }
  .header-block .underline-text {
    line-height: 40px;
  }
}

.modal-form .contact-us-blink {
  display: none !important;
}
.modal-title {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0;
}
.review-customers-tooltip-wrapper {
  padding: 40px 36px;
  background-color: #FFF;
  width: 618px;
  border-radius: 24px;
  color: #2D2C37;
}
.review-customers-tooltip-wrapper .review-customers-tooltip-item {
  font: 400 18px/25px "Open Sans Regular";
  margin-bottom: 24px;
}
.review-customers-tooltip-wrapper .review-customers-tooltip-name {
  font: 700 18px/25px "Open Sans Bold";
  margin-bottom: 2px;
}
.review-customers-tooltip-wrapper .review-customers-tooltip-position {
  font: 400 18px/25px "Open Sans Regular";
  font-style: italic;
}

@media (max-width: 1024px) {
  .review-customers-tooltip-wrapper {
    padding: 15px;
    width: 618px;
    max-width: 100%;
    border-radius: 24px;
    color: #2D2C37;
  }
  .review-customers-tooltip-wrapper .review-customers-tooltip-item, .review-customers-tooltip-wrapper .review-customers-tooltip-position, .review-customers-tooltip-wrapper .review-customers-tooltip-position {
    font: 400 14px/19px "Open Sans Regular";
    margin-bottom: 12px;
  }
  .review-customers-tooltip-wrapper .review-customers-tooltip-name {
    font: 700 18px/25px "Open Sans Bold";
    margin-bottom: 2px;
  }
}

.blog-page .case-articles .case-articles-content {
  flex-direction: column;
  padding-bottom: 0;
}
.blog-page .case-articles .case-articles-swiper {
  margin-top: 125px;
  padding-bottom: 50px;
}
.blog-page .case-articles .case-articles-slide {
  padding: 50px 60px 80px;
  background-color: #f4f3f6;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-page .case-articles .case-articles-slide .slide-content {
  margin-left: 450px;
}
.blog-page .case-articles .case-articles-slide .slide-tag {
  width: fit-content;
  height: fit-content;
  padding: 6px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: #6a6972 1px solid;
  font: 400 16px/22.4px "Open Sans Regular";
  margin-bottom: 14px;
}
.blog-page .case-articles .case-articles-slide .slide-title {
  font: 700 34px/40px "Open Sans Bold";
  margin-bottom: 30px;
}
.blog-page .case-articles .case-articles-slide .slide-description {
  font: 400 18px/27px "Open Sans Regular";
}
.blog-page .case-articles .case-articles-slide .slide-img-wrapper {
  position: absolute;
  left: 100px;
  top: 0;
  width: 350px;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.blog-page .case-articles .case-articles-slide .slide-img-wrapper img {
  margin: auto 0;
  padding-top: 20px;
  width: 100%;
}
.blog-page .case-articles .case-articles-slide .slide-btn {
  width: 218px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5BC484;
  border-radius: 12px;
  font: 700 20px/20px "Open Sans Regular";
  color: #FFF;
  margin-top: 60px;
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .blog-page .case-articles .case-articles-slide .slide-img-wrapper {
    width: 340px;
    left: 40px;
  }
  .blog-page .case-articles .case-articles-slide .slide-content {
    margin-left: 340px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .blog-page .case-articles .case-articles-slide .slide-img-wrapper {
    width: 300px;
    left: 0;
  }
  .blog-page .case-articles .case-articles-slide .slide-content {
    margin-left: 250px;
  }
}
@media (max-width: 768px) {
  .blog-page .case-articles .case-articles-slide {
    padding: 20px;
  }
  .blog-page .case-articles .case-articles-slide .slide-content {
    margin: 0;
  }
  .blog-page .case-articles .case-articles-slide .slide-tag {
    font-size: 10px;
    line-height: 13px;
    padding: 10px 12px;
  }
  .blog-page .case-articles .case-articles-slide .slide-img-wrapper {
    position: relative;
    left: 0;
    width: unset;
    max-width: 80%;
    height: 200px;
    margin: 20px auto;
  }
  .blog-page .case-articles .case-articles-slide .slide-img-wrapper img {
    width: 100%;
    padding: 0;
  }
  .blog-page .case-articles .case-articles-slide .slide-title {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
  }
  .blog-page .case-articles .case-articles-slide .slide-description {
    font-size: 14px;
    line-height: 19.6px;
  }
  .blog-page .case-articles .case-articles-slide .slide-btn {
    height: 48px;
    font-size: 16px;
    line-height: 16px;
    margin-top: 30px;
    width: 100%;
  }
}
.all-articles-page .all-articles {
  padding-top: 150px;
}
.all-articles-page .all-articles .all-articles-content {
  flex-direction: column;
}
.all-articles-page .all-articles .all-articles-filter-list-wrapper {
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
  margin-bottom: 78px;
}
.all-articles-page .all-articles .all-articles-filter-list__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 12px;
  color: #2D2C37;
  font: 600 18px "Open Sans SemiBold";
  background-color: #F6F3F7;
  width: unset;
}
.all-articles-page .all-articles .all-articles-filter-list__item:hover {
  cursor: pointer;
}
.all-articles-page .all-articles .all-articles-filter-list__item_active {
  background-color: #2D2C37;
  color: #FFF;
}
.all-articles-page .all-articles .article-list {
  display: flex;
  grid-gap: unset;
}
.all-articles-page .all-articles .all-articles-swiper {
  height: 1050px;
  width: 100%;
  padding-bottom: 50px;
}
.all-articles-page .all-articles .article {
  width: 450px;
  height: 450px;
}
.all-articles-page .all-articles .swiper-pagination-wrapper {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
}
.all-articles-page .all-articles .swiper-pagination-wrapper .swiper-pagination {
  width: fit-content;
  position: relative;
  bottom: 0;
  left: 0;
  margin: 0 25px;
}
.all-articles-page .all-articles .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none !important;
  color: #2D2C37;
  opacity: 1;
  font: 400 18px/25px "Open Sans Regular";
}
.all-articles-page .all-articles .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f4f3f6 !important;
  color: #5BC484;
  font-weight: 700;
}
.all-articles-page .all-articles .swiper-pagination-wrapper .swiper-arrow {
  position: relative;
  left: 0;
  bottom: 0;
}
.all-articles-page .all-articles .swiper-pagination-wrapper .swiper-arrow::after {
  font-size: 20px;
  color: #2D2C37;
  font-weight: 600;
}
.all-articles-page .all-articles .five-mistake_mobile {
  display: none;
  margin-top: 40px;
  border-radius: 18px;
  width: 100%;
  height: 277px;
}
.all-articles-page .all-articles .five-mistake {
  padding: 40px 30px 30px;
  background-color: #AB5BD2 !important;
  overflow: hidden;
  position: relative;
}
.all-articles-page .all-articles .five-mistake .five-mistake__content {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.all-articles-page .all-articles .five-mistake .five-mistake__bird {
  position: absolute;
  z-index: 0;
  bottom: -120;
  left: -50px;
}
.all-articles-page .all-articles .five-mistake .five-mistake__title {
  font: 600 54px/65px "Open Sans Regular";
  color: #FFF;
  margin-bottom: 14px;
}
.all-articles-page .all-articles .five-mistake .five-mistake__description {
  font: 600 24px/31.2px "Open Sans Regular";
  color: #FFF;
}
.all-articles-page .all-articles .five-mistake .five-mistake__btn {
  height: 60px;
  font: 700 20px/20px "Open Sans Regular";
  color: #2D2C37;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border-radius: 11px;
  margin-top: auto;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .all-articles-page .all-articles .five-mistake .five-mistake__title {
    font-size: 40px;
  }
  .all-articles-page .all-articles .five-mistake .five-mistake__description {
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .all-articles-page .all-articles .all-articles-filter-list-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }
  .all-articles-page .all-articles .all-articles-swiper {
    height: 1250px;
  }
  .all-articles-page .all-articles .article {
    width: 325px;
    height: 358px;
  }
  .all-articles-page .all-articles .five-mistake_mobile {
    display: block;
  }
  .all-articles-page .all-articles .five-mistake .five-mistake__title {
    font-size: 30px;
    line-height: 30px;
  }
  .all-articles-page .all-articles .five-mistake .five-mistake__description {
    font-size: 18px;
    line-height: 25px;
  }
  .all-articles-page .all-articles .five-mistake .five-mistake__btn {
    height: 48px;
    font-size: 16px;
    line-height: 16px;
  }
}
.blog-page .popular-articles .popular-articles-content {
  flex-direction: column;
  padding-top: 130px;
  padding-bottom: 85px;
}

@media (min-width: 768px) {
  .blog-page .popular-articles .article-list .article:nth-child(1) {
    grid-column: 1/4;
    flex-direction: row;
  }
  .blog-page .popular-articles .article-list .article:nth-child(1) .article-img-wrapper {
    width: 40%;
    max-height: unset;
    overflow: hidden;
    position: relative;
  }
  .blog-page .popular-articles .article-list .article:nth-child(1) .article-img-wrapper .article-img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: unset;
  }
  .blog-page .popular-articles .article-list .article:nth-child(1) .article-content {
    padding: 50px;
    width: 60%;
  }
  .blog-page .popular-articles .article-list .article:nth-child(1) .article-content .article-title {
    font: 700 34px/40px "Open Sans Bold";
    margin-bottom: 40px;
  }
  .blog-page .popular-articles .article-list .article:nth-child(1) .article-content .article-description {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .blog-page .popular-articles .article-list .article {
    display: none;
  }
  .blog-page .popular-articles .article-list .article:nth-child(-n+3) {
    display: flex;
  }
  .blog-page .popular-articles .article-list .article:nth-child(1) {
    grid-column: 1/3;
  }
  .blog-page .popular-articles .article-list .article:nth-child(1) .article-img-wrapper {
    background: url("./images/images/popular-articles/rocke-laptop.png") no-repeat;
    background-size: cover;
  }
  .blog-page .popular-articles .article-list .article:nth-child(1) .article-img-wrapper .article-img {
    display: none;
  }
}
@media (max-width: 768px) {
  .blog-page .popular-articles .article-list .article {
    display: none;
  }
  .blog-page .popular-articles .article-list .article:nth-child(-n+2) {
    display: flex;
  }
}
.search-articles-page .popular-articles {
  display: none;
}
.search-articles-page .search-articles {
  padding-top: 150px;
}
.search-articles-page .search-articles .search-articles-content {
  flex-direction: column;
  padding: 0;
}
.search-articles-page .search-articles .search-bar-wrapper {
  width: 100%;
  max-width: 852px;
  height: 48px;
  position: relative;
}
.search-articles-page .search-articles .search-bar-wrapper .search-input {
  width: 100%;
  height: 100%;
  font: 400 18px/25px "Open Sans Regular";
  outline: 0;
  border-radius: 12px;
  border: 1px solid #E8E6EB;
  padding: 0 35px 0 15px;
}
.search-articles-page .search-articles .search-bar-wrapper .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(./images/icons/search.svg);
  width: 18px;
  height: 21px;
  z-index: 10;
}
.search-articles-page .search-articles .results-found {
  margin-top: 20px;
  font: 400 18px/25px "Open Sans Regular";
  color: #6a6972;
}
.search-articles-page .search-articles .search-articles-filter-list-wrapper {
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
  margin-bottom: 78px;
}
.search-articles-page .search-articles .search-articles-filter-list__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 12px;
  color: #2D2C37;
  font: 600 18px "Open Sans SemiBold";
  background-color: #F6F3F7;
  width: unset;
}
.search-articles-page .search-articles .search-articles-filter-list__item:hover {
  cursor: pointer;
}
.search-articles-page .search-articles .search-articles-filter-list__item_active {
  background-color: #2D2C37;
  color: #FFF;
}
.search-articles-page .search-articles .article-list {
  display: flex;
  grid-gap: unset;
}
.search-articles-page .search-articles .search-articles-swiper {
  height: 1050px;
  width: 100%;
  padding-bottom: 50px;
}
.search-articles-page .search-articles .article {
  width: 450px;
  height: 450px;
}
.search-articles-page .search-articles .swiper-pagination-wrapper {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
}
.search-articles-page .search-articles .swiper-pagination-wrapper .swiper-pagination {
  width: fit-content;
  position: relative;
  bottom: 0;
  left: 0;
  margin: 0 25px;
}
.search-articles-page .search-articles .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none !important;
  color: #2D2C37;
  opacity: 1;
  font: 400 18px/25px "Open Sans Regular";
}
.search-articles-page .search-articles .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f4f3f6 !important;
  color: #5BC484;
  font-weight: 700;
}
.search-articles-page .search-articles .swiper-pagination-wrapper .swiper-arrow {
  position: relative;
  left: 0;
  bottom: 0;
}
.search-articles-page .search-articles .swiper-pagination-wrapper .swiper-arrow::after {
  font-size: 20px;
  color: #2D2C37;
  font-weight: 600;
}
.search-articles-page .search-articles .five-mistake_mobile {
  display: none;
  margin-top: 40px;
  border-radius: 18px;
  width: 100%;
  height: 277px;
}
.search-articles-page .search-articles .five-mistake {
  padding: 40px 30px 30px;
  background-color: #AB5BD2 !important;
  overflow: hidden;
  position: relative;
}
.search-articles-page .search-articles .five-mistake .five-mistake__content {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.search-articles-page .search-articles .five-mistake .five-mistake__bird {
  position: absolute;
  z-index: 0;
  bottom: -120;
  left: -50px;
}
.search-articles-page .search-articles .five-mistake .five-mistake__title {
  font: 600 54px/65px "Open Sans Regular";
  color: #FFF;
  margin-bottom: 14px;
}
.search-articles-page .search-articles .five-mistake .five-mistake__description {
  font: 600 24px/31.2px "Open Sans Regular";
  color: #FFF;
}
.search-articles-page .search-articles .five-mistake .five-mistake__btn {
  height: 60px;
  font: 700 20px/20px "Open Sans Regular";
  color: #2D2C37;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border-radius: 11px;
  margin-top: auto;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .search-articles-page .search-articles .five-mistake .five-mistake__title {
    font-size: 40px;
  }
  .search-articles-page .search-articles .five-mistake .five-mistake__description {
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .search-articles-page .search-articles .search-articles-filter-list-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }
  .search-articles-page .search-articles .search-articles-swiper {
    height: 1250px;
  }
  .search-articles-page .search-articles .article {
    width: 325px;
    height: 358px;
  }
  .search-articles-page .search-articles .five-mistake_mobile {
    display: block;
  }
  .search-articles-page .search-articles .five-mistake .five-mistake__title {
    font-size: 30px;
    line-height: 30px;
  }
  .search-articles-page .search-articles .five-mistake .five-mistake__description {
    font-size: 18px;
    line-height: 25px;
  }
  .search-articles-page .search-articles .five-mistake .five-mistake__btn {
    height: 48px;
    font-size: 16px;
    line-height: 16px;
  }
}
.blog-page .topical-articles .topical-articles-content {
  flex-direction: column;
  padding-bottom: 0;
}
.blog-page .topical-articles .topical-articles-filter-list-wrapper {
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
  margin-bottom: 78px;
}
.blog-page .topical-articles .topical-articles-filter-list__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 12px;
  color: #2D2C37;
  font: 600 18px "Open Sans SemiBold";
  background-color: #F6F3F7;
  width: unset;
}
.blog-page .topical-articles .topical-articles-filter-list__item:hover {
  cursor: pointer;
}
.blog-page .topical-articles .topical-articles-filter-list__item_active {
  background-color: #2D2C37;
  color: #FFF;
}
.blog-page .topical-articles .article-list {
  display: flex;
  grid-gap: unset;
}
.blog-page .topical-articles .topical-articles-swiper {
  height: 1050px;
  width: 100%;
  padding-bottom: 50px;
}
.blog-page .topical-articles .article {
  width: 450px;
  height: 450px;
}
.blog-page .topical-articles .swiper-pagination-wrapper {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
}
.blog-page .topical-articles .swiper-pagination-wrapper .swiper-pagination {
  width: fit-content;
  position: relative;
  bottom: 0;
  left: 0;
  margin: 0 25px;
}
.blog-page .topical-articles .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none !important;
  color: #2D2C37;
  opacity: 1;
  font: 400 18px/25px "Open Sans Regular";
}
.blog-page .topical-articles .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f4f3f6 !important;
  color: #5BC484;
  font-weight: 700;
}
.blog-page .topical-articles .swiper-pagination-wrapper .swiper-arrow {
  position: relative;
  left: 0;
  bottom: 0;
}
.blog-page .topical-articles .swiper-pagination-wrapper .swiper-arrow::after {
  font-size: 20px;
  color: #2D2C37;
  font-weight: 600;
}
.blog-page .topical-articles .five-mistake_mobile {
  display: none;
  margin-top: 40px;
  border-radius: 18px;
  width: 100%;
  height: 277px;
}
.blog-page .topical-articles .five-mistake {
  padding: 40px 30px 30px;
  background-color: #AB5BD2 !important;
  overflow: hidden;
  position: relative;
}
.blog-page .topical-articles .five-mistake .five-mistake__content {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.blog-page .topical-articles .five-mistake .five-mistake__bird {
  position: absolute;
  z-index: 0;
  bottom: -120;
  left: -50px;
}
.blog-page .topical-articles .five-mistake .five-mistake__title {
  font: 600 54px/65px "Open Sans Regular";
  color: #FFF;
  margin-bottom: 14px;
}
.blog-page .topical-articles .five-mistake .five-mistake__description {
  font: 600 24px/31.2px "Open Sans Regular";
  color: #FFF;
}
.blog-page .topical-articles .five-mistake .five-mistake__btn {
  height: 60px;
  font: 700 20px/20px "Open Sans Regular";
  color: #2D2C37;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border-radius: 11px;
  margin-top: auto;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .blog-page .topical-articles .five-mistake .five-mistake__title {
    font-size: 40px;
  }
  .blog-page .topical-articles .five-mistake .five-mistake__description {
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .blog-page .topical-articles .topical-articles-filter-list-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }
  .blog-page .topical-articles .topical-articles-swiper {
    height: 1250px;
  }
  .blog-page .topical-articles .article {
    width: 325px;
    height: 358px;
  }
  .blog-page .topical-articles .five-mistake_mobile {
    display: block;
  }
  .blog-page .topical-articles .five-mistake .five-mistake__title {
    font-size: 30px;
    line-height: 30px;
  }
  .blog-page .topical-articles .five-mistake .five-mistake__description {
    font-size: 18px;
    line-height: 25px;
  }
  .blog-page .topical-articles .five-mistake .five-mistake__btn {
    height: 48px;
    font-size: 16px;
    line-height: 16px;
  }
}
.blog-page .idea-mobile-app-banner-wrapper {
  margin: 0 auto;
}
.cases-page .hero {
  background-image: url("./images/backgrounds/cases-hero-bg2x.jpg");
  background-size: auto 100%;
  background-color: #f4f3f6;
  background-repeat: no-repeat no-repeat;
  background-position-y: bottom;
  background-position-x: right;
}
.cases-page .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 132px;
  padding-bottom: 146px;
}
.cases-page .hero-title {
  max-width: 400px;
  color: #2D2C37;
  font: 700 62px/62px "Open Sans Bold";
  margin-bottom: 42px;
}
.cases-page .hero-description {
  max-width: 539px;
  color: #2D2C37;
  font: 400 18px/25px "Open Sans Regular";
}

@media (min-width: 768px) and (max-width: 1440px) {
  .cases-page .hero {
    background-position-x: 150px;
  }
}
@media (max-width: 768px) {
  .cases-page .hero {
    background-image: url("./images/backgrounds/cases-hero-bg-mobile.png");
    background-position-x: right;
  }
  .cases-page .hero .inner-content-wrapper {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .cases-page .hero .hero-title {
    font-size: 30px;
    line-height: 30px;
    max-width: 178px;
  }
  .cases-page .hero .hero-description {
    font-size: 14px;
    line-height: 19.6px;
    max-width: 178px;
    color: rgba(45, 44, 55, 0.6980392157);
  }
}
.about-approach-content {
  background-color: #2D2C37;
  padding: 74px 58px 70px 58px;
  border-radius: 34px;
  justify-content: space-between;
}
.about-approach-content .seo-face-wrapper, .about-approach-content .idea-cloud-wrapper_mobile {
  display: none;
}
.about-approach-content .sub-title {
  font: 600 18px/27px "Open Sans SemiBold";
  color: #97969D;
  margin-bottom: 16px;
}
.about-approach-content .title-wrapper {
  max-width: 521px;
  margin-bottom: 44px;
}
.about-approach-content .title {
  display: inline;
  color: #FFF;
  font: 600 54px/64px "Open Sans SemiBold";
}
.about-approach-content .title-gradient {
  display: inline;
  font: 600 54px/64px "Open Sans SemiBold";
  background-color: #2AA5A0;
  background-image: linear-gradient(270deg, #60C3AB 0%, #99C1FD 51.04%, #A770DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-approach-content .title-gradient-second {
  background-image: linear-gradient(270deg, #99C1FD 31.04%, #A770DB 100%);
}
.about-approach-content .description-wrapper {
  max-width: 650px;
  margin-bottom: 44px;
}
.about-approach-content .description-wrapper .description {
  font: 400 18px/27px "Open Sans Regular";
  color: #FFF;
  margin-bottom: 20px;
}
.about-approach-content .contact-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  position: relative;
  max-width: 650px;
  height: 90px;
  border-radius: 26px;
  background-color: rgba(88, 86, 103, 0.2);
}
.about-approach-content .contact-info {
  color: #FFF;
}
.about-approach-content .contact-info .name {
  font: 600 24px/36px "Open Sans SemiBold";
}
.about-approach-content .contact-info .position {
  font: 400 14px/21px "Open Sans Regular";
  font-style: italic;
}
.about-approach-content .decoration-img {
  position: absolute;
  top: -50px;
  right: 155px;
}
.about-approach-content .button-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background-color: #FFF;
  border-radius: 94px;
  width: 217px;
  height: 49px;
  z-index: 10;
}
.about-approach-content .button-link:hover {
  background: linear-gradient(90deg, #778FFE 0%, #D8DEFE 100%);
}
.about-approach-content .button-link:active {
  background: #1877F2;
}
.about-approach-content .button-link:active span {
  color: #FFF;
}
.about-approach-content .button-link:active .icon path {
  color: #1877F2;
  fill: #FFF;
}
.about-approach-content .button-link span {
  padding-left: 21px;
  font: 700 16px/25px "Open Sans Bold";
  color: #2D2C37;
  text-decoration: none;
}
.about-approach-content .right-side-content {
  position: relative;
  margin-right: 80px;
}
.about-approach-content .right-side-content .idea-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 434px;
  height: 150px;
  border-radius: 26px;
  background-color: rgba(88, 86, 103, 0.2);
  color: #FFF;
  font: 600 24px/36px "Open Sans SemiBold";
  z-index: 10;
}
.about-approach-content .right-side-content .decoration-svg {
  position: absolute;
  left: 140px;
}
.about-approach-content .right-side-content img {
  position: absolute;
  bottom: -50px;
  margin-left: 50px;
}

@media (max-width: 768px) {
  .about-approach {
    padding: 0 !important;
  }
  .about-approach .about-approach-content {
    padding: 50px 20px;
    display: block;
    border-radius: 0;
  }
  .about-approach .about-approach-content .right-side-content {
    display: none;
  }
  .about-approach .about-approach-content .sub-title {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 16px;
  }
  .about-approach .about-approach-content .seo-face-wrapper {
    display: block;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background-color: #363441;
    margin-right: 12px;
  }
  .about-approach .about-approach-content .seo-face-wrapper .seo-face-img {
    width: 100px;
    border-radius: 50%;
  }
  .about-approach .about-approach-content .title-wrapper {
    display: flex;
    align-items: center;
    max-width: unset;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 28.8px;
  }
  .about-approach .about-approach-content .title {
    font-size: 24px;
    line-height: 28.8px;
  }
  .about-approach .about-approach-content .title-gradient {
    font-size: 24px;
    line-height: 28.8px;
  }
  .about-approach .about-approach-content .idea-cloud-wrapper_mobile {
    position: relative;
    margin-bottom: 30px;
    display: block;
  }
  .about-approach .about-approach-content .idea-cloud-wrapper_mobile .idea-cloud {
    display: flex;
    align-items: center;
    text-align: center;
    width: 238px;
    height: 86px;
    border-radius: 18px;
    background-color: rgba(88, 86, 103, 0.2);
    color: #FFF;
    font: 600 14px/16.8px "Open Sans SemiBold";
    z-index: 10;
  }
  .about-approach .about-approach-content .idea-cloud-wrapper_mobile .svg-decoration {
    position: absolute;
    top: -20px;
    left: 50px;
  }
  .about-approach .about-approach-content .description-wrapper {
    margin-bottom: 0;
  }
  .about-approach .about-approach-content .description-wrapper .description {
    font-size: 14px;
    line-height: 19.6px;
  }
  .about-approach .about-approach-content .contact-wrapper {
    width: calc(100% + 40px);
    max-width: unset;
    margin-left: -20px;
    border-radius: 0;
  }
  .about-approach .about-approach-content .contact-wrapper .decoration-img {
    display: none;
  }
  .about-approach .about-approach-content .contact-wrapper .contact-info .name {
    font-size: 16px;
    line-height: 24px;
  }
  .about-approach .about-approach-content .contact-wrapper .contact-info .position {
    font-size: 12px;
    line-height: 18px;
  }
  .about-approach .about-approach-content .contact-wrapper .button-link {
    width: 188px;
    height: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .about-approach .about-approach-content {
    padding: 50px 40px;
    display: block;
  }
  .about-approach .about-approach-content .right-side-content {
    display: none;
  }
  .about-approach .about-approach-content .sub-title {
    margin-bottom: 40px;
  }
  .about-approach .about-approach-content .seo-face-wrapper {
    display: block;
    border-radius: 50%;
    width: 210px;
    height: 210px;
    background-color: #363441;
    margin-right: 56px;
  }
  .about-approach .about-approach-content .seo-face-wrapper .seo-face-img {
    width: 210px;
    border-radius: 50%;
  }
  .about-approach .about-approach-content .title-wrapper {
    display: flex;
    align-items: center;
    max-width: unset;
    margin-bottom: 30px;
  }
  .about-approach .about-approach-content .title {
    font-size: 40px;
  }
  .about-approach .about-approach-content .title-gradient {
    font-size: 40px;
  }
  .about-approach .about-approach-content .idea-cloud-wrapper_mobile {
    position: relative;
    margin-bottom: 30px;
    display: block;
  }
  .about-approach .about-approach-content .idea-cloud-wrapper_mobile .idea-cloud {
    display: flex;
    align-items: center;
    text-align: center;
    width: 434px;
    height: 180px;
    border-radius: 26px;
    background-color: rgba(88, 86, 103, 0.2);
    color: #FFF;
    font: 600 24px/31.2px "Open Sans SemiBold";
    z-index: 10;
    position: relative;
    left: 80px;
  }
  .about-approach .about-approach-content .idea-cloud-wrapper_mobile .svg-decoration {
    position: absolute;
    top: -29px;
    left: 130px;
  }
  .about-approach .about-approach-content .idea-cloud-wrapper_mobile .svg-decoration svg {
    width: 68px;
    height: 29px;
  }
  .about-approach .about-approach-content .description-wrapper {
    margin-bottom: 100px;
    max-width: unset;
  }
  .about-approach .about-approach-content .description-wrapper .description {
    margin-bottom: 0;
  }
  .about-approach .about-approach-content .contact-wrapper {
    max-width: unset;
  }
}
.about-expertise {
  background-color: #f4f3f6;
}
.about-expertise .header-block {
  margin-bottom: 56px;
}
.about-expertise .about-expertise-content {
  display: flex;
  flex-direction: column;
  padding-top: 92px;
  padding-bottom: 100px;
}
.about-expertise .expertise-card {
  background-color: #FFF;
  border-radius: 32px;
}
.about-expertise .full-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 24px;
}
.about-expertise .full-card .card-info {
  margin-bottom: 8px;
}
.about-expertise .full-card__left-side-block {
  width: 594px;
  max-height: 446px;
}
.about-expertise .full-card__left-side-block img {
  max-width: 100%;
  height: auto;
  border-radius: 32px;
}
.about-expertise .full-card__right-side-block {
  max-width: 573px;
}
.about-expertise .full-card__right-side-block .full-card__name {
  font: 600 30px "Open Sans SemiBold";
  color: #2D2C37;
  margin-bottom: 30px;
}
.about-expertise .full-card__right-side-block .full-card__description {
  font: 400 20px "Open Sans Regular";
  color: #585667;
}
.about-expertise .card-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.about-expertise .card-info .separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #585667;
  margin: 0 10px;
  align-self: center;
}
.about-expertise .card-info .article, .about-expertise .card-info .date {
  font: 600 15px "Open Sans SemiBold";
  color: #585667;
}
.about-expertise .sub-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
}
.about-expertise .sub-card {
  max-width: 401px;
  display: flex;
  flex-direction: column;
  padding: 17px 24px 24px 24px;
}
.about-expertise .sub-card__img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 276px;
}
.about-expertise .sub-card__img img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}
.about-expertise .sub-card__info {
  margin-top: 17px;
}
.about-expertise .sub-card__name {
  color: #2D2C37;
  font: 600 24px "Open Sans SemiBold";
  margin-top: 12px;
}
.about-expertise .go-to-blog-link {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 74px;
  padding: 0 44px;
  border: 2px solid #E8E6EB;
  border-radius: 24px;
  font: 600 18px "Open Sans SemiBold";
  color: #2D2C37;
  transition: all 0.3s;
}
.about-expertise .go-to-blog-link .icon path {
  transition: all 0.3s;
}
.about-expertise .go-to-blog-link:hover {
  color: #5BC484;
  border-color: #5BC484;
}
.about-expertise .go-to-blog-link:hover .icon path {
  stroke: #5BC484;
}

@media (max-width: 1240px) {
  .about-expertise .about-expertise-content {
    padding: 50px 0;
  }
  .about-expertise .full-card {
    flex-direction: column;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
  }
  .about-expertise .full-card .full-card__left-side-block {
    width: 100%;
    height: unset;
  }
  .about-expertise .full-card .full-card__left-side-block img {
    width: unset;
    border-radius: 0;
    margin: 0 auto;
    display: block;
  }
  .about-expertise .full-card .full-card__right-side-block {
    padding: 20px 20px 25px 20px;
  }
  .about-expertise .full-card .full-card__right-side-block .card-info .article, .about-expertise .full-card .full-card__right-side-block .card-info .date {
    font-size: 12px;
    line-height: 16.34px;
  }
  .about-expertise .full-card .full-card__right-side-block .full-card__name {
    font-size: 18px;
    line-height: 25.08px;
    margin-bottom: 12px;
  }
  .about-expertise .sub-cards {
    flex-wrap: wrap;
  }
  .about-expertise .sub-cards .expertise-card {
    width: calc(50% - 7.5px);
    padding: 0 20px 25px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 15px;
  }
  .about-expertise .sub-cards .expertise-card .sub-card__img {
    width: calc(100% + 40px);
    margin-left: -20px;
    height: unset;
  }
  .about-expertise .sub-cards .expertise-card .sub-card__img img {
    border-radius: 0;
  }
  .about-expertise .sub-cards .expertise-card .card-info {
    flex-direction: column;
    align-items: unset;
  }
  .about-expertise .sub-cards .expertise-card .card-info .article, .about-expertise .sub-cards .expertise-card .card-info .date {
    font-size: 12px;
    line-height: 16.34px;
  }
  .about-expertise .sub-cards .expertise-card .card-info .separator {
    display: none;
  }
  .about-expertise .sub-cards .expertise-card .sub-card__name {
    font: 400 14px/19.6px "Open Sans Regular";
  }
  .about-expertise .go-to-blog-link {
    margin-top: 0;
    height: 48px;
    border-radius: 24px;
    padding: 15px 25px;
  }
  .about-expertise .go-to-blog-link .text {
    font-size: 18px;
    line-height: 24.5px;
  }
  .about-expertise .go-to-blog-link .icon {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1240px) {
  .about-expertise .full-card .full-card__left-side-block {
    width: 100%;
    height: unset;
  }
  .about-expertise .full-card .full-card__left-side-block img {
    width: unset;
    border-radius: 0 0 32px 32px;
    margin: 0 auto;
    display: block;
  }
  .about-expertise .sub-cards .expertise-card {
    justify-content: space-around;
    display: none;
  }
  .about-expertise .sub-cards .expertise-card .card-info {
    flex-direction: row;
    align-items: center;
  }
  .about-expertise .sub-cards .expertise-card .card-info .article, .about-expertise .sub-cards .expertise-card .card-info .date {
    font-size: 15px;
    line-height: 24px;
  }
  .about-expertise .sub-cards .expertise-card .card-info .separator {
    display: block;
  }
  .about-expertise .sub-cards .expertise-card .sub-card__name {
    font: 600 24px/34px "Open Sans SemiBold";
  }
  .about-expertise .sub-cards .expertise-card:nth-child(1), .about-expertise .sub-cards .expertise-card:nth-child(2) {
    display: flex;
  }
}
@media (max-width: 600px) {
  .about-expertise .sub-cards {
    flex-direction: column;
  }
  .about-expertise .sub-cards .expertise-card {
    width: 100%;
  }
  .about-expertise .sub-card {
    max-width: none;
  }
}
.awards .awards-content {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-end;
}
.awards .left-side-content, .awards .right-side-content {
  width: 25%;
}
.awards .center-side-content {
  width: 50%;
}
.awards .left-side-content .left-side-content__slider {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  min-height: 338px;
}
.awards .left-side-content .left-side-content__slide {
  position: relative;
  min-height: 194px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  border: 2px solid #E8E6EB;
}
.awards .left-side-content .slide-img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: -80px 0 auto 0;
  height: 120px;
  width: 104px;
  object-fit: cover;
}
.awards .left-side-content .slide-title {
  color: rgba(88, 86, 103, 0.5);
  font: 600 16px/24px "Open Sans SemiBold";
  margin-bottom: 9px;
  max-width: 143px;
  text-align: center;
}
.awards .left-side-content .slide-description {
  color: #2D2C37;
  font: 700 18px/25px "Open Sans Bold";
  max-width: 175px;
  text-align: center;
}
.awards .center-side-content .center-side-content__slide {
  min-height: 194px;
}
.awards .center-side-content .center-side-content__slider {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  min-height: 338px;
}
.awards .center-side-content .center-side-content__slide {
  display: flex;
  flex-direction: column;
  padding: 42px 44px;
  border-radius: 34px;
  border: 2px solid #E8E6EB;
}
.awards .center-side-content .slide-title {
  color: rgba(88, 86, 103, 0.5);
  font: 600 18px/27px "Open Sans SemiBold";
  margin-bottom: 32px;
}
.awards .center-side-content .slide-items-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-evenly;
}
.awards .center-side-content .slide-row {
  align-items: flex-start;
}
.awards .center-side-content .slide-row .slide-item:nth-child(1) {
  margin-bottom: 32px;
}
.awards .center-side-content .slide-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  width: calc(50% - 16px);
}
.awards .center-side-content .slide-item__info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.awards .center-side-content .slide-item__number {
  color: #2D2C37;
  font: 700 23px/30px "Open Sans Bold";
}
.awards .center-side-content .slide-item__name {
  color: #2D2C37;
  font: 400 16px/22px "Open Sans Regular";
}
.awards .center-side-content .right-side-content-slide {
  display: none;
}
.awards .right-side-content {
  display: flex;
  flex-direction: column;
  padding: 32px;
  max-width: 293px;
  position: relative;
  border-radius: 32px;
  background-color: #5BC484;
}
.awards .right-side-content .right-side-content__title {
  color: #FFF;
  font: 700 30px/36px "Open Sans Bold";
  margin-bottom: 16px;
  z-index: 10;
}
.awards .right-side-content .right-side-content__description {
  color: #FFF;
  font: 400 18px/22px "Open Sans Regular";
  margin-bottom: 32px;
  z-index: 10;
}
.awards .right-side-content .right-side-content__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
  background-color: #FFF;
  height: 52px;
  color: #2D2C37;
  font: 600 16px/25px "Open Sans SemiBold";
  position: relative;
  z-index: 10;
}
.awards .right-side-content .right-side-content__decoration-img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.awards .right-side-content .right-side-content__decoration-img svg {
  width: 100%;
}

@media (max-width: 1024px) {
  .awards {
    padding-top: 0;
  }
  .awards .awards-content {
    flex-direction: column;
    align-items: center;
  }
  .awards .left-side-content {
    width: 100%;
  }
  .awards .left-side-content .left-side-content__slide {
    border-radius: 18px;
  }
  .awards .center-side-content {
    width: 100%;
    min-height: 325px;
  }
  .awards .center-side-content .slide-item {
    gap: 14px;
    width: 150px;
  }
  .awards .center-side-content .center-side-content__slide {
    padding: 30px 15px 50px;
    border-radius: 18px;
  }
  .awards .center-side-content .center-side-content__slider {
    min-height: unset;
  }
  .awards .center-side-content .slide-row {
    display: flex;
    justify-content: space-evenly;
  }
  .awards .center-side-content .slide-items-list {
    flex-direction: column;
  }
  .awards .center-side-content .slide-title {
    font-size: 14px;
    line-height: 21px;
  }
  .awards .center-side-content .slide-item__img {
    width: 50px;
  }
  .awards .center-side-content .slide-item__name {
    font-size: 12px;
    line-height: 16.8px;
  }
  .awards .center-side-content .right-side-content-slide {
    display: block;
    padding: 0;
    border: 0;
  }
  .awards .center-side-content .swiper-slide > .right-side-content {
    display: flex;
    padding-bottom: 60px;
    min-height: 360px;
    width: 100%;
    max-width: unset;
    border-radius: 18px;
  }
  .awards .center-side-content .swiper-slide > .right-side-content .right-side-content__title {
    font: 600 24px/31.2px "Open Sans Regular";
    margin-bottom: 16px;
  }
  .awards .center-side-content .swiper-slide > .right-side-content .right-side-content__description {
    font-size: 12px;
    line-height: 16.8px;
    margin-bottom: 40px;
  }
  .awards .center-side-content .swiper-slide > .right-side-content .right-side-content__button {
    margin-top: auto;
  }
  .awards .center-side-content .swiper-slide > .right-side-content .right-side-content__decoration-img {
    right: 0;
    left: unset;
    bottom: -80px;
  }
  .awards .center-side-content .swiper-slide > .right-side-content .right-side-content__decoration-img svg {
    width: unset;
  }
  .awards .center-side-content .swiper-wrapper:has(.swiper-slide-active > .right-side-content) + .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff !important;
  }
  .awards .center-side-content .swiper-wrapper .right-side-content-slide.swiper-slide-active + .swiper-pagination-bullet-active {
    background-color: #fff !important;
  }
  .awards .right-side-content {
    display: none;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .awards .awards-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .awards .awards-content .center-side-content {
    min-width: 527px;
    width: 60%;
  }
  .awards .awards-content .right-side-content {
    width: 100%;
    max-width: unset;
  }
  .awards .awards-content .right-side-content .right-side-content__title {
    margin-bottom: 32px;
  }
  .awards .awards-content .right-side-content .right-side-content__description {
    margin-bottom: 42px;
  }
  .awards .awards-content .right-side-content .right-side-content__button {
    max-width: 230px;
  }
}
@media (max-width: 400px) {
  .awards .center-side-content .center-side-content__slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .awards .center-side-content .slide-row {
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .awards .center-side-content .slide-item {
    width: auto;
  }
}
.main-page .hero {
  background-color: #F4F3F6;
}
.main-page .hero .hero-content {
  padding: 207px 0;
}
.main-page .hero .title-block {
  width: 100%;
  position: relative;
  z-index: 1;
}
.main-page .hero .title {
  display: flex;
  flex-direction: row;
  color: #2D2C37;
  margin-bottom: 28px;
  font: 800 108px/130px "Open Sans ExtraBold";
}
.main-page .hero .title:nth-child(1), .main-page .hero .title:nth-child(3) {
  justify-content: flex-start;
}
.main-page .hero .title:nth-child(2) {
  justify-content: flex-end;
}
.main-page .hero .title-gradient {
  background-color: #2AA5A0;
  background-image: linear-gradient(270deg, #5BC484 40%, #9AC1FF 60%, #AB5BD2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-page .hero .description {
  color: rgba(45, 44, 55, 0.6980392157);
  font: 600 30px/48px "Open Sans SemiBold";
  position: absolute;
  top: 20px;
  right: 0;
  max-width: 662px;
}
.main-page .hero .button-link {
  padding: 0 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 293px;
  border-radius: 94.249px;
  background-color: #F73;
  height: 70px;
}
.main-page .hero .button-link span {
  padding-left: 22px;
  color: #FFF;
  font: 600 18px/38px "Open Sans SemiBold";
}
.main-page .hero .button-link .ball {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: #FFF;
}
.main-page .hero .arrow {
  position: absolute;
  top: 200px;
  left: 180px;
}
.main-page .hero .star-circle {
  width: 313px;
  height: 313px;
  background-color: #fff;
  position: absolute;
  right: 100px;
  top: -50px;
  border-radius: 50%;
  z-index: -1;
}
.main-page .hero .star-circle .orange-star {
  position: absolute;
  top: 0;
  right: 55px;
}
.main-page .hero .star-circle .green-star {
  position: absolute;
  top: 25px;
  right: 110px;
}

@media (max-width: 768px) {
  .main-page .hero .title-block {
    margin: 0 auto;
    max-width: 500px;
  }
  .main-page .hero .title {
    font-size: 34px;
    line-height: 40.8px;
    margin: 0;
  }
  .main-page .hero .description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 19.6px;
    position: static;
  }
  .main-page .hero .arrow {
    display: none;
  }
  .main-page .hero .star-circle {
    width: 194px;
    height: 194px;
    right: -85px;
    top: -20px;
  }
  .main-page .hero .star-circle .orange-star {
    width: 18px;
    position: absolute;
    top: 10px;
    left: 20px;
  }
  .main-page .hero .star-circle .green-star {
    width: 24px;
    position: absolute;
    top: 20px;
    left: -10px;
  }
  .main-page .hero .button-link {
    position: static;
    margin: 38px auto 0;
    width: 100%;
    min-width: 200px;
    height: 48px;
  }
  .main-page .hero .button-link .ball {
    height: 32px;
    width: 32px;
  }
  .main-page .hero .button-link .ball svg {
    width: 11px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .main-page .hero .title-block {
    margin: 0 auto;
  }
  .main-page .hero .title {
    font-size: 73px;
    line-height: 87.6px;
    margin: 0;
  }
  .main-page .hero .description {
    margin-top: 12px;
    font-size: 30px;
    line-height: 48px;
    position: static;
  }
  .main-page .hero .arrow {
    display: none;
  }
  .main-page .hero .button-link {
    position: static;
    margin-top: 38px;
    width: 300px;
    height: 70px;
  }
}
.our-secrets {
  background-image: url("./images/backgrounds/our-secrets-sticker-bg.svg");
  background-repeat: no-repeat no-repeat;
  background-position-x: calc(100% + 230px);
  background-position-y: bottom;
}
.our-secrets .our-secrets-content {
  display: flex;
  flex-direction: column;
  padding: 92px 0 126px 0;
}
.our-secrets .our-secrets__header-block {
  max-width: 419px;
}
.our-secrets .our-secrets__company-info {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: -180px;
  min-width: 850px;
}
.our-secrets .company-info-item {
  display: flex;
  flex-direction: column;
  max-width: 401px;
  width: 100%;
}
.our-secrets .company-info-item:nth-child(1) {
  align-self: end;
}
.our-secrets .company-info-item:nth-child(2) {
  align-self: center;
  margin: -45px 0;
}
.our-secrets hr {
  background-color: #D9D9D9;
  height: 2px;
  border: none;
}
.our-secrets .number-info {
  color: #5BC484;
  font: 800 90px/108px "Open Sans ExtraBold";
}
.our-secrets .description-info {
  color: #2D2C37;
  font: 700 24px/28px "Open Sans Bold";
  padding-top: 16px;
}
.our-secrets .our-secrets__list {
  margin-top: 39px;
  display: flex;
  flex-direction: column;
  max-width: 932px;
}
.our-secrets .our-secrets__list-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.our-secrets .our-secrets__list-row:not(:last-child) {
  margin-bottom: 72px;
}
.our-secrets .our-secrets__list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  max-width: 350px;
  color: #2D2C37;
  font: 400 18px/22px "Open Sans Regular";
  width: 50%;
}
.our-secrets .our-secrets__list-item:nth-child(1) {
  margin-right: 15px;
}

@media (max-width: 768px) {
  .our-secrets {
    background-size: 586px;
    background-position-y: 150px;
  }
  .our-secrets .our-secrets-content {
    padding: 50px 0;
  }
  .our-secrets .title-underline {
    position: relative;
    white-space: nowrap;
  }
  .our-secrets .title-underline .decoration-svg {
    width: 150px;
    position: absolute;
    bottom: -10px;
    left: 0;
  }
  .our-secrets .our-secrets__company-info {
    margin-top: 30px;
    flex-direction: column;
    align-items: unset;
    min-width: unset;
  }
  .our-secrets .our-secrets__company-info .company-info-item {
    width: 170px;
    margin: 0 0;
  }
  .our-secrets .our-secrets__company-info .company-info-item .number-info {
    color: #5BC484;
    font-size: 40px;
    line-height: 48px;
    margin-top: 0;
  }
  .our-secrets .our-secrets__company-info .company-info-item hr {
    margin: 0;
  }
  .our-secrets .our-secrets__company-info .company-info-item .description-info {
    padding-top: 12px;
    font-size: 16px;
    line-height: 25.6px;
  }
  .our-secrets .our-secrets__company-info .company-info-item:nth-child(1) {
    align-self: end;
  }
  .our-secrets .our-secrets__company-info .company-info-item:nth-child(2) {
    align-self: center;
  }
  .our-secrets .our-secrets__list {
    margin-top: 110px;
  }
  .our-secrets .our-secrets__list .our-secrets__list-item {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .our-secrets {
    background-position-y: 100px;
  }
}
.our-secrets-manage {
  background-color: #f4f3f6;
  background-image: url("./images/backgrounds/our-secrets-bg.jpg");
  background-repeat: no-repeat no-repeat;
  background-size: auto 100%;
  background-position-x: center;
  background-position-y: -100px;
}
.our-secrets-manage .secrets-list__img_mobile {
  display: none;
}
.our-secrets-manage .our-secrets-manage-content {
  padding: 92px 0 177px 0;
  display: flex;
  flex-direction: column;
}
.our-secrets-manage .header-block {
  max-width: 789px;
}
.our-secrets-manage .our-secrets-manage__secrets-list {
  display: flex;
  flex-direction: column;
  margin-top: 135px;
}
.our-secrets-manage .our-secrets-manage__secrets-list-item {
  max-width: 510px;
  margin-bottom: 222px;
}
.our-secrets-manage .our-secrets-manage__secrets-list-item:nth-child(even) {
  align-self: flex-end;
}
.our-secrets-manage .our-secrets-manage__secrets-list-item:last-child {
  margin-bottom: 0;
}
.our-secrets-manage .our-secrets-manage__secrets-list-item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.our-secrets-manage .our-secrets-manage__secrets-list-item-header .circle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #FFF;
}
.our-secrets-manage .our-secrets-manage__secrets-list-item-header .title {
  padding-left: 21px;
  color: #F73;
  font: 700 18px/22px "Open Sans Bold";
}
.our-secrets-manage .our-secrets-manage__secrets-list-item-content .title {
  color: #2D2C37;
  font: 600 24px/32px "Open Sans SemiBold";
}
.our-secrets-manage .our-secrets-manage__secrets-list-item-content .description {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  font: 400 18px/27px "Open Sans Regular";
  color: #585667;
}

@media (max-width: 768px) {
  .our-secrets-manage {
    background: #F4F3F6;
  }
  .our-secrets-manage .our-secrets-manage-content {
    padding: 60px 0;
  }
  .our-secrets-manage .our-secrets-manage__secrets-list {
    margin-top: 0;
  }
  .our-secrets-manage .our-secrets-manage__secrets-list-item {
    max-width: unset;
    align-self: unset;
    margin-bottom: 0;
  }
  .our-secrets-manage .secrets-list__img_mobile {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: -20px;
  }
  .our-secrets-manage .secrets-list__img_mobile .main-img {
    height: 100%;
    max-height: 320px;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .our-secrets-manage {
    background: #F4F3F6;
  }
  .our-secrets-manage .header-block {
    margin-bottom: 100px;
  }
  .our-secrets-manage .our-secrets-manage-content {
    padding: 60px 0;
  }
  .our-secrets-manage .our-secrets-manage__secrets-list {
    margin-top: 0;
  }
  .our-secrets-manage .our-secrets-manage__secrets-list-item {
    max-width: unset;
    align-self: unset;
    margin-bottom: 0;
  }
  .our-secrets-manage .secrets-list__img_mobile {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: -20px;
  }
  .our-secrets-manage .secrets-list__img_mobile .main-img {
    height: 580px;
  }
}
.services-page .about-us {
  position: relative;
}
.services-page .about-us .about-us-background-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  min-width: 1440px;
  max-width: 1440px;
}
.services-page .about-us .about-us-background-wrapper .like-with-dots {
  position: absolute;
  top: 180px;
  right: 150px;
}
.services-page .about-us .about-us-background-wrapper .puzzle-with-dots {
  position: absolute;
  top: 680px;
  left: 0;
}
.services-page .about-us-content {
  padding: 125px 0 200px;
  flex-direction: column;
}
.services-page .about-us-content .header-block .underline-text .decoration-svg.line {
  bottom: 0;
}
.services-page .about-us-content .reasons-wrapper {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 60px;
  grid-row-gap: 200px;
  position: relative;
  width: 100%;
  margin-top: 125px;
}
.services-page .about-us-content .reasons-wrapper .reasons-item__img {
  display: none;
}
.services-page .about-us-content .reasons-wrapper .reasons-item__name {
  font: 700 26px/31px "Open Sans Bold";
  height: 60px;
}
.services-page .about-us-content .reasons-wrapper .reasons-item__description {
  font: 400 18px/27px "Open Sans Regular";
}
.services-page .about-us-content .reasons-wrapper .reason-item__separator {
  border-width: 2px;
  opacity: 1;
  color: #D9D9D9;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .services-page .about-us .about-us-background-wrapper {
    display: none;
  }
  .services-page .about-us-content .reasons-wrapper {
    grid-template-columns: auto auto;
    grid-column-gap: 100px;
    grid-row-gap: 80px;
  }
  .services-page .about-us-content .reasons-wrapper .reasons-item__name {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .services-page .about-us .about-us-background-wrapper {
    display: none;
  }
  .services-page .about-us-content {
    padding: 70px 0;
  }
  .services-page .about-us-content .reasons-wrapper {
    grid-template-columns: auto;
    grid-row-gap: 50px;
  }
  .services-page .about-us-content .reasons-wrapper .reasons-item__img {
    display: block;
    width: 52px;
    height: 52px;
    margin-right: 14px;
  }
  .services-page .about-us-content .reasons-wrapper .reasons-item__name {
    display: flex;
    height: unset;
  }
}
.services-page .achievements {
  background-color: #2D2C37;
}
.services-page .achievements-content {
  padding-top: 32px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.services-page .achievements-content .achievements-content__title {
  color: #979797;
  font: 600 18px/27px "Open Sans SemiBold";
  margin-bottom: 42px;
}
.services-page .achievements-content .achievements-content__achievements-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 33px 89px;
}
.services-page .achievements-content .achievements-content__achievements-item {
  color: #FFF;
  font: 400 18px/25px "Open Sans Regular";
  z-index: 10;
}
.services-page .achievements-content .decoration-svg {
  position: absolute;
  z-index: 1;
}
.services-page .achievements-content .decoration-svg.big-star {
  right: 180px;
  top: 0;
}
.services-page .achievements-content .decoration-svg.small-star {
  right: 30px;
  top: 30px;
}

@media (max-width: 768px) {
  .services-page .achievements {
    display: none;
  }
}
.services .services-content {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 140px;
}
.services .services__header-block {
  position: relative;
  max-width: 613px;
}
.services .services__header-block .decoration-svg {
  position: absolute;
  bottom: -30px;
  right: 30px;
}
.services .accordion-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 78px;
  border-bottom: 2px solid #E8E6EB;
}
.services .accordion-item__wrapper {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  border-top: 2px solid #E8E6EB;
}
.services .accordion-item__info-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media (max-width: 400px) {
  .services .accordion-item__info-wrapper {
    gap: 20px;
  }
}
.services .accordion-item__number {
  color: #6a6972;
  font: 600 20px/24px "Open Sans SemiBold";
  opacity: 0.7;
}
.services .accordion-item__text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.services .accordion-item__name {
  max-width: 460px;
  width: 100%;
  color: #2D2C37;
  font: 700 34px/40px "Open Sans Bold";
}
.services .accordion-item__description {
  max-width: 433px;
  width: 100%;
  color: #6a6972;
  font: 400 18px/23px "Open Sans Regular";
  margin-right: 150px;
}
@media (max-width: 400px) {
  .services .accordion-item__description {
    margin-right: 0;
  }
}
.services .accordion-item__toggle {
  margin-left: auto;
  margin-right: 20px;
  transition: all 0.4s;
}
.services .accordion-item__toggle:hover {
  cursor: pointer;
}
.services .accordion-item__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  max-height: 0;
  overflow: hidden;
}
.services .accordion-item__content-item {
  display: flex;
  flex-direction: column;
  background-color: #f4f3f6;
  border-radius: 34px;
  padding: 45px;
  width: calc(33.3333333333% - 22px);
  height: 378px;
}
.services .accordion-item__wrapper_active .accordion-item__content {
  margin-top: 40px;
}
.services .accordion-item__wrapper_active .accordion-item__toggle {
  transform: rotate(180deg);
}
.services .accordion-item__wrapper_active .accordion-item__toggle svg circle {
  fill: #f4f3f6;
}
.services .accordion-item__wrapper_active .accordion-item__content {
  max-height: 100%;
}
.services .accordion-item__content-item-row-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 40px;
}
.services .accordion-item__content-item-row-link .title, .services .accordion-item__content-item-row-link .sub-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.services .accordion-item__content-item-row-link .title {
  color: #2D2C37;
  font: 600 24px/31px "Open Sans SemiBold";
  margin-bottom: 13px;
}
.services .accordion-item__content-item-row-link .title span {
  max-width: 266px;
}
.services .accordion-item__content-item-row-link .description {
  color: #585F7B;
  font: 400 18px "Open Sans Regular";
}
.services .accordion-item__content-item-row-link .sub-title {
  color: #2D2C37;
  font: 600 18px "Open Sans SemiBold";
}

@media (max-width: 768px) {
  .services {
    padding: 0 !important;
  }
  .services .services__header-block {
    padding: 0 25px;
  }
  .services .services__header-block .decoration-svg {
    width: 140px;
    bottom: -11px;
    left: 145px;
  }
  .services .accordion-item__wrapper {
    padding: 40px 25px;
  }
  .services .accordion-item__content {
    flex-direction: column;
  }
  .services .accordion-item__content .accordion-item__content-item {
    width: 100%;
    height: unset;
    border-radius: 18px;
    padding: 25px;
  }
  .services .accordion-item__content .accordion-item__content-item svg {
    width: 16px;
  }
  .services .accordion-item__content .accordion-item__content-item .title {
    font: 800 16px "Open Sans Bold";
    margin-bottom: 0;
  }
  .services .accordion-item__content .accordion-item__content-item .sub-title {
    font-size: 15px;
  }
  .services .accordion-item__content .accordion-item__content-item .description {
    font-size: 14px;
    padding-right: 30px;
  }
  .services .accordion-item__content .accordion-item__content-item .accordion-item__content-item-row-link {
    margin-bottom: 10px;
  }
  .services .accordion-item__number {
    font: 400 12px/24px "Open Sans Regular";
    align-self: flex-start;
  }
  .services .accordion-item__text {
    flex-direction: column;
  }
  .services .accordion-item__name {
    font-size: 16px;
    line-height: 25.6px;
  }
  .services .accordion-item__description {
    font-size: 12px;
    line-height: 16.8px;
  }
  .services .accordion-item__toggle {
    margin-right: 0;
  }
  .services .accordion-item__toggle svg {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .services .accordion-item__content {
    flex-direction: column;
  }
  .services .accordion-item__content .accordion-item__content-item {
    width: 100%;
    height: unset;
  }
  .services .accordion-item__content .accordion-item__content-item .title {
    margin-bottom: 0;
  }
  .services .accordion-item__content .accordion-item__content-item .description {
    padding-right: 30px;
  }
  .services .accordion-item__content .accordion-item__content-item .accordion-item__content-item-row-link {
    margin-bottom: 10px;
  }
  .services .accordion-item__content .accordion-item__content-item .accordion-item__content-item-row-link .title span {
    max-width: unset;
  }
  .services .accordion-item__number {
    align-self: flex-start;
    margin-top: 10px;
  }
  .services .accordion-item__text {
    flex-direction: column;
  }
  .services .accordion-item__text .accordion-item__name {
    margin-bottom: 32px;
  }
  .services .accordion-item__toggle {
    margin-right: 0;
  }
}
.best-cases {
  position: relative;
  overflow: hidden;
}
.best-cases .best-cases-content {
  flex-direction: row-reverse;
  gap: 30px;
  justify-content: space-between;
  padding: 170px 0;
}
.best-cases .header-wrapper {
  max-width: 480px;
}
.best-cases .header-wrapper .title {
  margin-bottom: 40px;
}
.best-cases .header-wrapper .description {
  font: 400 18px/28.8px "Open Sans Regular";
  color: #6a6972;
  margin-bottom: 16px;
}
.best-cases .button-link {
  width: 313px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 28px;
  color: #FFF;
  font: 600 18px "Open Sans SemiBold";
  background-color: #F73;
  border-radius: 94px;
  margin-top: 30px;
}
.best-cases .button-link .ball {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 50%;
  right: 9px;
  align-self: center;
}
.best-cases .cases-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 30px;
  min-width: 50%;
  grid-row-gap: 40px;
}
.best-cases .cases-list .cases-list__item {
  padding-left: 40px;
  position: relative;
  font: 700 18px/25px "Open Sans Bold";
}
.best-cases .cases-list .cases-list__item::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("./images/icons/green-star.svg") no-repeat;
  background-size: 24px;
  position: absolute;
  left: 0;
}
.best-cases .background-line {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .best-cases .best-cases-content {
    flex-direction: column;
    padding: 100px 0;
  }
  .best-cases .header-wrapper {
    max-width: 80%;
  }
  .best-cases .cases-list {
    margin-top: 80px;
    grid-template-columns: auto auto auto;
  }
  .best-cases .cases-list .cases-list__item {
    font-size: 14px;
    line-height: 19.6px;
  }
  .best-cases .background-line {
    display: none;
  }
}
@media (max-width: 768px) {
  .best-cases .best-cases-content {
    flex-direction: column;
    padding: 50px 0;
  }
  .best-cases .header-wrapper {
    max-width: 100%;
  }
  .best-cases .header-wrapper .description {
    font-size: 14px;
    line-height: 19.6px;
  }
  .best-cases .cases-list {
    grid-template-columns: auto;
    grid-row-gap: 20px;
  }
  .best-cases .cases-list .cases-list__item {
    font-size: 14px;
    line-height: 19.6px;
  }
  .best-cases .button-link {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }
  .best-cases .button-link .ball {
    width: 32px;
    height: 32px;
  }
  .best-cases .background-line {
    display: none;
  }
}
.services-page .hero {
  background-color: #F4F3F6;
  position: relative;
  height: 765px;
  overflow: hidden;
}
.services-page .hero .title {
  max-width: 50%;
  min-width: 520px;
  color: #2D2C37;
  margin-bottom: 42px;
}
.services-page .hero .description {
  max-width: 50%;
  min-width: 520px;
  color: rgba(45, 44, 55, 0.6980392157);
}
.services-page .hero .hero-background {
  width: 100%;
  height: 100%;
  min-width: 1440px;
  position: absolute;
  left: 0;
  z-index: 1;
}
.services-page .hero .hero-background .hero-background__main {
  position: absolute;
  width: 783px;
  top: 115px;
  right: -42px;
}
.services-page .hero .hero-background .hero-background__circle {
  position: absolute;
  top: 231px;
  left: -126px;
  width: 251px;
  height: 251px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFFFFF 54.08%, rgba(255, 255, 255, 0) 93.98%);
}
.services-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 132px;
  padding-bottom: 146px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .services-page .hero .hero-background {
    min-width: 1024px;
  }
  .services-page .hero .hero-background .hero-background__main {
    width: 680px;
    top: 34px;
    right: -188px;
  }
}
@media (max-width: 768px) {
  .services-page .hero {
    height: 405px;
  }
  .services-page .hero .hero-content {
    padding-top: 120px;
    padding-bottom: 90px;
  }
  .services-page .hero .hero-content .title {
    min-width: 250px;
  }
  .services-page .hero .hero-content .description {
    min-width: 180px;
  }
  .services-page .hero .hero-background {
    min-width: 425px;
  }
  .services-page .hero .hero-background .hero-background__main {
    width: 340px;
    height: 340px;
    top: 34px;
    right: -125px;
  }
}
.services-page .our-expertise {
  margin-top: 112px;
  position: relative;
}
.services-page .our-expertise .background-lines {
  position: absolute;
  z-index: -1;
  top: -137px;
  right: -290px;
}
.services-page .our-expertise-content {
  display: flex;
  flex-direction: column;
}
.services-page .our-expertise-content .our-expertise-content__header-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: 613px;
}
.services-page .our-expertise-content .decoration-svg {
  position: absolute;
}
.services-page .our-expertise-content .underline-text {
  position: relative;
}
.services-page .our-expertise-content .decoration-svg.line {
  right: 0;
  bottom: -12px;
}
.services-page .our-expertise-content .decoration-svg.green-star {
  right: 0;
}
.services-page .our-expertise-content .decoration-svg.orange-star {
  right: -60px;
  top: -25px;
}
.services-page .our-expertise-content .our-expertise__title {
  color: #2D2C37;
  font: 700 62px/62px "Open Sans Bold";
}
.services-page .our-expertise-content .our-expertise-content__wrapper {
  display: flex;
  flex-direction: row;
  gap: 117px;
  margin-top: 84px;
}
.services-page .our-expertise-content .our-expertise-content__wrapper .our-expertise-content__text-info {
  color: #2D2C37;
  font: 400 18px/25px "Open Sans Regular";
}

@media (max-width: 768px) {
  .our-expertise {
    margin-bottom: 80px;
  }
  .our-expertise .our-expertise-content .decoration-svg.line {
    width: 120px;
  }
  .our-expertise .our-expertise-content .decoration-svg.green-star {
    right: 38px;
    bottom: 8px;
    width: 21px;
    height: 22px;
  }
  .our-expertise .our-expertise-content .decoration-svg.orange-star {
    right: 16px;
    top: 0;
    width: 16px;
    height: 17px;
  }
  .our-expertise .our-expertise-content .our-expertise-content__wrapper {
    flex-direction: column;
    margin-top: 30px;
    gap: 0;
    font-size: 14px;
    line-height: 19.6px;
  }
  .our-expertise .our-expertise-content .our-expertise-content__text-info {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.services-page .portfolio .portfolio-content-sections {
  margin-top: 60px;
}
.services-page .portfolio .portfolio-more-products {
  display: block;
}

@media (max-width: 768px) {
  .services-page .portfolio .portfolio-more-products-link {
    border-radius: 24px;
    height: 48px;
  }
  .services-page .portfolio .portfolio-more-products-link svg {
    width: 28px;
    height: 28px;
  }
}
.services-page .process {
  background-color: #f4f3f6;
}
.services-page .process .process-content {
  display: flex;
  flex-direction: column;
  padding-top: 84px;
  padding-bottom: 137px;
}
.services-page .process .header-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 63px;
}
.services-page .process .header-wrapper .title-wrapper {
  display: flex;
  flex-direction: row;
  gap: 120px;
  margin-top: 20px;
}
.services-page .process .header-wrapper .title {
  max-width: 726px;
  margin-top: 0;
}
.services-page .process .header-wrapper .description {
  color: #6a6972;
  font: 400 18px/28px "Open Sans Regular";
  max-width: 478px;
}
.services-page .process .header-wrapper .decoration-svg {
  position: absolute;
  top: 0;
  right: 0;
}
.services-page .process .tabs-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #FFF;
  border-radius: 32px;
}
.services-page .process .tabs-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 92px;
}
.services-page .process .tabs-header__item {
  text-transform: uppercase;
  text-align: center;
  padding: 26px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #6a6972;
  font: 700 14px/16px "Open Sans Bold";
  border-radius: 30px 30px 0 0;
  background-color: #FFF;
  box-shadow: inset 2px -2px 5px 0px rgba(0, 0, 0, 0.07);
}
.services-page .process .tabs-header__item:hover {
  cursor: pointer;
}
.services-page .process .tabs-header__item_active {
  color: #F73;
  box-shadow: 0px -1px 11px 1px rgba(0, 0, 0, 0.0705882353);
}
.services-page .process .tabs-content__wrapper {
  width: 100%;
}
.services-page .process .tabs-content {
  height: 469px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
}
.services-page .process .tabs-content__item {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  height: 100%;
}
.services-page .process .tabs-content__item-text-wrapper {
  max-width: 548px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.services-page .process .tabs-content__item-title {
  color: #2D2C37;
  font: 700 34px "Open Sans Bold";
}
.services-page .process .tabs-content__item-description {
  color: #2D2C37;
  font: 400 18px/27px "Open Sans Regular";
}
.services-page .process .tabs-content__item-img {
  margin-left: 44px;
}
.services-page .process .tabs-content__item_active {
  display: flex;
}
.services-page .process .tabs-content__navigation-btn {
  position: absolute;
  z-index: 2;
  bottom: 37px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 66px;
  width: 66px;
  background-color: #FFF;
  border-radius: 175px;
  border: 2px solid #E8E6EB;
  transition: background-color 0.4s ease;
}
.services-page .process .tabs-content__navigation-btn:hover {
  background-color: #E8E6EB;
  cursor: pointer;
}
.services-page .process .tabs-content__navigation-btn_prev {
  left: 34px;
}
.services-page .process .tabs-content__navigation-btn_next {
  right: 34px;
}

@media (max-width: 1440px) {
  .services-page .process .tabs-header, .services-page .process .tabs-content__navigation {
    display: none;
  }
  .services-page .process .tabs-wrapper {
    background-color: unset;
  }
  .services-page .process .tabs-content {
    height: unset;
  }
  .services-page .process .header-wrapper .title-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .services-page .process .header-wrapper .decoration-svg.line {
    display: none;
  }
  .services-page .process .tabs-content__item {
    background-color: #FFFFFF;
    border-radius: 18px;
    gap: 0;
    height: 370px;
  }
  .services-page .process .tabs-content__item-img {
    width: 40%;
    margin-left: 0;
  }
  .services-page .process .tabs-content__item-text-wrapper {
    padding: 0 20px;
  }
  .services-page .process .tabs-content__item-text-wrapper .tabs-content__item-title {
    font-size: 18px;
    line-height: 25px;
  }
  .services-page .process .tabs-content__item-text-wrapper .tabs-content__item-description {
    font-size: 14px;
    line-height: 19.6px;
  }
}
@media (max-width: 768px) {
  .services-page .process .process-content {
    padding: 40px 0 50px;
  }
  .services-page .process .tabs-content__item {
    height: 500px;
    flex-direction: column-reverse;
    justify-content: space-between;
    padding-top: 15px;
  }
  .services-page .process .tabs-content__item-img {
    width: 324px;
    margin-left: 40px;
  }
  .services-page .process .header-wrapper .description {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.team-facts .team-facts-content {
  position: relative;
  flex-direction: column;
  padding: 70px 0 120px;
}
.team-facts .fact-list-wrapper {
  display: flex;
  gap: 75px;
  width: 100%;
  margin-top: 70px;
  align-items: center;
}
.team-facts .facts-img-wrapper {
  width: 50%;
  height: fit-content;
  max-width: 600px;
  display: flex;
  align-items: center;
  position: relative;
}
.team-facts .facts-img-wrapper img {
  width: 100%;
}
.team-facts .facts-img-wrapper .facts-img_mobile {
  display: none;
}
.team-facts .facts-background-decorations .circle {
  border-radius: 50%;
  position: absolute;
}
.team-facts .facts-background-decorations .green-circle {
  background-color: #5BC484;
  width: 13px;
  height: 13px;
  right: 60px;
  bottom: -20px;
}
.team-facts .facts-background-decorations .purple-circle {
  background-color: #AB5BD2;
  width: 24px;
  height: 24px;
  top: -28px;
  left: -28px;
}
.team-facts .facts-background-decorations .orange-circle {
  background-color: #FF7733;
  width: 8px;
  height: 8px;
  left: -40px;
  top: 20px;
}
.team-facts .fact-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 52px;
}
.team-facts .fact-list .fact-list-item {
  padding-left: 40px;
  position: relative;
  font: 400 14px/19.6px "Open Sans Regular";
}
.team-facts .fact-list .fact-list-item::before {
  content: url("./images/icons/star-black.svg");
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .team-facts .team-facts-content {
    padding-bottom: 70px;
  }
  .team-facts .fact-list-wrapper {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
  .team-facts .fact-list-wrapper .facts-img-wrapper {
    width: 100%;
  }
  .team-facts .fact-list-wrapper .facts-img-wrapper .facts-img_desktop {
    display: none;
  }
  .team-facts .fact-list-wrapper .facts-img-wrapper .facts-img_mobile {
    display: block;
  }
  .team-facts .fact-list-wrapper .facts-background-decorations {
    display: none;
  }
  .team-facts .fact-list-wrapper .fact-list {
    width: 100%;
  }
}
.technology-stack .technology-stack-content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 120px 0;
}
.technology-stack svg.lines {
  position: absolute;
  top: 0;
  right: 0;
}
.technology-stack .header-wrapper {
  z-index: 10;
  position: relative;
  max-width: 530px;
}
.technology-stack .header-wrapper .sub-title {
  margin-bottom: 5px;
}
.technology-stack .technology-stack-list-wrapper {
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
  margin-bottom: 78px;
}
.technology-stack .technology-stack-list__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 12px;
  color: #2D2C37;
  font: 600 18px "Open Sans SemiBold";
  background-color: #F6F3F7;
  width: unset;
}
.technology-stack .technology-stack-list__item:hover {
  cursor: pointer;
}
.technology-stack .technology-stack-list__item_active {
  background-color: #2D2C37;
  color: #FFF;
}
.technology-stack .technology-stack-slider {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 50px;
}
.technology-stack .technology-stack-slider__slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 240px;
  border-radius: 34px;
  width: 240px;
  border: 2px solid #E8E6EB;
  background-color: #FFF;
  padding: 15px;
}
.technology-stack .technology-stack-slider__slide img {
  max-width: 100%;
  max-height: 100%;
}

.slides-section-wrapper {
  display: none;
}

.idea-mobile-app-banner-wrapper {
  margin-top: 100px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .technology-stack .technology-stack-content {
    padding: 70px 0;
  }
  .technology-stack .technology-stack-list-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }
  .technology-stack .technology-stack-slider {
    height: 400px;
  }
  .technology-stack .technology-stack-slider__slide {
    width: 152px;
    height: 152px;
  }
}
.blog-page .article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  margin-top: 35px;
}
.blog-page .article-list .article {
  display: flex;
  flex-direction: column;
  background-color: #f4f3f6;
  border-radius: 34px;
}
.blog-page .article-list .article .article-img-wrapper {
  overflow: hidden;
  max-height: 230px;
}
.blog-page .article-list .article .article-img {
  width: 100%;
}
.blog-page .article-list .article .article-content {
  padding: 20px 24px 40px;
}
.blog-page .article-list .article .article-content .article-tag {
  font: 400 16px/22.4px "Open Sans Regular";
  color: #6a6972;
  margin-bottom: 20px;
}
.blog-page .article-list .article .article-content .article-tag::before {
  content: "#";
}
.blog-page .article-list .article .article-content .article-title {
  font: 600 24px/31px "Open Sans Regular";
  color: #2D2C37;
}
.blog-page .article-list .article .article-content .article-credits {
  font: 700 18px/25px "Open Sans Bold";
  color: #6a6972;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
}
.blog-page .article-list .article .article-content .article-description {
  display: none;
  font: 400 18px/27px "Open Sans Regular";
  color: #6a6972;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .blog-page .article-list {
    grid-template-columns: auto auto;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .blog-page .article-list {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 768px) {
  .blog-page .article-list {
    display: flex;
    flex-direction: column;
  }
  .blog-page .article-list .article {
    border-radius: 18px;
  }
  .blog-page .article-list .article .article-img-wrapper {
    max-height: 185px;
  }
  .blog-page .article-list .article .article-content {
    padding: 20px;
  }
  .blog-page .article-list .article .article-content .article-tag {
    width: fit-content;
    height: fit-content;
    padding: 10px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: #6a6972 1px solid;
    font: 600 10px/13.62px "Open Sans Regular";
  }
  .blog-page .article-list .article .article-content .article-tag::before {
    content: none;
  }
  .blog-page .article-list .article .article-content .article-credits {
    font: 600 12px/16px "Open Sans Regular";
    margin-bottom: 12px;
  }
  .blog-page .article-list .article .article-content .article-credits .article-credits__date {
    position: relative;
    display: flex;
    align-items: center;
  }
  .blog-page .article-list .article .article-content .article-credits .article-credits__date::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    left: -10px;
    border-radius: 50%;
    background-color: #585667;
  }
  .blog-page .article-list .article .article-content .article-title {
    font-size: 16px;
    line-height: 25.6px;
    color: #585667;
  }
}
.contacts-page .contact-information {
  padding-top: 80px;
}
.contacts-page .contact-information-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 35px;
  justify-content: space-between;
}
.contacts-page .left-side-content .title {
  max-width: 558px;
  font: 700 62px/62px "Open Sans Bold";
  color: #2D2C37;
}
.contacts-page .left-side-content .description {
  margin-top: 40px;
  max-width: 325px;
  color: #2D2C37;
  font: 600 18px/28px "Open Sans SemiBold";
}
.contacts-page .left-side-content .social-networks {
  margin-top: 40px;
}
.contacts-page .left-side-content .contact-info-wrapper {
  margin-top: 100px;
}
.contacts-page .left-side-content .contact-info-wrapper .contacts-list-info .link {
  max-width: unset;
}
.contacts-page .right-side-content .contact-information-form {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background-color: #f4f3f6;
  padding: 40px 32px;
}
.contacts-page .right-side-content .contact-information-form__button {
  width: 273px;
}
.contacts-page .right-side-content .contact-information-form__title {
  color: #2D2C37;
  font: 700 34px/40px "Open Sans Bold";
  max-width: 457px;
  margin-bottom: 36px;
}
.contacts-page .right-side-content .contact-information-form__title .contact-information-form__title-colored {
  color: #AB5BD2;
}
.contacts-page .right-side-content .contact-information-form__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 41px;
  margin-top: 4px;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .contacts-page .contact-information-content {
    flex-direction: column;
  }
  .contacts-page .left-side-content .title, .contacts-page .left-side-content .description {
    max-width: unset;
  }
  .contacts-page .right-side-content {
    margin: 100px auto 0;
  }
}
@media (max-width: 768px) {
  .contacts-page .contact-information-content {
    flex-direction: column;
  }
  .contacts-page .left-side-content .title, .contacts-page .left-side-content .description {
    max-width: unset;
  }
  .contacts-page .left-side-content .description {
    font: 400 14px/19.6px "Open Sans Regular";
    margin-top: 30px;
  }
  .contacts-page .left-side-content .contact-info-wrapper {
    margin-top: 80px;
  }
  .contacts-page .left-side-content .contacts-list-info .link .link-text {
    font-size: 14px;
    line-height: 19.6px;
  }
  .contacts-page .left-side-content .social-networks .social-icon {
    width: 36px;
    height: 36px;
  }
  .contacts-page .left-side-content .social-networks .social-icon img {
    height: 18px;
  }
  .contacts-page .right-side-content {
    margin: 200px auto 0;
    width: 100%;
    position: relative;
  }
  .contacts-page .right-side-content .contact-information-form__row {
    flex-direction: column;
    gap: 0;
  }
  .contacts-page .right-side-content .contact-information-form__title {
    position: absolute;
    top: -150px;
  }
  .contacts-page .right-side-content .contact-information-form__message {
    height: 190px;
  }
  .contacts-page .right-side-content .contact-information-form__button {
    width: 100%;
  }
}
.contact-us {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 83px;
  padding-bottom: 86px;
  background: linear-gradient(180deg, #D4A5EB 0%, #AB5BD2 100%);
  position: relative;
}
.contact-us .background-image {
  background-image: url("./images/backgrounds/contact-us-bird.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 700px;
  height: 715px;
  position: absolute;
  bottom: -200px;
  left: -220px;
}
.contact-us .contact-us-content {
  width: 100%;
  padding: 0;
  position: relative;
}
.contact-us .left-side-info {
  display: flex;
  flex-direction: column;
  position: relative;
}
.contact-us .left-side-info .sub-title {
  color: rgba(255, 255, 255, 0.6);
  font: 600 18px "Open Sans SemiBold";
}
.contact-us .left-side-info .title {
  margin-top: 5px;
  color: #FFF;
  font: 700 55px "Open Sans Bold";
  width: 486px;
}
.contact-us .left-side-info .description {
  margin-top: 50px;
  color: #FFF;
  font: 400 18px/25px "Open Sans Regular";
}
.contact-us .left-side-info .list {
  margin-top: 48px;
  margin-left: 25px;
  max-width: 404px;
  padding: 0;
}
.contact-us .left-side-info .list__item {
  position: relative;
  font: 400 20px "Open Sans Regular";
  color: #FFF;
  margin-bottom: 23px;
}
.contact-us .left-side-info .list__item::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -25px;
  width: 10px;
  height: 10px;
  background-color: #FFF;
  border-radius: 50%;
}
.contact-us .right-side-info {
  margin-left: 164px;
}
.contact-us .contact-us-form {
  display: flex;
  flex-direction: column;
  padding: 56px 32px;
  width: 499px;
  position: relative;
  background-color: #FFF;
  border-radius: 24px;
}
.contact-us .contact-us-form .form-control-textarea {
  height: 191px;
}
.contact-us .contact-us-form .contact-us-blink {
  display: block;
  position: absolute;
  top: -30px;
  right: -40px;
}
.contact-us .contact-us-form input, .contact-us .contact-us-form textarea {
  width: 100%;
}
.contact-us .contact-us-form input[type=checkbox] {
  width: 20px;
  accent-color: #FF7733;
}
.contact-us .decoration-svg {
  position: absolute;
}
.contact-us .decoration-svg.background {
  bottom: -83px;
  left: 0;
}
.contact-us .decoration-svg.line {
  bottom: -30px;
  left: 130px;
}

@media (max-width: 768px) {
  .contact-us {
    position: relative;
  }
  .contact-us .contact-us-content {
    flex-direction: column;
  }
  .contact-us .header-block .title {
    color: #FFFFFF;
    width: unset;
  }
  .contact-us .header-block .sub-title {
    color: rgba(255, 255, 255, 0.5019607843);
  }
  .contact-us .background-image {
    padding-bottom: 60%;
    width: 60%;
    height: unset;
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
    background-image: url("./images/backgrounds/contact-us-bird-mobile.svg");
  }
  .contact-us .left-side-info .sub-title {
    margin-bottom: 20px;
  }
  .contact-us .left-side-info .list .list__item {
    font-size: 12px;
    line-height: 16.8px;
  }
  .contact-us .left-side-info .list .list__item:after {
    width: 6px;
    height: 6px;
    top: 5px;
    left: -15px;
  }
  .contact-us .right-side-info {
    margin-left: 0;
  }
  .contact-us .right-side-info .contact-us-form {
    width: 100%;
  }
  .contact-us .right-side-info .contact-us-form .form-control-label {
    margin-bottom: 20px;
  }
  .contact-us .right-side-info .contact-us-form .form-control-label-text {
    padding: unset;
    margin-bottom: 10px;
    font: 400 12px/16.34px "Open Sans Regular";
  }
  .contact-us .right-side-info .contact-us-form .form-control-input, .contact-us .right-side-info .contact-us-form .form-control-textarea {
    font-size: 14px;
    line-height: 19.6px;
  }
  .contact-us .right-side-info .contact-us-form .checkmark {
    width: 16px;
    height: 16px;
  }
  .contact-us .right-side-info .contact-us-form .checkmark:after {
    width: 9px;
    height: 6px;
  }
  .contact-us .right-side-info .contact-us-form .contact-us-blink {
    display: none;
  }
  .contact-us .line {
    display: none;
  }
  .contact-us .contact-us-form__button {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .contact-us {
    position: relative;
  }
  .contact-us .contact-us-content {
    flex-direction: column;
  }
  .contact-us .header-block .title {
    color: #FFFFFF;
    width: unset;
  }
  .contact-us .header-block .sub-title {
    color: rgba(255, 255, 255, 0.5019607843);
  }
  .contact-us .background-image {
    left: -300px;
    bottom: -90px;
  }
  .contact-us .left-side-info .list {
    max-width: unset;
  }
  .contact-us .right-side-info {
    width: 80%;
    margin: 0 auto;
  }
  .contact-us .right-side-info .contact-us-form {
    width: 100%;
    position: relative;
  }
  .contact-us .right-side-info .contact-us-form .contact-us-blink {
    display: block;
    position: absolute;
    top: -30px;
    right: -40px;
  }
  .contact-us .line {
    display: none;
  }
}
.double-column-content {
  display: flex;
  flex-direction: column;
}
.double-column-content .double-column-content__wrapper {
  display: flex;
  flex-direction: row;
  gap: 117px;
  margin-top: 40px;
}
.double-column-content .double-column-content__wrapper .double-column-content__text-info {
  color: #2D2C37;
  font: 400 18px/25px "Open Sans Regular";
}
@media (max-width: 768px) {
  .double-column-content .double-column-content__wrapper {
    flex-direction: column;
    margin-top: 30px;
    gap: 0;
    font-size: 14px;
    line-height: 19.6px;
  }
  .double-column-content .double-content__text-info {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.contacts-list-info {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contacts-list-info .link {
  display: flex;
  flex-direction: row;
  max-width: 263px;
}
.contacts-list-info .link .icon {
  margin-right: 18px;
}
.contacts-list-info .link .link-text {
  font: 400 18px "Open Sans Regular";
  color: #2D2C37;
}
.faq-content {
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}
.faq-content .header-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 914px;
  margin-bottom: 96px;
}
.faq-content .header-wrapper .sub-title {
  margin-bottom: 5px;
}
.faq-content .header-wrapper .decoration-svg.line {
  bottom: 0;
}
.faq-content .faq-accordion-item {
  border-radius: unset;
  padding: 24px 0;
  border-left: none;
  border-right: none;
  border-color: #E8E6EB;
  border-width: 2px;
}
.faq-content .accordion-collapse {
  border: none;
}
.faq-content .accordion-button {
  color: #2D2C37;
  font: 700 24px/32px "Open Sans Bold";
  border: none;
  padding: 0;
}
.faq-content .accordion-button:after {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #E8E6EB;
  width: 66px;
  height: 66px;
  background-size: 30px;
  background-position: center center;
}
.faq-content .faq-accordion-header {
  border: none;
}
.faq-content .accordion-body {
  color: #6a6972;
  font: 400 18px/28px "Open Sans Regular";
  border: none;
  padding-right: 0;
  padding-left: 0;
}
.faq-content .accordion-button:not(.collapsed) {
  outline: none;
  background-color: unset;
  box-shadow: unset;
}
.faq-content .accordion-button:not(.collapsed):after {
  background-color: #f4f3f6;
}
.faq-content .accordion-button:focus {
  border: none;
  box-shadow: unset;
}

@media (max-width: 768px) {
  .faq-content {
    padding-bottom: 40px;
    padding-top: 0;
  }
  .faq-content .header-wrapper {
    margin-bottom: 40px;
  }
  .faq-content .header-wrapper .decoration-svg.line {
    display: none;
  }
  .faq-content .accordion-item {
    padding: 20px 0;
  }
  .faq-content .accordion-button {
    font: 400 14px/19.6px "Open Sans Regular";
    gap: 25px;
  }
  .faq-content .accordion-button:after {
    width: 32px;
    height: 32px;
    background-size: 10px;
  }
  .faq-content .accordion-body {
    font-size: 14px;
    line-height: 19.6px;
    padding-right: 45px;
  }
}
.footer {
  background-color: #f4f3f6;
}
.footer ul, .footer li {
  margin: 0;
  padding: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-items: center;
  padding-top: 79px;
  padding-bottom: 88px;
}
.footer-content .section-title {
  font: 700 28px "Open Sans Bold";
}
.footer-content .contacts-list-info-wrapper {
  margin-top: 2px;
}
.footer-content .social-networks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-content .social-networks .social-icons-wrapper {
  margin-top: 29px;
}
.footer-content .social-networks .copyright-info {
  margin-top: 24px;
  font: 400 18px "Open Sans Regular";
  color: #6a6972;
}
.footer-content .navigation {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 225px;
}
.footer-content .navigation .links {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  row-gap: 28px;
  margin-top: 28px;
  column-gap: 58px;
}
.footer-content .navigation .links .link {
  font: 400 18px "Open Sans Regular";
}
.footer-content .navigation .links .link a {
  color: #2D2C37;
}
.footer-content .contacts {
  display: flex;
  flex-direction: column;
  max-width: 293px;
}
.footer-content .contacts .contacts-list-info-wrapper {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: unset;
    row-gap: 45px;
    justify-items: unset;
  }
  .footer .section-title {
    font-size: 18px;
    line-height: 20px;
  }
  .footer .social-networks {
    position: relative;
  }
  .footer .social-networks .logo img {
    width: 123px;
    height: 25px;
  }
  .footer .social-networks .social-icons-wrapper {
    width: 100%;
  }
  .footer .social-networks .social-icons-wrapper .social-icons {
    justify-content: space-between;
  }
  .footer .social-networks .social-icons-wrapper .social-icons .social-icon {
    width: 36px;
    height: 36px;
  }
  .footer .social-networks .social-icons-wrapper .social-icons .social-icon .img {
    width: 17px;
    height: 17px;
  }
  .footer .social-networks .copyright-info {
    position: absolute;
    right: 0;
    margin-top: 0;
    top: 8px;
    font-size: 12px;
    line-height: 14px;
  }
  .footer .navigation {
    max-width: unset;
  }
  .footer .navigation .links {
    grid-template-columns: auto auto auto;
    row-gap: 16px;
    margin-top: 20px;
  }
  .footer .navigation .links .link {
    font-size: 14px;
    line-height: 16px;
  }
  .footer .contacts .contacts-list-info {
    gap: 14px;
  }
  .footer .contacts .contacts-list-info .link {
    align-items: center;
  }
  .footer .contacts .contacts-list-info .link .link-text {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer .footer-content {
    grid-template-columns: auto auto;
    justify-content: space-between;
    justify-items: unset;
  }
  .footer .navigation {
    order: 1;
    grid-column: 1/3;
    max-width: unset;
    margin-bottom: 86px;
  }
  .footer .navigation .links {
    display: flex;
  }
  .footer .social-networks {
    order: 2;
  }
  .footer .contacts {
    order: 3;
    max-width: unset;
  }
}
.header {
  color: #2D2C37;
  font: 400 18px/20px "Open Sans Regular";
}
.header.header-scroll .navbar {
  transition: background-color 0.4s ease;
  background-color: #ccc;
}
.header .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.header .navbar-container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.header .navbar {
  width: 100%;
}
.header .nav-item-btn {
  border-radius: 94px;
  border: 1px solid #000;
  padding: 10px 21px;
}
.header .navbar-toggler {
  border: none;
  outline: none;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar-collapse.collapsing, .header .navbar-collapse.show {
  margin-top: 20px;
}
.header .nav-item {
  padding: 0 0.5rem;
}
.header .nav-item-link {
  color: inherit;
}
.header .nav-item_active .nav-item-link {
  position: relative;
}
.header .nav-item_active .nav-item-link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 2px;
  background-color: #5BC484;
  width: 100%;
  padding: 0 0.5rem;
}

.single-case-page .header .nav-item-btn {
  color: #FFF;
  border-color: #FFF;
}
.single-case-page .header .navbar-brand svg path.letter {
  fill: #FFF;
}
.single-case-page .header .nav-link {
  color: #FFF;
}

#nav-item-search {
  max-width: 218px;
}
.hero .title {
  font-family: "Open Sans Bold", serif;
}
.hero .description {
  font-family: "Open Sans Regular", serif;
}

@media (min-width: 768px) {
  .hero .title {
    font-size: 62px;
    line-height: 62px;
  }
  .hero .description {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 768px) {
  .hero .title {
    font-size: 30px;
    line-height: 30px;
  }
  .hero .description {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.idea-mobile-app-banner {
  z-index: 10;
  height: 293px;
  position: relative;
  padding: 52px 39px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  border-radius: 34px;
  background-color: #5BC484;
  overflow: hidden;
}
.idea-mobile-app-banner .idea-mobile-app-banner__title {
  max-width: 396px;
  color: #FFF;
  font: 600 34px/36px "Open Sans SemiBold";
}
.idea-mobile-app-banner .decoration-svg {
  position: absolute;
}
.idea-mobile-app-banner .idea-mobile-app-banner__star-icon {
  top: 50px;
  left: 450px;
  z-index: -2;
}
.idea-mobile-app-banner .idea-mobile-app-banner__line-bg {
  top: 0;
  right: 143px;
  z-index: -2;
}
.idea-mobile-app-banner .idea-mobile-app-banner__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.idea-mobile-app-banner .idea-mobile-app-banner__button {
  width: 313px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 28px;
  color: #2D2C37;
  font: 600 18px "Open Sans SemiBold";
  background-color: #FFF;
  border-radius: 94px;
}
.idea-mobile-app-banner .idea-mobile-app-banner__button .idea-mobile-app-banner__ball-icon {
  right: 9px;
  align-self: center;
}

@media (max-width: 1024px) {
  .idea-mobile-app-banner {
    height: 350px;
  }
  .idea-mobile-app-banner .idea-mobile-app-banner__img {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .idea-mobile-app-banner {
    height: 300px;
    padding: 25px 20px;
  }
  .idea-mobile-app-banner .idea-mobile-app-banner__img {
    width: 400px;
    right: -100px;
  }
  .idea-mobile-app-banner .idea-mobile-app-banner__title {
    font: 400 24px/28px "Open Sans Regular";
  }
  .idea-mobile-app-banner .idea-mobile-app-banner__button {
    width: 285px;
    max-width: 100%;
    font-size: 16px;
  }
  .idea-mobile-app-banner .idea-mobile-app-banner__button .idea-mobile-app-banner__ball-icon {
    width: 32px;
    height: 32px;
  }
}
.nothing-found {
  display: none;
  height: 330px;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.nothing-found .nothing-found__content {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nothing-found .nothing-found__icon {
  width: 61px;
}
.nothing-found .nothing-found__text {
  font: 600 24px/31.2px "Open Sans Regular";
  color: #2D2C37;
}
.nothing-found_active {
  display: flex;
}
@media (min-width: 1025px) {
  .main-page .portfolio-navigation-sections .swiper-slide, .cases-page .portfolio-navigation-sections .swiper-slide {
    width: unset;
  }
}

.portfolio {
  overflow-x: hidden;
}
.portfolio .portfolio-content {
  display: flex;
  flex-direction: column;
  padding: 146px 0 117px 0;
}
.portfolio .portfolio__header-block {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.portfolio .portfolio__header-block .left-side-block {
  max-width: 547px;
}
.portfolio .portfolio__header-block .right-side-block {
  align-self: flex-end;
}
.portfolio .products {
  position: relative;
}
.portfolio .products .decoration-svg {
  position: absolute;
  bottom: -10px;
  left: 0;
}
.portfolio hr {
  background-color: #D9D9D9;
  height: 2px;
  border: none;
  width: 100%;
  margin: 38px 0 52px 0;
}
@media (min-width: 1025px) {
  .portfolio .portfolio-navigation-sections {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}
.portfolio .portfolio-navigation-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background-color: #f6f3f7;
  color: #2D2C37;
  font: 600 18px "Open Sans SemiBold";
}
.portfolio .portfolio-navigation-item:hover {
  cursor: pointer;
}
.portfolio .portfolio-navigation-item_active {
  color: #FFF;
  background-color: #2D2C37;
}
.portfolio .portfolio-content-sections {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-top: 78px;
}
.portfolio .portfolio-content-item {
  grid-column: 1/13;
  order: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 350px;
  border-radius: 34px;
  background-color: #f4f3f6;
  padding: 44px;
  position: relative;
  transition: background-color 0.4s ease;
  overflow: hidden;
}
.portfolio .portfolio-content-item .portfolio-content-item-description-image {
  position: absolute;
  max-width: 120px;
}
.portfolio .portfolio-content-item .portfolio-content-item-description-image_mobile {
  display: none;
}
.portfolio .portfolio-content-item:nth-child(6n+1) {
  grid-column: 1/5;
}
.portfolio .portfolio-content-item:nth-child(6n+1):hover {
  background-color: #FFDCDC;
}
.portfolio .portfolio-content-item:nth-child(6n+1) .portfolio-content-item-description-image {
  bottom: 0;
  right: -5px;
  max-width: 140px;
}
.portfolio .portfolio-content-item:nth-child(6n+1) .portfolio-content-item-description {
  padding-right: 95px;
}
.portfolio .portfolio-content-item:nth-child(6n+2) {
  grid-column: 5/13;
}
.portfolio .portfolio-content-item:nth-child(6n+2):hover {
  background-color: #CCEEF0;
}
.portfolio .portfolio-content-item:nth-child(6n+2) .portfolio-content-item-description-image {
  bottom: 0;
  right: 0;
  max-width: 35%;
  height: 100%;
  object-fit: cover;
}
.portfolio .portfolio-content-item:nth-child(6n+2) .portfolio-content-item-title {
  padding-right: 35%;
}
.portfolio .portfolio-content-item:nth-child(6n+2) .portfolio-content-item-description {
  padding-right: 35%;
}
.portfolio .portfolio-content-item:nth-child(6n+3) {
  grid-column: 1/7;
}
.portfolio .portfolio-content-item:nth-child(6n+3):hover {
  background-color: #DEECF3;
}
.portfolio .portfolio-content-item:nth-child(6n+3) .portfolio-content-item-description-image {
  bottom: 0;
  align-self: center;
  max-width: 70%;
  top: 40%;
}
.portfolio .portfolio-content-item:nth-child(6n+2), .portfolio .portfolio-content-item:nth-child(6n+5) {
  justify-content: space-between;
}
.portfolio .portfolio-content-item:nth-child(6n+3), .portfolio .portfolio-content-item:nth-child(6n+4) {
  height: 560px;
}
.portfolio .portfolio-content-item:nth-child(6n+4) {
  grid-column: 7/13;
  justify-content: flex-end;
}
.portfolio .portfolio-content-item:nth-child(6n+4):hover {
  background-color: #FFFBA4;
}
.portfolio .portfolio-content-item:nth-child(6n+4) .portfolio-content-item-description-image {
  align-self: center;
  max-width: 70%;
  top: -40%;
}
.portfolio .portfolio-content-item:nth-child(6n+5) {
  grid-column: 1/9;
}
.portfolio .portfolio-content-item:nth-child(6n+5):hover {
  background-color: #FFDCDC;
}
.portfolio .portfolio-content-item:nth-child(6n+5) .portfolio-content-item-description-image {
  right: 39px;
  align-self: center;
  max-width: 40%;
  margin: auto;
  object-fit: cover;
  max-height: 80%;
}
.portfolio .portfolio-content-item:nth-child(6n+5) .portfolio-content-item-title {
  padding-right: 40%;
}
.portfolio .portfolio-content-item:nth-child(6n+5) .portfolio-content-item-description {
  padding-right: 40%;
}
.portfolio .portfolio-content-item:nth-child(6n+6) {
  grid-column: 9/13;
}
.portfolio .portfolio-content-item:nth-child(6n+6) .portfolio-content-item-description-image {
  bottom: 0;
  right: -5px;
  max-width: 140px;
}
.portfolio .portfolio-content-item:nth-child(6n+6) .portfolio-content-item-description {
  padding-right: 95px;
}
.portfolio .portfolio-content-item-link .portfolio-content-item-image {
  position: absolute;
  top: 0;
  right: 0;
}
.portfolio .portfolio-content-item-title {
  color: #2D2C37;
  font: 700 34px "Open Sans Bold";
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
.portfolio .portfolio-content-item-description {
  color: #6a6972;
  font: 400 18px/27px "Open Sans Regular";
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical;
}
.portfolio .portfolio-content-item-link {
  background-color: #AB5BD2;
}
.portfolio .portfolio-content-item-link .portfolio-content-item-title {
  color: #FFF;
}
.portfolio .portfolio-content-item-link {
  justify-content: space-between;
}
.portfolio .create-project-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 56px;
  width: 100%;
  padding: 0 28px;
  background-color: #FFF;
  border-radius: 94px;
  color: #2D2C37;
  font: 600 18px "Open Sans SemiBold";
  z-index: 10;
}
.portfolio .create-project-link .create-project-link-ball {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: -18px;
}
.portfolio .portfolio-more-products-link {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 74px;
  padding: 0 44px;
  border: 2px solid #E8E6EB;
  border-radius: 24px;
  font: 600 18px "Open Sans SemiBold";
  color: #2D2C37;
  transition: all 0.3s;
}
.portfolio .portfolio-more-products-link .icon path {
  transition: all 0.3s;
}
.portfolio .portfolio-more-products-link:hover {
  color: #5BC484;
  border-color: #5BC484;
}
.portfolio .portfolio-more-products-link:hover .icon path {
  stroke: #5BC484;
}
.portfolio .portfolio-more-products {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.portfolio .load-more-items-button {
  max-width: 427px;
  width: 100%;
  height: 60px;
  border-radius: 11px;
  border: 2px solid #E8E6EB;
  background-color: #FFF;
  font: 400 18px/25px "Open Sans Regular";
}
.portfolio .loader-icon-active {
  animation: 1s linear 0s normal none infinite running loading;
  -webkit-animation: 1s linear 0s normal none infinite running loading;
}
.portfolio .loader-icon-active path {
  fill: #E8E6EB;
}

.cases-page .portfolio .portfolio-content {
  padding: 80px 0;
}
.cases-page .portfolio .portfolio__header-block {
  margin-top: 71px;
  justify-content: flex-end;
}
.cases-page .portfolio .portfolio-content-sections {
  margin-top: 40px;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .portfolio .portfolio-content {
    padding: 0;
    margin: 50px 0;
  }
  .portfolio .portfolio__header-block {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .portfolio .portfolio__header-block .products {
    position: relative;
  }
  .portfolio .portfolio__header-block .products .decoration-svg {
    width: 130px;
    position: absolute;
    bottom: -10px;
    left: 0;
  }
  .portfolio .portfolio__header-block .left-side-block {
    position: relative;
    margin-bottom: 31px;
  }
  .portfolio .portfolio__header-block .right-side-block {
    align-self: flex-start;
  }
  .portfolio .portfolio__header-block .right-side-block .switch-toggle .item-text-switcher {
    font: 400 14px/19.6px "Open Sans Regular";
  }
  .portfolio .portfolio__header-block .right-side-block .switch-toggle .form-control-switcher {
    gap: 14px;
  }
  .portfolio .portfolio__header-block .right-side-block .switch-toggle .form-control-switcher .input-wrapper {
    width: 50px;
    height: 25px;
  }
  .portfolio .portfolio__header-block .right-side-block .switch-toggle .form-control-switcher .input-wrapper .slider {
    width: 50px;
  }
  .portfolio .portfolio__header-block .right-side-block .switch-toggle .form-control-switcher .input-wrapper .slider:before {
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
  }
  .portfolio .portfolio__header-block .right-side-block .switch-toggle .form-control-switcher .input-wrapper input:checked + .slider:before {
    transform: translateX(24px);
  }
  .portfolio .portfolio-navigation-sections_desktop {
    display: none;
  }
  .portfolio .portfolio-swiper {
    display: flex;
    width: 100% !important;
    overflow-x: visible !important;
  }
  .portfolio .portfolio-swiper .swiper-slide {
    width: unset;
  }
  .portfolio .portfolio-swiper .portfolio-navigation-item {
    font: 400 14px/19.6px "Open Sans Regular";
  }
  .portfolio .portfolio-content-sections {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  .portfolio .portfolio-content-sections .sogaz, .portfolio .portfolio-content-sections .dog-sitter {
    display: none;
  }
  .portfolio .portfolio-content-sections .portfolio-content-item {
    width: 100%;
    height: unset;
    min-height: 175px;
    padding: 20px;
    border-radius: 18px;
    justify-content: unset;
    grid-column: 1/13;
  }
  .portfolio .portfolio-content-sections .portfolio-content-item .portfolio-content-item-title {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 14px;
    padding-right: 155px;
  }
  .portfolio .portfolio-content-sections .portfolio-content-item .portfolio-content-item-description {
    font-size: 12px;
    line-height: 16.8px;
    max-width: 60%;
  }
  .portfolio .portfolio-content-sections .portfolio-content-item .portfolio-content-item-description-image {
    display: none;
  }
  .portfolio .portfolio-content-sections .portfolio-content-item .portfolio-content-item-description-image_mobile {
    display: block;
    position: absolute;
    width: 155px;
    max-width: 40%;
    right: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
  }
  .portfolio .portfolio-content-sections .portfolio-content-item.portfolio-content-item-link {
    justify-content: space-between;
  }
  .portfolio .portfolio-content-sections .spar-club .portfolio-content-item-description-image_mobile {
    right: 0;
    bottom: 10px;
  }
  .portfolio .portfolio-content-sections .pet-plus .portfolio-content-item-description-image_mobile {
    right: 0;
    bottom: 0;
  }
  .portfolio .portfolio-content-sections .camp .portfolio-content-item-description-image_mobile {
    right: 1px;
    top: 0;
  }
  .portfolio .portfolio-content-sections .portfolio-content-item-link .portfolio-content-item-image {
    width: 175px;
    height: 175px;
  }
  .portfolio hr {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .portfolio .portfolio-content-item {
    height: 360px !important;
  }
  .portfolio .portfolio-content-item:nth-child(6n+1) {
    grid-column: 1/7;
  }
  .portfolio .portfolio-content-item:nth-child(6n+2) {
    grid-column: 7/13;
  }
  .portfolio .portfolio-content-item:nth-child(6n+3) {
    grid-column: 1/13;
  }
  .portfolio .portfolio-content-item:nth-child(6n+3) .portfolio-content-item-description-image {
    top: 50%;
  }
  .portfolio .portfolio-content-item:nth-child(6n+4) {
    grid-column: 1/7;
  }
  .portfolio .portfolio-content-item:nth-child(6n+4) .portfolio-content-item-description-image {
    top: -80%;
  }
  .portfolio .portfolio-content-item:nth-child(6n+5) {
    grid-column: 7/13;
  }
  .portfolio .portfolio-content-item:nth-child(6n+5) .portfolio-content-item-title {
    padding-right: 50%;
  }
  .portfolio .portfolio-content-item:nth-child(6n+5) .portfolio-content-item-description {
    padding-right: 50%;
  }
  .portfolio .portfolio-content-item:nth-child(6n+6) {
    grid-column: 1/13;
  }
  .portfolio .portfolio-content-item:nth-child(6n+6) .portfolio-content-item-description-image {
    max-width: 70%;
    right: 0;
    top: 50%;
    left: 0;
    margin: auto;
    bottom: auto;
  }
  .portfolio .portfolio-content-item.sogaz {
    order: 2;
    grid-column: 7/13;
  }
  .portfolio .portfolio-content-item.pet-plus {
    order: 3;
    grid-column: 1/13;
  }
  .portfolio .portfolio-content-item.camp {
    order: 4;
    grid-column: 1/7;
  }
  .portfolio .portfolio-content-item.dog-sitter {
    display: none;
    order: 100;
  }
  .portfolio .portfolio-content-item.sogaz .portfolio-content-item-description-image, .portfolio .portfolio-content-item.camp .portfolio-content-item-description-image {
    width: 180px;
  }
}
@media (max-width: 400px) {
  .portfolio .portfolio-content-sections .portfolio-content-item .portfolio-content-item-title {
    padding-right: 120px;
  }
  .portfolio .portfolio-content-sections .portfolio-content-item .portfolio-content-item-description {
    max-width: none;
    padding-right: 120px;
  }
}
.review-customers {
  margin-top: 63px;
  margin-bottom: 57px;
  padding: 0 !important;
}

.review-customers-content .swiper-slide {
  width: 94%;
  position: relative;
}
.review-customers-content .review-customers-slider {
  overflow-y: visible;
}
.review-customers-content .review-customers-slider .review-customers-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 86px 69px;
  background-color: #f4f3f6;
  width: 100%;
  border-radius: 44px;
}
.review-customers-content .review-customers-slider .swiper-pagination {
  bottom: -25px;
}
.review-customers-content .title {
  color: rgba(88, 86, 103, 0.5);
  font: 600 18px/27px "Open Sans SemiBold";
  margin-bottom: 70px;
}
.review-customers-content .description {
  display: inline;
  color: #2D2C37;
  font: 700 58px/70px "Open Sans Bold";
  margin-bottom: 52px;
}
.review-customers-content .description img {
  margin: 0 34px;
  width: 115px;
  height: 66px;
  cursor: pointer;
}
.review-customers-content .description-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
}
.review-customers-content .hint-img {
  position: relative;
}
.review-customers-content .hover-hint {
  position: absolute;
  right: 200px;
  white-space: nowrap;
  top: 163px;
  color: #AB5BD2;
  font: 700 18px/22px "Open Sans Bold";
}
.review-customers-content .hover-icon {
  position: absolute;
  right: 75px;
  top: 110px;
}

@media (max-width: 768px) {
  .review-customers {
    margin: 0;
  }
  .review-customers .review-customers-slider .review-customers-slide {
    padding: 30px 16px 20px;
    border-radius: 18px;
  }
  .review-customers .review-customers-slider .review-customers-slide .title {
    margin-bottom: 35px;
    text-align: center;
    font-size: 12px;
    line-height: 16.34px;
  }
  .review-customers .review-customers-slider .review-customers-slide .description {
    font: 600 14px/16.8px "Open Sans Regular";
    margin-bottom: 0;
  }
  .review-customers .review-customers-slider .review-customers-slide .description .description-row:not(:last-child) {
    margin-bottom: 8px;
  }
  .review-customers .review-customers-slider .review-customers-slide .description img {
    width: 41.28px;
    height: 24px;
    border-radius: 100px;
    margin: 0 8px;
  }
  .review-customers .review-customers-slider .review-customers-slide .description img:nth-of-type(3) {
    display: none;
  }
  .review-customers .review-customers-slider .review-customers-slide .hover-hint {
    font: 600 12px/16.34px "Open Sans Regular";
    top: 50px;
    right: 70px;
    margin: 0;
  }
  .review-customers .review-customers-slider .review-customers-slide .hover-icon {
    top: 30px;
    right: 20px;
    height: 30px;
    width: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1550px) {
  .review-customers {
    margin-top: 0;
    padding: 0 !important;
  }
  .review-customers .review-customers-slide {
    padding: 70px 41px 169px;
  }
  .review-customers .review-customers-slide .title {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
  }
  .review-customers .review-customers-slide .description {
    font: 700 34px/40px "Open Sans Bold";
    margin-bottom: 0;
    white-space: nowrap;
  }
  .review-customers .review-customers-slide .description .description-row:not(:last-child) {
    margin-bottom: 30px;
  }
  .review-customers .review-customers-slide .description img {
    width: 92px;
    height: 53px;
    border-radius: 200px;
    margin: 0 10px;
  }
  .review-customers .review-customers-slide .hover-hint {
    top: 140px;
    right: 150px;
  }
  .review-customers .review-customers-slide .hover-icon {
    top: 85px;
    right: 50px;
  }
}
.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 0;
}
.social-icons .social-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #6a6972;
  transition: all 0.3s;
}
.social-icons .social-icon:hover {
  background-color: #ccc;
}
.social-icons a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.stack-technologies {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #2D2C37;
  height: 78px;
}
.stack-technologies:hover .stack-technologies__inner-list {
  animation-play-state: paused;
}
.stack-technologies .stack-technologies__list {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 41px;
  width: 100%;
}
.stack-technologies .stack-technologies__inner-list {
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 41px;
  min-width: 100%;
  animation: marquee 10s linear infinite;
}
.stack-technologies .stack-technologies__item {
  font: 600 20px "Open Sans Regular";
  color: #FFF;
}
.stack-technologies .stack-technologies__item_icon {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@-moz-keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 41px));
  }
}
@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 41px));
  }
}
@keyframes marquee {
  0% {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(calc(-100% - 41px));
    -webkit-transform: translateX(calc(-100% - 41px));
    transform: translateX(calc(-100% - 41px));
  }
}
@media (max-width: 768px) {
  .stack-technologies {
    height: 50px;
  }
  .stack-technologies .stack-technologies__item {
    font-size: 14px;
    line-height: 21px;
  }
}
.subscribe-action-block .subscribe-action-block-content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 38px;
  justify-content: space-between;
  background-color: #f4f3f6;
  border-radius: 34px;
  padding: 34px 40px;
}
.subscribe-action-block .subscribe-action-block-content::after {
  position: absolute;
  content: "";
  display: block;
  left: -40px;
  background: url("./images/decorations/subscribe-action-notification.png") no-repeat;
  background-size: cover;
  z-index: 10;
  width: 220px;
  height: 192px;
}
.subscribe-action-block .background-circle {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: inherit;
}
.subscribe-action-block .background-circle::after {
  content: "";
  width: 700px;
  height: 700px;
  border-radius: 50%;
  position: absolute;
  left: -230px;
  top: -15px;
  background-color: #E7E7E7;
}
.subscribe-action-block .title {
  font: 600 24px/33px "Open Sans SemiBold";
  color: #2D2C37;
  max-width: 433px;
  margin-left: 170px;
  position: relative;
  z-index: 1;
}
.subscribe-action-block .subscribe-action-form {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: end;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.subscribe-action-block .subscribe-action__email-input-label {
  flex-grow: 1;
  max-width: 500px;
}
.subscribe-action-block .subscribe-action__email-input-label input {
  outline: none;
  height: 60px;
  width: 100%;
  min-width: 214px;
  border-radius: 12px;
  border: 1px solid #c3cad9;
  font: 400 18px/25px "Open Sans Regular";
  color: #959EAD;
  padding: 16px;
}
.subscribe-action-block .subscribe-action__email-input-label input:focus {
  outline: 2px #5BC484 solid;
}
.subscribe-action-block .subscribe-action-form__button {
  height: 60px;
  max-width: 218px;
  flex-grow: 1;
  border-radius: 12px;
  background-color: #FF7733;
  border: none;
  font: 700 20px/20px "Open Sans Regular";
  color: #FFF;
  min-width: 143px;
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .subscribe-action-block .subscribe-action-block-content::after {
    width: 177px;
    height: 161px;
  }
  .subscribe-action-block .background-circle::after {
    width: 474px;
    left: -150px;
  }
  .subscribe-action-block .title {
    font: 700 18px/25px "Open Sans Bold";
    margin-left: 125px;
  }
}
@media (max-width: 1024px) {
  .subscribe-action-block .subscribe-action-block-content {
    flex-direction: column;
    border-radius: 18px;
    padding-top: 130px;
  }
  .subscribe-action-block .subscribe-action-block-content::after {
    top: -34px;
    left: auto;
    width: 175px;
    height: 152px;
  }
  .subscribe-action-block .background-circle::after {
    width: 260px;
    height: 260px;
    top: -134px;
    left: -126px;
  }
  .subscribe-action-block .title {
    margin-left: 0;
    font: 700 18px/25px "Open Sans Bold";
    text-align: center;
  }
  .subscribe-action-block .subscribe-action-form {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  .subscribe-action-block .subscribe-action-form__button {
    width: 100%;
    max-width: unset;
    height: 48px;
    font: 700 16px/16px "Open Sans Regular";
  }
  .subscribe-action-block .subscribe-action__email-input-label {
    width: 100%;
  }
}
.single-case-page .about-client-content {
  padding-top: 90px;
  padding-bottom: 100px;
}
.single-case-page .about-client-content .about-client-info__wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 66px 62px;
  width: 100%;
  border-radius: 32px;
  background-color: #f4f3f6;
  gap: 73px;
}
.single-case-page .about-client-content .about-client-info__left-side-content, .single-case-page .about-client-content .about-client-info__right-side-content {
  z-index: 10;
}
.single-case-page .about-client-content .about-client-info__image-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  height: 210px;
  width: 209px;
  background-color: #FFF;
}
.single-case-page .about-client-content .about-client-info__right-side-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.single-case-page .about-client-content .about-client-info__title {
  color: #2D2C37;
  font: 600 24px/31px "Open Sans SemiBold";
  margin-bottom: 20px;
}
.single-case-page .about-client-content .about-client-info__date {
  color: #6a6972;
  font: 400 16px/22px "Open Sans Regular";
  margin-bottom: 30px;
}
.single-case-page .about-client-content .about-client-info__description {
  color: #2D2C37;
  font: 400 18px/25px "Open Sans Regular";
  max-width: 756px;
}
.single-case-page .about-client-content .decoration-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .about-client .about-client-content .about-client-info__wrapper {
    flex-direction: column;
  }
}
.single-case-page .about-development-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 86px 0;
}
.single-case-page .about-development-content__wrapper {
  margin-top: 70px;
}
.single-case-page .about-development-content .about-development__list-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 55px;
}
.single-case-page .about-development-content .about-development__list-item {
  display: flex;
  flex-direction: column;
  width: 330px;
}
.single-case-page .about-development-content .about-development__list-item-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  margin-top: auto;
}
.single-case-page .about-development-content .about-development__list-item-top img {
  width: 30px;
  height: 32px;
}
.single-case-page .about-development-content .about-development__list-item-top span {
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
}
.single-case-page .about-development-content .about-development__list-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  padding-left: 42px;
}
.single-case-page .about-development-content .about-development__list-item hr {
  background-color: #D9D9D9;
  height: 2px;
  border: none;
  margin-top: auto;
}

@media (max-width: 760px) {
  .single-case-page .about-development-content .about-development__list-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 55px;
  }
  .single-case-page .about-development-content .about-development__list-item {
    width: 100%;
  }
  .single-case-page .about-development-content .about-development__list-item-top span {
    font-size: 26px;
    line-height: 35px;
  }
}
.single-case-page .about-product {
  margin-bottom: 120px;
}
.single-case-page .about-product-content {
  display: flex;
  flex-direction: column;
}
.single-case-page .about-product-content .about-product-content__header-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: 613px;
}
.single-case-page .about-product-content .decoration-svg {
  position: absolute;
}
.single-case-page .about-product-content .underline-text {
  position: relative;
}
.single-case-page .about-product-content .decoration-svg.line {
  right: 0;
  bottom: -12px;
}
.single-case-page .about-product-content .decoration-svg.green-star {
  right: 0;
}
.single-case-page .about-product-content .decoration-svg.orange-star {
  right: -60px;
  top: -25px;
}
.single-case-page .about-product-content .about-product__title {
  color: #2D2C37;
  font: 700 62px/62px "Open Sans Bold";
}
.single-case-page .about-product-content .about-product-content__wrapper {
  display: flex;
  flex-direction: row;
  gap: 117px;
  margin-top: 84px;
}
.single-case-page .about-product-content .about-product-content__wrapper .about-product-content__text-info {
  color: #2D2C37;
  font: 400 18px/25px "Open Sans Regular";
}

@media (max-width: 768px) {
  .about-product {
    margin-bottom: 80px;
  }
  .about-product .about-product-content .header-block {
    max-width: 325px;
  }
  .about-product .about-product-content .decoration-svg.line {
    width: 120px;
  }
  .about-product .about-product-content .decoration-svg.green-star {
    right: 38px;
    bottom: 8px;
    width: 21px;
    height: 22px;
  }
  .about-product .about-product-content .decoration-svg.orange-star {
    right: 16px;
    top: 0;
    width: 16px;
    height: 17px;
  }
  .about-product .about-product-content .about-product-content__wrapper {
    flex-direction: column;
    margin-top: 30px;
    gap: 0;
    font-size: 14px;
    line-height: 19.6px;
  }
}
.single-case-page .achievements {
  background-color: #f4f3f6;
}
.single-case-page .achievements-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 86px 0;
}
.single-case-page .achievements-content .achievements-content__case-info-wrapper {
  margin-bottom: 84px;
}
.single-case-page .achievements-content .achievements-content__case-info-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.single-case-page .achievements-content .achievements-content__case-info-list-item {
  display: flex;
  flex-direction: row;
  width: 33%;
  flex-grow: 1;
}
.single-case-page .achievements-content .achievements-content__case-info-list.items-even .achievements-content__case-info-list-item {
  width: 50%;
}
.single-case-page .achievements-content .img-wrapper {
  position: relative;
}
.single-case-page .achievements-content .img-wrapper .decoration-icon {
  position: absolute;
  top: 120px;
  left: 6px;
}
.single-case-page .achievements-content .case-info-item-block {
  position: relative;
  top: 60%;
  left: -60px;
}
.single-case-page .achievements-content .case-info-item-block__star {
  margin-top: 6px;
}
.single-case-page .achievements-content .case-info-item-block__text {
  color: #2D2C37;
  font: 700 34px/40px "Open Sans Bold";
  max-width: 350px;
  background-color: #f4f3f6;
}
.single-case-page .achievements-content .case-info-item-block__direction {
  margin-top: 16px;
  color: #2D2C37;
  font: 400 16px/22px "Open Sans Regular";
  padding-left: 42px;
}
.single-case-page .achievements-content .decoration-line {
  background-color: #D9D9D9;
  margin: 0;
  padding: 0;
  height: 2px;
}
.single-case-page .achievements-content .achievements-content__decoration-line {
  position: absolute;
  bottom: -100px;
  right: -86px;
}
.single-case-page .achievements-content .achievements-content__decoration-star {
  position: absolute;
}
.single-case-page .achievements-content .achievements-content__decoration-star_purple {
  bottom: 100px;
  right: -75px;
}
.single-case-page .achievements-content .achievements-content__decoration-star_blue {
  right: 570px;
  bottom: 300px;
}

@media (max-width: 1440px) {
  .single-case-page .achievements-content .case-info-item-block__text {
    font: 600 24px/31px "Open Sans Regular";
  }
  .single-case-page .achievements-content .achievements-content__case-info-wrapper {
    margin-bottom: 0;
  }
}
@media (max-width: 1240px) {
  .single-case-page .achievements-content .achievements-content__case-info-list {
    flex-direction: column;
  }
  .single-case-page .achievements-content .achievements-content__case-info-list-item {
    width: 100%;
  }
  .single-case-page .achievements-content .achievements-content__case-info-list.items-even .achievements-content__case-info-list-item {
    width: 100%;
  }
  .single-case-page .achievements-content .case-info-item-block {
    top: 125px;
  }
  .single-case-page .achievements-content .achievements-content__case-info-wrapper {
    margin-bottom: 40px;
  }
}
.single-case-page .accordion-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 100px;
  border-bottom: 2px solid #E8E6EB;
}
.single-case-page .accordion-item__wrapper {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  border-top: 2px solid #E8E6EB;
}
.single-case-page .accordion-item__info-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.single-case-page .accordion-item__text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.single-case-page .accordion-item__name {
  max-width: 460px;
  width: 100%;
  color: #2D2C37;
  font: 700 34px/40px "Open Sans Bold";
}
.single-case-page .accordion-item__description {
  width: 50%;
  color: #6a6972;
  font: 400 18px/23px "Open Sans Regular";
}
.single-case-page .accordion-item__toggle {
  margin-left: auto;
  transition: all 0.4s;
}
.single-case-page .accordion-item__toggle:hover {
  cursor: pointer;
}
.single-case-page .accordion-item__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  max-height: 0;
  overflow: hidden;
}
.single-case-page .accordion-item__content-item {
  display: flex;
  flex-direction: column;
  background-color: #f4f3f6;
  border-radius: 34px;
  padding: 45px;
  width: calc(33.3333333333% - 22px);
  height: 378px;
}
.single-case-page .accordion-item__link {
  color: #FF7733;
  font: 400 18px/25px "Open Sans Regular";
}
.single-case-page .accordion-item__wrapper_active .accordion-item__content {
  margin-top: 40px;
}
.single-case-page .accordion-item__wrapper_active .accordion-item__toggle {
  transform: rotate(180deg);
}
.single-case-page .accordion-item__wrapper_active .accordion-item__toggle svg circle {
  fill: #f4f3f6;
}
.single-case-page .accordion-item__wrapper_active .accordion-item__content {
  max-height: 100%;
}
.single-case-page .accordion-item__wrapper_active .accordion-item__name {
  color: #FF7733;
}

@media (max-width: 768px) {
  .services {
    padding: 0 !important;
  }
  .services .services-content {
    padding-bottom: 0;
  }
  .services .services__header-block {
    padding: 0 25px;
  }
  .services .services__header-block .decoration-svg {
    width: 140px;
    bottom: -11px;
    left: 145px;
  }
  .services .accordion-item__wrapper {
    padding: 40px 25px;
  }
  .services .accordion-item__content {
    flex-direction: column;
    width: 100%;
    height: unset;
    border-radius: 18px;
  }
  .services .accordion-item__content .description {
    font-size: 14px;
    padding-right: 30px;
  }
  .services .accordion-item__content .accordion-item__link {
    margin-bottom: 10px;
  }
  .services .accordion-item__number {
    font: 400 12px/24px "Open Sans Regular";
    align-self: flex-start;
  }
  .services .accordion-item__text {
    flex-direction: column;
  }
  .services .accordion-item__name {
    font-size: 16px;
    line-height: 25.6px;
  }
  .services .accordion-item__description {
    font-size: 12px;
    line-height: 16.8px;
  }
  .services .accordion-item__toggle {
    margin-right: 0;
  }
  .services .accordion-item__toggle svg {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 1024px) {
  .single-case-page .accordion-item__content {
    flex-direction: column;
    align-items: start;
  }
  .single-case-page .accordion-item__content .accordion-item__description {
    width: 100%;
  }
  .single-case-page .accordion-item__toggle {
    margin-right: 0;
  }
  .single-case-page .accordion-item__image {
    width: 325px;
  }
}
@media (max-width: 768px) {
  .single-case-page .accordion-item__wrapper {
    padding: 20px 0;
  }
  .single-case-page .accordion-item__name {
    font: 400 14px/19.6px "Open Sans Regular";
  }
  .single-case-page .accordion-item__description {
    font-size: 14px;
    line-height: 19.6px;
  }
  .single-case-page .accordion-item__toggle svg {
    width: 32px;
    height: 32px;
  }
  .single-case-page .accordion-item__image {
    width: 325px;
  }
}
.single-case-page .functionality-content {
  display: flex;
  flex-direction: column;
  padding-top: 89px;
  padding-bottom: 138px;
}
.single-case-page .functionality-content .slider-list-info {
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  max-height: 900px;
}
.single-case-page .functionality-content .slider-list-info .slider-list-info__inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: transform 250ms;
  padding-top: 80px;
}
.single-case-page .functionality-content .slider-list-info .slider-list-info__item {
  display: flex;
  flex-direction: row;
  gap: 31px;
  padding: 11px 19px;
  max-width: 630px;
  min-height: 74px;
}
.single-case-page .functionality-content .slider-list-info .slider-list-info__item_active {
  background-color: #5BC484;
  border-radius: 34px;
}
.single-case-page .functionality-content .slider-list-info .slider-list-info__item_active .number, .single-case-page .functionality-content .slider-list-info .slider-list-info__item_active .text {
  color: #FFF;
}
.single-case-page .functionality-content .slider-list-info .number, .single-case-page .functionality-content .slider-list-info .text {
  color: #2D2C37;
  font: 400 18px/25px "Open Sans Regular";
}
.single-case-page .functionality-content .vertical-slider-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 69px;
  gap: 100px;
}
.single-case-page .functionality-content .vertical-slider__left-side-content {
  position: relative;
}
.single-case-page .functionality-content .vertical-slider__right-side-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.single-case-page .functionality-content .functionality-slider.mobile-app {
  height: 875px;
  width: 375px;
}
.single-case-page .functionality-content .functionality-slider.desktop-app {
  height: 468px;
}
.single-case-page .functionality-content .functionality-slider__img {
  width: 100%;
}
.single-case-page .functionality-content .opactity-placeholder {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 96px;
}
.single-case-page .functionality-content .top-opacity-placeholder {
  top: 0;
  background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0) 90%);
}
.single-case-page .functionality-content .bottom-opacity-placeholder {
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255) 90%);
}
.single-case-page .functionality-content .functionality-slider__nav-btn {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  z-index: 10;
  position: initial;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid #5BC484;
  transition: background-color 0.4s;
}
.single-case-page .functionality-content .functionality-slider__nav-btn:not(.swiper-button-disabled):hover {
  background-color: #5BC484;
}
.single-case-page .functionality-content .functionality-slider__nav-btn:not(.swiper-button-disabled):hover svg path {
  stroke: #FFF;
}
.single-case-page .functionality-content .functionality-slider__nav-btn svg {
  height: auto;
  width: auto;
}
.single-case-page .functionality-content .functionality-slider__nav-btn:after {
  display: none;
}
.single-case-page .functionality-content .functionality-slider__nav-btn {
  position: absolute;
  left: -84px;
}
.single-case-page .functionality-content .functionality-slider__prev-btn {
  margin-bottom: 110px;
}
.single-case-page .functionality-content .functionality-slider__next-btn {
  margin-top: 110px;
}

@media (max-width: 1024px) {
  .single-case-page .functionality-content .vertical-slider-wrapper {
    display: none;
  }
}
.single-case-page .technologies-used {
  background-color: #f4f3f6;
}
.single-case-page .technologies-used-content {
  display: flex;
  flex-direction: column;
}
.single-case-page .technologies-used-content .header-block {
  margin-bottom: 74px;
}
.single-case-page .technologies-used-content .technologies-used-slider-wrapper {
  width: 100%;
  padding-bottom: 50px;
}
.single-case-page .technologies-used-content .technologies-used-slide {
  background-color: #FFF;
  border-radius: 34px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 240px;
  height: 150px;
  overflow: hidden;
}
.single-case-page .technologies-used-content .technologies-used-slide__img {
  position: absolute;
  width: 120px;
  bottom: -20px;
  left: -25px;
  z-index: 1;
}
.single-case-page .technologies-used-content .technologies-used-slide__text {
  position: absolute;
  right: 40px;
  z-index: 10;
  color: #2D2C37;
  font: 600 24px/31px "Open Sans SemiBold";
}

@media (max-width: 768px) {
  .single-case-page .technologies-used-content .technologies-used-slider-wrapper {
    height: 400px;
  }
  .single-case-page .technologies-used-content .technologies-used-slide {
    background-color: unset;
    flex-direction: column;
  }
  .single-case-page .technologies-used-content .technologies-used-slide__img {
    width: 40px;
    position: relative;
    bottom: unset;
    left: unset;
  }
  .single-case-page .technologies-used-content .technologies-used-slide__text {
    position: relative;
    right: unset;
    margin-top: 20px;
    font: 400 12px/16.8px "Open Sans Regular";
  }
}
.single-case-page .hero {
  background-size: 100% 100%;
  background-repeat: no-repeat no-repeat;
  height: 700px;
  position: relative;
  overflow: hidden;
}
.single-case-page .hero-background-image {
  width: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  height: 850px;
  background-position-x: right !important;
}
.single-case-page .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 180px;
  padding-bottom: 168px;
}
.single-case-page .hero-content .title {
  color: #FFF;
  margin-bottom: 40px;
  max-width: 575px;
}
.single-case-page .hero-content .description {
  color: #FFF;
  margin-bottom: 44px;
  max-width: 539px;
}
.single-case-page .hero-content .hero-technologies-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.single-case-page .hero-content .hero-technologies-list__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  border: 2px solid #FFF;
  color: #FFF;
}

.cloud-storage-page .hero {
  background: linear-gradient(180deg, #89459A 0%, #C6A2EA 100%);
}
.cloud-storage-page .hero-background-image {
  background: url("./images/single-case-images/backgrounds/cloud_storage_bg.png") no-repeat;
}

@media (max-width: 768px) {
  .single-case-page .hero-background-image {
    background-size: auto 50%;
    background-position: center 75% !important;
  }
}
@media (min-width: 768px) {
  .single-case-page .hero-background-image {
    min-width: 1440px;
  }
}
.single-case-page .interface-content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  padding-bottom: 109px;
}
.single-case-page .interface-content .header-block .title {
  margin-bottom: 56px;
}
.single-case-page .interface-content .header-block .description {
  color: #2D2C37;
  font: 400 18px/25px "Open Sans Regular";
  margin-bottom: 80px;
  max-width: 650px;
}
.single-case-page .interface-content .interface-content__slide {
  width: 365px;
}
.single-case-page .interface-content .interface-content__slide img {
  width: 100%;
}
.single-case-page .interface-content .decoration-svg {
  position: absolute;
  z-index: -1;
}
.single-case-page .interface-content .star {
  top: 362px;
  left: 750px;
}
.single-case-page .interface-content .ellipse {
  top: 438px;
  left: 900px;
}
.single-case-page .interface-content .line {
  top: 20px;
  right: -86px;
}

@media (max-width: 768px) {
  .single-case-page .interface-content .interface-content__slide {
    width: 225px;
  }
  .single-case-page .interface-content .description {
    font-size: 14px;
    line-height: 19.6;
  }
  .single-case-page .interface-content .line {
    display: none;
  }
  .single-case-page .interface-content .star {
    top: 37px;
    right: 75px;
  }
  .single-case-page .interface-content .ellipse {
    top: 125px;
    right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .single-case-page .interface-content .line {
    width: 800px;
    height: auto;
  }
}
.single-case-page .thank-you-letter-content {
  padding-top: 0;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
}
.single-case-page .thank-you-letter-content .header-block {
  position: relative;
}
.single-case-page .thank-you-letter-content .header-block title {
  color: #2D2C37;
  font: 700 62px/62px "Open Sans Bold";
}
.single-case-page .thank-you-letter-content .thank-you-letter-image_mobile {
  display: none;
}
.single-case-page .thank-you-letter-content .mail-icon {
  min-width: 178px;
}
.single-case-page .thank-you-letter-content .decoration-svg {
  position: absolute;
  bottom: -25px;
  left: 0;
}
.single-case-page .thank-you-letter-content .thank-you-letter__description-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 124px;
  align-items: center;
  align-self: center;
}
.single-case-page .thank-you-letter-content .thank-you-letter__description-inner-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 51px;
}
.single-case-page .thank-you-letter-content .thank-you-letter__description {
  color: #2D2C37;
  font: 400 18px/25px "Open Sans Regular";
  max-width: 827px;
}
.single-case-page .thank-you-letter-content .line {
  margin-top: 50px;
  align-self: flex-end;
  height: 2px;
  width: 100%;
  max-width: 293px;
  background: linear-gradient(270deg, #D9D9D9 0%, rgba(217, 217, 217, 0) 100%);
}
.single-case-page .thank-you-letter-content .thank-you-letter__caption {
  font: 400 16px/22px "Open Sans Regular";
  color: #585667;
  text-align: right;
  margin-top: 16px;
  align-self: flex-end;
}

@media (max-width: 1240px) {
  .single-case-page .thank-you-letter-content .header-block .decoration-svg {
    display: none;
  }
}
@media (max-width: 768px) {
  .single-case-page .thank-you-letter-content {
    padding-bottom: 60px;
  }
  .single-case-page .thank-you-letter-content .header-block {
    justify-content: center;
  }
  .single-case-page .thank-you-letter-content .header-block .title {
    margin-left: 120px;
  }
  .single-case-page .thank-you-letter-content .thank-you-letter-image_mobile {
    display: block;
    position: absolute;
    left: 0;
  }
  .single-case-page .thank-you-letter-content .thank-you-letter__description-inner-wrapper svg {
    display: none;
  }
  .single-case-page .thank-you-letter-content .thank-you-letter__description-wrapper {
    margin-top: 20px;
  }
  .single-case-page .thank-you-letter-content .thank-you-letter__description-wrapper .thank-you-letter__description {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.dev-portfolio .dev-portfolio-content {
  flex-direction: column;
  padding-top: 0;
}
.dev-portfolio .header-wrapper {
  position: relative;
}
.dev-portfolio .header-wrapper .star {
  position: absolute;
}
.dev-portfolio .header-wrapper .orange-star {
  width: 43px;
  top: 60px;
  left: 800px;
}
.dev-portfolio .header-wrapper .green-star {
  width: 55px;
  top: 85px;
  left: 860px;
}
.dev-portfolio .header-wrapper .description {
  font: 400 18px/27px "Open Sans Regular";
  margin-top: 40px;
  width: 670px;
  max-width: 100%;
}
.dev-portfolio .dev-portfolio-swiper {
  margin-top: 120px;
  padding: 70px 0 50px;
}
.dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide {
  padding: 40px;
  height: 565px;
  background-color: #f4f3f6;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dev-portfolio .dev-portfolio-swiper .slide-info, .dev-portfolio .dev-portfolio-swiper .slide-footer-info, .dev-portfolio .dev-portfolio-swiper .slide-logo {
  margin-left: 500px;
}
.dev-portfolio .dev-portfolio-swiper .slide-logo {
  margin-bottom: 30px;
}
.dev-portfolio .dev-portfolio-swiper .slide-description_mobile {
  display: none;
}
.dev-portfolio .dev-portfolio-swiper .slide-info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
  row-gap: 25px;
  margin-bottom: 40px;
  justify-content: space-between;
}
.dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__item:not(.functions) {
  max-width: 225px;
}
.dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__title {
  font: 700 18px/25px "Open Sans Bold";
  margin-bottom: 12px;
}
.dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__description {
  font: 400 14px/19.6px "Open Sans Regular";
}
.dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__description-list {
  padding-left: 10px;
}
.dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__description-list .description-list__item {
  position: relative;
  padding-left: 10px;
}
.dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__description-list .description-list__item::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  background-color: black;
  border-radius: 50%;
  left: 0;
  top: 8px;
}
.dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__description-list .description-list__item:not(:last-child) {
  margin-bottom: 20px;
}
.dev-portfolio .dev-portfolio-swiper .slide-footer-info {
  padding-top: 15px;
  border-image: linear-gradient(90deg, #ED1C24 0%, rgba(244, 243, 246, 0)) 100;
  border-top: 1px solid;
  display: flex;
  justify-content: space-between;
}
.dev-portfolio .dev-portfolio-swiper .slide-footer-info .slide-footer-info__item {
  position: relative;
  padding-left: 30px;
}
.dev-portfolio .dev-portfolio-swiper .slide-footer-info .slide-footer-info__item::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  background-image: url("./images/icons/star-red.svg");
  background-size: 24px;
  left: 0;
}
.dev-portfolio .dev-portfolio-swiper .slide-footer-info .slide-footer-info__title {
  font: 700 18px/25px "Open Sans Bold";
  margin-bottom: 12px;
}
.dev-portfolio .dev-portfolio-swiper .slide-footer-info .slide-footer-info__description {
  font: 400 14px/19.6px "Open Sans Regular";
  max-width: 200px;
}
.dev-portfolio .dev-portfolio-swiper .slide-img-wrapper {
  position: absolute;
  left: 30px;
  bottom: 0;
  height: 625px;
  width: 425px;
  overflow-y: hidden;
}
.dev-portfolio .dev-portfolio-swiper .slide-img-wrapper img {
  position: absolute;
  width: 100%;
  top: 0;
}
.dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide-btn {
  display: none;
  width: 100%;
  height: 48px;
  justify-content: center;
  align-items: center;
  font: 600 16px/25px "Open Sans Bold";
  border-radius: 52px;
  cursor: pointer;
}
.dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide-btn.see-more-btn {
  color: #FFF;
  background-color: #5BC484;
  border: none;
}
.dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide-btn.minimize-btn {
  color: #2D2C37;
  border: 1px solid #2D2C37;
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .dev-portfolio .dev-portfolio-swiper {
    margin-top: 100px;
    padding-top: 0;
  }
  .dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide {
    height: 666px;
    padding-bottom: 120px;
  }
  .dev-portfolio .dev-portfolio-swiper .tech .slide-info__description {
    max-width: 150px;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-info, .dev-portfolio .dev-portfolio-swiper .slide-logo {
    margin-left: 300px;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-footer-info {
    margin-left: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 50px;
    border: none;
    background-color: #E8E6EB;
    border-radius: 0 0 34px 34px;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-img-wrapper {
    width: 265px;
    height: 490px;
    top: 40px;
  }
}
@media (max-width: 1024px) {
  .dev-portfolio .dev-portfolio-swiper {
    margin-top: 40px;
    padding-top: 0;
  }
  .dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide {
    padding: 25px;
    height: unset;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-logo {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-description_mobile {
    display: block;
    font: 400 12px/16.8px "Open Sans Regular";
    text-align: center;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-img-wrapper {
    position: initial;
    width: 100%;
    max-height: 445px;
    height: unset;
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-img-wrapper img {
    position: relative;
    height: 100%;
    width: unset;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-info {
    display: none;
    margin-left: 0;
    width: 100%;
    flex-direction: column;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__item:not(.functions) {
    max-width: unset;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__item:not(.functions) .slide-info__title, .dev-portfolio .dev-portfolio-swiper .slide-info .slide-info__item:not(.functions) .slide-info__description {
    display: inline;
  }
  .dev-portfolio .dev-portfolio-swiper .slide-footer-info {
    display: none;
    margin-left: 0;
    width: 100%;
    justify-content: unset;
    column-gap: 25px;
    row-gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .dev-portfolio .dev-portfolio-swiper .see-more-btn {
    display: flex;
  }
  .dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide_unfolded .see-more-btn {
    display: none;
  }
  .dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide_unfolded .slide-info, .dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide_unfolded .slide-footer-info, .dev-portfolio .dev-portfolio-swiper .dev-portfolio-slide_unfolded .minimize-btn {
    display: flex;
  }
}
.dev-process .dev-process-content {
  padding-top: 0;
  flex-direction: column;
  background: url("./images/images/dev-process/two-stars-bg.svg") no-repeat;
  background-position-y: bottom;
  background-position-x: right;
}
.dev-process .dev-process-list {
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 55px;
  row-gap: 80px;
  margin-top: 100px;
}
.dev-process .dev-process-list .dev-process-list__item {
  position: relative;
}
.dev-process .dev-process-list .dev-process-list__item .header-text {
  display: flex;
  align-items: center;
  border-bottom: #D9D9D9 2px solid;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.dev-process .dev-process-list .dev-process-list__item .header-text .number {
  font: 900 80px/96px "Open Sans ExtraBold";
  color: #5BC484;
  margin-right: 25px;
}
.dev-process .dev-process-list .dev-process-list__item .header-text .title {
  font: 700 26px/31.2px "Open Sans Bold";
}
.dev-process .dev-process-list .dev-process-list__item:nth-child(3n+1) {
  margin-top: 100px;
}
.dev-process .dev-process-list .dev-process-list__item:nth-child(3n+2) {
  margin-top: 50px;
}
.dev-process .dev-process-list .dev-process-list__item:nth-child(3)::before {
  content: "";
  width: 500px;
  height: 500px;
  position: absolute;
  left: -230px;
  top: -210px;
  z-index: -1;
  background: url("./images/images/dev-process/circle-dots-bg.svg") no-repeat;
}
.dev-process .dev-process-list .dev-process-list__item .description-list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding-left: 10px;
}
.dev-process .dev-process-list .dev-process-list__item .description-list__item {
  padding-left: 10px;
  position: relative;
  font: 400 18px/27px "Open Sans Regular";
}
.dev-process .dev-process-list .dev-process-list__item .description-list__item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
  background-color: #2D2C37;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .dev-process .dev-process-content {
    background: none;
  }
  .dev-process .dev-process-list {
    grid-template-columns: auto auto;
    column-gap: 80px;
  }
  .dev-process .dev-process-list .dev-process-list__item {
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .dev-process .dev-process-content {
    background: none;
  }
  .dev-process .dev-process-list {
    grid-template-columns: auto;
    row-gap: 40px;
    margin-top: 40px;
  }
  .dev-process .dev-process-list .dev-process-list__item {
    margin-top: 0 !important;
  }
  .dev-process .dev-process-list .dev-process-list__item .header-text .number {
    font-size: 48px;
    line-height: 48px;
  }
  .dev-process .dev-process-list .dev-process-list__item .header-text .title {
    font-size: 18px;
    line-height: 25px;
  }
  .dev-process .dev-process-list .dev-process-list__item:nth-child(3)::before {
    background: none;
  }
  .dev-process .dev-process-list .dev-process-list__item .description-list__item {
    font-size: 14px;
    line-height: 19.6px;
  }
  .dev-process .dev-process-list .dev-process-list__item .description-list__item::before {
    top: 8px;
  }
}
.single-case-page .what-we-did-content {
  display: flex;
  flex-direction: column;
}
.single-case-page .what-we-did-content .what-we-did-content-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item {
  width: calc(25% - 20px);
  display: flex;
  flex-direction: row;
  height: 150px;
  align-items: center;
  justify-content: center;
  color: rgba(45, 44, 55, 0.17);
  border-radius: 34px;
  background-color: #f4f3f6;
  position: relative;
  margin-top: 86px;
  font: 600 24px/31px "Open Sans SemiBold";
  text-align: center;
  padding: 0 5px;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item .what-we-did-content-list__item-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -46px;
  border-radius: 50%;
  border: 8px solid #FFF;
  background-color: #f4f3f6;
  z-index: 10;
  height: 92px;
  width: 92px;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active {
  color: #FFF;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(1) {
  background: linear-gradient(121deg, rgba(91, 196, 132, 0.8) 31.29%, rgba(150, 242, 186, 0.8) 104.87%);
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(1) .what-we-did-content-list__item-icon {
  background-color: #5BC484;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(2) {
  background: linear-gradient(118deg, rgba(125, 145, 217, 0.8) 32.76%, rgba(167, 186, 250, 0.8) 102.3%);
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(2) .what-we-did-content-list__item-icon {
  background-color: #7D91D9;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(3) {
  background: linear-gradient(122deg, rgba(237, 98, 139, 0.8) 30.99%, rgba(255, 142, 176, 0.8) 101.65%);
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(3) .what-we-did-content-list__item-icon {
  background-color: #ED628B;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(4) {
  background: linear-gradient(116deg, #F49065 19.52%, #FFAC89 123.21%);
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(4) .what-we-did-content-list__item-icon {
  background-color: #FF7E47;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(5) {
  background: linear-gradient(111deg, #FF7878 36.04%, #FFAEAE 133.52%);
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(5) .what-we-did-content-list__item-icon {
  background-color: #F95959;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(6) {
  background: linear-gradient(108deg, #CCA5FF 28.91%, #E8A5FF 113.83%);
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(6) .what-we-did-content-list__item-icon {
  background-color: #B983FF;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(7) {
  background: linear-gradient(110deg, #B0CF6E 8.82%, #C9F077 107.16%);
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(7) .what-we-did-content-list__item-icon {
  background-color: #A8D648;
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(8) {
  background: linear-gradient(109deg, #84CBCF 24.78%, #A3EFF3 143.51%);
}
.single-case-page .what-we-did-content .what-we-did-content-list__item_active:nth-child(8) .what-we-did-content-list__item-icon {
  background-color: #67D0D6;
}

@media (max-width: 1024px) {
  .single-case-page .what-we-did {
    padding: 100px 0 70px;
  }
  .single-case-page .what-we-did-content .what-we-did-content-list__item {
    width: calc(50% - 20px);
    font-size: 16px;
    line-height: 25.6px;
  }
}
.solutions-page .hero {
  background-color: #F4F3F6;
  position: relative;
  height: 722px;
  overflow: hidden;
}
.solutions-page .hero .title {
  max-width: 50%;
  min-width: 520px;
  color: #2D2C37;
  margin-bottom: 42px;
}
.solutions-page .hero .title-gradient {
  background-image: linear-gradient(90.09deg, #FF7733 2.34%, #AB5BD2 98.14%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solutions-page .hero .description {
  max-width: 300px;
  color: rgba(45, 44, 55, 0.6980392157);
  margin-bottom: 40px;
  font: 600 18px/28.8px "Open Sans Bold";
}
.solutions-page .hero .hero-background {
  width: 100%;
  height: 100%;
  min-width: 1440px;
  position: absolute;
  left: 0;
  z-index: 1;
}
.solutions-page .hero .hero-background .hero-background__main {
  position: absolute;
  width: 630px;
  top: 180px;
  right: 90px;
}
.solutions-page .hero .hero-background .hero-background__circle {
  position: absolute;
  top: 231px;
  left: -126px;
  width: 251px;
  height: 251px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFFFFF 54.08%, rgba(255, 255, 255, 0) 93.98%);
}
.solutions-page .hero .hero-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .solutions-page .hero .hero-background {
    min-width: 1024px;
  }
  .solutions-page .hero .hero-background .hero-background__main {
    right: -188px;
  }
}
@media (max-width: 768px) {
  .solutions-page .hero {
    height: 405px;
  }
  .solutions-page .hero .hero-content {
    padding-top: 120px;
    padding-bottom: 90px;
  }
  .solutions-page .hero .hero-content .title {
    min-width: 250px;
  }
  .solutions-page .hero .hero-content .description {
    min-width: 180px;
  }
  .solutions-page .hero .hero-background {
    min-width: 425px;
  }
  .solutions-page .hero .hero-background .hero-background__main {
    width: 340px;
    top: 80px;
    right: -125px;
  }
}

.why-us {
  background-color: #f4f3f6;
}
.why-us .why-us-content {
  flex-direction: column;
}
.why-us .why-us-list {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 130px;
  row-gap: 128px;
  margin-top: 100px;
}
.why-us .why-us-list .why-us-list__item {
  position: relative;
}
.why-us .why-us-list .why-us-list__item .header-text {
  display: flex;
  align-items: center;
  border-bottom: #D9D9D9 2px solid;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.why-us .why-us-list .why-us-list__item .header-text .header-text__image {
  margin-right: 20px;
}
.why-us .why-us-list .why-us-list__item .header-text .header-text__title {
  font: 700 18px/25px "Open Sans Regular";
}
.why-us .why-us-list .why-us-list__item .description {
  font: 400 18px/27px "Open Sans Regular";
}

@media (min-width: 768px) and (max-width: 1440px) {
  .why-us .why-us-content {
    padding: 80px 0;
  }
  .why-us .why-us-list {
    row-gap: 90px;
    column-gap: 100px;
  }
  .why-us .why-us-list .why-us-list__item .header-text {
    align-items: flex-start;
  }
  .why-us .why-us-list .why-us-list__item .header-text .header-text__image {
    width: 50px;
  }
}
@media (max-width: 768px) {
  .why-us .why-us-content {
    padding: 50px 0;
  }
  .why-us .why-us-list {
    grid-template-columns: auto;
    row-gap: 40px;
    margin-top: 40px;
  }
  .why-us .why-us-list .why-us-list__item .header-text .header-text__image {
    width: 50px;
  }
  .why-us .why-us-list .why-us-list__item .header-text .header-text__title {
    font-size: 18px;
    line-height: 25px;
  }
  .why-us .why-us-list .why-us-list__item .description {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.functionality-slider-wrapper_mobile {
  display: none;
  margin-top: 50px;
}
.functionality-slider-wrapper_mobile .functionality-number-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}
.functionality-slider-wrapper_mobile .functionality-number-list .functionality-number-list__item .text {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  font: 400 14px/19.6px "Open Sans Regular";
}
.functionality-slider-wrapper_mobile .functionality-number-list .functionality-number-list__item .number {
  font: 400 14px/19.6px "Open Sans Regular";
}
.functionality-slider-wrapper_mobile .functionality-number-list .functionality-number-list__item .number:not(.active) {
  color: #E8E6EB;
}
.functionality-slider-wrapper_mobile .functionality-number-list .functionality-number-list__item.active .text {
  display: block;
}
.functionality-slider-wrapper_mobile .functionality-number-list .functionality-number-list__item.active .number {
  color: #5BC484;
}
.functionality-slider-wrapper_mobile .functionality-mobile-slider__img {
  display: block;
  margin: 0 auto;
  width: 60%;
  min-width: 175px;
}
.functionality-slider-wrapper_mobile .functionality-mobile-swiper {
  margin-top: 40px;
}
.functionality-slider-wrapper_mobile .functionality-mobile-swiper .swiper-slide {
  transition: opacity 500ms;
}
.functionality-slider-wrapper_mobile .functionality-mobile-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .functionality-slider-wrapper_mobile {
    display: block;
    width: 100%;
  }
}