

/* Start:/local/templates/webdoka/styles/main.css?1748192361149929*/
@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-Thin.woff2");
  font-weight: 100;
}

@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-ExtraLight.ttf");
  font-weight: 200;
}

@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-Light.woff2");
  font-weight: 300;
}

@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-Medium.woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-SemiBold.woff2");
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-Bold.woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-ExtraBold.woff2");
  font-weight: 800;
}

@font-face {
  font-family: "Inter";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter/Inter-Black.woff2");
  font-weight: 900;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-Thin.woff2");
  font-weight: 100;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-ExtraLight.ttf");
  font-weight: 200;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-Light.woff2");
  font-weight: 300;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-Medium.woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-SemiBold.woff2");
  font-weight: 600;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-Bold.woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-ExtraBold.woff2");
  font-weight: 800;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/local/templates/webdoka/styles/../assets/fonts/Inter_Tight/InterTight-Black.woff2");
  font-weight: 900;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
  font-family: "Inter", sans-serif;
}

a {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: inherit;
}

input,
textarea {
  outline: none;
}

button {
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
}

img,
video {
  width: 100%;
  display: block;
  border-style: none;
}

main {
  flex: 1 1 auto;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  background-color: #f4f4f8;
  min-width: 360px;
}

.main.main-page {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.main {
  margin-bottom: 100px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 75px;
}

.page-title {
  margin-bottom: 70px;
  text-align: center;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -1.62px;
}

.section__title {
  margin-bottom: 70px;
  text-align: center;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 74px;
  letter-spacing: -1.62px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 13px;
}

.callback-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.callback-modal.show {
  display: block;
}

.callback-modal__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(41, 41, 41, 0.2196078431);
  animation: callbackFade 0.3s ease-in-out;
}

@keyframes callbackFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.callback-success {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 408px;
  height: 350px;
  border-radius: 28px;
  background-color: #f4f4f8;
}

.callback-success.show {
  display: flex;
}

.callback-success .callback-form__close {
  position: absolute;
  top: 32px;
  right: 32px;
}

.callback-success__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 250px;
  text-align: center;
}

.callback-success__icon-warp {
  width: 80px;
  height: 80px;
}

.callback-success__text {
  color: #212121;
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 40px 0 26px;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: 0.3s ease-in-out;
}

.breadcrumbs__item {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: 0.3s ease-in-out;
}

.breadcrumbs__item:is(a):hover {
  color: #212121;
}

.breadcrumbs__item:is(span) {
  color: #9c9c9c;
}

.filter-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
  list-style: none;
}

.filter-chips__item {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #7b7b7b;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.filter-chips__item:hover {
  color: #a5df45;
  background-color: #161e28;
}

.filter-chips__item.active {
  color: #a5df45;
  background-color: #161e28;
}

.awards {
  margin-bottom: 80px;
}

.awards-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.awards-achieve {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 17px;
  min-height: 350px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
}

.awards-achieve__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.awards-achieve__place {
  position: relative;
  width: 146px;
  height: 138px;
}

.awards-achieve__title {
  text-align: center;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.awards-achieve__basement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(199, 199, 199, 0.6);
}

.awards-achieve__icon {
  flex-shrink: 0;
  width: 25px;
  height: 28px;
}

.awards-achieve__presenter {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.awards-achieve__place-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.awards-achieve__place-value {
  color: #bb3f3f;
  font-family: "Inter", sans-serif;
  font-size: 63px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.awards-achieve__place-title {
  color: #bb3f3f;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.awards-certificate {
  overflow: hidden;
  border-radius: 20px;
  min-height: 285px;
  background-color: #ffffff;
}

.awards-certificate-img {
  height: 100%;
  object-fit: cover;
}

.clients-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 30px;
  height: 134px;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
}

.swiper-button-next img,
.swiper-button-prev img {
  width: 40px;
  height: 40px;
}

.platforms-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.feedback-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: 36px;
  background: #fff;
  min-height: 477px;
}

.feedback-item__logo {
  display: flex;
  align-items: center;
  height: 90px;
}

.feedback-item__logo-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.feedback-item__info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.feedback-item__descr {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 138.889%;
}

.feedback-item__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feedback-item__author-name {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.feedback-item__author-position {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}

.header__wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}

.header .callback-btn,
.header .callback-btn-link{
  padding: 18px 29px;
  border-radius: 50px;
  background-color: #292929;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  transition: 0.3s ease-in-out;
}

.header .callback-btn:hover,
.header .callback-btn-link:hover {
  background-color: #4d4c4c;
}

.logo {
  flex-shrink: 0;
}

.navbar__list {
  display: flex;
  gap: 57px;
  list-style: none;
}

.navbar__link {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  transition: 0.3s ease-in-out;
}

.navbar__link:hover {
  color: #7b7b7b;
}

.navbar .callback-btn {
  display: none;
}

.user-block {
  display: flex;
  align-items: center;
  gap: 43px;
}

.language-select {
  position: relative;
}

.language-select__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 50px;
  background-color: #ffffff;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.language-select__btn:hover {
  color: #7b7b7b;
}

.language-select__current {
  width: 25px;
  flex-shrink: 0;
}

.language-options {
  display: none;
  position: absolute;
  top: 46px;
  right: 0px;
  width: 168px;
  z-index: 9;
}

.language-options.show {
  display: block;
}

.language-options.show .language-options__list {
  animation: languageOptionsShow 0.3s ease-in-out;
}

@keyframes languageOptionsShow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.language-options__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  list-style: none;
}

.language-options__item {
  padding: 6px 10px;
  border-radius: 8px;
}

.language-options__item:hover {
  background-color: #f3ffdf;
}

.language-options__item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.language-options__item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  overflow: hidden;
}

.burger-menu.active .burger-menu__item:nth-child(1) {
  transform: translate(6px, 6px);
  rotate: 45deg;
}

.burger-menu.active .burger-menu__item:nth-child(2) {
  transform: translateX(100%);
  opacity: 0;
}

.burger-menu.active .burger-menu__item:nth-child(3) {
  transform: translate(5px, -5px);
  rotate: -45deg;
}

.burger-menu__item {
  position: relative;
  width: 24px;
  height: 2px;
  border-radius: 30px;
  background: #292929;
  transition: 0.3s ease-in-out;
}

.burger-menu__item:nth-child(2) {
  width: 16px;
  transform: translateX(3px);
}

.footer__wrap {
  display: flex;
  gap: 126px;
  padding: 50px;
  border-radius: 50px;
  background: #161e28;
  margin-bottom: 80px;
}

.footer__left-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: max-content;
}

.footer__left-box .logo {
  width: 109px;
  height: 86px;
  flex-shrink: 0;
}

.footer__copyright {
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.footer__rigth-box {
  width: 100%;
}

.footer-header {
  display: flex;
  gap: 176px;
}

.footer-nav {
  flex-grow: 1;
}

.footer-nav__title {
  margin-bottom: 20px;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer-nav__list {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #4d4c4c;
  padding-bottom: 36px;
}

.footer-nav__list-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav__item {
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  transition: 0.3s ease-in-out;
}

.footer-nav__item:hover {
  color: #7b7b7b;
}

.footer-basement {
  display: flex;
  align-items: flex-end;
  gap: 126px;
}

.footer-basement__box {
  padding-top: 36px;
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.footer-basement .footer-nav__list-box {
  flex-direction: row;
}

.callback-form {
  position: relative;
  width: 630px;
  padding: 36px;
  border-radius: 28px;
  background-color: #f4f4f8;
}

.callback-form.hidden {
  display: none;
}

.callback-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.callback-form__title {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.callback-form__inputs-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.callback-form__contact-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback-form__contact-label {
  margin-bottom: 8px;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.callback-form__contact-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.callback-form__contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.callback-form__contact-item.active .callback-form__contact-icon path:first-child {
  display: block;
}

.callback-form__contact-item.active .callback-form__contact-title {
  color: #212121;
}

.callback-form__contact-icon path:first-child {
  display: none;
}

.callback-form__contact-title {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.callback-form__contact-radio {
  display: none;
}

.callback-form__item {
  padding: 16px 14px;
  border-radius: 12px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  background-color: #ffffff;
}

.callback-form__item.error {
  border: 1px solid #f44336;
}

.callback-form__item-input {
  width: 100%;
  background-color: #ffffff;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.callback-form__item-input::placeholder {
  color: #7b7b7b;
}

.callback-form__item-textarea {
  resize: none;
  width: 100%;
  height: 68px;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.callback-form__item-textarea::placeholder {
  color: #7b7b7b;
}

.callback-form__elem .callback-form__item {
  margin-bottom: 12px;
}
.callback-form__attachment {
  display: flex;
}

.callback-form__attachment.active .callback-form__attachment-btn {
  display: none;
}

.callback-form__attachment.active .callback-form__attachment-file {
  display: flex;
}

.callback-form__attachment-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 4px;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  border-bottom: 1px dashed #7b7b7b;
  cursor: pointer;
}

.callback-form__attachment-icon {
  width: 14px;
  height: 14px;
}

.callback-form__attachment-file {
  flex-grow: 1;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 5px;
}

.callback-form__attachment-input {
  display: none;
}

.callback-form__attachment-item {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
}

.callback-form__attachment-del {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  cursor: pointer;
}

.callback-form__submit {
  width: 100%;
  margin-bottom: 8px;
  padding: 15px;
  border-radius: 50px;
  background: #292929;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.callback-form__submit:hover {
  background: #4d4c4c;
}

.callback-form__agreement-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.callback-form__agreement-box.error .callback-form__check {
  border: 1px solid #f44336;
}

.callback-form__agreement-box.active .callback-form__check {
  border: 1px solid #7b7b7b;
}

.callback-form__agreement-box.active .callback-form__check-icon {
  opacity: 1;
}

.callback-form__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.callback-form__check-input {
  display: none;
}

.callback-form__check-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.callback-form__submit-block{
  position: relative;
}

.callback-form-error-msg{
  color: red;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
}

.callback-form__check-desc {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.callback-form__close {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.main-page .cases-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}

.main-page .cases-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 15px 15px 32px;
  border-radius: 30px;
  background: #ffffff;
}

.main-page .cases-card:hover .cases-card__img {
  transform: scale(1.1);
}

.main-page .cases-card__img-wrap {
  height: 590px;
  border-radius: 30px;
  overflow: hidden;
}

.main-page .cases-card__img {
  border-radius: 30px;
  height: inherit;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease-in-out;
}

.main-page .cases-card__img:hover {
  transform: scale(1.1);
}

.main-page .cases-card__platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.main-page .cases-card__platforms-item {
  padding: 6px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.main-page .cases-card__desc {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.main-page .cases-card__desc:hover .cases-card__desc-title {
  color: #7b7b7b;
}

.main-page .cases-card__desc-title {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}

.main-page .cases-card__desc-text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.main-page .services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.main-page .services-item {
  background: #ffffff;
  border-radius: 36px;
  transition: 0.3s ease-in-out;
}

.main-page .services-item:hover {
  background: #161e28;
}

.main-page .services-item:hover .services-item__title {
  color: #f5f5f5;
}

.main-page .services-item:hover .services-item__desc-item {
  color: #f5f5f5;
}

.main-page .services-item:hover .services-item__arrow-icon g path:first-child {
  stroke: #f5f5f5;
}

.main-page .services-item:hover .services-item__arrow-icon g path:last-child {
  fill: #f5f5f5;
}

.main-page .services-item:first-child {
  grid-column: span 2;
}

.main-page .services-item__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 35px;
}

.main-page .services-item__wrap-link{
  justify-content: center;
}

.main-page .services-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.main-page .services-item .services-item__arrow-icon {
  flex-shrink: 0;
}

.main-page .services-item .services-item__arrow-icon g path {
  transition: 0.3s ease-in-out;
}

.main-page .services-item__title {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.main-page .services-item__desc-item {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  transition: 0.3s ease-in-out;
}

.main-page .clients-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.main-page .clients-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 30px;
  height: 134px;
}

.main-page .clients-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  height: 134px;
}

.main-page .clients-link:hover .clients-link__title {
  color: #7b7b7b;
}

.main-page .clients-link:hover .clients-link__arrow-icon path {
  fill: #7b7b7b;
}

.main-page .clients-link__box {
  display: flex;
  align-items: center;
}

.main-page .clients-link__title {
  min-width: max-content;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  transition: 0.3s ease-in-out;
}

.main-page .clients-link__arrow-icon path {
  transition: 0.3s ease-in-out;
}

.main-page .preview__wrap {
  position: relative;
  height: 570px;
  border-radius: 60px;
  overflow: hidden;
  background: linear-gradient(150deg, rgb(22, 30, 40), rgb(33, 54, 80));
}

.main-page .preview__circle:nth-child(1) {
  position: absolute;
  top: 10%;
  left: 15%;
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(325deg, rgb(17, 93, 145), rgba(165, 223, 69, 0.5));
  filter: blur(80px);
  animation: previewFirstCircle 7s infinite;
}

.main-page .preview__circle:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(325deg, rgb(12, 46, 68), rgba(66, 118, 171, 0.5));
  filter: blur(80px);
  animation: previewSecondCircle 5s infinite;
}

.main-page .preview__circle:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 800px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgb(23, 45, 71), rgba(95, 180, 99, 0.5));
  filter: blur(80px);
  animation: previewThirdCircle 10s infinite;
}

@keyframes previewFirstCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(30%, 25%);
  }
}

@keyframes previewSecondCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(-30%, -25%);
  }
}

@keyframes previewThirdCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(30%, -25%);
  }
}

.main-page .preview-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.main-page .preview-content__wrap {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.main-page .preview-list {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-page .preview-list__item {
  padding: 14px 20px;
  border-radius: 30px;
  border: 1.5px solid #a5df45;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.main-page .preview__title {
  text-align: center;
  color: #f5f5f5;
  font-family: "Inter Tight", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
}

.main-page .ratings__wrap {
  position: relative;
  min-height: 550px;
  border-radius: 60px;
  overflow: hidden;
  background: linear-gradient(150deg, rgb(22, 30, 40), rgb(33, 54, 80));
}

.main-page .ratings__circle:nth-child(1) {
  position: absolute;
  top: 10%;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgb(23, 45, 71), rgba(95, 180, 99, 0.5));
  filter: blur(80px);
  animation: ratingsFirstCircle 8s infinite;
}

.main-page .ratings__circle:nth-child(2) {
  position: absolute;
  top: 10%;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(325deg, rgb(12, 46, 68), rgba(78, 111, 133, 0.5));
  filter: blur(80px);
  animation: ratingsSecondCircle 12s infinite;
}

.main-page .ratings__circle:nth-child(3) {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(325deg, rgb(17, 93, 145), rgba(165, 223, 69, 0.5));
  filter: blur(80px);
  animation: ratingsThirdCircle 15s infinite;
}

@keyframes ratingsFirstCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(30%, 25%);
  }
}

@keyframes ratingsSecondCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(-30%, -25%);
  }
}

@keyframes ratingsThirdCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(30%, -25%);
  }
}

.main-page .ratings-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.main-page .ratings-content__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 63px 60px;
}

.main-page .ratings__title {
  text-align: center;
  color: #f5f5f5;
  font-family: "Inter Tight", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 74px;
  letter-spacing: -1.62px;
}

.main-page .ratings-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.main-page .ratings-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 25px;
  min-height: 227px;
  border-radius: 36px;
  background: rgba(23, 31, 40, 0.5);
  backdrop-filter: blur(16.5px);
}

.main-page .ratings-item__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 20px;
  border: 1px solid #a5df45;
}

.main-page .ratings-item__like-wrap {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.main-page .ratings-item__title {
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}

.main-page .ratings-item__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #a5df45;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

.main-page .ratings-item__value--big {
  font-size: 56px;
  line-height: 40px;
}

.main-page .ratings-item__text {
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.main-page .ratings__link {
  position: relative;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.6px;
}

.main-page .ratings__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  height: 1px;
  width: 100%;
  background-color: #f5f5f5;
}

.contacts-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contacts-block {
  display: flex;
  flex-direction: column;
  gap: 33px;
  padding: 36px 36px 45px;
  border-radius: 28px;
  background: #ffffff;
}

.contacts-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacts-box__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts-box__label {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.contacts-box__links{
  display: flex;
  gap: 12px;
  align-items: center;
}

.contacts-box__link {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 45px;
}

.contacts-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts-details__label {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.contacts-details__list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.contacts-details__item {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.contacts-details__item.hidden {
  display: none;
}

.contacts-details__open-btn {
  width: min-content;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.contacts .callback-form {
  background-color: #ffffff;
}

.achievements .achievements-list {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 29px;
}

.achievements .achievements-list.active {
  display: grid;
}

.achievements .achievements-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 690px;
}

.achievements .achievements-card__img-wrap {
  height: 580px;
}

.achievements .achievements-card__img {
  height: inherit;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

.achievements .achievements-card__title {
  margin-bottom: 6px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.achievements .achievements-card__desc {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-about .stack-list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin-bottom: 50px;
}

.case-about .stack-list__item {
  padding: 14px 25px;
  border-radius: 30px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  background: #ffffff;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.case-about .case-swiper {
  margin-bottom: 70px;
  height: 690px;
}

.case-about .case-swiper__img {
  border-radius: 30px;
}

.case-about .case-swiper .swiper-button-next,
.case-about .case-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
}

.case-about .case-swiper .swiper-button-next {
  right: 60px;
}

.case-about .case-swiper .swiper-button-prev {
  left: 60px;
}

.case-about .case-swiper .swiper-button-next:after,
.case-about .case-swiper .swiper-button-prev:after {
  content: "";
}

.case-about .case-swiper .swiper-pagination {
  bottom: 0px !important;
}

.case-about .case-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #7b7b7b;
}

.case-about .case-swiper .swiper-pagination-bullet-active {
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background: #4d4c4c !important;
}

.case-about .case-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.7;
}

.case-about .case-descr {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 144px;
}

.case-about .descr-item {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.case-about .descr-item__title {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
}

.case-about .descr-item__info-box {
  grid-column: span 4;
}

.case-about .descr-item__text {
  padding-right: 190px;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.case-about .descr-item__technologies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.case-about .descr-item__technology {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 110px;
  border-radius: 20px;
  background: #ffffff;
}

.case-about .descr-item__technology-wrap {
  max-height: 60px;
  max-width: 120px;
}

.case-about .descr-item__technology-img {
  max-height: inherit;
  max-width: inherit;
}

.case-about .descr-item__achievements-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.case-about .descr-item__achieve {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 17px;
  min-height: 285px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
}

.case-about .descr-item__achieve-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.case-about .descr-item__achieve-place {
  position: relative;
  width: 116px;
  height: 110px;
}

.case-about .descr-item__achieve-title {
  text-align: center;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.case-about .descr-item__achieve-basement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(199, 199, 199, 0.6);
}

.case-about .descr-item__achieve-icon {
  flex-shrink: 0;
  width: 20px;
  height: 22px;
}

.case-about .descr-item__achieve-presenter {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.case-about .descr-item__place-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-about .descr-item__place-value {
  color: #bb3f3f;
  font-family: "Inter", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.case-about .descr-item__place-title {
  color: #bb3f3f;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.case-about .descr-item__certificate {
  overflow: hidden;
  border-radius: 20px;
  min-height: 285px;
}

.case-about .descr-item__certificate-img {
  height: 100%;
  object-fit: cover;
}

.another-cases .cases-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 15px 15px 20px;
  border-radius: 20px;
  background: #ffffff;
}

.another-cases .cases-card:hover .cases-card__img {
  transform: scale(1.1);
}

.another-cases .cases-card__img-wrap {
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
}

.another-cases .cases-card__img {
  border-radius: 20px;
  height: inherit;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease-in-out;
}

.another-cases .cases-card__img:hover {
  transform: scale(1.1);
}

.another-cases .cases-card__platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.another-cases .cases-card__platforms-item {
  padding: 6px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.another-cases .cases-card__desc {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.another-cases .cases-card__desc:hover .cases-card__desc-title {
  color: #7b7b7b;
}

.another-cases .cases-card__desc-title {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}

.another-cases .cases-card__desc-text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.another-cases .cases-swiper .swiper-slide {
  height: auto;
}

.cases-page.cases .filter-chips__item.active .filter-chips__item-link {
  color: #a5df45;
}

.cases-page.cases .filter-chips__item:hover .filter-chips__item-link {
  color: #a5df45;
}

.cases-page.cases .filter-chips__item-link {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.cases-page.cases .cases-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}

.cases-page.cases .cases-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 15px 15px 32px;
  border-radius: 30px;
  background: #ffffff;
}

.cases-page.cases .cases-card:hover .cases-card__img {
  transform: scale(1.1);
}

.cases-page.cases .cases-card__img-wrap {
  height: 590px;
  border-radius: 30px;
  overflow: hidden;
}

.cases-page.cases .cases-card__img {
  border-radius: 30px;
  height: inherit;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease-in-out;
}

.cases-page.cases .cases-card__img:hover {
  transform: scale(1.1);
}

.cases-page.cases .cases-card__platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.cases-page.cases .cases-card__platforms-item {
  padding: 6px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.cases-page.cases .cases-card__desc {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.cases-page.cases .cases-card__desc:hover .cases-card__desc-title {
  color: #7b7b7b;
}

.cases-page.cases .cases-card__desc-title {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}

.cases-page.cases .cases-card__desc-text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.clients-page.clients .clients-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.clients-page.clients .clients-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 30px;
  height: 134px;
}

.clients-page.clients .clients-item.hidden {
  display: none;
}

.web-development .platforms__wrap {
  margin-bottom: 120px;
}

.web-development .platforms-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.web-development .ratings__wrap {
  position: relative;
  min-height: 550px;
  margin-bottom: 120px;
  border-radius: 60px;
  overflow: hidden;
  background: linear-gradient(150deg, rgb(22, 30, 40), rgb(33, 54, 80));
}

.web-development .ratings__circle:nth-child(1) {
  position: absolute;
  top: 10%;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgb(23, 45, 71), rgba(95, 180, 99, 0.5));
  filter: blur(80px);
  animation: ratingsFirstCircle 8s infinite;
}

.web-development .ratings__circle:nth-child(2) {
  position: absolute;
  top: 10%;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(325deg, rgb(12, 46, 68), rgba(78, 111, 133, 0.5));
  filter: blur(80px);
  animation: ratingsSecondCircle 12s infinite;
}

.web-development .ratings__circle:nth-child(3) {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(325deg, rgb(17, 93, 145), rgba(165, 223, 69, 0.5));
  filter: blur(80px);
  animation: ratingsThirdCircle 15s infinite;
}

@keyframes ratingsFirstCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(30%, 25%);
  }
}

@keyframes ratingsSecondCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(-30%, -25%);
  }
}

@keyframes ratingsThirdCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(30%, -25%);
  }
}

.web-development .ratings-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.web-development .ratings-content__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 63px 60px;
}

.web-development .ratings__title {
  text-align: center;
  color: #f5f5f5;
  font-family: "Inter Tight", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 74px;
  letter-spacing: -1.62px;
}

.web-development .ratings-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.web-development .ratings-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 25px;
  min-height: 227px;
  border-radius: 36px;
  background: rgba(23, 31, 40, 0.5);
  backdrop-filter: blur(16.5px);
}

.web-development .ratings-item__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 20px;
  border: 1px solid #a5df45;
}

.web-development .ratings-item__like-wrap {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.web-development .ratings-item__title {
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}

.web-development .ratings-item__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #a5df45;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

.web-development .ratings-item__value--big {
  font-size: 56px;
  line-height: 40px;
}

.web-development .ratings-item__text {
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.web-development .ratings__link {
  position: relative;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.6px;
}

.web-development .ratings__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  height: 1px;
  width: 100%;
  background-color: #f5f5f5;
}

.web-development .preview__wrap {
  position: relative;
  height: 390px;
  margin-bottom: 120px;
  border-radius: 50px;
  overflow: hidden;
  background: linear-gradient(150deg, rgb(22, 30, 40), rgb(33, 54, 80));
}

.web-development .preview__circle:nth-child(1) {
  position: absolute;
  top: 10%;
  left: 15%;
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(325deg, rgb(17, 93, 145), rgba(165, 223, 69, 0.5));
  filter: blur(80px);
  animation: previewFirstCircle 7s infinite;
}

.web-development .preview__circle:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(325deg, rgb(12, 46, 68), rgba(66, 118, 171, 0.5));
  filter: blur(80px);
  animation: previewSecondCircle 5s infinite;
}

.web-development .preview__circle:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 800px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgb(23, 45, 71), rgba(95, 180, 99, 0.5));
  filter: blur(80px);
  animation: previewThirdCircle 10s infinite;
}

@keyframes previewFirstCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(30%, 25%);
  }
}

@keyframes previewSecondCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(-30%, -25%);
  }
}

@keyframes previewThirdCircle {
  0%, 100% {
    transform: translate(0%, 0%);
  }

  50% {
    transform: translate(30%, -25%);
  }
}

.web-development .preview-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.web-development .preview-content__wrap {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.web-development .preview__title {
  text-align: center;
  color: #f5f5f5;
  font-family: "Inter Tight", sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 600;
  line-height: 90px;
}

.web-development .preview__descr {
  max-width: 521px;
  color: #f5f5f5;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}

.web-development .custom-development__wrap {
  margin-bottom: 120px;
}

.web-development .development-header {
  margin: 0 auto 70px;
  max-width: 630px;
  text-align: center;
}

.web-development .development-header__title {
  margin-bottom: 30px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -1.62px;
}

.web-development .development-header__descr {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.web-development .development-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.web-development .development-item {
  display: flex;
  flex-direction: column;
  gap: 67px;
  min-height: 280px;
  padding: 34px;
  border-radius: 48px;
  background: #ffffff;
  transition: 0.3s ease-in-out;
}

.web-development .development-item:hover {
  background: #161e28;
}

.web-development .development-item:hover .development-item__title {
  color: #ffffff;
}

.web-development .development-item__icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.web-development .development-item__title {
  margin-bottom: 10px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.web-development .development-item__text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.web-development .another-services__title {
  margin-bottom: 70px;
  color: #212121;
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -1.62px;
}

.web-development .services-swiper .services-item {
  background: #ffffff;
  border-radius: 36px;
  transition: 0.3s ease-in-out;
}

.web-development .services-swiper .services-item:hover {
  background: #161e28;
}

.web-development .services-swiper .services-item:hover .services-item__title {
  color: #f5f5f5;
}

.web-development .services-swiper .services-item:hover .services-item__desc-item {
  color: #f5f5f5;
}

.web-development .services-swiper .services-item:hover .services-item__arrow-icon g path:first-child {
  stroke: #f5f5f5;
}

.web-development .services-swiper .services-item:hover .services-item__arrow-icon g path:last-child {
  fill: #f5f5f5;
}

.web-development .services-swiper .services-item__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 35px;
}

.web-development .services-swiper .services-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.web-development .services-swiper .services-item .services-item__arrow-icon {
  flex-shrink: 0;
}

.web-development .services-swiper .services-item .services-item__arrow-icon g path {
  transition: 0.3s ease-in-out;
}

.web-development .services-swiper .services-item__title {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.web-development .services-swiper .services-item__desc-item {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  transition: 0.3s ease-in-out;
}

.web-development .industries-services__wrap {
  margin-bottom: 120px;
}

.web-development .industries-services__title {
  margin-bottom: 70px;
  color: #212121;
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -1.62px;
}

.web-development.industries-services .industries-list {
  display: flex;
  justify-content: space-around;
  gap: 22px;
  list-style: none;
  margin-bottom: 70px;
}

.web-development.industries-services .industries-list__item {
  position: relative;
  padding-left: 20px;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.web-development.industries-services .industries-list__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  background: #a5df45;
  width: 10px;
  height: 10px;
  border-radius: 50px;
}

.web-development.industries-services .services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.web-development.industries-services .services-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 360px;
  padding: 40px;
  border-radius: 48px;
  border: 1px solid #9c9c9c;
  transition: 0.3s ease-in-out;
}

.web-development.industries-services .services-item:hover {
  background: #ffffff;
  border: 1px solid #ffffff;
}

.web-development.industries-services .services-item__title {
  margin-bottom: 14px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.web-development.industries-services .services-item__descr {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.web-development.industries-services .services-item__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.web-development.industries-services .services-item__link-title {
  padding: 12px 16px;
  border-radius: 60px;
  border: 1px solid #9c9c9c;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.54px;
}

.web-development.industries-services .services-item__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #a5df45;
}

.web-development.industries-services .services-item__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.services-page .services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-page .services-item {
  background: #ffffff;
  border-radius: 36px;
  transition: 0.3s ease-in-out;
}

.services-page .services-item:hover {
  background: #161e28;
}

.services-page .services-item:hover .services-item__title {
  color: #f5f5f5;
}

.services-page .services-item:hover .services-item__desc-item {
  color: #f5f5f5;
}

.services-page .services-item:hover .services-item__arrow-icon g path:first-child {
  stroke: #f5f5f5;
}

.services-page .services-item:hover .services-item__arrow-icon g path:last-child {
  fill: #f5f5f5;
}

.services-page .services-item:first-child {
  grid-column: span 2;
}

.services-page .services-item__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 35px;
}

.services-page .services-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.services-page .services-item .services-item__arrow-icon {
  flex-shrink: 0;
}

.services-page .services-item .services-item__arrow-icon g path {
  transition: 0.3s ease-in-out;
}

.services-page .services-item__title {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s ease-in-out;
}

.services-page .services-item__desc-item {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  transition: 0.3s ease-in-out;
}

.blog {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.blog .filter-chips__item.active .filter-chips__item-link {
  color: #a5df45;
}

.blog .filter-chips__item:hover .filter-chips__item-link {
  color: #a5df45;
}

.blog .filter-chips__item-link {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}

.blog-item:nth-child(7n+1) {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
  padding: 26px 42px;
  background: #ffffff;
  border-radius: 30px;
}

.blog-item:nth-child(7n+1) .blog-item__desc {
  grid-column: 1/span 3;
}

.blog-item:nth-child(7n+1) .blog-item__img-wrap {
  grid-column: 4/span 4;
  grid-row: 1;
  min-height: 526px;
  border-radius: 20px;
  overflow: hidden;
}

.blog-item:nth-child(7n+1) .blog-item__img {
  min-height: inherit;
}

.blog-item:nth-child(7n+1) .blog-item__type-item {
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.blog-item:nth-child(7n+1) .blog-item__title {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 130%;
}

.blog-item:nth-child(7n+1) .blog-item__info-text {
  font-size: 18px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item:nth-child(7n+1) .blog-item__date {
  font-size: 16px;
  line-height: 24px;
}

.blog-item:not(:nth-child(7n+1)) {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 525px;
  padding: 22px 20px;
  background: #ffffff;
  border-radius: 20px;
}

.blog-item:not(:nth-child(7n+1)) .blog-item__img-wrap {
  height: 241px;
  border-radius: 14px;
  overflow: hidden;
}

.blog-item:not(:nth-child(7n+1)) .blog-item__type-item {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 18px;
}

.blog-item:not(:nth-child(7n+1)) .blog-item__title {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 125%;
}

.blog-item:not(:nth-child(7n+1)) .blog-item__info-text {
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item:not(:nth-child(7n+1)) .blog-item__date {
  font-size: 14px;
  line-height: 24px;
}

.blog-item.hidden {
  display: none;
}

.blog-item__desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex-grow: 1;
}

.blog-item__img {
  height: inherit;
  object-fit: cover;
  object-position: center;
}

.blog-item__type-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  list-style: none;
}

.blog-item__type-item {
  background: #f5f5f5;
  color: #212121;
  font-family: "Inter", sans-serif;
}

.blog-item__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.blog-item__info-text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.blog-item__date {
  color: #9c9c9c;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.blog-article__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 910px;
  margin: 0 auto 120px;
}

.blog-article .article-image {
  height: 400px;
  overflow: hidden;
  border-radius: 30px;
}

.blog-article .article-image__img {
  object-fit: cover;
  object-position: center;
}

.blog-article .article-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-article .article-box__title {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.blog-article .article-box__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-article .article-box__text {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.blog-article .article-box__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style-position: inside;
}

.blog-article .article-box__item {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.blog-article .article-date {
  color: #9c9c9c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.another-articles .articles-swiper .blog-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 554px;
  padding: 22px 20px;
  background: #ffffff;
  border-radius: 20px;
  grid-column: span 1;
}

.another-articles .articles-swiper .blog-item .blog-item__img-wrap {
  min-height: unset;
  height: 241px;
  border-radius: 14px;
  overflow: hidden;
}

.another-articles .articles-swiper .blog-item .blog-item__type-item {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 18px;
}

.another-articles .articles-swiper .blog-item .blog-item__title {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 125%;
}

.another-articles .articles-swiper .blog-item .blog-item__info-text {
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.another-articles .articles-swiper .blog-item .blog-item__date {
  font-size: 14px;
  line-height: 24px;
}

.technical-support {
  margin-bottom: 80px;
}

.technical-support .page-title {
  text-align: start;
  margin-bottom: 30px;
}

.technical-support__section-title {
  margin-bottom: 32px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.technical-support.preview .preview__wrap {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.technical-support.preview .preview-desc {
  grid-column: span 5;
}

.technical-support.preview .preview-desc__text {
  max-width: 630px;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}

.technical-support.preview .preview-desc__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.technical-support.preview .preview-desc__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid rgba(199, 199, 199, 0.6);
  background: #ffffff;
}

.technical-support.preview .preview-desc__item-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.technical-support.preview .preview-desc__item-title {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.technical-support.preview .preview-image {
  grid-column: span 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technical-support.preview .preview-image__img {
  max-width: 100%;
  max-height: 100%;
}

.technical-support.about .about-desc__text {
  margin-bottom: 16px;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}

.technical-support.about .about-list {
  float: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  margin: 0 0 16px 30px;
  border-radius: 46px;
  background: #ffffff;
  list-style: none;
}

.technical-support.about .about-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.technical-support.about .about-list__item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.technical-support.about .about-list__item-text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.technical-support.reason .reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
}

.technical-support.reason .reason-item__title {
  height: 52px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(156, 156, 156, 0.6);
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.technical-support.reason .reason-item__text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.technical-support.services .services__wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.technical-support.services .services-desc {
  grid-column: span 5;
}

.technical-support.services .services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.technical-support.services .services-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.technical-support.services .services-list__item-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.technical-support.services .services-list__item-text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.technical-support.services .platforms {
  grid-column: span 7;
  padding: 35px 30px;
  border-radius: 46px;
  background: #ffffff;
}

.technical-support.services .platforms .technical-support__section-title {
  margin-bottom: 16px;
}

.technical-support.services .platforms__desc {
  max-width: 490px;
  margin-bottom: 60px;
}

.technical-support.services .platforms__text {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}

.technical-support.services .platforms__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  list-style: none;
}

.technical-support.services .platforms__list-link {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 133%;
  text-decoration-line: underline;
}

.technical-support.ratings .ratings-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 348px;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid #9c9c9c;
  text-align: center;
  cursor: pointer;
}

.technical-support.ratings .ratings-item__img-wrap {
  width: 90px;
  height: 125px;
  border-radius: 5px;
  overflow: hidden;
}

.technical-support.ratings .ratings-item__img {
  height: inherit;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

.technical-support.ratings .ratings-item__title {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 133%;
}

.technical-support.ratings .ratings-item__text {
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.technical-support.ratings .ratings-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(41, 41, 41, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.technical-support.ratings .ratings-modal.show {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}

.technical-support.ratings .ratings-modal__wrap {
  position: relative;
  max-width: 500px;
}

.technical-support.ratings .ratings-modal .ratings-gallery {
  margin-bottom: 40px;
}

.technical-support.ratings .ratings-modal .ratings-gallery__btn-close {
  position: absolute;
  top: -40px;
  right: -40px;
}

.technical-support.ratings .ratings-modal .ratings-gallery__img {
  border-radius: 6px;
}

.technical-support.ratings .ratings-modal .ratings-gallery .swiper-button-next,
.technical-support.ratings .ratings-modal .ratings-gallery .swiper-button-prev {
  color: #ffffff;
}

.technical-support.ratings .ratings-modal .ratings-thumbs__slide {
  border-radius: 6px;
  cursor: pointer;
}

.technical-support.advantages .advantages-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}

.technical-support.advantages .advantages-item {
  display: flex;
  gap: 18px;
}

.technical-support.advantages .advantages-item__icon-wrap {
  flex-shrink: 0;
}

.technical-support.advantages .advantages-item__icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffffff;
  width: 60px;
  height: 60px;
}

.technical-support.advantages .advantages-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.technical-support.advantages .advantages-item__title {
  margin-bottom: 12px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.technical-support.advantages .advantages-item__descr {
  color: #7b7b7b;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.technical-support.prices .prices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.technical-support.prices .prices-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 278px;
  padding: 32px;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.technical-support.prices .prices-item:hover .prices-item__btn {
  background-color: #161e28;
  color: #ffffff;
  border: 1px solid #161e28;
}

.technical-support.prices .prices-item__title {
  margin-bottom: 18px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.technical-support.prices .prices-item__descr {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.5%;
}

.technical-support.prices .prices-item__basement {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.technical-support.prices .prices-item__btn {
  padding: 12px;
  width: 190px;
  display: flex;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid #7b7b7b;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  transition: 0.3s ease-in-out;
}

.technical-support.prices .prices-item__value {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.technical-support.team .team-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.technical-support.team .team-item {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  border-radius: 30px;
  background: #fff;
}

.technical-support.team .team-item__img-wrap {
  position: relative;
  height: 274px;
  border-radius: 30px;
  overflow: hidden;
}

.technical-support.team .team-item__img-note {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 28px;
  border-radius: 21px;
  background: #ffffff;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.technical-support.team .team-item__img {
  object-fit: cover;
  object-position: center;
}

.technical-support.team .team-item__descr {
  padding: 12px 18px 18px;
}

.technical-support.team .team-item__title {
  margin-bottom: 4px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.technical-support.team .team-item__position {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.technical-support.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.technical-support.faq .faq-item {
  padding: 26px;
  border-radius: 20px;
  background: #ffffff;
}

.technical-support.faq .faq-item.active .faq-item__icon {
  transform: rotate(135deg);
}

.technical-support.faq .faq-item__header {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.technical-support.faq .faq-item__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: 0.3s ease-in-out;
}

.technical-support.faq .faq-item__title {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -0.6px;
}

.technical-support.faq .faq-item__content-wrap {
  padding-left: 36px;
  padding-top: 6px;
}

.technical-support.faq .faq-item__descr {
  max-width: 1000px;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.5%;
}

.technical-support.awards .awards-list {
  grid-template-columns: repeat(4, 1fr);
}

.technical-support.awards .awards-achieve__place-title {
  font-size: 13px;
}

.prices__section-title {
  margin-bottom: 40px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 116%;
}

.prices.preview .page-title {
  margin-bottom: 20px;
  text-align: start;
  font-size: 40px;
  line-height: 118%;
}

.prices.preview .preview__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.prices.preview .preview__wrapper__order-button {
  text-align: center;
  width: 190px;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #7b7b7b;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  transition: 0.3s ease-in-out;
  display: none;
}

.prices.preview .preview-description {
  max-width: 520px;
}

.prices.preview .preview-description p {
  margin-bottom: 20px;
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}

.prices.preview .preview-description__order-button {
  display: inline-block;
  text-align: center;
  width: 190px;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #7b7b7b;
  color: #212121;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  transition: 0.3s ease-in-out;
}

.prices.preview .preview-description__order-button:hover {
  border: 1px solid #292929;
  background-color: #292929;
  color: #ffffff;
}

.prices.preview .preview-info {
  width: 50%;
  height: max-content;
  padding: 34px;
  border-radius: 40px;
  background: #ffffff;
}

.prices.preview .preview-info__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: -0.6px;
}

.prices.preview .preview-info__price span {
  font-size: 33px;
}

.prices.preview .preview-info__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prices.preview .preview-info__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prices.preview .preview-info__list li img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.prices.preview .preview-info__list li p {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 133%;
}

.prices.advantages .advantages-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.prices.advantages .advantages-item {
  max-width: 322px;
}

.prices.advantages .advantages-item__icon {
  margin-bottom: 18px;
  width: 30px;
  height: 30px;
}

.prices.advantages .advantages-item__title {
  margin-bottom: 12px;
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.prices.advantages .advantages-item__description {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.prices.variant {
  padding: 50px 0;
}

.prices.variant .variant__pricing {
  display: none;
}

.prices.variant .variant__header {
  text-align: left;
}

.prices.variant .variant__header .variant__title {
  color: #212121;
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 116%;
  margin-bottom: 16px;
}

.prices.variant .variant__header .variant__subtitle {
  color: #858BA0;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.prices.variant .variant__table {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  border: 1px solid #E6E9F5;
  background: white;
}

.prices.variant .variant__col {
  flex: 1;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.prices.variant .variant__col:last-child {
  border-right: none;
}

.prices.variant .variant__col--first {
  flex: 1.5;
  font-weight: 500;
  text-align: left;
}

.prices.variant .variant__col--first .variant__cell {
  justify-content: start;
  padding-left: 33px;
}

.prices.variant .variant__col--highlight {
  position: relative;
  transition: box-shadow ease-in-out;
}

.prices.variant .variant__col--highlight:hover {
  box-shadow: 0 0 0 3px #A5DF45;
  border-radius: 20px;
  margin-left: 1px;
}

.prices.variant .variant__cell {
  padding: 15px;
  font-size: 18px;
  border-bottom: 1px solid #E6E9F5;
  line-height: 26px;
  font-weight: 500;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prices.variant .variant__cell:last-child {
  border-bottom: none;
}

.prices.variant .variant__cell--check {
  width: 19px;
}

.prices.variant .variant__cell--title {
  font-weight: bold;
  padding: 15px;
  text-align: center;
  height: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center !important;
}

.prices.variant .variant__cell--title h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

.prices.variant .variant__cell--title span {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.prices.variant .variant__btn {
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid #5F6065;
  color: #212121;
  font-family: "Inter", sans-serif;
  border-radius: 20px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.prices.variant .variant__btn:hover {
  border: 1px solid #292929;
  background-color: #292929;
  color: #ffffff;
}

.prices.questions {
  padding: 40px 0;
}

.prices.questions .questions__title {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 20px;
}

.prices.questions .questions__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prices.questions .questions__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.prices.questions .questions__item.active .questions__icon {
  transform: rotate(45deg);
}

.prices.questions .questions__item.active .questions__content {
  padding: 0 55px;
}

.prices.questions .questions__btn {
  font-family: "Inter Tight", sans-serif;
  width: 100%;
  padding: 25px 25px;
  font-size: 20px;
  line-height: 25px;
  color: #2B2D33;
  font-weight: 500;
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
}

.prices.questions .questions__icon {
  font-size: 25px;
  font-weight: bold;
  color: #5F6065;
  transition: transform 0.3s ease;
}

.prices.questions .questions__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
  padding: 0 55px;
}

.prices.questions .questions__answer {
  padding-bottom: 25px;
  font-size: 16px;
  line-height: 22px;
  color: #5F6065;
}

.prices {
  margin-bottom: 80px;
}

.prices.about .about-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prices.about .about-list__box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prices.about .about-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prices.about .about-list__item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.prices.about .about-list__item-description {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 133%;
}

.vacancies .vacancies__description {
  max-width: 630px;
  margin: 0 auto 60px;
  color: #212121;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}

.vacancies .vacancies-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vacancies .vacancies-item {
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
}

.vacancies .vacancies-item.active .vacancies-item__icon {
  transform: rotate(180deg);
}

.vacancies .vacancies-item.active .vacancies-item__icon-elem:last-child {
  opacity: 0;
}

.vacancies .vacancies-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.vacancies .vacancies-item__title {
  color: #2b2d33;
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -0.72px;
}

.vacancies .vacancies-item__icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #7b7b7b;
  transition: 0.3s ease-in-out;
}

.vacancies .vacancies-item__icon-elem:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 17px;
  height: 1px;
  border-radius: 8px;
  background-color: #7b7b7b;
}

.vacancies .vacancies-item__icon-elem:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 1px;
  height: 17px;
  border-radius: 8px;
  background-color: #7b7b7b;
  transition: 0.3s ease-in-out;
}

.vacancies .vacancies-item__content-wrapper {
  padding-bottom: 2px;
}

.vacancies .vacancies-item__skills-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  margin-bottom: 40px;
  list-style: none;
}

.vacancies .vacancies-item__skill {
  color: #7b7b7b;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}

.vacancies .vacancies-item__respond {
  width: 190px;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #7b7b7b;
  color: #212121;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  transition: 0.3s ease-in-out;
}

.vacancies .vacancies-item__respond:hover {
  background-color: #292929;
  border: 1px solid #292929;
  color: #ffffff;
}

@media screen and (max-width: 1440px) {
  .another-cases .container {
    padding: 0;
  }

  .another-cases .cases-swiper {
    padding-left: 75px;
  }

  .technical-support.another-cases .technical-support__section-title {
    padding: 0 75px;
  }
}

@media screen and (max-width: 1439px) {
  .main.main-page {
    gap: 72px;
  }

  .container {
    max-width: 1024px;
    padding: 0 42px;
  }

  .page-title {
    margin-bottom: 36px;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.2px;
  }

  .section__title {
    margin-bottom: 36px;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.2px;
  }

  .socials__item-icon {
    width: 34px;
    height: 34px;
  }

  .filter-chips {
    margin-bottom: 36px;
  }

  .awards-list {
    gap: 16px;
  }

  .awards-achieve {
    padding: 13px;
    border-radius: 18px;
    min-height: 185px;
  }

  .awards-achieve__header {
    gap: 8px;
  }

  .awards-achieve__place {
    width: 76px;
    height: 71px;
  }

  .awards-achieve__title {
    font-size: 11px;
  }

  .awards-achieve__basement {
    gap: 4px;
    padding: 3px 12px;
    border-radius: 20px;
  }

  .awards-achieve__icon {
    width: 13px;
    height: 14px;
  }

  .awards-achieve__presenter {
    font-size: 8px;
  }

  .awards-achieve__place-value {
    font-size: 32px;
  }

  .awards-achieve__place-title {
    font-size: 9px;
  }

  .awards-certificate {
    border-radius: 18px;
    min-height: 185px;
  }

  .platforms-list {
    gap: 32px;
  }

  .feedback-item {
    padding: 24px;
  }

  .feedback-item {
    min-height: 436px;
  }

  .feedback-item__descr {
    font-size: 16px;
  }

  .feedback-item__author-name {
    font-size: 14px;
  }

  .feedback-item__author-position {
    font-size: 14px;
  }

  .header .callback-btn,
  .header .callback-btn-link{
    font-size: 14px;
    padding: 15px 29px;
  }

  .logo {
    width: 72.985px;
    height: 59.047px;
  }

  .navbar__list {
    gap: 36px;
  }

  .navbar__link {
    font-size: 14px;
    line-height: 20px;
  }

  .user-block {
    gap: 24px;
  }

  .language-select__btn {
    font-size: 16px;
  }

  .footer__wrap {
    padding: 40px;
    gap: 24px;
    margin-bottom: 40px;
  }

  .footer__left-box .logo {
    width: 80px;
    height: 63.119px;
  }

  .footer__copyright {
    font-size: 11px;
    line-height: 18px;
  }

  .footer-nav__title {
    font-size: 16px;
    line-height: normal;
  }

  .footer-nav__item {
    font-size: 14px;
    line-height: 21px;
  }

  .callback-form {
    width: 460px;
  }

  .main-page .cases-list {
    gap: 40px 20px;
  }

  .main-page .cases-card {
    gap: 20px;
  }

  .main-page .cases-card__img-wrap {
    height: 392px;
  }

  .main-page .cases-card__desc-title {
    font-size: 18px;
    line-height: 24px;
  }

  .main-page .cases-card__desc-text {
    font-size: 14px;
    line-height: 20px;
  }

  .main-page .services-list {
    gap: 26px 20px;
  }

  .main-page .services-item__wrap {
    min-height: 210px;
    padding: 26px;
  }

  .main-page .services-item .services-item__arrow-icon {
    width: 26px;
    height: 26px;
  }

  .main-page .services-item__title {
    font-size: 20px;
    line-height: 23px;
  }

  .main-page .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .main-page .clients-list {
    gap: 20px;
  }

  .main-page .clients-item {
    height: 110px;
  }

  .main-page .clients-link {
    height: 110px;
  }

  .main-page .clients-link__title {
    font-size: 18px;
    line-height: 16px;
  }

  .main-page .preview__wrap {
    height: 470px;
  }

  .main-page .preview__title {
    font-size: 40px;
    line-height: 50px;
  }

  .main-page .ratings__wrap {
    min-height: 404px;
  }

  .main-page .ratings-content__wrap {
    padding: 46px 34px;
    gap: 30px;
  }

  .main-page .ratings__title {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.2px;
  }

  .main-page .ratings-list {
    gap: 12px;
  }

  .main-page .ratings-item {
    padding: 16px;
    min-height: 172px;
  }

  .main-page .ratings-item__header {
    padding: 7px 12px;
    gap: 5px;
  }

  .main-page .ratings-item__like-wrap {
    width: 13px;
    height: 13px;
  }

  .main-page .ratings-item__title {
    font-size: 12px;
    line-height: 14px;
  }

  .main-page .ratings-item__value {
    font-size: 16px;
    line-height: 28px;
  }

  .main-page .ratings-item__value--big {
    font-size: 34px;
    line-height: 28px;
  }

  .main-page .ratings-item__text {
    font-size: 10px;
    line-height: 13px;
  }

  .contacts-content {
    gap: 20px;
  }

  .contacts-box__link {
    font-size: 34px;
    line-height: 36px;
  }

  .achievements .achievements-list {
    gap: 36px 20px;
  }

  .achievements .achievements-card {
    height: 525px;
    gap: 16px;
  }

  .achievements .achievements-card__img-wrap {
    height: 426px;
  }

  .achievements .achievements-card__title {
    margin-bottom: 4px;
  }

  .case-about .stack-list {
    margin-bottom: 36px;
  }

  .case-about .case-swiper {
    height: 508px;
    margin-bottom: 36px;
  }

  .case-about .case-swiper .swiper-button-next {
    right: 30px;
  }

  .case-about .case-swiper .swiper-button-prev {
    left: 30px;
  }

  .case-about .case-descr {
    gap: 50px;
    margin-bottom: 72px;
  }

  .case-about .descr-item {
    grid-template-columns: repeat(4, 1fr);
  }

  .case-about .descr-item__title {
    font-size: 22px;
    line-height: 26px;
  }

  .case-about .descr-item__info-box {
    grid-column: span 3;
  }

  .case-about .descr-item__text {
    font-size: 16px;
    line-height: 22px;
    padding-right: 0px;
  }

  .case-about .descr-item__technologies-list {
    gap: 16px;
  }

  .case-about .descr-item__technology {
    width: 160px;
    height: 90px;
  }

  .case-about .descr-item__technology-wrap {
    max-height: 50px;
    max-width: 100px;
  }

  .case-about .descr-item__achievements-list {
    gap: 16px;
  }

  .case-about .descr-item__achieve {
    padding: 13px;
    border-radius: 18px;
    min-height: 185px;
  }

  .case-about .descr-item__achieve-header {
    gap: 8px;
  }

  .case-about .descr-item__achieve-place {
    width: 76px;
    height: 71px;
  }

  .case-about .descr-item__achieve-title {
    font-size: 11px;
  }

  .case-about .descr-item__achieve-basement {
    gap: 4px;
    padding: 3px 12px;
    border-radius: 20px;
  }

  .case-about .descr-item__achieve-icon {
    width: 13px;
    height: 14px;
  }

  .case-about .descr-item__achieve-presenter {
    font-size: 8px;
  }

  .case-about .descr-item__place-value {
    font-size: 32px;
  }

  .case-about .descr-item__place-title {
    font-size: 9px;
  }

  .case-about .descr-item__certificate {
    border-radius: 18px;
    min-height: 185px;
  }

  .another-cases .cases-card {
    gap: 20px;
  }

  .another-cases .cases-card__img-wrap {
    height: 245px;
  }

  .another-cases .cases-card__desc-title {
    font-size: 18px;
    line-height: 24px;
  }

  .another-cases .cases-card__desc-text {
    font-size: 14px;
    line-height: 20px;
  }

  .another-cases .cases-swiper {
    padding-left: 42px;
  }

  .cases-page.cases .cases-list {
    gap: 40px 20px;
  }

  .cases-page.cases .cases-card {
    gap: 20px;
  }

  .cases-page.cases .cases-card__img-wrap {
    height: 392px;
  }

  .cases-page.cases .cases-card__desc-title {
    font-size: 18px;
    line-height: 24px;
  }

  .cases-page.cases .cases-card__desc-text {
    font-size: 14px;
    line-height: 20px;
  }

  .clients-page.clients .clients-list {
    gap: 20px;
  }

  .clients-page.clients .clients-item {
    height: 110px;
  }

  .web-development .platforms__wrap {
    margin-bottom: 70px;
  }

  .web-development .platforms-list {
    gap: 32px;
  }

  .web-development .ratings__wrap {
    min-height: 404px;
    margin-bottom: 70px;
  }

  .web-development .ratings-content__wrap {
    padding: 46px 34px;
    gap: 30px;
  }

  .web-development .ratings__title {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.2px;
  }

  .web-development .ratings-list {
    gap: 12px;
  }

  .web-development .ratings-item {
    padding: 16px;
    min-height: 172px;
  }

  .web-development .ratings-item__header {
    padding: 7px 12px;
    gap: 5px;
  }

  .web-development .ratings-item__like-wrap {
    width: 13px;
    height: 13px;
  }

  .web-development .ratings-item__title {
    font-size: 12px;
    line-height: 14px;
  }

  .web-development .ratings-item__value {
    font-size: 16px;
    line-height: 28px;
  }

  .web-development .ratings-item__value--big {
    font-size: 34px;
    line-height: 28px;
  }

  .web-development .ratings-item__text {
    font-size: 10px;
    line-height: 13px;
  }

  .web-development .preview__wrap {
    height: 290px;
    margin-bottom: 70px;
  }

  .web-development .preview__title {
    font-size: 70px;
    line-height: 70px;
  }

  .web-development .preview__descr {
    font-size: 16px;
    line-height: 20px;
  }

  .web-development .custom-development__wrap {
    margin-bottom: 70px;
  }

  .web-development .development-header {
    max-width: 460px;
    margin: 0 auto 36px;
  }

  .web-development .development-header__title {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 47px;
    letter-spacing: -1.2px;
  }

  .web-development .development-header__descr {
    font-size: 14px;
    line-height: 18px;
  }

  .web-development .development-list {
    gap: 20px;
  }

  .web-development .development-item {
    padding: 26px;
    min-height: 240px;
    gap: 48px;
  }

  .web-development .development-item__icon-wrap {
    width: 34px;
    height: 34px;
  }

  .web-development .development-item__title {
    font-size: 22px;
  }

  .web-development .development-item__text {
    font-size: 14px;
    line-height: 18px;
  }

  .web-development .another-services__title {
    margin-bottom: 34px;
    font-size: 40px;
    line-height: 47px;
    letter-spacing: -1.2px;
  }

  .web-development .services-swiper .services-item__wrap {
    min-height: 210px;
    padding: 26px;
  }

  .web-development .services-swiper .services-item .services-item__arrow-icon {
    width: 26px;
    height: 26px;
  }

  .web-development .services-swiper .services-item__title {
    font-size: 20px;
    line-height: 23px;
  }

  .web-development .services-swiper .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .web-development .industries-services__wrap {
    margin-bottom: 70px;
  }

  .web-development .industries-services__title {
    margin-bottom: 36px;
    font-size: 40px;
    line-height: 47px;
    letter-spacing: -1.2px;
  }

  .web-development.industries-services .industries-list__item {
    font-size: 18px;
    padding-left: 14px;
  }

  .web-development.industries-services .industries-list__item::before {
    width: 8px;
    height: 8px;
  }

  .web-development.industries-services .services-list {
    gap: 20px;
  }

  .web-development.industries-services .services-item {
    min-height: 265px;
    padding: 30px;
    border-radius: 36px;
  }

  .web-development.industries-services .services-item__title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .web-development.industries-services .services-item__descr {
    font-size: 14px;
  }

  .web-development.industries-services .services-item__link-title {
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: -0.42px;
  }

  .web-development.industries-services .services-item__icon-wrap {
    width: 40px;
    height: 40px;
  }

  .web-development.industries-services .services-item__icon {
    width: 24px;
    height: 24px;
  }

  .services-page .services-list {
    gap: 26px 20px;
  }

  .services-page .services-item__wrap {
    min-height: 210px;
    padding: 26px;
  }

  .services-page .services-item .services-item__arrow-icon {
    width: 26px;
    height: 26px;
  }

  .services-page .services-item__title {
    font-size: 20px;
    line-height: 23px;
  }

  .services-page .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-list {
    gap: 40px 20px;
  }

  .blog-item:nth-child(7n+1) {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 30px;
    grid-column: span 3;
  }

  .blog-item:nth-child(7n+1) .blog-item__desc {
    grid-column: span 1;
  }

  .blog-item:nth-child(7n+1) .blog-item__img-wrap {
    grid-column: 2/span 1;
    min-height: 470px;
  }

  .blog-item:nth-child(7n+1) .blog-item__title {
    font-size: 26px;
  }

  .blog-item:nth-child(7n+1) .blog-item__info-text {
    font-size: 16px;
  }

  .blog-item:nth-child(7n+1) .blog-item__date {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-item:not(:nth-child(7n+1)) {
    padding: 20px;
    min-height: 488px;
    gap: 16px;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__img-wrap {
    height: 210px;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__type-item {
    padding: 6px 12px;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__info-text {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-item__desc {
    gap: 16px;
  }

  .blog-article__wrap {
    max-width: 780px;
    margin: 0 auto 72px;
  }

  .blog-article .article-image {
    height: 325px;
  }

  .blog-article .article-date {
    max-width: 780px;
  }

  .another-articles .articles-swiper .blog-item {
    padding: 20px;
    min-height: 530px;
    gap: 16px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__img-wrap {
    height: 210px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__type-item {
    padding: 6px 12px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__info-text {
    font-size: 14px;
    line-height: 20px;
  }

  .technical-support {
    margin-bottom: 70px;
  }

  .technical-support__section-title {
    margin-bottom: 26px;
    font-size: 26px;
  }

  .technical-support.preview .preview-desc__text {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .technical-support.about .about-desc__text {
    font-size: 18px;
  }

  .technical-support.about .about-list{
    max-width: 50%;
  }

  .technical-support.about .about-list__item-text {
    font-size: 16px;
  }

  .technical-support.reason .reason-list {
    gap: 20px;
  }

  .technical-support.reason .reason-item__title {
    font-size: 16px;
  }

  .technical-support.reason .reason-item__text {
    font-size: 14px;
  }

  .technical-support.services .services-list__item-icon {
    width: 20px;
    height: 20px;
  }

  .technical-support.services .services-list__item-text {
    font-size: 16px;
  }

  .technical-support.services .platforms__desc {
    margin-bottom: 54px;
  }

  .technical-support.services .platforms__text {
    font-size: 18px;
  }

  .technical-support.ratings .ratings-item__img{
    border-radius: 20px;
  }

  .technical-support.ratings .ratings-modal__wrap {
    max-width: 380px;
  }

  .technical-support.advantages .advantages-list {
    gap: 24px;
  }

  .technical-support.advantages .advantages-item__title {
    font-size: 16px;
  }

  .technical-support.prices .prices-list {
    gap: 20px;
  }

  .technical-support.prices .prices-item {
    padding: 28px;
  }

  .technical-support.prices .prices-item__descr {
    font-size: 14px;
  }

  .technical-support.prices .prices-item__basement {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
  }

  .technical-support.team .team-list {
    gap: 20px;
  }

  .technical-support.team .team-item {
    min-height: 255px;
    border-radius: 22px;
  }

  .technical-support.team .team-item__img-wrap {
    height: 200px;
    border-radius: 22px;
  }

  .technical-support.team .team-item__img-note {
    font-size: 12px;
    padding: 4px 16px;
    top: 10px;
    left: 10px;
  }

  .technical-support.team .team-item__descr {
    padding: 8px 14px 14px;
  }

  .technical-support.team .team-item__title {
    font-size: 16px;
  }

  .technical-support.team .team-item__position {
    font-size: 12px;
  }

  .technical-support.faq .faq-item__title {
    font-size: 18px;
  }

  .technical-support.faq .faq-item__descr {
    font-size: 14px;
  }

  .technical-support.another-cases .technical-support__section-title {
    padding: 0 42px;
  }

  .technical-support.awards .awards-achieve__place {
    width: 116px;
    height: 110px;
  }

  .technical-support.awards .awards-achieve__place-value {
    font-size: 50px;
  }

  .technical-support.awards .awards-achieve__title {
    font-size: 14px;
  }

  .technical-support.awards .awards-achieve__presenter {
    font-size: 12px;
  }

  .technical-support.awards .awards-achieve__icon {
    width: 20px;
    height: 20px;
  }

  .vacancies .vacancies__description {
    max-width: 460px;
    margin: 0 auto 36px;
  }

  .vacancies .vacancies-item__skills-list {
    margin-bottom: 16px;
  }

  .vacancies .vacancies-item__skill {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .prices.variant .variant__table {
    flex-wrap: wrap;
  }

  .prices.variant .variant__wrapper {
    display: none;
  }

  .prices.variant .variant__pricing {
    display: block;
  }

  .prices.variant .variant__pricing .pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }

  .prices.variant .variant__pricing .pricing__card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .prices.variant .variant__pricing .pricing__card:hover {
    transform: translateY(-5px);
  }

  .prices.variant .variant__pricing .pricing__title {
    font-size: 20px;
    font-weight: 500;
    font-family: "Inter Tight", sans-serif;
    margin-bottom: 10px;
    color: #2C2C2C;
  }

  .prices.variant .variant__pricing .pricing__desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
  }

  .prices.variant .variant__pricing .pricing__price {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
  }

  .prices.variant .variant__pricing .pricing__btn {
    background: none;
    border: 1px solid #7b7b7b;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
  }

  .prices.variant .variant__pricing .pricing__btn:hover {
    background: black;
    color: white;
  }

  .prices.variant .variant__col {
    flex: 1 1 50%;
    border-bottom: 1px solid #e0e0e0;
  }

  .prices.variant .variant__col--first {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .main.main-page {
    gap: 68px;
  }

  .container {
    max-width: 768px;
    padding: 0 34px;
  }

  .page-title {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.96px;
  }

  .section__title {
    margin-bottom: 34px;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.96px;
  }

  .socials__item-icon {
    width: 26px;
    height: 26px;
  }

  .breadcrumbs__item {
    font-size: 14px;
    line-height: 20px;
  }

  .filter-chips {
    margin-bottom: 34px;
    gap: 10px 14px;
  }

  .filter-chips__item {
    font-size: 16px;
    line-height: 20px;
  }

  .awards-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .awards-achieve {
    padding: 20px;
    min-height: 270px;
  }

  .awards-achieve__header {
    gap: 20px;
  }

  .awards-achieve__place {
    width: 109px;
    height: 102px;
  }

  .awards-achieve__title {
    font-size: 14px;
  }

  .awards-achieve__basement {
    border-radius: 28px;
    gap: 6px;
    padding: 5px 12px;
  }

  .awards-achieve__icon {
    width: 19px;
    height: 21px;
  }

  .awards-achieve__presenter {
    font-size: 12px;
  }

  .awards-achieve__place-value {
    font-size: 46px;
  }

  .awards-achieve__place-title {
    font-size: 14px;
  }

  .awards-certificate {
    border-radius: 20px;
    min-height: 270px;
  }

  .platforms-list {
    gap: 20px 65px;
  }

  .logo {
    width: 55.034px;
    height: 44.523px;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 85px;
    right: 0;
    z-index: 2;
    animation: navbarFade 0.3s ease-in-out;
  }

  .navbar.show {
    display: block;
  }

@keyframes navbarFade {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
}

  .navbar__list {
    display: flex;
    flex-direction: column;
    min-width: 220px;
    gap: 24px;
    padding: 34px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 7px 50px 0px rgba(100, 100, 111, 0.1);
  }

  .navbar__link {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
  }

  .language-select__btn {
    font-size: 14px;
    line-height: normal;
  }

  .language-options__item-link {
    font-size: 14px;
    line-height: normal;
  }

  .burger-menu {
    display: flex;
  }

  .footer__wrap {
    padding: 36px;
    margin-bottom: 24px;
  }

  .footer__left-box .logo {
    width: 60.837px;
    height: 48px;
  }

  .footer-nav__item {
    font-size: 12px;
    line-height: 16px;
  }

  .main-page .cases-list {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .main-page .cases-card {
    padding: 15px 15px 28px 15px;
  }

  .main-page .cases-card__img-wrap {
    height: 416px;
  }

  .main-page .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .main-page .services-item:first-child {
    grid-column: span 1;
  }

  .main-page .services-item__wrap {
    min-height: 188px;
  }

  .main-page .services-item__title {
    font-size: 18px;
    line-height: normal;
  }

  .main-page .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .main-page .clients-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-page .clients-link__title {
    font-size: 16px;
    line-height: 16px;
  }

  .main-page .preview__wrap {
    height: 385px;
  }

  .main-page .preview-list__item {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 16px;
  }

  .main-page .preview__title {
    font-size: 30px;
    line-height: 40px;
  }

  .main-page .ratings__wrap {
    min-height: 701px;
  }

  .main-page .ratings-content__wrap {
    padding: 48px 70px;
  }

  .main-page .ratings__title {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.96px;
  }

  .main-page .ratings-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .main-page .ratings-item {
    padding: 25px;
    min-height: 227px;
  }

  .main-page .ratings-item__header {
    padding: 10px 12px;
    gap: 8px;
  }

  .main-page .ratings-item__like-wrap {
    width: 18px;
    height: 18px;
  }

  .main-page .ratings-item__title {
    font-size: 14px;
    line-height: 15px;
  }

  .main-page .ratings-item__value {
    font-size: 20px;
    line-height: 40px;
  }

  .main-page .ratings-item__value--big {
    font-size: 45px;
    line-height: 40px;
  }

  .main-page .ratings-item__text {
    font-size: 12px;
    line-height: 16px;
  }

  .contacts-content {
    grid-template-columns: 1fr;
  }

  .contacts-block {
    gap: 30px;
    padding: 46px;
  }

  .contacts-box {
    gap: 24px;
  }

  .contacts-box__link {
    font-size: 26px;
    line-height: 28px;
  }

  .contacts-details__item {
    font-size: 18px;
    line-height: 24px;
  }

  .contacts .callback-form {
    width: 100%;
  }

  .achievements .achievements-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 19px;
  }

  .achievements .achievements-card {
    height: 565px;
  }

  .achievements .achievements-card__img-wrap {
    height: 477px;
  }

  .achievements .achievements-card__title {
    font-size: 18px;
    line-height: 24px;
  }

  .achievements .achievements-card__desc {
    font-size: 14px;
    line-height: 20px;
  }

  .case-about .stack-list {
    margin-bottom: 36px;
  }

  .case-about .stack-list__item {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .case-about .case-swiper {
    height: 379px;
  }

  .case-about .case-swiper .swiper-button-next,
  .case-about .case-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .case-about .case-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .case-about .case-swiper .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
  }

  .case-about .case-descr {
    margin-bottom: 68px;
  }

  .case-about .descr-item {
    grid-template-columns: repeat(7, 1fr);
  }

  .case-about .descr-item__title-box {
    grid-column: span 2;
  }

  .case-about .descr-item__title {
    font-size: 20px;
    line-height: 23px;
  }

  .case-about .descr-item__info-box {
    grid-column: span 5;
  }

  .case-about .descr-item__text {
    font-size: 14px;
    line-height: 20px;
  }

  .case-about .descr-item__technologies-list {
    gap: 30px;
  }

  .case-about .descr-item__technology {
    width: 140px;
    height: 80px;
  }

  .case-about .descr-item__technology-wrap {
    max-height: 45px;
    max-width: 90px;
  }

  .case-about .descr-item__achievements-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .case-about .descr-item__achieve {
    padding: 20px;
    min-height: 270px;
  }

  .case-about .descr-item__achieve-header {
    gap: 20px;
  }

  .case-about .descr-item__achieve-place {
    width: 109px;
    height: 102px;
  }

  .case-about .descr-item__achieve-title {
    font-size: 14px;
  }

  .case-about .descr-item__achieve-basement {
    border-radius: 28px;
    gap: 6px;
    padding: 5px 12px;
  }

  .case-about .descr-item__achieve-icon {
    width: 19px;
    height: 21px;
  }

  .case-about .descr-item__achieve-presenter {
    font-size: 12px;
  }

  .case-about .descr-item__place-value {
    font-size: 46px;
  }

  .case-about .descr-item__place-title {
    font-size: 14px;
  }

  .case-about .descr-item__certificate {
    border-radius: 20px;
    min-height: 270px;
  }

  .another-cases .cases-card {
    padding: 15px;
    gap: 10px;
  }

  .another-cases .cases-card__img-wrap {
    height: 416px;
  }

  .cases-page.cases .filter-chips__item-link {
    font-size: 16px;
    line-height: 20px;
  }

  .cases-page.cases .cases-list {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .cases-page.cases .cases-card {
    padding: 15px 15px 28px 15px;
  }

  .cases-page.cases .cases-card__img-wrap {
    height: 416px;
  }

  .clients-page.clients .clients-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .web-development .platforms-list {
    flex-wrap: wrap;
    gap: 20px 65px;
  }

  .web-development .ratings__wrap {
    min-height: 701px;
  }

  .web-development .ratings-content__wrap {
    padding: 48px 70px;
  }

  .web-development .ratings__title {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.96px;
  }

  .web-development .ratings-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .web-development .ratings-item {
    padding: 25px;
    min-height: 227px;
  }

  .web-development .ratings-item__header {
    padding: 10px 12px;
    gap: 8px;
  }

  .web-development .ratings-item__like-wrap {
    width: 18px;
    height: 18px;
  }

  .web-development .ratings-item__title {
    font-size: 14px;
    line-height: 15px;
  }

  .web-development .ratings-item__value {
    font-size: 20px;
    line-height: 40px;
  }

  .web-development .ratings-item__value--big {
    font-size: 45px;
    line-height: 40px;
  }

  .web-development .ratings-item__text {
    font-size: 12px;
    line-height: 16px;
  }

  .web-development .preview__wrap {
    height: 250px;
  }

  .web-development .preview__title {
    font-size: 56px;
    line-height: 56px;
  }

  .web-development .preview__descr {
    max-width: 460px;
    font-size: 14px;
    line-height: 18px;
  }

  .web-development .development-header__title {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.96px;
  }

  .web-development .development-item {
    padding: 20px;
    gap: 40px;
  }

  .web-development .development-item__icon-wrap {
    width: 26px;
    height: 26px;
  }

  .web-development .development-item__title {
    font-size: 18px;
  }

  .web-development .another-services__title {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.96px;
  }

  .web-development .services-swiper .services-item__wrap {
    min-height: 188px;
  }

  .web-development .services-swiper .services-item__title {
    font-size: 18px;
    line-height: normal;
  }

  .web-development .services-swiper .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .web-development .industries-services__title {
    margin-bottom: 34px;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.96px;
  }

  .web-development.industries-services .industries-list {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .web-development.industries-services .industries-list__item {
    font-size: 16px;
    padding-left: 12px;
  }

  .web-development.industries-services .industries-list__item::before {
    width: 6px;
    height: 6px;
  }

  .web-development.industries-services .services-item {
    min-height: 235px;
    padding: 17px;
    border-radius: 34px;
  }

  .web-development.industries-services .services-item__title {
    font-size: 18px;
  }

  .web-development.industries-services .services-item__descr {
    font-size: 13px;
  }

  .web-development.industries-services .services-item__link-title {
    padding: 6px 8px;
    font-size: 10px;
    letter-spacing: -0.36px;
  }

  .web-development.industries-services .services-item__icon-wrap {
    width: 30px;
    height: 30px;
  }

  .web-development.industries-services .services-item__icon {
    width: 16px;
    height: 16px;
  }

  .services-page .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .services-page .services-item:first-child {
    grid-column: span 1;
  }

  .services-page .services-item__wrap {
    min-height: 188px;
  }

  .services-page .services-item__title {
    font-size: 18px;
    line-height: normal;
  }

  .services-page .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .blog .filter-chips__item-link {
    font-size: 16px;
    line-height: 20px;
  }

  .blog-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
  }

  .blog-item:nth-child(7n+1) {
    padding: 16px;
    grid-column: span 2;
  }

  .blog-item:nth-child(7n+1) .blog-item__type-item {
    padding: 6px 12px;
    font-size: 12px;
  }

  .blog-item:nth-child(7n+1) .blog-item__title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .blog-item:nth-child(7n+1) .blog-item__info-text {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-item:not(:nth-child(7n+1)) {
    min-height: 525px;
    padding: 16px;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__img-wrap {
    height: 245px;
  }

  .blog-article__wrap {
    max-width: 100%;
    gap: 34px;
  }

  .blog-article .article-box {
    gap: 16px;
  }

  .blog-article .article-box__title {
    font-size: 24px;
  }

  .blog-article .article-box__text {
    font-size: 16px;
  }

  .blog-article .article-box__item {
    font-size: 16px;
  }

  .blog-article .article-date {
    max-width: 100%;
    gap: 34px;
  }

  .another-articles .articles-swiper .blog-item {
    min-height: 540px;
    padding: 16px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__img-wrap {
    height: 245px;
  }

  .technical-support {
    margin-bottom: 40px;
  }

  .technical-support__section-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .technical-support.preview .preview-desc__text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .technical-support.preview .preview-desc__item {
    gap: 6px;
    padding: 12px 18px;
  }

  .technical-support.preview .preview-desc__item-icon {
    width: 14px;
    height: 14px;
  }

  .technical-support.preview .preview-desc__item-title {
    font-size: 14px;
  }

  .technical-support.about .about-desc__text {
    font-size: 16px;
  }

  .technical-support.about .about-list {
    padding: 25px;
    max-width: 340px;
  }

  .technical-support.about .about-list__item-icon {
    width: 18px;
    height: 18px;
  }

  .technical-support.about .about-list__item-text {
    font-size: 14px;
  }

  .technical-support.reason .reason-item__title {
    font-size: 14px;
  }

  .technical-support.reason .reason-item__text {
    font-size: 12px;
  }

  .technical-support.services .services-desc {
    grid-column: span 6;
  }

  .technical-support.services .services-list__item-icon {
    width: 18px;
    height: 18px;
  }

  .technical-support.services .services-list__item-text {
    font-size: 14px;
  }

  .technical-support.services .platforms {
    grid-column: span 6;
    padding: 25px;
  }

  .technical-support.services .platforms .technical-support__section-title {
    margin-bottom: 12px;
  }

  .technical-support.services .platforms__desc {
    margin-bottom: 12px;
  }

  .technical-support.services .platforms__text {
    font-size: 16px;
  }

  .technical-support.services .platforms__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .technical-support.services .platforms__list-link {
    font-size: 16px;
  }

  .technical-support.ratings .ratings-modal__wrap {
    max-width: 525px;
  }

  .technical-support.ratings .ratings-item__img{
    border-radius: 15px;
  }

  .technical-support.advantages .advantages-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .technical-support.advantages .advantages-list {
    grid-template-columns: 1fr;
  }

  .technical-support.prices .prices-list {
    grid-template-columns: 1fr;
  }

  .technical-support.prices .prices-item {
    min-height: 180px;
  }

  .technical-support.prices .prices-item__basement {
    flex-direction: row;
    align-items: center;
  }

  .technical-support.prices .prices-item__btn {
    padding: 10px;
  }

  .technical-support.team .team-item {
    min-height: 200px;
  }

  .technical-support.team .team-item__img-wrap {
    height: 142px;
  }

  .technical-support.team .team-item__title {
    font-size: 14px;
  }

  .technical-support.another-cases .cases-card__img-wrap {
    height: 300px;
  }

  .technical-support.awards .awards-achieve {
    padding: 12px;
    min-height: 220px;
    gap: 10px;
  }

  .technical-support.awards .awards-achieve__header {
    gap: 10px;
  }

  .technical-support.awards .awards-achieve__place {
    width: 85px;
    height: 80px;
  }

  .technical-support.awards .awards-achieve__place-value {
    font-size: 36px;
  }

  .technical-support.awards .awards-achieve__place-title {
    font-size: 10px;
  }

  .technical-support.awards .awards-achieve__title {
    font-size: 12px;
  }

  .technical-support.awards .awards-achieve__basement {
    padding: 5px;
  }

  .technical-support.awards .awards-achieve__presenter {
    font-size: 10px;
  }

  .technical-support.awards .awards-achieve__icon {
    width: 12px;
    height: 12px;
  }

  .technical-support.awards .awards-certificate {
    min-height: 220px;
  }

  .prices.preview .preview__wrapper {
    gap: 20px;
  }

  .prices.advantages .advantages-list {
    display: block;
  }

  .prices.about .about-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .vacancies .vacancies__description {
    max-width: 100%;
    font-size: 16px;
  }

  .vacancies .vacancies-list {
    gap: 20px;
  }

  .vacancies .vacancies-item {
    padding: 24px;
  }

  .vacancies .vacancies-item__title {
    font-size: 22px;
  }

  .vacancies .vacancies-item__respond {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .prices {
    margin-bottom: 46px;
  }

  .prices__section-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .prices.preview .page-title {
    font-size: 23px;
  }

  .prices.preview .preview__wrapper {
    display: block;
  }

  .prices.preview .preview__wrapper__order-button {
    width: 160px;
    font-size: 14px;
    display: block;
  }

  .prices.preview .preview-description p {
    font-size: 14px;
  }

  .prices.preview .preview-description__order-button {
    display: none;
  }

  .prices.preview .preview-info {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 13px;
    border-radius: 20px;
  }

  .prices.preview .preview-info__price {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .prices.preview .preview-info__price span {
    font-size: 22px;
  }

  .prices.preview .preview-info__list li img {
    width: 16px;
    height: 16px;
  }

  .prices.preview .preview-info__list li p {
    font-size: 14px;
  }

  .prices.advantages .advantages-item {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .prices.advantages .advantages-item__icon {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
  }

  .prices.advantages .advantages-item__title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .prices.advantages .advantages-item__description {
    font-size: 14px;
  }

  .prices.variant {
    padding: unset;
  }

  .prices.questions {
    padding: unset;
  }

  .prices.questions .questions__btn {
    padding: 15px 20px;
    font-size: 16px;
    white-space: unset;
  }

  .prices.questions .questions__content {
    padding: 0 48px;
  }

  .prices.questions .questions__answer {
    font-size: 14px;
  }

  .prices.about .about-list {
    display: block;
  }

  .prices.about .about-list__box {
    margin-bottom: 6px;
    gap: 6px;
  }

  .prices.about .about-list__item-icon {
    width: 14px;
    height: 14px;
  }

  .prices.about .about-list__item-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .prices.variant .variant__pricing .pricing {
    padding: unset;
  }

  .prices.variant .variant__pricing .pricing__title {
    font-size: 16px;
  }

  .prices.variant .variant__pricing .pricing__price {
    font-size: 14px;
  }

  .prices.variant .variant__wrapper {
    padding: 20px;
  }

  .prices.variant .variant__col {
    flex: 1 1 100%;
    border-right: none;
  }

  .prices.variant .variant__cell {
    font-size: 12px;
    padding: 10px;
    height: auto;
  }

  .prices.variant .variant__cell--title {
    height: auto;
  }

  .prices.variant .variant__btn {
    font-size: 12px;
    padding: 6px 10px;
  }
}

@media screen and (max-width: 767px) {
  .main.main-page {
    gap: 36px;
  }

  .container {
    padding: 0 20px;
  }

  .page-title {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.6px;
  }

  .section__title {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -0.6px;
  }

  .callback-success {
    width: 320px;
  }

  .breadcrumbs {
    margin: 28px 0 16px;
  }

  .breadcrumbs__item {
    font-size: 12px;
    line-height: 18px;
  }

  .filter-chips {
    margin-bottom: 32px;
    gap: 10px;
  }

  .filter-chips__item {
    font-size: 14px;
    line-height: 20px;
  }

  .awards-list {
    gap: 10px;
  }

  .awards-achieve {
    padding: 12px;
    border-radius: 16px;
    min-height: 180px;
  }

  .awards-achieve__header {
    gap: 12px;
  }

  .awards-achieve__place {
    width: 73px;
    height: 69px;
  }

  .awards-achieve__title {
    font-size: 10px;
  }

  .awards-achieve__basement {
    gap: 4px;
    padding: 3px 12px;
  }

  .awards-achieve__icon {
    width: 13px;
    height: 14px;
  }

  .awards-achieve__presenter {
    font-size: 8px;
  }

  .awards-achieve__place-value {
    font-size: 31px;
  }

  .awards-achieve__place-title {
    font-size: 10px;
  }

  .awards-certificate {
    border-radius: 16px;
    min-height: 180px;
  }

  .platforms-list {
    gap: 14px 10px;
  }

  .header .callback-btn,
  .header .callback-btn-link{
    display: none;
  }

  .navbar {
    min-width: 100%;
  }

  .navbar__list {
    min-width: 100%;
    align-items: center;
  }

  .navbar .callback-btn {
    display: block;
    width: 100%;
    padding: 11px;
  }

  .footer__wrap {
    flex-direction: column-reverse;
    padding: 26px;
    gap: 30px;
    border-radius: 40px;
  }

  .footer__left-box {
    gap: 10px;
  }

  .footer__left-box .logo {
    width: 48.163px;
    height: 38px;
  }

  .footer__rigth-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-nav__list {
    flex-direction: column;
    gap: 12px;
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-nav__list-box {
    gap: 12px;
  }

  .footer-basement__box {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
  }

  .footer-basement .footer-nav__list-box {
    flex-direction: column;
  }

  .callback-form {
    width: 320px;
    padding: 30px 20px 28px;
    gap: 30px;
  }

  .callback-form__title {
    font-size: 16px;
    line-height: 22px;
  }

  .callback-form__inputs-block {
    gap: 16px;
  }

  .callback-form__contact-label {
    font-size: 11px;
    line-height: 18px;
  }

  .callback-form__contact-title {
    font-size: 12px;
    line-height: 18px;
  }

  .callback-form__item {
    padding: 14px 20px;
  }

  .callback-form__item-input {
    font-size: 12px;
    line-height: 18px;
  }

  .callback-form__item-textarea {
    font-size: 12px;
    height: 52px;
  }

  .callback-form__attachment-btn {
    font-size: 12px;
    line-height: 18px;
  }

  .callback-form__submit {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .callback-form__check-desc {
    font-size: 10px;
    line-height: 14px;
  }

  .main-page .cases-list {
    gap: 18px;
  }

  .main-page .cases-card {
    padding: 15px 15px 20px 15px;
  }

  .main-page .cases-card__img-wrap {
    border-radius: 23px;
    height: 230px;
  }

  .main-page .cases-card__img {
    border-radius: 23px;
  }

  .main-page .cases-card__desc-title {
    font-size: 14px;
    line-height: 22px;
  }

  .main-page .cases-card__desc-text {
    font-size: 12px;
    line-height: 17px;
  }

  .main-page .services-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .main-page .services-item__wrap {
    min-height: 200px;
  }

  .main-page .services-item .services-item__arrow-icon {
    width: 24px;
    height: 24px;
  }

  .main-page .services-item__title {
    font-size: 18px;
    line-height: normal;
  }

  .main-page .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .main-page .clients-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .main-page .clients-item {
    padding: 12px;
    border-radius: 20px;
  }

  .main-page .clients-link {
    padding: 12px;
    border-radius: 20px;
  }

  .main-page .clients-link__title {
    font-size: 14px;
    line-height: 16px;
  }

  .main-page .preview__wrap {
    height: 350px;
  }

  .main-page .preview-list {
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .main-page .preview-list__item {
    font-size: 12px;
    line-height: 16px;
    padding: 8px 14px;
  }

  .main-page .preview__title {
    font-size: 28px;
  }

  .main-page .ratings__wrap {
    min-height: 904px;
    border-radius: 30px;
  }

  .main-page .ratings-content {
    border-radius: 30px;
  }

  .main-page .ratings-content__wrap {
    padding: 35px 55px;
    gap: 20px;
  }

  .main-page .ratings__title {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -0.6px;
  }

  .main-page .ratings-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main-page .ratings-item {
    padding: 16px;
    min-height: 172px;
    border-radius: 30px;
  }

  .main-page .ratings-item__header {
    padding: 8px 12px;
    gap: 5px;
  }

  .main-page .ratings-item__like-wrap {
    width: 13px;
    height: 13px;
  }

  .main-page .ratings-item__title {
    font-size: 12px;
    line-height: 14px;
  }

  .main-page .ratings-item__value {
    font-size: 16px;
    line-height: 28px;
  }

  .main-page .ratings-item__value--big {
    font-size: 34px;
    line-height: 28px;
  }

  .main-page .ratings-item__text {
    font-size: 10px;
    line-height: 13px;
  }

  .contacts-block {
    gap: 24px;
    padding: 20px;
  }

  .contacts-box__item {
    gap: 10px;
  }

  .contacts-box__label {
    font-size: 14px;
    line-height: 20px;
  }

  .contacts-box__link {
    font-size: 18px;
    line-height: 20px;
  }

  .contacts-box__link-icon {
    width: 40px;
    height: 40px;
  }

  .contacts-details {
    gap: 10px;
  }

  .contacts-details__label {
    font-size: 14px;
    line-height: 20px;
  }

  .contacts-details__open-btn {
    font-size: 16px;
    line-height: 20px;
  }

  .achievements .achievements-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .achievements .achievements-card {
    height: 525px;
  }

  .achievements .achievements-card__img-wrap {
    height: 446px;
  }

  .achievements .achievements-card__desc {
    font-size: 12px;
    line-height: 18px;
  }

  .case-about .stack-list {
    margin-bottom: 18px;
  }

  .case-about .stack-list__item {
    padding: 6px 12px;
    font-size: 12px;
    line-height: 18px;
  }

  .case-about .case-swiper {
    height: 177px;
  }

  .case-about .case-swiper .swiper-button-next,
  .case-about .case-swiper .swiper-button-prev {
    width: 24px;
    height: 24px;
  }

  .case-about .case-swiper .swiper-button-next {
    right: 18px;
  }

  .case-about .case-swiper .swiper-button-prev {
    left: 18px;
  }

  .case-about .case-swiper .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
  }

  .case-about .case-swiper .swiper-pagination-bullet-active {
    width: 6px;
    height: 6px;
  }

  .case-about .case-descr {
    gap: 36px;
  }

  .case-about .descr-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .case-about .descr-item__title {
    font-size: 18px;
    line-height: 24px;
  }

  .case-about .descr-item__technologies-list {
    gap: 10px;
  }

  .case-about .descr-item__technology {
    width: 100px;
    height: 60px;
  }

  .case-about .descr-item__technology-wrap {
    max-height: 30px;
    max-width: 67px;
  }

  .case-about .descr-item__achievements-list {
    gap: 10px;
  }

  .case-about .descr-item__achieve {
    padding: 12px;
    border-radius: 16px;
    min-height: 180px;
  }

  .case-about .descr-item__achieve-header {
    gap: 12px;
  }

  .case-about .descr-item__achieve-place {
    width: 73px;
    height: 69px;
  }

  .case-about .descr-item__achieve-title {
    font-size: 10px;
  }

  .case-about .descr-item__achieve-basement {
    gap: 4px;
    padding: 3px 12px;
  }

  .case-about .descr-item__achieve-icon {
    width: 13px;
    height: 14px;
  }

  .case-about .descr-item__achieve-presenter {
    font-size: 8px;
  }

  .case-about .descr-item__place-value {
    font-size: 31px;
  }

  .case-about .descr-item__place-title {
    font-size: 10px;
  }

  .case-about .descr-item__certificate {
    border-radius: 16px;
    min-height: 180px;
  }

  .another-cases .cases-card {
    padding: 15px;
  }

  .another-cases .cases-card__img-wrap {
    border-radius: 23px;
    height: 230px;
  }

  .another-cases .cases-card__img {
    border-radius: 23px;
  }

  .another-cases .cases-card__desc-title {
    font-size: 14px;
    line-height: 22px;
  }

  .another-cases .cases-card__desc-text {
    font-size: 12px;
    line-height: 17px;
  }

  .another-cases .cases-swiper {
    padding-left: 20px;
  }

  .cases-page.cases .filter-chips__item-link {
    font-size: 14px;
    line-height: 20px;
  }

  .cases-page.cases .cases-list {
    gap: 18px;
  }

  .cases-page.cases .cases-card {
    padding: 15px 15px 20px 15px;
  }

  .cases-page.cases .cases-card__img-wrap {
    border-radius: 23px;
    height: 230px;
  }

  .cases-page.cases .cases-card__img {
    border-radius: 23px;
  }

  .cases-page.cases .cases-card__desc-title {
    font-size: 14px;
    line-height: 22px;
  }

  .cases-page.cases .cases-card__desc-text {
    font-size: 12px;
    line-height: 17px;
  }

  .clients-page.clients .clients-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .clients-page.clients .clients-item {
    padding: 12px;
    border-radius: 20px;
  }

  .web-development .platforms__wrap {
    margin-bottom: 36px;
  }

  .web-development .platforms-list {
    gap: 14px 10px;
  }

  .web-development .ratings__wrap {
    margin-bottom: 36px;
    min-height: 904px;
    border-radius: 30px;
  }

  .web-development .ratings-content {
    border-radius: 30px;
  }

  .web-development .ratings-content__wrap {
    padding: 35px 55px;
    gap: 20px;
  }

  .web-development .ratings__title {
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -0.6px;
  }

  .web-development .ratings-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .web-development .ratings-item {
    padding: 16px;
    min-height: 172px;
    border-radius: 30px;
  }

  .web-development .ratings-item__header {
    padding: 8px 12px;
    gap: 5px;
  }

  .web-development .ratings-item__like-wrap {
    width: 13px;
    height: 13px;
  }

  .web-development .ratings-item__title {
    font-size: 12px;
    line-height: 14px;
  }

  .web-development .ratings-item__value {
    font-size: 16px;
    line-height: 28px;
  }

  .web-development .ratings-item__value--big {
    font-size: 34px;
    line-height: 28px;
  }

  .web-development .ratings-item__text {
    font-size: 10px;
    line-height: 13px;
  }

  .web-development .preview__wrap {
    height: 170px;
    margin-bottom: 36px;
    border-radius: 32px;
  }

  .web-development .preview-content__wrap {
    gap: 12px;
  }

  .web-development .preview__title {
    font-size: 33px;
    line-height: 33px;
  }

  .web-development .preview__descr {
    max-width: 250px;
    font-size: 12px;
    line-height: 15px;
  }

  .web-development .custom-development__wrap {
    margin-bottom: 36px;
  }

  .web-development .development-header {
    margin: 0 auto 18px;
  }

  .web-development .development-header__title {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.6px;
  }

  .web-development .development-header__descr {
    font-size: 12px;
    line-height: 16px;
  }

  .web-development .development-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .web-development .development-item {
    padding: 26px;
    min-height: 190px;
    gap: 30px;
  }

  .web-development .development-item__title {
    font-size: 16px;
  }

  .web-development .development-item__text {
    font-size: 13px;
  }

  .web-development .another-services__title {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -0.6px;
  }

  .web-development .services-swiper .services-item__wrap {
    min-height: 200px;
  }

  .web-development .services-swiper .services-item .services-item__arrow-icon {
    width: 24px;
    height: 24px;
  }

  .web-development .services-swiper .services-item__title {
    font-size: 18px;
    line-height: normal;
  }

  .web-development .services-swiper .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .web-development .industries-services__wrap {
    margin-bottom: 36px;
  }

  .web-development .industries-services__title {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.6px;
  }

  .web-development.industries-services .industries-list {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .web-development.industries-services .industries-list__item {
    font-size: 14px;
  }

  .web-development.industries-services .services-list {
    grid-template-columns: 1fr;
  }

  .web-development.industries-services .services-item {
    padding: 26px;
  }

  .web-development.industries-services .services-item__link-title {
    padding: 6px 10px;
    font-size: 14px;
  }

  .services-page .services-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-page .services-item__wrap {
    min-height: 200px;
  }

  .services-page .services-item .services-item__arrow-icon {
    width: 24px;
    height: 24px;
  }

  .services-page .services-item__title {
    font-size: 18px;
    line-height: normal;
  }

  .services-page .services-item__desc-item {
    font-size: 14px;
    line-height: 20px;
  }

  .blog {
    gap: 18px;
  }

  .blog .filter-chips__item-link {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-item:nth-child(7n+1) {
    display: flex;
    flex-direction: column;
    grid-column: span 1;
    gap: 16px;
    border-radius: 20px;
    min-height: auto;
  }

  .blog-item:nth-child(7n+1) .blog-item__img-wrap {
    min-height: 230px;
    height: 230px;
    border-radius: 14px;
  }

  .blog-item:nth-child(7n+1) .blog-item__title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .blog-item:nth-child(7n+1) .blog-item__info-text {
    font-size: 12px;
    line-height: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-item:nth-child(7n+1) .blog-item__date {
    font-size: 12px;
    line-height: 18px;
  }

  .blog-item:not(:nth-child(7n+1)) {
    min-height: auto;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__img-wrap {
    height: 230px;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__info-text {
    font-size: 12px;
    line-height: 17px;
  }

  .blog-item:not(:nth-child(7n+1)) .blog-item__date {
    font-size: 12px;
  }

  .blog-item__type-list {
    gap: 6px;
  }

  .blog-article__wrap {
    gap: 18px;
    margin: 0 auto 36px;
  }

  .blog-article .article-image {
    height: 235px;
  }

  .blog-article .article-box {
    gap: 10px;
  }

  .blog-article .article-box__title {
    font-size: 18px;
  }

  .blog-article .article-box__content {
    gap: 8px;
  }

  .blog-article .article-box__text {
    font-size: 14px;
  }

  .blog-article .article-box__list {
    gap: 4px;
  }

  .blog-article .article-box__item {
    font-size: 14px;
  }

  .blog-article .article-date {
    gap: 18px;
  }

  .another-articles .articles-swiper .blog-item {
    min-height: 488px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__img-wrap {
    height: 230px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__info-text {
    font-size: 12px;
    line-height: 17px;
  }

  .another-articles .articles-swiper .blog-item .blog-item__date {
    font-size: 12px;
  }

  .technical-support {
    margin-bottom: 36px;
  }

  .technical-support__section-title {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .technical-support.preview .preview__wrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .technical-support.preview .preview-desc__text {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .technical-support.preview .preview-desc__list {
    gap: 6px;
  }

  .technical-support.preview .preview-desc__item {
    gap: 4px;
    padding: 10px 16px;
  }

  .technical-support.preview .preview-desc__item-icon {
    width: 12px;
    height: 12px;
  }

  .technical-support.preview .preview-desc__item-title {
    font-size: 12px;
  }

  .technical-support.about .about-desc {
    display: flex;
    flex-direction: column;
  }

  .technical-support.about .about-desc .technical-support__section-title {
    order: -1;
  }

  .technical-support.about .about-desc__text {
    font-size: 14px;
  }

  .technical-support.about .about-list {
    order: 2;
    padding: 20px;
    border-radius: 36px;
    float: none;
    margin: 16px 0;
    max-width: unset;
  }

  .technical-support.about .about-list__item-text {
    font-size: 12px;
  }

  .technical-support.reason .reason-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .technical-support.reason .reason-item__title {
    font-size: 12px;
  }

  .technical-support.services .services__wrap {
    display: flex;
    flex-direction: column;
  }

  .technical-support.services .services-list__item-text {
    font-size: 12px;
  }

  .technical-support.services .platforms {
    padding: 20px;
  }

  .technical-support.services .platforms__text {
    font-size: 14px;
  }

  .technical-support.ratings .ratings-modal__wrap {
    max-width: 310px;
  }

  .technical-support.ratings .ratings-modal .ratings-gallery__btn-close {
    top: -55px;
    right: -15px;
  }

  .technical-support.ratings .ratings-modal .ratings-gallery__icon-close {
    width: 32px;
    height: 32px;
  }

  .technical-support.prices .prices-item {
    gap: 20px;
  }

  .technical-support.prices .prices-item__basement {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .technical-support.team .team-list {
    display: flex;
    overflow: scroll;
  }

  .technical-support.team .team-item {
    min-width: 160px;
  }

  .technical-support.faq .faq-item {
    padding: 16px;
  }

  .technical-support.awards .awards-list {
    display: flex;
    overflow: scroll;
  }

  .technical-support.awards .awards-achieve {
    min-width: 160px;
  }

  .technical-support.awards .awards-certificate {
    min-width: 160px;
  }

  .vacancies .vacancies__description {
    font-size: 14px;
  }

  .vacancies .vacancies-list {
    gap: 16px;
  }

  .vacancies .vacancies-item {
    padding: 16px;
    border-radius: 22px;
  }

  .vacancies .vacancies-item__title {
    font-size: 16px;
  }

  .vacancies .vacancies-item__icon {
    width: 24px;
    height: 24px;
  }

  .vacancies .vacancies-item__icon-elem:first-child {
    width: 12px;
  }

  .vacancies .vacancies-item__icon-elem:last-child {
    height: 12px;
  }

  .vacancies .vacancies-item__skill {
    font-size: 14px;
  }

  .vacancies .vacancies-item__respond {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .technical-support.ratings .ratings-list .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .technical-support.ratings .ratings-list .swiper-wrapper{
    gap: 30px;
  }
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10;
}

button.cookie-agree {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  margin-top: 8px;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #a5df45;
  color: #a5df45;
}

@media screen and (max-width: 450px) {
  .cookie-banner{
    right: 10px;
    left: 10px;
  }
}
/* End */


/* Start:/local/templates/webdoka/template_styles.min.css?17421953732401*/
.landing-edit-mode,.landing-public-mode{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:flex;flex-direction:column}.landing-layout-flex{display:flex;flex-wrap:nowrap;flex-direction:column;flex-grow:1}@media(max-width:780px){.landing-layout-flex.sidebar-right .landing-sidebar{order:1}}.landing-header+.landing-main{flex-grow:1}@media(min-width:1px){.landing-layout-breakpoint--all .landing-layout-flex{flex-direction:row}.landing-layout-breakpoint--all .landing-layout-flex.sidebar-right,.landing-layout-breakpoint--all .landing-layout-flex.without-left{flex-direction:row-reverse}.landing-layout-breakpoint--all .landing-layout-flex .landing-sidebar{width:30%}.landing-layout-breakpoint--all .landing-layout-flex .landing-main{width:70%}}@media(min-width:576px){.landing-layout-breakpoint--mobile .landing-layout-flex{flex-direction:row}.landing-layout-breakpoint--mobile .landing-layout-flex.sidebar-right,.landing-layout-breakpoint--mobile .landing-layout-flex.without-left{flex-direction:row-reverse}.landing-layout-breakpoint--mobile .landing-layout-flex .landing-sidebar{width:30%}.landing-layout-breakpoint--mobile .landing-layout-flex .landing-main{width:70%}}@media(min-width:768px){main:not([class*="landing-layout-breakpoint"]) .landing-layout-flex,.landing-layout-breakpoint--tablet .landing-layout-flex{flex-direction:row}main:not([class*="landing-layout-breakpoint"]) .landing-layout-flex.sidebar-right,main:not([class*="landing-layout-breakpoint"]) .landing-layout-flex.without-left,.landing-layout-breakpoint--tablet .landing-layout-flex.sidebar-right,.landing-layout-breakpoint--tablet .landing-layout-flex.without-left{flex-direction:row-reverse}main:not([class*="landing-layout-breakpoint"]) .landing-layout-flex .landing-sidebar,.landing-layout-breakpoint--tablet .landing-layout-flex .landing-sidebar{width:30%}main:not([class*="landing-layout-breakpoint"]) .landing-layout-flex .landing-main,.landing-layout-breakpoint--tablet .landing-layout-flex .landing-main{width:70%}}@media(min-width:992px){.landing-layout-breakpoint--desktop .landing-layout-flex{flex-direction:row}.landing-layout-breakpoint--desktop .landing-layout-flex.sidebar-right,.landing-layout-breakpoint--desktop .landing-layout-flex.without-left{flex-direction:row-reverse}.landing-layout-flex .landing-sidebar{width:300px;min-width:300px}.landing-layout-flex .landing-main{width:calc(100% - 300px)}}
/* End */
/* /local/templates/webdoka/styles/main.css?1748192361149929 */
/* /local/templates/webdoka/template_styles.min.css?17421953732401 */
