* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  transition: 0.3s;
}

body {
  min-height: 100svh;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li {
  word-break: break-word;
}

input,
select,
textarea {
  border: none;
  outline: none;
}

textarea {
  resize: none;
}

.container {
  max-width: 1230px;
  margin-inline: auto;
  padding-inline: 15px;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: rgba(160, 172, 189, 0.2);
  margin-inline: 12px !important;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #a0acbd;
}

.pswp__img {
  -o-object-fit: cover;
     object-fit: cover;
  padding: 60px;
  border-radius: 80px;
}
@media (max-width: 576px) {
  .pswp__img {
    padding: 10px;
    border-radius: 40px;
  }
}

@media (max-width: 576px) {
  .pswp__button--arrow {
    width: 40px;
    height: 40px;
    top: 55%;
  }
}
@media (max-width: 576px) {
  .pswp__button--arrow > svg {
    width: 40px !important;
    height: 40px !important;
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes move-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes move-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body[data-theme=dark] {
  background: #121624;
}

body[data-theme=light] {
  background: #ffffff;
}

.consider-header {
  padding-top: 90px;
}

.stat-card {
  border-radius: 20px;
  padding: 23px 20px;
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .stat-card::before {
  display: none;
}
body[data-theme=dark] .stat-card {
  background: #292d39;
}
body[data-theme=dark] .stat-card:hover {
  background: #3d4856;
}
body[data-theme=light] .stat-card {
  background: rgba(160, 172, 189, 0.2);
}
body[data-theme=light] .stat-card:hover {
  background: #d3dce1;
}
.stat-card .main {
  display: flex;
  gap: 7px;
  align-items: center;
}
@media (max-width: 576px) {
  .stat-card .main {
    justify-content: center;
  }
}
.stat-card .number {
  font-weight: 700;
  font-size: clamp(47px, 2.67rem + 2.27vw, 70px);
  line-height: 120%;
  text-align: center;
}
body[data-theme=dark] .stat-card .number {
  color: #d3dce1;
}
body[data-theme=light] .stat-card .number {
  color: #121624;
}
.stat-card .sign {
  font-weight: 700;
  font-size: clamp(47px, 2.67rem + 2.27vw, 70px);
  line-height: 120%;
}
body[data-theme=dark] .stat-card .sign {
  color: #a0acbd;
}
body[data-theme=light] .stat-card .sign {
  color: #3d4856;
}
.stat-card .stat-card-text {
  font-weight: 500;
  line-height: 144%;
}
body[data-theme=dark] .stat-card .stat-card-text {
  color: #a0acbd;
}
body[data-theme=light] .stat-card .stat-card-text {
  color: #3d4856;
}
@media (max-width: 576px) {
  .stat-card .stat-card-text {
    text-align: center;
  }
}

.home-title {
  font-weight: 600;
  font-size: clamp(27px, 1.636rem + 0.57vw, 33px);
  text-transform: uppercase;
  padding-bottom: 4px;
}
body[data-theme=dark] .home-title {
  color: #d3dce1;
}
body[data-theme=light] .home-title {
  color: #121624;
}
@media (max-width: 576px) {
  .home-title {
    text-align: center;
  }
}

.home-title-text {
  font-size: 20px;
  line-height: 130%;
  padding-bottom: 50px;
}
body[data-theme=dark] .home-title-text {
  color: #a0acbd;
}
body[data-theme=light] .home-title-text {
  color: #121624;
}
@media (max-width: 576px) {
  .home-title-text {
    text-align: center;
    padding-bottom: 35px;
  }
}

.title-hero-big {
  font-weight: 700;
  font-size: clamp(47px, 0.824rem + 10.57vw, 140px);
  text-transform: uppercase;
  text-align: center;
}
body[data-theme=dark] .title-hero-big {
  color: #d3dce1;
}
body[data-theme=light] .title-hero-big {
  color: #121624;
}

.btn-more {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 15px;
  padding: 18px 20px;
  background: linear-gradient(48deg, #0f81c7 0%, #4696cc 100%);
}
@media (max-width: 576px) {
  .btn-more {
    padding: 12px 16px;
  }
}
@media (max-width: 480px) {
  .btn-more {
    width: 100%;
    justify-content: center;
  }
}
.btn-more:hover {
  background: linear-gradient(48deg, rgba(15, 129, 199, 0.3803921569) 0%, #43708e 100%);
}
.btn-more:hover .btn-more-img {
  transform: rotate(-45deg);
}
.btn-more .btn-more-span {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #ffffff;
}
.btn-more .btn-more-img {
  width: 30px;
  height: 30px;
}

.btn-send {
  border-radius: 15px;
  padding: 18px 20px;
  background: linear-gradient(48deg, #0f81c7 0%, #a0acbd 100%);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  align-self: flex-end;
  border: none;
  outline: none;
  cursor: pointer;
}
.btn-send:hover {
  background: linear-gradient(48deg, rgba(15, 129, 199, 0.3803921569) 0%, #a0acbd 100%);
}
.btn-send:hover .btn-send-img {
  transform: rotate(45deg);
}
.btn-send .btn-send-span {
  font-size: 20px;
  line-height: 130%;
  color: #ffffff;
}
.btn-send .btn-send-img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.marquee-shadow-left {
  max-width: 187px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
body[data-theme=dark] .marquee-shadow-left {
  background: linear-gradient(270deg, rgba(18, 22, 36, 0) 0%, #121624 83.1%);
}
body[data-theme=light] .marquee-shadow-left {
  background: linear-gradient(270deg, rgba(18, 22, 36, 0) 0%, #ffffff 83.1%);
}
@media (max-width: 992px) {
  .marquee-shadow-left {
    max-width: 150px;
  }
}
@media (max-width: 576px) {
  .marquee-shadow-left {
    max-width: 50px;
  }
}
.marquee-shadow-left.right {
  right: 0;
  transform: rotate(-180deg);
}

.marquee-shadow-right {
  max-width: 187px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-180deg);
  z-index: 10;
}
body[data-theme=dark] .marquee-shadow-right {
  background: linear-gradient(270deg, rgba(18, 22, 36, 0) 0%, #121624 83.1%);
}
body[data-theme=light] .marquee-shadow-right {
  background: linear-gradient(270deg, rgba(18, 22, 36, 0) 0%, #ffffff 83.1%);
}
@media (max-width: 992px) {
  .marquee-shadow-right {
    max-width: 150px;
  }
}
@media (max-width: 576px) {
  .marquee-shadow-right {
    max-width: 50px;
  }
}

.service-card {
  width: 100%;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  border: 2px solid transparent;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .service-card::before {
  display: none;
}
body[data-theme=dark] .service-card {
  background: #292d39;
  border-color: #3d4856;
}
body[data-theme=light] .service-card {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .service-card {
    padding: 20px;
  }
}
body[data-theme=dark] .service-card:hover .service-card-heading-pic {
  background: linear-gradient(226deg, #59a7d8 0%, #0f81c7 100%);
}
body[data-theme=light] .service-card:hover .service-card-heading-pic {
  background: linear-gradient(180deg, #59a7d8 0%, #0f81c7 100%);
}
.service-card .service-card-heading {
  display: flex;
  gap: 20px;
  align-items: center;
}
.service-card .service-card-heading-pic {
  border-radius: 100px;
  padding: 16px;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
body[data-theme=dark] .service-card .service-card-heading-pic {
  background: linear-gradient(226deg, #7b828c 0%, #3d4856 100%);
}
body[data-theme=light] .service-card .service-card-heading-pic {
  background: linear-gradient(226deg, #59a7d8 0%, #0f81c7 100%);
}
@media (max-width: 576px) {
  .service-card .service-card-heading-pic {
    width: 60px;
    height: 60px;
    padding: 14px;
  }
}
.service-card .service-card-heading-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.service-card .service-card-heading-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
}
body[data-theme=dark] .service-card .service-card-heading-title {
  color: #ffffff;
}
body[data-theme=light] .service-card .service-card-heading-title {
  color: #121624;
}
.service-card .service-card-text {
  font-weight: 500;
  line-height: 144%;
}
body[data-theme=dark] .service-card .service-card-text {
  color: #a0acbd;
}
body[data-theme=light] .service-card .service-card-text {
  color: #3d4856;
}

.project-card {
  width: 100%;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body[data-theme=dark] .project-card {
  background: #292d39;
}
body[data-theme=light] .project-card {
  background: rgba(160, 172, 189, 0.2);
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .project-card::before {
  display: none;
}
@media (max-width: 576px) {
  .project-card {
    padding: 14px;
  }
}
.project-card .project-card-pic {
  border-radius: 16px;
  width: 100%;
  height: 210px;
}
.project-card .project-card-img {
  border-radius: inherit;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-card .content {
  margin-inline: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  .project-card .content {
    margin-inline: unset;
  }
}
.project-card .desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-card .desc-title {
  font-weight: 600;
  font-size: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}
body[data-theme=dark] .project-card .desc-title {
  color: #d3dce1;
}
body[data-theme=light] .project-card .desc-title {
  color: #121624;
}
.project-card .tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.project-card .tag {
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 192%;
}
body[data-theme=dark] .project-card .tag {
  background: #3d4856;
}
body[data-theme=light] .project-card .tag {
  background: rgba(61, 72, 86, 0.1215686275);
}
body[data-theme=dark] .project-card .tag {
  color: #a0acbd;
}
body[data-theme=light] .project-card .tag {
  color: #3d4856;
}
.project-card .content-pic {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(226deg, #59a7d8 0%, #0f81c7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.project-card .content-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.testimonials-card {
  width: 420px;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
}
body[data-theme=dark] .testimonials-card {
  background: #292d39;
}
body[data-theme=light] .testimonials-card {
  background: rgba(160, 172, 189, 0.2);
}
.testimonials-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .testimonials-card::before {
  display: none;
}
@media (max-width: 992px) {
  .testimonials-card {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .testimonials-card {
    width: 320px;
  }
}
@media (max-width: 576px) {
  .testimonials-card {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .testimonials-card {
    width: 260px;
  }
}
.testimonials-card::before {
  z-index: 0;
}
.testimonials-card .testimonials-card-text {
  line-height: 144%;
  z-index: 10;
  min-height: 138px;
}
body[data-theme=dark] .testimonials-card .testimonials-card-text {
  color: #a0acbd;
}
body[data-theme=light] .testimonials-card .testimonials-card-text {
  color: #3d4856;
}
.testimonials-card .profile {
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}
.testimonials-card .profile-pic {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  flex-shrink: 0;
}
.testimonials-card .profile-img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.testimonials-card .desc {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonials-card .desc-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}
body[data-theme=dark] .testimonials-card .desc-title {
  color: #d3dce1;
}
body[data-theme=light] .testimonials-card .desc-title {
  color: #121624;
}
.testimonials-card .desc-text {
  line-height: 144%;
}
body[data-theme=dark] .testimonials-card .desc-text {
  color: #a0acbd;
}
body[data-theme=light] .testimonials-card .desc-text {
  color: #3d4856;
}
@media (max-width: 480px) {
  .testimonials-card .desc-text {
    min-height: 46px;
  }
}

.hero-img-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.hero-img-block .hero-img-block-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-img-block .hero-img-block-title {
  font-weight: 700;
  font-size: clamp(36px, 1.477rem + 3.86vw, 70px);
  text-transform: uppercase;
}
body[data-theme=dark] .hero-img-block .hero-img-block-title {
  color: #d3dce1;
}
body[data-theme=light] .hero-img-block .hero-img-block-title {
  color: #121624;
}
.hero-img-block .hero-img-block-text {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .hero-img-block .hero-img-block-text {
  color: #a0acbd;
}
body[data-theme=light] .hero-img-block .hero-img-block-text {
  color: #3d4856;
}
.hero-img-block .hero-img-block-pic {
  width: 370px;
  height: 370px;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .hero-img-block .hero-img-block-pic {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 992px) {
  .hero-img-block .hero-img-block-pic {
    display: none;
  }
}
.hero-img-block .hero-img-block-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.employee-card {
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  background: #292d39;
}
.employee-card:hover .employee-card-heading-text {
  color: #d3dce1;
}
.employee-card .employee-card-pic {
  width: 100%;
  height: 360px;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(180deg, #859dbc 0%, #3d4856 100%);
  z-index: 10;
}
@media (max-width: 992px) {
  .employee-card .employee-card-pic {
    height: 450px;
  }
}
@media (max-width: 576px) {
  .employee-card .employee-card-pic {
    height: 450px;
  }
}
@media (max-width: 480px) {
  .employee-card .employee-card-pic {
    height: 400px;
  }
}
.employee-card .employee-card-img {
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.employee-card .employee-card-desc {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: flex-start;
  padding: 20px 20px 30px 20px;
  border-radius: 0 0 26px 26px;
}
.employee-card .employee-card-desc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .employee-card .employee-card-desc::before {
  display: none;
}
.employee-card .employee-card-desc::before {
  z-index: 0;
}
.employee-card .employee-card-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}
.employee-card .employee-card-heading-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .employee-card .employee-card-heading-title {
    min-height: 40px;
  }
}
.employee-card .employee-card-heading-text {
  font-weight: 500;
  font-size: 18px;
  color: #a0acbd;
}
.employee-card .employee-card-desc-img {
  width: 26px;
  height: 26px;
  z-index: 10;
  align-self: center;
}

.tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 26px;
}
@media (max-width: 992px) {
  .tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .tabs {
    grid-template-columns: 1fr;
  }
}
.tabs .tab {
  border-radius: 10px;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
body[data-theme=dark] .tabs .tab {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .tabs .tab {
  background: rgba(160, 172, 189, 0.2);
}
body[data-theme=dark] .tabs .tab.active {
  background: #3d4856;
}
body[data-theme=light] .tabs .tab.active {
  background: #3d4856;
}
body[data-theme=light] .tabs .tab.active .tab-span {
  color: #ffffff;
}
.tabs .tab.icon {
  padding: 8px;
  width: 40px;
  height: 40px;
  align-self: center;
}
body[data-theme=dark] .tabs .tab.icon {
  background: #3d4856;
}
body[data-theme=light] .tabs .tab.icon {
  background: #3d4856;
}
@media (max-width: 992px) {
  .tabs .tab.icon {
    width: unset;
    height: unset;
    align-self: unset;
  }
}
.tabs .tab-img {
  width: 24px;
  height: 24px;
}
.tabs .tab-span {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .tabs .tab-span {
  color: #a0acbd;
}
body[data-theme=light] .tabs .tab-span {
  color: #3d4856;
}

.next-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .next-section {
    margin-top: 80px;
  }
}
.next-section:hover .next-section-content-img {
  transform: translate(10px, 0);
}
.next-section .next-section-text {
  font-weight: 600;
  font-size: clamp(27px, 1.636rem + 0.57vw, 33px);
  padding-bottom: 2px;
}
body[data-theme=dark] .next-section .next-section-text {
  color: #a0acbd;
}
body[data-theme=light] .next-section .next-section-text {
  color: #3d4856;
}
.next-section .next-section-content {
  display: flex;
  gap: 10px;
  align-items: center;
}
.next-section .next-section-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
  padding-right: 8px;
}
body[data-theme=dark] .next-section .next-section-title {
  color: #d3dce1;
}
body[data-theme=light] .next-section .next-section-title {
  color: #121624;
}
@media (max-width: 768px) {
  .next-section .next-section-title {
    padding-right: unset;
  }
}
.next-section .next-section-content-img {
  width: 50px;
  height: 50px;
}
body[data-theme=dark] .next-section .next-section-content-img.light-theme {
  display: none;
}
body[data-theme=light] .next-section .next-section-content-img.dark-theme {
  display: none;
}

.home-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}
.home-header .wrapper {
  max-width: 1200px;
  padding: 21px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  border-radius: 0 0 36px 36px;
}
body[data-theme=dark] .home-header .wrapper {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .home-header .wrapper {
  background: #ffffff;
  box-shadow: 0 2px 30px 0 rgba(15, 129, 199, 0.2509803922);
}
body[data-force-dark-mode=true] .home-header .wrapper {
  background: rgba(61, 72, 86, 0.3019607843);
  box-shadow: unset;
}
@media (max-width: 1200px) {
  .home-header .wrapper {
    padding: 22px 15px;
  }
}
.home-header .logo {
  width: 200px;
  height: 46px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .home-header .logo {
    width: 140px;
    height: 35px;
  }
}
.home-header .logo-img {
  width: auto;
  height: auto;
}
body[data-theme=dark] .home-header .logo-img.light-theme {
  display: none;
}
body[data-theme=light] .home-header .logo-img.dark-theme {
  display: none;
}
body[data-force-dark-mode=true] .home-header .logo-img.light-theme {
  display: none;
}
body[data-force-dark-mode=true] .home-header .logo-img.dark-theme {
  display: block;
}
@media (max-width: 576px) {
  .home-header .logo-img {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .home-header .navbar {
    display: none;
  }
}
.home-header .navbar-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: center;
}
@media (max-width: 1200px) {
  .home-header .navbar-list {
    gap: 10px 20px;
  }
}
.home-header .navbar-item.has-dropdown {
  position: relative;
}
.home-header .navbar-link {
  font-weight: 500;
  font-size: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
body[data-theme=dark] .home-header .navbar-link {
  color: #a0acbd;
}
body[data-theme=dark] .home-header .navbar-link:hover {
  color: #d3dce1;
}
body[data-theme=light] .home-header .navbar-link {
  color: #3d4856;
}
body[data-theme=light] .home-header .navbar-link:hover {
  color: #d3dce1;
}
body[data-force-dark-mode=true] .home-header .navbar-link {
  color: #a0acbd;
}
body[data-force-dark-mode=true] .home-header .navbar-link:hover {
  color: #d3dce1;
}
body[data-theme=dark] .home-header .navbar-link.active {
  color: #d3dce1;
}
body[data-theme=light] .home-header .navbar-link.active {
  color: #d3dce1;
}
body[data-force-dark-mode=true] .home-header .navbar-link.active {
  color: #d3dce1;
}
.home-header .navbar-dropdown {
  width: 158%;
  display: none;
  position: absolute;
  top: 250%;
  left: 0;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
body[data-theme=dark] .home-header .navbar-dropdown {
  background: #3d4856;
}
body[data-theme=light] .home-header .navbar-dropdown {
  background: #ffffff;
}
body[data-force-dark-mode=true] .home-header .navbar-dropdown {
  background: #3d4856;
}
.home-header .navbar-dropdown.active {
  display: flex;
}
.home-header .navbar-dropdown-item {
  width: 100%;
  padding: 8px 22px;
  word-break: normal;
}
.home-header .navbar-dropdown-item:first-child {
  padding-top: 22px;
}
.home-header .navbar-dropdown-item:last-child {
  padding-bottom: 22px;
}
.home-header .navbar-dropdown-link {
  display: block;
  font-weight: 500;
  line-height: 144%;
}
body[data-theme=dark] .home-header .navbar-dropdown-link {
  color: #d3dce1;
}
body[data-theme=light] .home-header .navbar-dropdown-link {
  color: #3d4856;
}
body[data-force-dark-mode=true] .home-header .navbar-dropdown-link {
  color: #d3dce1;
}
.home-header .panel {
  display: flex;
  align-items: center;
  gap: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home-header .panel-svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
body[data-theme=dark] .home-header .panel-svg.light-theme {
  display: none;
}
body[data-theme=light] .home-header .panel-svg.dark-theme {
  display: none;
}
.home-header .panel-svg:hover > path {
  fill: #d3dce1;
}
.home-header .lang {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 12px 14px;
  border-radius: 12px 12px 0 0;
  transition: none;
}
@media (max-width: 576px) {
  .home-header .lang {
    display: none;
  }
}
.home-header .lang:hover > svg > path:first-child {
  fill: #d3dce1;
}
.home-header .lang > svg {
  width: 24px;
  height: 24px;
}
body[data-theme=dark] .home-header .lang.active {
  background: #3d4856;
}
body[data-theme=light] .home-header .lang.active {
  background: #ffffff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2509803922);
}
body[data-force-dark-mode=true] .home-header .lang.active {
  background: #3d4856;
  box-shadow: unset;
}
.home-header .select {
  display: flex;
  align-items: center;
  gap: 4px;
}
.home-header .select-img {
  width: 16px;
  height: 16px;
}
.home-header .select-span {
  font-weight: 500;
  line-height: 144%;
  word-break: normal;
  max-width: 150px;
}
body[data-theme=dark] .home-header .select-span {
  color: #d3dce1;
}
body[data-theme=light] .home-header .select-span {
  color: #3d4856;
}
body[data-force-dark-mode=true] .home-header .select-span {
  color: #d3dce1;
}
.home-header .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
body[data-theme=dark] .home-header .dropdown {
  background: #3d4856;
}
body[data-theme=light] .home-header .dropdown {
  background: #ffffff;
}
body[data-force-dark-mode=true] .home-header .dropdown {
  background: #3d4856;
}
.home-header .dropdown.active {
  display: flex;
}
.home-header .dropdown-item {
  width: 100%;
  padding: 6px 12px;
}
.home-header .dropdown-link {
  display: block;
  font-weight: 500;
  line-height: 144%;
  text-align: center;
}
body[data-theme=dark] .home-header .dropdown-link {
  color: #d3dce1;
}
body[data-theme=light] .home-header .dropdown-link {
  color: #3d4856;
}
body[data-force-dark-mode=true] .home-header .dropdown-link {
  color: #d3dce1;
}
.home-header .menu {
  display: none;
  width: 30px;
  height: 30px;
}
@media (max-width: 992px) {
  .home-header .menu {
    display: block;
  }
}
.home-header .menu:hover > svg > path {
  stroke: #d3dce1;
}
.home-header .menu > svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.home-hero {
  position: relative;
}
body[data-force-dark-mode=true] .home-hero {
  background: #121624;
}
.home-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 30%;
  background: url("../images/icons/logo-bg.svg") center/contain no-repeat;
}
@media (max-width: 1200px) {
  .home-hero::after {
    bottom: 25%;
  }
}
@media (max-width: 992px) {
  .home-hero::after {
    bottom: 20%;
  }
}
@media (max-width: 768px) {
  .home-hero::after {
    bottom: 30%;
  }
}
@media (max-width: 480px) {
  .home-hero::after {
    bottom: 50%;
  }
}
@media (max-width: 350px) {
  .home-hero::after {
    display: none;
  }
}
.home-hero::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/icons/earth.svg") center/contain no-repeat;
  width: 100%;
  height: 150%;
}
@media (max-width: 1200px) {
  .home-hero::before {
    top: 15%;
  }
}
@media (max-width: 768px) {
  .home-hero::before {
    top: 10%;
  }
}
@media (max-width: 576px) {
  .home-hero::before {
    top: -10%;
  }
}
@media (max-width: 480px) {
  .home-hero::before {
    top: -30%;
  }
}
@media (max-width: 350px) {
  .home-hero::before {
    display: none;
  }
}
.home-hero .bg {
  position: relative;
}
.home-hero .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/lines-bg.svg") center/cover no-repeat;
  width: 100%;
  height: 100%;
}
@media (max-width: 350px) {
  .home-hero .bg::before {
    display: none;
  }
}
.home-hero .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 70svh;
  justify-content: flex-end;
}
.home-hero .home-hero-img {
  position: absolute;
  inset: 0;
}
.home-hero .home-hero-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
  text-transform: uppercase;
  color: #d3dce1;
  margin-bottom: 10px;
  text-align: center;
  z-index: 10;
}
.home-hero .home-hero-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #a0acbd;
  margin-bottom: 40px;
  z-index: 10;
}
.home-hero .btns {
  display: flex;
  gap: 20px;
  z-index: 10;
}
@media (max-width: 576px) {
  .home-hero .btns {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .home-hero .btns {
    width: 100%;
  }
}
.home-hero .services {
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 15px;
  padding: 18px 20px;
  background: linear-gradient(48deg, #3d4856 0%, #6a7685 100%);
}
@media (max-width: 480px) {
  .home-hero .services {
    width: 100%;
    justify-content: center;
  }
}
.home-hero .services:hover {
  background: linear-gradient(48deg, rgba(15, 129, 199, 0.3803921569) 0%, #43708e 100%);
}
.home-hero .services:hover .services-img {
  transform: rotate(-45deg);
}
.home-hero .services-span {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #ffffff;
}
.home-hero .services-img {
  width: 30px;
  height: 30px;
}
.home-hero .phone {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 2px solid #3d4856;
  border-radius: 15px;
  padding: 18px 30px 18px 20px;
}
@media (max-width: 576px) {
  .home-hero .phone {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .home-hero .phone {
    width: 100%;
  }
}
.home-hero .phone:hover {
  border-color: #859dbc;
}
.home-hero .phone-span {
  font-size: 20px;
  line-height: 130%;
  color: #d3dce1;
}
.home-hero .phone-img {
  width: 24px;
  height: 24px;
}

body[data-force-dark-mode=true] .home-companies {
  background: #121624;
}
.home-companies .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
}
.home-companies .home-companies-title {
  font-size: 20px;
  line-height: 130%;
  color: #a0acbd;
  text-align: center;
}
.home-companies .cards {
  overflow: hidden;
  width: 100%;
  position: relative;
  white-space: nowrap;
}
.home-companies .cards-slide {
  display: inline-block;
  animation-name: move-left;
  animation-duration: 17s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home-companies .cards-slide-img {
  width: auto;
  height: 40px;
  margin-inline: 43px;
}
@media (max-width: 992px) {
  .home-companies .cards-slide-img {
    margin-inline: 35px;
  }
}
@media (max-width: 576px) {
  .home-companies .cards-slide-img {
    margin-inline: 22px;
  }
}
body[data-theme=dark] .home-companies .shadow {
  background: linear-gradient(270deg, rgba(18, 22, 36, 0) 0%, #121624 83.1%);
}
body[data-theme=light] .home-companies .shadow {
  background: linear-gradient(270deg, rgba(18, 22, 36, 0) 0%, #121624 83.1%);
}

.home-about .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home-about .wrapper {
    padding-block: 50px;
  }
}
.home-about .content {
  display: grid;
  grid-template-columns: 1fr 410px 228px;
  gap: 12px;
  padding-inline: 30px;
}
@media (max-width: 1200px) {
  .home-about .content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .home-about .content {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
  }
}
.home-about .desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-about .card {
  border-radius: 20px;
  padding: 20px;
  flex-grow: 1;
}
body[data-theme=dark] .home-about .card {
  background: #292d39;
}
body[data-theme=light] .home-about .card {
  background: rgba(160, 172, 189, 0.2);
}
.home-about .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .home-about .card::before {
  display: none;
}
.home-about .card-img {
  width: 36px;
  height: 36px;
}
.home-about .card-pic {
  width: 68px;
  height: 68px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(226deg, #59a7d8 0%, #0f81c7 100%);
  justify-self: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .home-about .card-pic {
    justify-self: center;
  }
}
.home-about .card-text {
  font-size: 20px;
  line-height: 130%;
}
body[data-theme=dark] .home-about .card-text {
  color: #a0acbd;
}
body[data-theme=light] .home-about .card-text {
  color: #3d4856;
}
@media (max-width: 576px) {
  .home-about .card-text {
    text-align: center;
  }
}
.home-about .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .home-about .cards {
    order: 1;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .home-about .cards {
    grid-template-columns: 1fr;
  }
}
.home-about .showreel {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-radius: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body[data-theme=dark] .home-about .showreel {
  background: #292d39;
}
body[data-theme=light] .home-about .showreel {
  background: rgba(160, 172, 189, 0.2);
}
.home-about .showreel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .home-about .showreel::before {
  display: none;
}
@media (max-width: 576px) {
  .home-about .showreel {
    justify-content: center;
    flex-direction: column;
  }
}
.home-about .showreel-span {
  font-weight: 500;
  line-height: 144%;
  text-align: center;
}
body[data-theme=dark] .home-about .showreel-span {
  color: #a0acbd;
}
body[data-theme=light] .home-about .showreel-span {
  color: #3d4856;
}
.home-about .showreel-pic {
  padding: 38px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-about .showreel-pic > svg {
  position: absolute;
  inset: 15px;
  overflow: visible;
  animation: rotate 10s linear infinite;
}
.home-about .showreel-pic > svg > path {
  fill: none;
}
.home-about .showreel-pic > svg > text {
  font-weight: 600;
  font-size: 15px;
  line-height: 186%;
  letter-spacing: 0.07em;
  fill: #3d4856;
}
.home-about .showreel-img {
  width: 50px;
  height: 50px;
}
body[data-theme=dark] .home-about .showreel-img.light-theme {
  display: none;
}
body[data-theme=light] .home-about .showreel-img.dark-theme {
  display: none;
}
.home-about .swiper-home-about-cards {
  overflow: hidden;
  position: relative;
}
.home-about .swiper-home-about-cards .swiper-pagination {
  white-space: pre;
  overflow: hidden;
}
.home-about .swiper-home-about-cards:hover .slide-bg {
  display: block;
}
.home-about .swiper-home-about-cards:hover .swiper-home-about-cards-center-img {
  display: block;
}
.home-about .swiper-home-about-cards:hover .swiper-pagination {
  display: none;
}
@media (max-width: 992px) {
  .home-about .swiper-home-about-cards {
    height: 500px;
    order: 1;
  }
}
@media (max-width: 576px) {
  .home-about .swiper-home-about-cards {
    height: 400px;
  }
}
.home-about .swiper-home-about-cards-img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.home-about .swiper-home-about-cards-center-img {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  z-index: 20;
  cursor: pointer;
}
.home-about .slide-bg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5019607843);
  border-radius: 20px;
  cursor: pointer;
}
.home-about .stat-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1200px) {
  .home-about .stat-cards {
    grid-column: span 2;
  }
}
@media (max-width: 992px) {
  .home-about .stat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .home-about .stat-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .home-about .stat-cards .main {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .home-about .stat-cards .main {
    justify-content: flex-start;
  }
}
@media (max-width: 576px) {
  .home-about .stat-cards .main {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .home-about .stat-cards .stat-card-text {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .home-about .stat-cards .stat-card-text {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .home-about .stat-cards .stat-card-text {
    text-align: center;
  }
}

.home-technologies .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home-technologies .wrapper {
    padding-block: 50px;
  }
}
.home-technologies .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 15px;
}
@media (max-width: 992px) {
  .home-technologies .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .home-technologies .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .home-technologies .cards {
    grid-template-columns: 1fr;
  }
}
.home-technologies .card {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 12px;
  padding: 14px;
}
body[data-theme=dark] .home-technologies .card {
  background: #292d39;
}
body[data-theme=light] .home-technologies .card {
  background: rgba(160, 172, 189, 0.2);
}
.home-technologies .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .home-technologies .card::before {
  display: none;
}
.home-technologies .card::last-child {
  grid-column-start: 4;
  grid-column-end: 5;
}
.home-technologies .card-pic {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 12px;
  flex-shrink: 0;
}
body[data-theme=dark] .home-technologies .card-pic {
  background: #121624;
}
body[data-theme=light] .home-technologies .card-pic {
  background: #ffffff;
}
.home-technologies .card-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.home-technologies .desc {
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
}
.home-technologies .desc-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}
body[data-theme=dark] .home-technologies .desc-title {
  color: #d3dce1;
}
body[data-theme=light] .home-technologies .desc-title {
  color: #121624;
}
.home-technologies .desc-text {
  line-height: 144%;
}
body[data-theme=dark] .home-technologies .desc-text {
  color: #a0acbd;
}
body[data-theme=light] .home-technologies .desc-text {
  color: #3d4856;
}
.home-technologies .company {
  border-radius: 12px;
  padding: 14px;
  background: #0f81c7;
  grid-column-start: 2;
  grid-column-end: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 5px;
  grid-row: 3;
}
.home-technologies .company::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .home-technologies .company::before {
  display: none;
}
@media (max-width: 992px) {
  .home-technologies .company {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row: 4;
  }
}
@media (max-width: 768px) {
  .home-technologies .company {
    order: 1;
    margin-block: unset;
    grid-row: auto;
  }
}
@media (max-width: 576px) {
  .home-technologies .company {
    grid-column-end: 1;
  }
}
.home-technologies .company-span {
  font-weight: 500;
  font-size: 20px;
  color: #d3dce1;
  text-align: center;
}

.home-services .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home-services .wrapper {
    padding-block: 50px;
  }
}
.home-services .top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .home-services .top {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .home-services .top {
    padding-bottom: 35px;
    gap: 20px;
  }
}
.home-services .heading {
  max-width: 494px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
@media (max-width: 768px) {
  .home-services .heading {
    max-width: unset;
  }
}
.home-services .heading-text {
  padding-bottom: unset;
}
.home-services .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-inline: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home-services .cards {
    grid-template-columns: 1fr;
    margin-inline: unset;
  }
}
.home-services .card {
  width: 100%;
  border-radius: 20px;
  padding: 30px;
  background: #292d39;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #3d4856;
}
@media (max-width: 992px) {
  .home-services .card {
    padding: 20px;
  }
}
.home-services .card-heading {
  display: flex;
  gap: 20px;
  align-items: center;
}
.home-services .card-heading-pic {
  border-radius: 100px;
  padding: 16px;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(226deg, #ffffff 0%, #3d4856 100%);
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .home-services .card-heading-pic {
    width: 60px;
    height: 60px;
    padding: 14px;
  }
}
.home-services .card-heading-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.home-services .card-heading-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  color: #ffffff;
}
.home-services .card-text {
  font-weight: 500;
  line-height: 144%;
  color: #a0acbd;
}

.home-projects .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home-projects .wrapper {
    padding-block: 50px;
  }
}
.home-projects .top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .home-projects .top {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .home-projects .top {
    padding-bottom: 35px;
    gap: 20px;
  }
}
.home-projects .heading {
  max-width: 494px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
@media (max-width: 768px) {
  .home-projects .heading {
    max-width: unset;
  }
}
.home-projects .heading-text {
  padding-bottom: unset;
}
.home-projects .more {
  gap: 18px;
}
.home-projects .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .home-projects .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .home-projects .cards {
    grid-template-columns: 1fr;
  }
}

.home-advantages .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home-advantages .wrapper {
    padding-block: 50px;
  }
}
.home-advantages .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .home-advantages .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .home-advantages .cards {
    grid-template-columns: 1fr;
  }
}
.home-advantages .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 12px;
  padding: 16px;
}
body[data-theme=dark] .home-advantages .card {
  background: #292d39;
}
body[data-theme=light] .home-advantages .card {
  background: rgba(160, 172, 189, 0.2);
}
.home-advantages .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .home-advantages .card::before {
  display: none;
}
.home-advantages .card-img {
  width: 40px;
  height: 40px;
}
body[data-theme=dark] .home-advantages .card-img.light-theme {
  display: none;
}
body[data-theme=light] .home-advantages .card-img.dark-theme {
  display: none;
}
.home-advantages .card-img.filtered {
  filter: invert(1);
}
.home-advantages .desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-advantages .desc-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}
body[data-theme=dark] .home-advantages .desc-title {
  color: #d3dce1;
}
body[data-theme=light] .home-advantages .desc-title {
  color: #121624;
}
.home-advantages .desc-text {
  line-height: 144%;
  min-height: 115px;
}
body[data-theme=dark] .home-advantages .desc-text {
  color: #a0acbd;
}
body[data-theme=light] .home-advantages .desc-text {
  color: #3d4856;
}
@media (max-width: 768px) {
  .home-advantages .desc-text {
    min-height: unset;
  }
}

.home-testimonials .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home-testimonials .wrapper {
    padding-block: 50px;
  }
}
.home-testimonials .home-advantages-title, .home-testimonials .home-advantages-text {
  max-width: 1230px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}
.home-testimonials .cards {
  overflow: hidden;
  width: 100%;
  position: relative;
  white-space: nowrap;
  display: flex;
  gap: 20px;
}
.home-testimonials .cards.top {
  margin-bottom: 20px;
}
.home-testimonials .cards-slide {
  display: inline-flex;
  gap: 20px;
  justify-content: center;
  animation-duration: 33s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.home-testimonials .cards-slide.top {
  animation-name: move-left;
}
.home-testimonials .cards-slide.bottom {
  animation-name: move-right;
}
.home-testimonials .testimonials-card-text, .home-testimonials .desc-title, .home-testimonials .desc-text {
  white-space: initial;
}
.home-testimonials .shadow {
  max-width: 164px;
}
@media (max-width: 992px) {
  .home-testimonials .shadow {
    max-width: 140px;
  }
}
@media (max-width: 576px) {
  .home-testimonials .shadow {
    max-width: 30px;
  }
}

.home-contact {
  padding-inline: 15px;
}
.home-contact .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 80px auto 160px;
  gap: 50px;
  border-radius: 26px;
  padding: 60px 80px;
  overflow: hidden;
}
body[data-theme=dark] .home-contact .wrapper {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .home-contact .wrapper {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .home-contact .wrapper {
    padding-block: 50px;
    margin: 60px auto 80px;
  }
}
@media (max-width: 576px) {
  .home-contact .wrapper {
    padding: 35px 20px;
  }
}
.home-contact .home-contact-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
}
body[data-theme=dark] .home-contact .home-contact-title {
  color: #a0acbd;
}
body[data-theme=light] .home-contact .home-contact-title {
  color: #3d4856;
}
.home-contact .home-contact-title-span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
  text-align: inherit;
}
body[data-theme=dark] .home-contact .home-contact-title-span {
  color: #d3dce1;
}
body[data-theme=light] .home-contact .home-contact-title-span {
  color: #121624;
}

.home-footer {
  border-radius: 60px 60px 0 0;
}
body[data-theme=dark] .home-footer {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .home-footer {
  background: #ffffff;
  box-shadow: 0 -4px 30px 0 rgba(15, 129, 199, 0.1215686275);
}
.home-footer .wrapper {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 60px 0 37px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .home-footer .wrapper {
    padding: 60px 30px 37px;
  }
}
@media (max-width: 1200px) {
  .home-footer .wrapper {
    flex-direction: column;
    padding: 50px 30px;
  }
}
@media (max-width: 768px) {
  .home-footer .wrapper {
    padding: 40px 5px;
  }
}
.home-footer .company {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1200px) {
  .home-footer .company {
    align-items: center;
  }
}
.home-footer .logo {
  width: 200px;
  height: 46px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .home-footer .logo {
    width: 140px;
    height: 35px;
  }
}
body[data-theme=dark] .home-footer .logo-img.light-theme {
  display: none;
}
body[data-theme=light] .home-footer .logo-img.dark-theme {
  display: none;
}
.home-footer .company-text {
  font-size: 20px;
  line-height: 130%;
  text-align: center;
}
body[data-theme=dark] .home-footer .company-text {
  color: #a0acbd;
}
body[data-theme=light] .home-footer .company-text {
  color: #3d4856;
}
.home-footer .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1200px) {
  .home-footer .content {
    width: 100%;
    gap: 30px 17px;
  }
}
.home-footer .navbar-list {
  display: flex;
  gap: 20px 31px;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .home-footer .navbar-list {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .home-footer .navbar-list {
    flex-wrap: unset;
    gap: 20px 15px;
  }
}
@media (max-width: 576px) {
  .home-footer .navbar-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .home-footer .navbar-list {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .home-footer .navbar-item {
    text-align: center;
  }
}
.home-footer .navbar-link, .home-footer .navbar-dropdown-link {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .home-footer .navbar-link, body[data-theme=dark] .home-footer .navbar-dropdown-link {
  color: #a0acbd;
}
body[data-theme=dark] .home-footer .navbar-link:hover, body[data-theme=dark] .home-footer .navbar-dropdown-link:hover {
  color: #d3dce1;
}
body[data-theme=light] .home-footer .navbar-link, body[data-theme=light] .home-footer .navbar-dropdown-link {
  color: #3d4856;
}
body[data-theme=light] .home-footer .navbar-link:hover, body[data-theme=light] .home-footer .navbar-dropdown-link:hover {
  color: #d3dce1;
}
@media (max-width: 480px) {
  .home-footer .navbar-link {
    font-weight: 700;
  }
}
.home-footer .navbar-dropdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  list-style: disc;
  padding-left: 20px;
  gap: 6px;
}
@media (max-width: 768px) {
  .home-footer .navbar-dropdown {
    padding-left: 10px;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .home-footer .navbar-dropdown {
    flex-direction: row;
    width: 75%;
    justify-content: space-between;
    padding-left: unset;
  }
}
@media (max-width: 480px) {
  .home-footer .navbar-dropdown {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    margin: 0 auto;
    padding-left: 20px;
  }
}
.home-footer .navbar-dropdown-item {
  line-height: 100%;
}
body[data-theme=dark] .home-footer .navbar-dropdown-item {
  color: #a0acbd;
}
body[data-theme=light] .home-footer .navbar-dropdown-item {
  color: #3d4856;
}
.home-footer .navbar-dropdown-link {
  font-size: 12px;
}
.home-footer .bottom {
  display: flex;
  gap: 20px 30px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .home-footer .bottom {
    flex-direction: column;
  }
}
.home-footer .bottom-span {
  font-size: 20px;
  line-height: 130%;
  text-align: center;
}
body[data-theme=dark] .home-footer .bottom-span {
  color: #a0acbd;
}
body[data-theme=light] .home-footer .bottom-span {
  color: #3d4856;
}
@media (max-width: 768px) {
  .home-footer .bottom-span {
    order: 1;
  }
}
.home-footer .socials {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .home-footer .socials {
    width: 40%;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .home-footer .socials {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .home-footer .socials {
    width: 70%;
  }
}
.home-footer .socials-link {
  display: flex;
  width: 26px;
  height: 26px;
}
body[data-theme=dark] .home-footer .socials-link:hover > svg > g > path {
  fill: #d3dce1;
}
body[data-theme=dark] .home-footer .socials-link:hover > svg > path {
  fill: #d3dce1;
}
body[data-theme=light] .home-footer .socials-link:hover > svg > g > path {
  fill: #d9d9d9;
}
body[data-theme=light] .home-footer .socials-link:hover > svg > path {
  fill: #d9d9d9;
}
.home-footer .socials-link > svg {
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=light] .home-footer .socials-link > svg > path {
  fill: #3d4856;
}
body[data-theme=light] .home-footer .socials-link > svg > path > svg > g > path {
  fill: #d3dce1;
}
body[data-theme=light] .home-footer .socials-link > svg > g > path {
  fill: #3d4856;
}
body[data-theme=light] .home-footer .socials-link > svg > g > path > svg > g > path {
  fill: #d3dce1;
}
.home-footer .socials-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.home-menu {
  display: none;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 2000;
  animation: slide-right 0.3s forwards;
}
.home-menu.active {
  display: block;
}
.home-menu .wrapper {
  max-width: 550px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow-y: auto;
}
body[data-theme=dark] .home-menu .wrapper {
  background: #292d39;
}
body[data-theme=light] .home-menu .wrapper {
  background: #ffffff;
}
.home-menu .wrapper::-webkit-scrollbar {
  width: 10px;
}
.home-menu .wrapper::-webkit-scrollbar-thumb {
  background: #d3dce1;
  border: 1px solid #d3dce1;
  border-radius: 5px;
}
body[data-theme=dark] .home-menu .wrapper::-webkit-scrollbar-track {
  background: #292d39;
}
body[data-theme=light] .home-menu .wrapper::-webkit-scrollbar-track {
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .home-menu .wrapper {
    max-width: 400px;
  }
}
@media screen and (max-width: 576px) {
  .home-menu .wrapper {
    max-width: unset;
  }
}
@media (max-width: 480px) {
  .home-menu .wrapper {
    padding: 15px;
  }
}
.home-menu .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.home-menu .svg {
  cursor: pointer;
}
body[data-theme=light] .home-menu .svg > path {
  stroke: #a0acbd;
}
.home-menu .svg:hover > path {
  stroke: #d3dce1;
}
.home-menu .content {
  display: flex;
  gap: 25px;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 576px) {
  .home-menu .content {
    gap: 15px;
  }
}
.home-menu .content-svg {
  display: none;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  cursor: pointer;
}
body[data-theme=dark] .home-menu .content-svg.light-theme {
  display: none;
}
body[data-theme=light] .home-menu .content-svg.dark-theme {
  display: none;
}
.home-menu .content-svg:hover > path {
  fill: #d3dce1;
}
.home-menu .logo {
  display: flex;
}
body[data-theme=dark] .home-menu .logo-img.light-theme {
  display: none;
}
body[data-theme=light] .home-menu .logo-img.dark-theme {
  display: none;
}
@media (max-width: 576px) {
  .home-menu .logo-img {
    width: 170px;
  }
}
.home-menu .bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.home-menu .navbar {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home-menu .navbar-link {
  font-weight: 500;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  line-height: 170%;
}
body[data-theme=dark] .home-menu .navbar-link {
  color: #a0acbd;
}
body[data-theme=dark] .home-menu .navbar-link:hover {
  color: #d3dce1;
}
body[data-theme=light] .home-menu .navbar-link {
  color: #3d4856;
}
body[data-theme=light] .home-menu .navbar-link:hover {
  color: #0f81c7;
}
body[data-theme=dark] .home-menu .navbar-link.active {
  color: #d3dce1;
}
body[data-theme=light] .home-menu .navbar-link.active {
  color: #0f81c7;
}
.home-menu .lang {
  display: none;
  gap: 5px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(160, 172, 189, 0.2);
  border-radius: 15px;
  align-self: flex-start;
  padding: 5px;
}
@media (max-width: 576px) {
  .home-menu .lang {
    display: flex;
  }
}
.home-menu .lang-link {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 5px 12px;
  border-radius: 10px;
}
body[data-theme=dark] .home-menu .lang-link {
  color: #d3dce1;
}
body[data-theme=light] .home-menu .lang-link {
  color: #3d4856;
}
.home-menu .lang-link:hover {
  border-color: #859dbc;
}
body[data-theme=dark] .home-menu .lang-link:hover .lang-link-span {
  color: #859dbc;
}
body[data-theme=light] .home-menu .lang-link:hover .lang-link-span {
  color: #0f81c7;
}
body[data-theme=dark] .home-menu .lang-link.active {
  background: #292d39;
}
body[data-theme=light] .home-menu .lang-link.active {
  background: #ffffff;
}
.home-menu .lang-link.active > svg {
  display: block;
}
.home-menu .lang-link > svg {
  display: none;
  width: 20px;
  height: 20px;
}
.home-menu .lang-link-span {
  font-family: "HelveticaNeueCyr", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 170%;
  text-transform: uppercase;
}
body[data-theme=dark] .home-menu .lang-link-span {
  color: #d3dce1;
}
body[data-theme=light] .home-menu .lang-link-span {
  color: #3d4856;
}

.home-showreel-modal {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5019607843);
  z-index: 1000;
}
.home-showreel-modal.active {
  display: flex;
}
.home-showreel-modal .wrapper {
  width: 80%;
  max-height: 80%;
  display: flex;
  justify-content: space-between;
  border-radius: 26px;
  position: relative;
  animation: slide-up 0.5s forwards;
}
body[data-theme=dark] .home-showreel-modal .wrapper {
  background: #292d39;
}
body[data-theme=light] .home-showreel-modal .wrapper {
  background: #ffffff;
}
body[data-theme=dark] .home-showreel-modal .wrapper {
  border: 2.2px solid #3d4856;
}
body[data-theme=light] .home-showreel-modal .wrapper {
  border: 2.2px solid #a0acbd;
}
@media (max-width: 992px) {
  .home-showreel-modal .wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .home-showreel-modal .wrapper {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .home-showreel-modal .wrapper {
    width: 90%;
    max-height: 90%;
  }
}
.home-showreel-modal .wrapper > iframe, .home-showreel-modal .wrapper > video {
  width: 100%;
  border-radius: inherit;
}
.home-showreel-modal .wrapper-img {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -45px;
  right: -20px;
  cursor: pointer;
}

body[data-theme=dark] .about-hero {
  background: linear-gradient(180deg, rgba(15, 129, 199, 0.3803921569) 0%, rgba(217, 217, 217, 0) 100%);
}
body[data-theme=light] .about-hero {
  background: #ffffff;
}
.about-hero .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 168px;
}
@media (max-width: 1200px) {
  .about-hero .wrapper {
    padding-block: 140px;
  }
}
@media (max-width: 992px) {
  .about-hero .wrapper {
    padding-block: 120px;
  }
}
@media (max-width: 768px) {
  .about-hero .wrapper {
    padding-block: 100px;
  }
}
.about-hero .about-hero-img {
  max-width: 586px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=dark] .about-hero .about-hero-img.light-theme {
  display: none;
}
body[data-theme=light] .about-hero .about-hero-img.dark-theme {
  display: none;
}
@media (max-width: 1200px) {
  .about-hero .about-hero-img {
    max-width: 500px;
  }
}
@media (max-width: 992px) {
  .about-hero .about-hero-img {
    max-width: 430px;
  }
}
@media (max-width: 768px) {
  .about-hero .about-hero-img {
    max-width: 370px;
  }
}
@media (max-width: 576px) {
  .about-hero .about-hero-img {
    max-width: 70%;
  }
}
@media (max-width: 480px) {
  .about-hero .about-hero-img {
    max-width: 80%;
  }
}

.about-company .wrapper {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}
.about-company .wrapper p {
  padding-bottom: 22px;
}
body[data-theme=dark] .about-company .wrapper p {
  color: #a0acbd;
}
body[data-theme=light] .about-company .wrapper p {
  color: #3d4856;
}
.about-company .about-company-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 26px;
}
body[data-theme=dark] .about-company .about-company-title {
  color: #d3dce1;
}
body[data-theme=light] .about-company .about-company-title {
  color: #121624;
}
@media (max-width: 576px) {
  .about-company .about-company-title {
    text-align: center;
  }
}
.about-company .about-company-text {
  font-size: 20px;
  line-height: 130%;
  padding-bottom: 22px;
}
body[data-theme=dark] .about-company .about-company-text {
  color: #a0acbd;
}
body[data-theme=light] .about-company .about-company-text {
  color: #3d4856;
}
body[data-theme=dark] .about-company .about-company-text-span {
  color: #d3dce1;
}
body[data-theme=light] .about-company .about-company-text-span {
  color: #121624;
}
.about-company .cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media (max-width: 992px) {
  .about-company .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .about-company .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .about-company .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .about-company .cards {
    grid-template-columns: 1fr;
  }
}
.about-company .stat-card::before {
  z-index: 0;
}
.about-company .stat-card .number {
  z-index: 10;
}
.about-company .stat-card .sign {
  z-index: 10;
}
.about-company .stat-card .stat-card-text {
  z-index: 10;
  padding-bottom: unset;
}

.about-services .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .about-services .wrapper {
    padding-block: 40px;
  }
}
.about-services .about-services-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  margin-bottom: 26px;
}
body[data-theme=dark] .about-services .about-services-title {
  color: #d3dce1;
}
body[data-theme=light] .about-services .about-services-title {
  color: #121624;
}
@media (max-width: 576px) {
  .about-services .about-services-title {
    text-align: center;
  }
}
.about-services .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  overflow: hidden;
  margin-right: 20px;
}
@media (max-width: 992px) {
  .about-services .cards {
    margin-right: unset;
  }
}
@media (max-width: 768px) {
  .about-services .cards {
    grid-template-columns: 1fr;
  }
}

.about-clients .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
}
@media (max-width: 992px) {
  .about-clients .wrapper {
    padding-block: 40px;
  }
}
.about-clients .about-clients-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 26px;
}
body[data-theme=dark] .about-clients .about-clients-title {
  color: #d3dce1;
}
body[data-theme=light] .about-clients .about-clients-title {
  color: #121624;
}
@media (max-width: 576px) {
  .about-clients .about-clients-title {
    text-align: center;
  }
}
.about-clients .about-clients-text {
  font-size: 20px;
  line-height: 130%;
  padding-bottom: 26px;
}
body[data-theme=dark] .about-clients .about-clients-text {
  color: #a0acbd;
}
body[data-theme=light] .about-clients .about-clients-text {
  color: #3d4856;
}
@media (max-width: 576px) {
  .about-clients .about-clients-text {
    font-size: 16px;
  }
}
.about-clients .cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-clients .card {
  width: 100%;
  padding: 40px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: center;
}
body[data-theme=dark] .about-clients .card {
  background: #292d39;
}
body[data-theme=light] .about-clients .card {
  background: rgba(160, 172, 189, 0.2);
}
.about-clients .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .about-clients .card::before {
  display: none;
}
@media (max-width: 992px) {
  .about-clients .card {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .about-clients .card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .about-clients .card {
    gap: 20px;
  }
}
.about-clients .card:first-child {
  border-radius: 20px 20px 0 0;
}
.about-clients .card:last-child {
  border-radius: 0 0 20px 20px;
}
.about-clients .card-pic {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-clients .card-img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 60px;
}
body[data-theme=dark] .about-clients .card-img.light-theme {
  display: none;
}
body[data-theme=light] .about-clients .card-img.dark-theme {
  display: none;
}
.about-clients .card-text {
  font-size: 20px;
  line-height: 130%;
}
body[data-theme=dark] .about-clients .card-text {
  color: #a0acbd;
}
body[data-theme=light] .about-clients .card-text {
  color: #3d4856;
}
@media (max-width: 576px) {
  .about-clients .card-text {
    font-size: 16px;
  }
}
.about-clients .more {
  margin-top: 26px;
  align-self: center;
  gap: 26px;
}

.about-team .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 80px;
}
@media (max-width: 992px) {
  .about-team .wrapper {
    padding-block: 40px;
  }
}
.about-team .about-team-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 40px;
  max-width: 1230px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}
body[data-theme=dark] .about-team .about-team-title {
  color: #d3dce1;
}
body[data-theme=light] .about-team .about-team-title {
  color: #121624;
}
.about-team .cards {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  gap: 20px;
}
.about-team .cards-slide {
  display: inline-flex;
  gap: 20px;
  justify-content: center;
  animation-name: move-left;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.about-team .card {
  width: 360px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 992px) {
  .about-team .card {
    width: 320px;
  }
}
@media (max-width: 576px) {
  .about-team .card {
    width: 270px;
  }
}
.about-team .more {
  margin-top: 40px;
  align-self: center;
}
@media (max-width: 480px) {
  .about-team .more {
    width: 90%;
  }
}

.about-office .wrapper {
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  padding: 60px 0 120px;
}
@media (max-width: 1300px) {
  .about-office .wrapper {
    padding: 60px 15px 120px;
  }
}
.about-office .about-office-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 40px;
}
body[data-theme=dark] .about-office .about-office-title {
  color: #d3dce1;
}
body[data-theme=light] .about-office .about-office-title {
  color: #121624;
}
.about-office .cards {
  position: relative;
}
.about-office .swiper-about-office-cards {
  overflow: hidden;
  position: relative;
  height: 300px;
  margin-bottom: 76px;
}
.about-office .swiper-about-office-cards-img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.about-office .swiper-about-office-pagination {
  position: absolute;
  bottom: 30px;
  white-space: pre;
  overflow: hidden;
}
.about-office .prev-btn, .about-office .next-btn {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  padding: 12px;
  position: absolute;
  top: calc(50% - 24px);
  z-index: 20;
  border: none;
  cursor: pointer;
}
body[data-theme=dark] .about-office .prev-btn, body[data-theme=dark] .about-office .next-btn {
  background: rgba(211, 220, 225, 0.1215686275);
}
body[data-theme=light] .about-office .prev-btn, body[data-theme=light] .about-office .next-btn {
  background: rgba(18, 22, 36, 0.1215686275);
}
.about-office .prev-btn-img, .about-office .next-btn-img {
  width: 24px;
  height: 24px;
}
.about-office .prev-btn {
  left: 20px;
}
.about-office .next-btn {
  right: 20px;
}
.about-office .details {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .about-office .details {
    padding-inline: unset;
    flex-direction: column;
  }
}
.about-office .details-text {
  font-size: 20px;
  line-height: 130%;
}
body[data-theme=dark] .about-office .details-text {
  color: #a0acbd;
}
body[data-theme=light] .about-office .details-text {
  color: #3d4856;
}
@media (max-width: 768px) {
  .about-office .details-text {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .about-office .details-text {
    text-align: center;
  }
}
.about-office .location {
  width: 50%;
  display: grid;
  grid-template-columns: 24px 1fr 100px;
  gap: 10px 20px;
  align-items: center;
  border: 1px solid #3d4856;
  border-radius: 12px;
  padding: 10px 10px 10px 26px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .about-office .location {
    grid-template-columns: 24px 1fr;
  }
}
@media (max-width: 768px) {
  .about-office .location {
    width: 100%;
    grid-template-columns: 24px 1fr 100px;
  }
}
@media (max-width: 480px) {
  .about-office .location {
    grid-template-columns: 24px 1fr;
  }
}
.about-office .location-img {
  width: 24px;
  height: 24px;
}
body[data-theme=dark] .about-office .location-img.light-theme {
  display: none;
}
body[data-theme=light] .about-office .location-img.dark-theme {
  display: none;
}
.about-office .location-span {
  font-size: 20px;
  line-height: 130%;
}
body[data-theme=dark] .about-office .location-span {
  color: #a0acbd;
}
body[data-theme=light] .about-office .location-span {
  color: #3d4856;
}
.about-office .maps {
  display: flex;
  gap: 4px;
}
@media (max-width: 992px) {
  .about-office .maps {
    grid-column-start: 1;
    grid-column-end: 3;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .about-office .maps {
    grid-column-start: unset;
    grid-column-end: unset;
    justify-content: unset;
  }
}
@media (max-width: 480px) {
  .about-office .maps {
    grid-column-start: 1;
    grid-column-end: 3;
    justify-content: center;
  }
}
.about-office .maps-link {
  border-radius: 8px;
  padding: 6px 12px;
  background: rgba(160, 172, 189, 0.2);
  min-width: 48px;
}

.team-hero .wrapper {
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  padding: 70px 15px 60px;
}

.team-members .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .team-members .wrapper {
    padding-block: 30px;
  }
}
.team-members .team-members-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  text-transform: uppercase;
  margin-bottom: 26px;
}
body[data-theme=dark] .team-members .team-members-title {
  color: #d3dce1;
}
body[data-theme=light] .team-members .team-members-title {
  color: #121624;
}
.team-members .tabs {
  padding-bottom: 40px;
}
@media (max-width: 576px) {
  .team-members .tabs {
    padding-bottom: 20px;
  }
}
.team-members .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 20px 40px 20px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .team-members .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-inline: unset;
  }
}
@media (max-width: 576px) {
  .team-members .cards {
    grid-template-columns: 1fr;
  }
}
.team-members .content-pic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(226deg, #59a7d8 0%, #0f81c7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  z-index: 10;
  align-self: center;
}
.team-members .content-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.team-members .more {
  align-self: center;
}

.team-strategy .wrapper {
  display: flex;
  flex-direction: column;
  padding: 60px 15px 120px;
}
@media (max-width: 992px) {
  .team-strategy .wrapper {
    padding-bottom: 80px;
  }
}
.team-strategy .team-strategy-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 26px;
}
body[data-theme=dark] .team-strategy .team-strategy-title {
  color: #d3dce1;
}
body[data-theme=light] .team-strategy .team-strategy-title {
  color: #121624;
}
@media (max-width: 576px) {
  .team-strategy .team-strategy-title {
    text-align: center;
  }
}
.team-strategy .team-strategy-text {
  font-size: 20px;
  line-height: 130%;
  padding-bottom: 26px;
}
body[data-theme=dark] .team-strategy .team-strategy-text {
  color: #a0acbd;
}
body[data-theme=light] .team-strategy .team-strategy-text {
  color: #3d4856;
}
.team-strategy .cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-inline: 50px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .team-strategy .cards {
    padding-inline: unset;
  }
}
.team-strategy .card {
  max-width: 832px;
  width: 100%;
  border-radius: 12px;
  padding: 17px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
}
body[data-theme=dark] .team-strategy .card {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .team-strategy .card {
  background: rgba(160, 172, 189, 0.2);
}
.team-strategy .card:nth-child(even) {
  align-self: flex-end;
}
@media (max-width: 992px) {
  .team-strategy .card {
    width: 90%;
  }
}
@media (max-width: 576px) {
  .team-strategy .card {
    width: 100%;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .team-strategy .card {
    flex-direction: column;
  }
}
.team-strategy .card-span {
  font-size: 28px;
}
.team-strategy .card-img {
  width: 36px;
  height: 36px;
}
.team-strategy .card-text {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .team-strategy .card-text {
  color: #a0acbd;
}
body[data-theme=light] .team-strategy .card-text {
  color: #3d4856;
}
@media (max-width: 480px) {
  .team-strategy .card-text {
    text-align: center;
  }
}
body[data-theme=dark] .team-strategy .card-text-span {
  color: #d3dce1;
}
body[data-theme=light] .team-strategy .card-text-span {
  color: #121624;
}

.team-employee-modal {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9019607843);
  z-index: 1000;
}
.team-employee-modal.active {
  display: flex;
}
.team-employee-modal .wrapper {
  max-height: 572px;
  max-width: 1128px;
  width: 100%;
  margin: 15px;
  display: flex;
  justify-content: space-between;
  border-radius: 26px;
  position: relative;
  animation: slide-up 0.5s forwards;
}
body[data-theme=dark] .team-employee-modal .wrapper {
  background: #292d39;
}
body[data-theme=light] .team-employee-modal .wrapper {
  background: #ffffff;
}
.team-employee-modal .wrapper::-webkit-scrollbar {
  width: unset;
}
@media (max-width: 576px) {
  .team-employee-modal .wrapper::-webkit-scrollbar {
    width: 7px;
  }
}
.team-employee-modal .wrapper::-webkit-scrollbar-thumb {
  background: #d3dce1;
  border-radius: 5px;
}
.team-employee-modal .wrapper::-webkit-scrollbar-track {
  border-radius: 26px;
}
body[data-theme=dark] .team-employee-modal .wrapper::-webkit-scrollbar-track {
  background: #292d39;
}
body[data-theme=light] .team-employee-modal .wrapper::-webkit-scrollbar-track {
  background: #ffffff;
}
@media (max-width: 992px) {
  .team-employee-modal .wrapper {
    max-width: unset;
    width: 80%;
    flex-direction: column;
    max-height: 80%;
  }
}
@media (max-width: 576px) {
  .team-employee-modal .wrapper {
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
  }
}
body[data-theme=dark] .team-employee-modal .wrapper {
  border: 2.2px solid #3d4856;
}
body[data-theme=light] .team-employee-modal .wrapper {
  border: 2.2px solid #a0acbd;
}
.team-employee-modal .wrapper-img {
  display: none;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -35px;
  right: -25px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .team-employee-modal .wrapper-img {
    display: block;
  }
}
@media (max-width: 576px) {
  .team-employee-modal .wrapper-img {
    top: 15px;
    right: 15px;
    background: #ffffff;
    border-radius: 50%;
    padding: 5px;
    width: 35px;
    height: 35px;
  }
}
.team-employee-modal .team-employee-modal-pic {
  width: 40%;
  border-radius: 26px 0 0 26px;
  background: linear-gradient(180deg, #859dbc 0%, #3d4856 100%);
}
@media (max-width: 992px) {
  .team-employee-modal .team-employee-modal-pic {
    margin: 10px auto 20px;
    border-radius: 26px;
  }
}
@media (max-width: 768px) {
  .team-employee-modal .team-employee-modal-pic {
    width: 250px;
    height: 430px;
  }
}
@media (max-width: 480px) {
  .team-employee-modal .team-employee-modal-pic {
    width: 100%;
    margin: 0 auto 20px;
    height: 400px;
  }
}
.team-employee-modal .team-employee-modal-img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
@media (max-width: 480px) {
  .team-employee-modal .team-employee-modal-img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.team-employee-modal .content {
  width: 60%;
  padding: 20px 26px;
  max-height: 80%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.team-employee-modal .content::-webkit-scrollbar {
  width: 7px;
}
@media (max-width: 576px) {
  .team-employee-modal .content::-webkit-scrollbar {
    width: unset;
  }
}
.team-employee-modal .content::-webkit-scrollbar-thumb {
  background: #d3dce1;
  border-radius: 5px;
}
.team-employee-modal .content::-webkit-scrollbar-track {
  border-radius: 26px;
}
body[data-theme=dark] .team-employee-modal .content::-webkit-scrollbar-track {
  background: #292d39;
}
body[data-theme=light] .team-employee-modal .content::-webkit-scrollbar-track {
  background: #ffffff;
}
@media (max-width: 1200px) {
  .team-employee-modal .content {
    padding: 10px 20px;
  }
}
@media (max-width: 992px) {
  .team-employee-modal .content {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .team-employee-modal .content {
    overflow-y: unset;
  }
}
.team-employee-modal .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid #3d4856;
}
@media (max-width: 1200px) {
  .team-employee-modal .top {
    padding-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .team-employee-modal .top {
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .team-employee-modal .top {
    flex-direction: column;
  }
}
.team-employee-modal .desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-employee-modal .desc-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
}
body[data-theme=dark] .team-employee-modal .desc-title {
  color: #ffffff;
}
body[data-theme=light] .team-employee-modal .desc-title {
  color: #0f81c7;
}
.team-employee-modal .desc-text {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .team-employee-modal .desc-text {
  color: #a0acbd;
}
body[data-theme=light] .team-employee-modal .desc-text {
  color: #3d4856;
}
.team-employee-modal .socials {
  max-width: 350px;
  min-width: 200px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  .team-employee-modal .socials {
    max-width: unset;
    justify-content: center;
  }
}
.team-employee-modal .social {
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 10px;
  padding: 8px 16px;
  background: rgba(61, 72, 86, 0.3019607843);
}
.team-employee-modal .social-img {
  width: 26px;
  height: 26px;
}
body[data-theme=dark] .team-employee-modal .social-img.light-theme {
  display: none;
}
body[data-theme=light] .team-employee-modal .social-img.dark-theme {
  display: none;
}
.team-employee-modal .social-span {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .team-employee-modal .social-span {
  color: #d3dce1;
}
body[data-theme=light] .team-employee-modal .social-span {
  color: #121624;
}
.team-employee-modal .bottom {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .team-employee-modal .bottom {
    padding-top: 15px;
  }
}
@media (max-width: 992px) {
  .team-employee-modal .bottom {
    padding-bottom: 20px;
  }
}
.team-employee-modal .stats {
  display: flex;
  gap: 20px 40px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
@media (max-width: 992px) {
  .team-employee-modal .stats {
    padding-bottom: 25px;
  }
}
.team-employee-modal .stat {
  display: flex;
  gap: 6px;
}
.team-employee-modal .stat-heading, .team-employee-modal .projects-heading {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .team-employee-modal .stat-heading, body[data-theme=dark] .team-employee-modal .projects-heading {
  color: #d3dce1;
}
body[data-theme=light] .team-employee-modal .stat-heading, body[data-theme=light] .team-employee-modal .projects-heading {
  color: #121624;
}
.team-employee-modal .stat-span, .team-employee-modal .projects-span {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .team-employee-modal .stat-span, body[data-theme=dark] .team-employee-modal .projects-span {
  color: #a0acbd;
}
body[data-theme=light] .team-employee-modal .stat-span, body[data-theme=light] .team-employee-modal .projects-span {
  color: #3d4856;
}
.team-employee-modal .stat-span, .team-employee-modal .stat-heading {
  max-width: 300px;
}
.team-employee-modal .projects {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}
@media (max-width: 992px) {
  .team-employee-modal .projects {
    padding-bottom: 25px;
    gap: 7px;
  }
}
.team-employee-modal .technologies {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-employee-modal .technologies-heading {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .team-employee-modal .technologies-heading {
  color: #d3dce1;
}
body[data-theme=light] .team-employee-modal .technologies-heading {
  color: #121624;
}
.team-employee-modal .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.team-employee-modal .tag {
  border-radius: 10px;
  padding: 8px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
body[data-theme=dark] .team-employee-modal .tag {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .team-employee-modal .tag {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 576px) {
  .team-employee-modal .tag {
    padding: 5px 10px;
  }
}
.team-employee-modal .tag-img {
  height: auto;
  max-width: 24px;
}
@media (max-width: 576px) {
  .team-employee-modal .tag-img {
    width: 20px;
    height: 20px;
  }
}
.team-employee-modal .tag-span {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .team-employee-modal .tag-span {
  color: #a0acbd;
}
body[data-theme=light] .team-employee-modal .tag-span {
  color: #3d4856;
}

.vacancies-hero .wrapper {
  display: flex;
  flex-direction: column;
  padding: 70px 15px 60px;
}
.vacancies-hero .hero-img-block-desc {
  max-width: 787px;
}
@media (max-width: 992px) {
  .vacancies-hero .hero-img-block-desc {
    max-width: unset;
  }
}

.vacancies-main .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .vacancies-main .wrapper {
    padding-top: 30px;
  }
}
.vacancies-main .vacancies-main-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  text-transform: uppercase;
  padding-bottom: 26px;
}
body[data-theme=dark] .vacancies-main .vacancies-main-title {
  color: #d3dce1;
}
body[data-theme=light] .vacancies-main .vacancies-main-title {
  color: #121624;
}
.vacancies-main .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .vacancies-main .cards {
    grid-template-columns: 1fr;
  }
}
.vacancies-main .card {
  width: 100%;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  gap: 30px 50px;
  align-items: center;
  justify-content: space-between;
}
body[data-theme=dark] .vacancies-main .card {
  background: #292d39;
}
body[data-theme=light] .vacancies-main .card {
  background: rgba(160, 172, 189, 0.2);
}
.vacancies-main .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .vacancies-main .card::before {
  display: none;
}
@media (max-width: 1200px) {
  .vacancies-main .card {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .vacancies-main .card {
    padding: 25px;
    gap: 20px 50px;
  }
}
.vacancies-main .content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .vacancies-main .content {
    width: 100%;
  }
}
.vacancies-main .content-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 576px) {
  .vacancies-main .content-heading {
    border-bottom: 1px solid #3d4856;
    margin-bottom: 20px;
  }
}
.vacancies-main .content-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #3d4856;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}
body[data-theme=dark] .vacancies-main .content-title {
  color: #ffffff;
}
body[data-theme=light] .vacancies-main .content-title {
  color: #121624;
}
@media (max-width: 576px) {
  .vacancies-main .content-title {
    line-height: unset;
    padding-bottom: unset;
    margin-bottom: 15px;
    border-bottom: unset;
    min-height: 61px;
  }
}
.vacancies-main .stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
@media (max-width: 576px) {
  .vacancies-main .stats {
    grid-template-columns: 1fr;
  }
}
.vacancies-main .stat {
  width: 100%;
  display: flex;
  gap: 12px;
}
.vacancies-main .stat-icon {
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(160, 172, 189, 0.2);
  flex-shrink: 0;
}
.vacancies-main .stat-img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=dark] .vacancies-main .stat-img.light-theme {
  display: none;
}
body[data-theme=light] .vacancies-main .stat-img.dark-theme {
  display: none;
}
.vacancies-main .stat-span {
  line-height: 187%;
}
body[data-theme=dark] .vacancies-main .stat-span {
  color: #a0acbd;
}
body[data-theme=light] .vacancies-main .stat-span {
  color: #3d4856;
}
.vacancies-main .card-pic {
  border-radius: 12px;
  background: linear-gradient(48deg, #0f81c7 0%, #a0acbd 100%);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .vacancies-main .card-pic {
    display: none;
  }
}
.vacancies-main .card-pic.mobile {
  display: none;
}
@media (max-width: 576px) {
  .vacancies-main .card-pic.mobile {
    display: flex;
  }
}
.vacancies-main .card-img {
  width: 30px;
  height: 30px;
  -o-object-fit: none;
     object-fit: none;
}

.vacancy-main .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 120px;
}
@media (max-width: 992px) {
  .vacancy-main .wrapper {
    padding-block: 60px;
  }
}
.vacancy-main .wrapper-more {
  margin-top: 32px;
  align-self: center;
  gap: 13px;
}
.vacancy-main .top {
  border-radius: 26px 26px 0 0;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 6px;
  overflow: hidden;
}
body[data-theme=dark] .vacancy-main .top {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .vacancy-main .top {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .vacancy-main .top {
    padding: 20px 25px;
  }
}
.vacancy-main .top-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
}
body[data-theme=dark] .vacancy-main .top-title {
  color: #d3dce1;
}
body[data-theme=light] .vacancy-main .top-title {
  color: #121624;
}
.vacancy-main .content {
  display: grid;
  grid-template-columns: 434px 1fr 300px;
  gap: 45px 0;
}
@media (max-width: 1200px) {
  .vacancy-main .content {
    grid-template-columns: 400px 1fr 280px;
  }
}
@media (max-width: 992px) {
  .vacancy-main .content {
    grid-template-columns: 1fr;
  }
}
.vacancy-main .stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  border-right: 1px solid #3d4856;
  padding-right: 10px;
}
@media (max-width: 992px) {
  .vacancy-main .stats {
    gap: 20px;
    border-right: unset;
  }
}
@media (max-width: 576px) {
  .vacancy-main .stats {
    grid-template-columns: 1fr;
  }
}
.vacancy-main .stat {
  width: 100%;
  display: flex;
  gap: 12px;
}
.vacancy-main .stat-icon {
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(160, 172, 189, 0.2);
  flex-shrink: 0;
}
.vacancy-main .stat-img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=dark] .vacancy-main .stat-img.light-theme {
  display: none;
}
body[data-theme=light] .vacancy-main .stat-img.dark-theme {
  display: none;
}
.vacancy-main .stat-span {
  line-height: 187%;
}
body[data-theme=dark] .vacancy-main .stat-span {
  color: #a0acbd;
}
body[data-theme=light] .vacancy-main .stat-span {
  color: #3d4856;
}
.vacancy-main .share-block {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .vacancy-main .share-block {
    flex-direction: column;
  }
}
.vacancy-main .share {
  width: 100%;
  padding-inline: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid #3d4856;
}
@media (max-width: 1200px) {
  .vacancy-main .share {
    padding-inline: 15px;
  }
}
@media (max-width: 992px) {
  .vacancy-main .share {
    border-right: none;
    padding-inline: unset;
  }
}
@media (max-width: 768px) {
  .vacancy-main .share {
    align-items: flex-start;
  }
}
.vacancy-main .share-title {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .vacancy-main .share-title {
  color: #d3dce1;
}
body[data-theme=light] .vacancy-main .share-title {
  color: #121624;
}
.vacancy-main .socials {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .vacancy-main .socials {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .vacancy-main .socials {
    justify-content: flex-start;
  }
}
.vacancy-main .socials-link {
  display: flex;
}
.vacancy-main .socials-link-img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=dark] .vacancy-main .socials-link-img.light-theme {
  display: none;
}
body[data-theme=light] .vacancy-main .socials-link-img.dark-theme {
  display: none;
}
.vacancy-main .content-more {
  justify-self: flex-end;
  align-self: center;
}
@media (max-width: 992px) {
  .vacancy-main .content-more {
    display: none;
  }
}
@media (max-width: 768px) {
  .vacancy-main .content-more {
    justify-self: center;
  }
}
@media (max-width: 576px) {
  .vacancy-main .content-more {
    justify-self: flex-start;
  }
}
.vacancy-main .content-more.mobile {
  display: none;
}
@media (max-width: 992px) {
  .vacancy-main .content-more.mobile {
    display: flex;
    flex-shrink: 0;
  }
}
.vacancy-main .bottom {
  border-radius: 0 0 26px 26px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body[data-theme=dark] .vacancy-main .bottom {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .vacancy-main .bottom {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .vacancy-main .bottom {
    padding: 20px 25px;
  }
}
.vacancy-main .desc {
  display: flex;
  flex-direction: column;
}
body[data-theme=dark] .vacancy-main .desc p, body[data-theme=dark] .vacancy-main .desc h1, body[data-theme=dark] .vacancy-main .desc span {
  color: #d3dce1;
}
body[data-theme=light] .vacancy-main .desc p, body[data-theme=light] .vacancy-main .desc h1, body[data-theme=light] .vacancy-main .desc span {
  color: #121624;
}
@media (max-width: 576px) {
  .vacancy-main .desc p, .vacancy-main .desc h1, .vacancy-main .desc span {
    font-size: 20px !important;
  }
}
.vacancy-main .desc strong span {
  font-weight: bold;
}
.vacancy-main .desc ul, .vacancy-main .desc ol {
  padding-left: 30px;
}
.vacancy-main .desc ul {
  list-style: disc;
}
body[data-theme=dark] .vacancy-main .desc li {
  color: #a0acbd;
}
body[data-theme=light] .vacancy-main .desc li {
  color: #3d4856;
}
.vacancy-main .desc-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 12px;
}
body[data-theme=dark] .vacancy-main .desc-title {
  color: #d3dce1;
}
body[data-theme=light] .vacancy-main .desc-title {
  color: #121624;
}
.vacancy-main .desc-list {
  display: flex;
  flex-direction: column;
  list-style: disc;
  padding-left: 30px;
}
@media (max-width: 576px) {
  .vacancy-main .desc-list {
    padding-left: 20px;
  }
}
.vacancy-main .desc-item {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .vacancy-main .desc-item {
  color: #a0acbd;
}
body[data-theme=light] .vacancy-main .desc-item {
  color: #3d4856;
}

.vacancy-resume {
  display: none;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 2000;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9019607843);
  z-index: 1000;
  padding: 15px;
}
.vacancy-resume.active {
  display: flex;
}
.vacancy-resume .wrapper {
  max-width: 740px;
  width: 100%;
  position: relative;
  border-radius: 26px;
  animation: slide-up 0.5s forwards;
}
body[data-theme=dark] .vacancy-resume .wrapper {
  background: #292d39;
}
body[data-theme=light] .vacancy-resume .wrapper {
  background: rgba(160, 172, 189, 0.2);
}
.vacancy-resume .wrapper::-webkit-scrollbar {
  width: 10px;
}
.vacancy-resume .wrapper::-webkit-scrollbar-thumb {
  background: #d3dce1;
  border: 1px solid #d3dce1;
  border-radius: 5px;
}
.vacancy-resume .wrapper::-webkit-scrollbar-track {
  background: #292d39;
}
@media screen and (max-width: 768px) {
  .vacancy-resume .wrapper {
    max-width: 500px;
  }
}
@media screen and (max-width: 576px) {
  .vacancy-resume .wrapper {
    max-width: unset;
  }
}
.vacancy-resume .form {
  width: 100%;
  border: 2.2px solid #3d4856;
  border-radius: 26px;
  padding: 41px 58px;
  display: flex;
  flex-direction: column;
  max-height: 80svh;
  overflow-y: auto;
}
body[data-theme=dark] .vacancy-resume .form {
  background: #121624;
}
body[data-theme=light] .vacancy-resume .form {
  background: #ffffff;
}
.vacancy-resume .form::-webkit-scrollbar {
  width: 5px;
}
.vacancy-resume .form::-webkit-scrollbar-thumb {
  background: #d3dce1;
  border: 1px solid #d3dce1;
  border-radius: 5px;
}
.vacancy-resume .form::-webkit-scrollbar-track {
  background: #292d39;
}
@media (max-width: 768px) {
  .vacancy-resume .form {
    padding: 20px 30px;
  }
}
@media (max-width: 480px) {
  .vacancy-resume .form {
    padding: 20px;
  }
}
.vacancy-resume .inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 26px;
}
@media (max-width: 480px) {
  .vacancy-resume .inputs {
    grid-template-columns: 1fr;
  }
}
.vacancy-resume .input {
  width: 100%;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 500;
  line-height: 144%;
}
body[data-theme=dark] .vacancy-resume .input {
  background: #292d39;
}
body[data-theme=light] .vacancy-resume .input {
  background: rgba(160, 172, 189, 0.2);
}
body[data-theme=dark] .vacancy-resume .input {
  color: #d3dce1;
}
body[data-theme=light] .vacancy-resume .input {
  color: #121624;
}
.vacancy-resume .input::-moz-placeholder {
  font-weight: 500;
  line-height: 144%;
}
.vacancy-resume .input::placeholder {
  font-weight: 500;
  line-height: 144%;
}
body[data-theme=dark] .vacancy-resume .input::-moz-placeholder {
  color: #a0acbd;
}
body[data-theme=dark] .vacancy-resume .input::placeholder {
  color: #a0acbd;
}
body[data-theme=light] .vacancy-resume .input::-moz-placeholder {
  color: #3d4856;
}
body[data-theme=light] .vacancy-resume .input::placeholder {
  color: #3d4856;
}
.vacancy-resume .select {
  width: 100%;
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 26px;
  font-weight: 500;
  line-height: 144%;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 60px;
}
body[data-theme=dark] .vacancy-resume .select {
  background: #292d39;
}
body[data-theme=light] .vacancy-resume .select {
  background: rgba(160, 172, 189, 0.2);
}
body[data-theme=dark] .vacancy-resume .select {
  color: #d3dce1;
}
body[data-theme=light] .vacancy-resume .select {
  color: #121624;
}
body[data-theme=dark] .vacancy-resume .select {
  background-image: url("../images/icons/arrow-down3.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
body[data-theme=light] .vacancy-resume .select {
  background-image: url("../images/icons/arrow-down2.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.vacancy-resume .file-input-label-title {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 6px;
}
body[data-theme=dark] .vacancy-resume .file-input-label-title {
  color: #d3dce1;
}
body[data-theme=light] .vacancy-resume .file-input-label-title {
  color: #121624;
}
.vacancy-resume .file-input-label {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 144%;
  padding: 120px 20px 60px;
  cursor: pointer;
  border: 1px dashed #a0acbd;
  border-radius: 12px;
  position: relative;
  text-align: center;
}
body[data-theme=dark] .vacancy-resume .file-input-label {
  color: #a0acbd;
}
body[data-theme=light] .vacancy-resume .file-input-label {
  color: #3d4856;
}
.vacancy-resume .file-input-label.checked::after {
  background: url("../images/icons/checked.svg") center no-repeat;
}
.vacancy-resume .file-input-label::after {
  content: "";
  position: absolute;
  top: 60px;
  right: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background: url("../images/icons/file.svg") center no-repeat;
}
.vacancy-resume .file-input-label-span {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
body[data-theme=dark] .vacancy-resume .file-input-label-span {
  color: #d3dce1;
}
body[data-theme=light] .vacancy-resume .file-input-label-span {
  color: #121624;
}
.vacancy-resume .file-input {
  display: none;
  font-weight: 500;
  line-height: 144%;
}
body[data-theme=dark] .vacancy-resume .file-input {
  color: #a0acbd;
}
body[data-theme=light] .vacancy-resume .file-input {
  color: #3d4856;
}
@media (max-width: 480px) {
  .vacancy-resume .btn-send {
    width: 100%;
    justify-content: center;
  }
}
.vacancy-resume .wrapper-img {
  position: absolute;
  top: -50px;
  right: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.services-hero .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40svh;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .services-hero .wrapper {
    padding-block: 40px;
  }
}

.services-main .wrapper {
  max-width: 1210px;
  display: flex;
  flex-direction: column;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .services-main .wrapper {
    padding-block: 40px;
  }
}
.services-main .services-main-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  margin-bottom: 26px;
  text-transform: uppercase;
}
body[data-theme=dark] .services-main .services-main-title {
  color: #d3dce1;
}
body[data-theme=light] .services-main .services-main-title {
  color: #121624;
}
@media (max-width: 576px) {
  .services-main .services-main-title {
    text-align: center;
  }
}
.services-main .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  overflow: hidden;
  padding-bottom: 26px;
}
@media (max-width: 768px) {
  .services-main .cards {
    grid-template-columns: 1fr;
  }
}
.services-main .wrapper-more {
  align-self: center;
}

.services-steps .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 15px 120px;
}
@media (max-width: 992px) {
  .services-steps .wrapper {
    padding: 40px 15px 80px;
  }
}
.services-steps .services-steps-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
  margin-bottom: 40px;
  text-align: center;
  padding-inline: 6px;
}
body[data-theme=dark] .services-steps .services-steps-title {
  color: #d3dce1;
}
body[data-theme=light] .services-steps .services-steps-title {
  color: #121624;
}
@media (max-width: 992px) {
  .services-steps .services-steps-title {
    padding-inline: unset;
  }
}
@media (max-width: 768px) {
  .services-steps .services-steps-title {
    margin-bottom: 20px;
  }
}
.services-steps .cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-inline: 101px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .services-steps .cards {
    padding-inline: 30px;
  }
}
@media (max-width: 768px) {
  .services-steps .cards {
    gap: 60px;
  }
}
@media (max-width: 576px) {
  .services-steps .cards {
    padding-inline: unset;
  }
}
.services-steps .card {
  display: flex;
  gap: 66px;
  align-items: center;
}
.services-steps .card:nth-child(even) .card-pic {
  order: -1;
}
.services-steps .card:nth-child(even) .desc {
  align-items: flex-start;
}
@media (max-width: 768px) {
  .services-steps .card:nth-child(even) .desc {
    align-items: center;
  }
}
.services-steps .card:nth-child(even) .desc-text {
  text-align: left;
}
@media (max-width: 768px) {
  .services-steps .card:nth-child(even) .desc-text {
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .services-steps .card {
    gap: 35px;
  }
}
@media (max-width: 768px) {
  .services-steps .card {
    flex-direction: column;
    gap: 5px;
  }
}
.services-steps .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: end;
}
@media (max-width: 768px) {
  .services-steps .desc {
    align-items: center;
    text-align: center;
  }
}
.services-steps .desc p {
  font-size: 20px;
  line-height: 150%;
  text-align: right;
}
body[data-theme=dark] .services-steps .desc p {
  color: #a0acbd;
}
body[data-theme=light] .services-steps .desc p {
  color: #3d4856;
}
@media (max-width: 768px) {
  .services-steps .desc p {
    text-align: center;
  }
}
.services-steps .number {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 20px;
}
body[data-theme=dark] .services-steps .number {
  background: linear-gradient(180deg, #d3dce1 0%, #73787b 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
body[data-theme=light] .services-steps .number {
  background: linear-gradient(180deg, #d3dce1 0%, #121624 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
@media (max-width: 768px) {
  .services-steps .number {
    padding-bottom: unset;
  }
}
.services-steps .desc-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 6px;
}
body[data-theme=dark] .services-steps .desc-title {
  color: #ffffff;
}
body[data-theme=light] .services-steps .desc-title {
  color: #121624;
}
@media (max-width: 768px) {
  .services-steps .desc-title {
    text-align: center;
  }
}
.services-steps .desc-text {
  font-size: 20px;
  line-height: 150%;
  text-align: right;
}
body[data-theme=dark] .services-steps .desc-text {
  color: #a0acbd;
}
body[data-theme=light] .services-steps .desc-text {
  color: #3d4856;
}
@media (max-width: 768px) {
  .services-steps .desc-text {
    text-align: center;
  }
}
.services-steps .card-pic {
  width: 382px;
  height: 382px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .services-steps .card-pic {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .services-steps .card-pic {
    order: -1;
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 576px) {
  .services-steps .card-pic {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .services-steps .card-pic {
    width: 100%;
  }
}
.services-steps .card-img {
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=dark] .services-steps .card-img.light-theme {
  display: none;
}
body[data-theme=light] .services-steps .card-img.dark-theme {
  display: none;
}
.services-steps .card-img.filtered {
  filter: invert(1);
}

.services-contact {
  display: none;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 2000;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9019607843);
  z-index: 1000;
  padding: 15px;
}
.services-contact.active {
  display: flex;
}
.services-contact .wrapper {
  max-width: 740px;
  width: 100%;
  position: relative;
  border-radius: 26px;
  animation: slide-up 0.5s forwards;
}
body[data-theme=dark] .services-contact .wrapper {
  background: #292d39;
}
body[data-theme=light] .services-contact .wrapper {
  background: rgba(160, 172, 189, 0.2);
}
.services-contact .wrapper::-webkit-scrollbar {
  width: 10px;
}
.services-contact .wrapper::-webkit-scrollbar-thumb {
  background: #d3dce1;
  border: 1px solid #d3dce1;
  border-radius: 5px;
}
.services-contact .wrapper::-webkit-scrollbar-track {
  background: #292d39;
}
@media screen and (max-width: 768px) {
  .services-contact .wrapper {
    max-width: 500px;
  }
}
@media screen and (max-width: 576px) {
  .services-contact .wrapper {
    max-width: unset;
  }
}
.services-contact .form {
  width: 100%;
  border: 2.2px solid #3d4856;
  border-radius: 26px;
  padding: 40px 58px;
  display: flex;
  flex-direction: column;
  max-height: 80svh;
  overflow-y: auto;
}
body[data-theme=dark] .services-contact .form {
  background: #121624;
}
body[data-theme=light] .services-contact .form {
  background: #ffffff;
}
.services-contact .form::-webkit-scrollbar {
  width: 5px;
}
.services-contact .form::-webkit-scrollbar-thumb {
  background: #d3dce1;
  border: 1px solid #d3dce1;
  border-radius: 5px;
}
.services-contact .form::-webkit-scrollbar-track {
  background: #292d39;
}
@media (max-width: 768px) {
  .services-contact .form {
    padding: 20px 30px;
  }
}
@media (max-width: 480px) {
  .services-contact .form {
    padding: 20px;
  }
}
.services-contact .inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 26px;
}
@media (max-width: 480px) {
  .services-contact .inputs {
    grid-template-columns: 1fr;
    padding-bottom: 15px;
    gap: 15px;
  }
}
.services-contact .input {
  width: 100%;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 500;
  line-height: 144%;
  font-size: 16px;
}
body[data-theme=dark] .services-contact .input {
  background: #292d39;
}
body[data-theme=light] .services-contact .input {
  background: rgba(160, 172, 189, 0.2);
}
body[data-theme=dark] .services-contact .input {
  color: #d3dce1;
}
body[data-theme=light] .services-contact .input {
  color: #121624;
}
.services-contact .input::-moz-placeholder {
  font-weight: 500;
  line-height: 144%;
}
.services-contact .input::placeholder {
  font-weight: 500;
  line-height: 144%;
}
body[data-theme=dark] .services-contact .input::-moz-placeholder {
  color: #a0acbd;
}
body[data-theme=dark] .services-contact .input::placeholder {
  color: #a0acbd;
}
body[data-theme=light] .services-contact .input::-moz-placeholder {
  color: #3d4856;
}
body[data-theme=light] .services-contact .input::placeholder {
  color: #3d4856;
}
.services-contact .select {
  width: 100%;
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 26px;
  font-weight: 500;
  line-height: 144%;
  font-size: 16px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 60px;
}
body[data-theme=dark] .services-contact .select {
  background: #292d39;
}
body[data-theme=light] .services-contact .select {
  background: rgba(160, 172, 189, 0.2);
}
body[data-theme=dark] .services-contact .select {
  color: #d3dce1;
}
body[data-theme=light] .services-contact .select {
  color: #121624;
}
body[data-theme=dark] .services-contact .select {
  background-image: url("../images/icons/arrow-down3.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
body[data-theme=light] .services-contact .select {
  background-image: url("../images/icons/arrow-down2.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
@media (max-width: 480px) {
  .services-contact .select {
    margin-bottom: 15px;
  }
}
.services-contact .textarea {
  width: 100%;
  border-radius: 12px;
  padding: 12px 20px 23px;
  font-weight: 500;
  line-height: 144%;
  font-size: 16px;
  min-height: 100px;
}
body[data-theme=dark] .services-contact .textarea {
  background: #292d39;
}
body[data-theme=light] .services-contact .textarea {
  background: rgba(160, 172, 189, 0.2);
}
body[data-theme=dark] .services-contact .textarea {
  color: #d3dce1;
}
body[data-theme=light] .services-contact .textarea {
  color: #121624;
}
.services-contact .textarea::-moz-placeholder {
  font-weight: 500;
  line-height: 144%;
}
.services-contact .textarea::placeholder {
  font-weight: 500;
  line-height: 144%;
}
body[data-theme=dark] .services-contact .textarea::-moz-placeholder {
  color: #a0acbd;
}
body[data-theme=dark] .services-contact .textarea::placeholder {
  color: #a0acbd;
}
body[data-theme=light] .services-contact .textarea::-moz-placeholder {
  color: #3d4856;
}
body[data-theme=light] .services-contact .textarea::placeholder {
  color: #3d4856;
}
@media (max-width: 480px) {
  .services-contact .send {
    width: 100%;
    justify-content: center;
  }
}
.services-contact .wrapper-img {
  position: absolute;
  top: -50px;
  right: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.service-main .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 120px;
}
@media (max-width: 992px) {
  .service-main .wrapper {
    padding-block: 80px;
  }
}
.service-main .content {
  display: flex;
  flex-direction: column;
}
.service-main .top {
  border-radius: 26px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
body[data-theme=dark] .service-main .top {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .service-main .top {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .service-main .top {
    padding: 25px 20px;
  }
}
.service-main .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}
.service-main .heading-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
  text-align: center;
  -webkit-text-fill-color: transparent;
  padding-bottom: 30px;
}
body[data-theme=dark] .service-main .heading-title {
  background: linear-gradient(90deg, #d3dce1 0%, #73787b 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
body[data-theme=light] .service-main .heading-title {
  background: #121624;
  background-clip: text;
  -webkit-background-clip: text;
}
.service-main .desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-main .desc p {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .service-main .desc p {
  color: #a0acbd;
}
body[data-theme=light] .service-main .desc p {
  color: #3d4856;
}
.service-main .desc ul, .service-main .desc ol {
  padding-left: 30px;
}
body[data-theme=dark] .service-main .desc ul li, body[data-theme=dark] .service-main .desc ol li {
  color: #a0acbd;
}
body[data-theme=light] .service-main .desc ul li, body[data-theme=light] .service-main .desc ol li {
  color: #3d4856;
}
.service-main .desc ul {
  list-style: disc;
}
body[data-theme=dark] .service-main .desc li {
  color: #a0acbd;
}
body[data-theme=light] .service-main .desc li {
  color: #3d4856;
}
.service-main .desc-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
}
body[data-theme=dark] .service-main .desc-title {
  color: #d3dce1;
}
body[data-theme=light] .service-main .desc-title {
  color: #121624;
}
.service-main .desc-text {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .service-main .desc-text {
  color: #a0acbd;
}
body[data-theme=light] .service-main .desc-text {
  color: #3d4856;
}
.service-main .desc-list {
  list-style: disc;
  padding-left: 30px;
}
.service-main .desc-item {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .service-main .desc-item {
  color: #a0acbd;
}
body[data-theme=light] .service-main .desc-item {
  color: #3d4856;
}
.service-main .bottom {
  border: 1px solid #3d4856;
  border-radius: 26px;
  padding: 10px 30px;
  display: flex;
  gap: 10px;
  align-self: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.service-main .next {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .service-main .next {
    margin-top: 80px;
  }
}
.service-main .next:hover .next-content-img {
  transform: translate(10px, 0);
}
.service-main .next-text {
  font-weight: 600;
  font-size: clamp(27px, 1.636rem + 0.57vw, 33px);
  text-align: center;
  padding-bottom: 2px;
}
body[data-theme=dark] .service-main .next-text {
  color: #a0acbd;
}
body[data-theme=light] .service-main .next-text {
  color: #3d4856;
}
.service-main .next-content {
  display: flex;
  gap: 10px;
  align-items: center;
}
.service-main .next-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
}
body[data-theme=dark] .service-main .next-title {
  color: #d3dce1;
}
body[data-theme=light] .service-main .next-title {
  color: #121624;
}
.service-main .next-content-img {
  width: 50px;
  height: 50px;
}
body[data-theme=dark] .service-main .next-content-img.light-theme {
  display: none;
}
body[data-theme=light] .service-main .next-content-img.dark-theme {
  display: none;
}

.projects-hero .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40svh;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .projects-hero .wrapper {
    padding-block: 40px;
  }
}

.projects-main .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .projects-main .wrapper {
    padding-block: 40px;
  }
}
.projects-main .projects-main-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  text-transform: uppercase;
  padding-bottom: 26px;
}
body[data-theme=dark] .projects-main .projects-main-title {
  color: #d3dce1;
}
body[data-theme=light] .projects-main .projects-main-title {
  color: #121624;
}
.projects-main .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-inline: 10px;
}
@media (max-width: 1200px) {
  .projects-main .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .projects-main .cards {
    grid-template-columns: 1fr;
    padding-inline: unset;
  }
}
.projects-main .cards .project-card .content {
  margin-inline: 14px;
}
@media (max-width: 992px) {
  .projects-main .cards .project-card .content {
    margin-inline: unset;
  }
}

.projects-testimonials .wrapper {
  display: flex;
  flex-direction: column;
  padding: 60px 15px 120px;
}
@media (max-width: 992px) {
  .projects-testimonials .wrapper {
    padding: 40px 15px 80px;
  }
}
.projects-testimonials .projects-testimonials-title, .projects-testimonials .projects-testimonials-text {
  max-width: 1230px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}
.projects-testimonials .cards {
  overflow: hidden;
  width: 100%;
  position: relative;
  white-space: nowrap;
  display: flex;
  gap: 20px;
}
.projects-testimonials .cards-slide {
  display: inline-flex;
  gap: 20px;
  justify-content: center;
  animation-name: move-left;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.projects-testimonials .testimonials-card-text, .projects-testimonials .desc-title, .projects-testimonials .desc-text {
  white-space: initial;
}
.projects-testimonials .shadow {
  max-width: 164px;
}
@media (max-width: 992px) {
  .projects-testimonials .shadow {
    max-width: 140px;
  }
}
@media (max-width: 576px) {
  .projects-testimonials .shadow {
    max-width: 30px;
  }
}

.project-main .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 120px;
}
@media (max-width: 992px) {
  .project-main .wrapper {
    padding-block: 80px;
  }
}
.project-main .content {
  display: flex;
  flex-direction: column;
}
.project-main .top {
  border-radius: 26px 26px 0 0;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}
body[data-theme=dark] .project-main .top {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .project-main .top {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .project-main .top {
    padding: 25px 30px;
  }
}
@media (max-width: 576px) {
  .project-main .top {
    padding: 15px;
  }
}
.project-main .profile {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 30px;
}
@media (max-width: 576px) {
  .project-main .profile {
    flex-direction: column;
    gap: 20px 30px;
    padding-bottom: 20px;
  }
}
.project-main .profile-pic {
  max-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .project-main .profile-pic {
    max-width: 80px;
  }
}
.project-main .profile-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.project-main .profile-desc {
  min-width: 385px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .project-main .profile-desc {
    min-width: unset;
    text-align: center;
  }
}
.project-main .profile-desc-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
  -webkit-text-fill-color: transparent;
}
body[data-theme=dark] .project-main .profile-desc-title {
  background: linear-gradient(90deg, #d3dce1 0%, #a0acbd 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
body[data-theme=light] .project-main .profile-desc-title {
  background: linear-gradient(90deg, #121624 0%, #7b828c 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.project-main .profile-desc-text {
  font-weight: 500;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  color: #0f81c7;
}
.project-main .top-content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .project-main .top-content {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .project-main .top-content {
    gap: 20px 30px;
  }
}
.project-main .top-content-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 992px) {
  .project-main .top-content-desc {
    width: 100%;
  }
}
.project-main .block {
  display: flex;
  gap: 50px;
}
@media (max-width: 480px) {
  .project-main .block {
    flex-direction: column;
    gap: 0px 50px;
    align-items: center;
  }
}
.project-main .block-title {
  max-width: 204px;
  width: 100%;
  line-height: 187%;
}
body[data-theme=dark] .project-main .block-title {
  color: #a0acbd;
}
body[data-theme=light] .project-main .block-title {
  color: #3d4856;
}
@media (max-width: 576px) {
  .project-main .block-title {
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .project-main .block-title {
    max-width: unset;
    text-align: center;
    font-size: 19px;
  }
}
.project-main .block-span {
  font-weight: 500;
  line-height: 187%;
}
body[data-theme=dark] .project-main .block-span {
  color: #d3dce1;
}
body[data-theme=light] .project-main .block-span {
  color: #121624;
}
.project-main .top-more {
  max-width: 350px;
}
@media (max-width: 992px) {
  .project-main .top-more {
    align-self: center;
  }
}
@media (max-width: 576px) {
  .project-main .top-more {
    max-width: unset;
  }
}
.project-main .top-more .btn-more-span {
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 576px) {
  .project-main .top-more .btn-more-span {
    width: auto;
  }
}
.project-main .bottom {
  border-radius: 0 0 26px 26px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
}
body[data-theme=dark] .project-main .bottom {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .project-main .bottom {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .project-main .bottom {
    padding: 25px 30px;
  }
}
@media (max-width: 576px) {
  .project-main .bottom {
    padding: 15px;
  }
}
.project-main .bottom-pics {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 30px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .project-main .bottom-pics {
    grid-template-columns: 1fr;
  }
}
.project-main .bottom-pic {
  width: 100%;
  height: 100%;
  border-radius: 26px;
}
body[data-theme=dark] .project-main .bottom-pic {
  box-shadow: 0 0 2px #ffffff;
}
body[data-theme=light] .project-main .bottom-pic {
  box-shadow: 0 0 2px #000000;
}
.project-main .bottom-pic-img {
  border-radius: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}
.project-main .bottom-desc {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
body[data-theme=dark] .project-main .bottom-desc p {
  color: #a0acbd;
}
body[data-theme=light] .project-main .bottom-desc p {
  color: #3d4856;
}
.project-main .bottom-desc ul, .project-main .bottom-desc ol {
  display: flex;
  flex-direction: column;
  padding-inline: 30px;
}
@media (max-width: 576px) {
  .project-main .bottom-desc ul, .project-main .bottom-desc ol {
    padding-inline: 20px;
  }
}
body[data-theme=dark] .project-main .bottom-desc ul li, body[data-theme=dark] .project-main .bottom-desc ol li {
  color: #a0acbd;
}
body[data-theme=light] .project-main .bottom-desc ul li, body[data-theme=light] .project-main .bottom-desc ol li {
  color: #3d4856;
}
.project-main .bottom-desc ul {
  list-style: disc;
}
.project-main .bottom-desc-title, .project-main .technologies-title, .project-main .process-title, .project-main .visuals-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 20px;
}
body[data-theme=dark] .project-main .bottom-desc-title, body[data-theme=dark] .project-main .technologies-title, body[data-theme=dark] .project-main .process-title, body[data-theme=dark] .project-main .visuals-title {
  color: #d3dce1;
}
body[data-theme=light] .project-main .bottom-desc-title, body[data-theme=light] .project-main .technologies-title, body[data-theme=light] .project-main .process-title, body[data-theme=light] .project-main .visuals-title {
  color: #121624;
}
.project-main .bottom-desc-text {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .project-main .bottom-desc-text {
  color: #a0acbd;
}
body[data-theme=light] .project-main .bottom-desc-text {
  color: #3d4856;
}
.project-main .chats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 576px) {
  .project-main .chats {
    gap: 40px 20px;
  }
}
.project-main .chat {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.project-main .chat:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  .project-main .chat:nth-child(even) {
    align-items: flex-end;
  }
}
.project-main .chat:nth-child(even) .chat-content {
  order: -1;
  border-radius: 26px 26px 0 26px;
}
.project-main .chat:nth-child(even) .chat-heading-title {
  color: #0f81c7;
}
.project-main .chat:nth-child(even) .chat-main-text {
  color: #a0acbd;
}
.project-main .chat:nth-child(even) .chat-main-item {
  color: #a0acbd;
}
@media (max-width: 576px) {
  .project-main .chat {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.project-main .chat-pic {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
body[data-theme=dark] .project-main .chat-pic {
  background: #121624;
}
body[data-theme=light] .project-main .chat-pic {
  background: #ffffff;
}
body[data-theme=dark] .project-main .chat-pic {
  border: 2px solid #3d4856;
}
body[data-theme=light] .project-main .chat-pic {
  border: 2px solid #a0acbd;
}
.project-main .chat-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.project-main .chat-content {
  max-width: 900px;
  width: 100%;
  border-radius: 26px 26px 26px 0;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body[data-theme=dark] .project-main .chat-content {
  background: #121624;
}
body[data-theme=light] .project-main .chat-content {
  background: #ffffff;
}
@media (max-width: 576px) {
  .project-main .chat-content {
    padding: 15px 20px;
    order: -1;
  }
}
.project-main .chat-heading {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .project-main .chat-heading {
    gap: 20px;
  }
}
.project-main .chat-heading-title {
  font-weight: 500;
  line-height: 187%;
  color: #fc502b;
  font-size: 16px;
}
.project-main .chat-heading-span {
  max-width: 50%;
  line-height: 187%;
  color: #a0acbd;
  flex-shrink: 0;
}
.project-main .chat-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body[data-theme=dark] .project-main .chat-main {
  color: #a0acbd;
}
body[data-theme=light] .project-main .chat-main {
  color: #3d4856;
}
body[data-theme=dark] .project-main .chat-main p {
  color: #a0acbd;
}
body[data-theme=light] .project-main .chat-main p {
  color: #3d4856;
}
.project-main .chat-main-text {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .project-main .chat-main-text {
  color: #a0acbd;
}
body[data-theme=light] .project-main .chat-main-text {
  color: #3d4856;
}
.project-main .chat-main-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-inline: 20px;
}
@media (max-width: 576px) {
  .project-main .chat-main-list {
    padding-inline: unset;
  }
}
.project-main .chat-main-item {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .project-main .chat-main-item {
  color: #a0acbd;
}
body[data-theme=light] .project-main .chat-main-item {
  color: #3d4856;
}
.project-main .time {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
.project-main .time-img {
  width: 24px;
  height: 24px;
}
.project-main .time-span {
  line-height: 100%;
  color: #a0acbd;
  text-align: end;
}
.project-main .technologies {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.project-main .technologies-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .project-main .technologies-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .project-main .technologies-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .project-main .technologies-cards {
    grid-template-columns: 1fr;
  }
}
.project-main .technology {
  border-radius: 10px;
  padding: 11px 16px;
  display: flex;
  gap: 13px;
  align-items: center;
}
body[data-theme=dark] .project-main .technology {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .project-main .technology {
  background: rgba(160, 172, 189, 0.2);
}
.project-main .technology-pic {
  display: flex;
  max-width: 35px;
  max-height: 30px;
}
.project-main .technology-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.project-main .technology-img.figma {
  width: 20px;
  height: 30px;
}
@media (max-width: 768px) {
  .project-main .technology-img {
    width: 80%;
    height: 80%;
  }
}
.project-main .technology-span {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .project-main .technology-span {
  color: #a0acbd;
}
body[data-theme=light] .project-main .technology-span {
  color: #3d4856;
}
.project-main .process {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
body[data-theme=dark] .project-main .process .card-content p, body[data-theme=dark] .project-main .process .card-content span {
  color: #a0acbd;
}
body[data-theme=light] .project-main .process .card-content p, body[data-theme=light] .project-main .process .card-content span {
  color: #3d4856;
}
.project-main .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 26px;
}
@media (max-width: 1200px) {
  .project-main .cards {
    gap: 40px 20px;
  }
}
@media (max-width: 992px) {
  .project-main .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .project-main .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .project-main .cards {
    grid-template-columns: 1fr;
  }
}
.project-main .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 576px) {
  .project-main .card {
    gap: 12px;
  }
}
.project-main .indicator {
  display: flex;
  gap: 20px;
  align-items: center;
  overflow: hidden;
}
.project-main .circle {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  flex-shrink: 0;
}
.project-main .circle.blue {
  background: #0050c7;
}
.project-main .circle.purple {
  background: #ab28ff;
}
.project-main .circle.green {
  background: #00b100;
}
.project-main .circle.orange {
  background: #e28000;
}
.project-main .indicator-img {
  height: auto;
}
body[data-theme=dark] .project-main .indicator-img.light-theme {
  display: none;
}
body[data-theme=light] .project-main .indicator-img.dark-theme {
  display: none;
}
.project-main .card-content {
  display: flex;
  flex-direction: column;
}
.project-main .card-content-title {
  font-weight: 500;
  font-size: 20px;
  padding-bottom: 4px;
}
body[data-theme=dark] .project-main .card-content-title {
  color: #d3dce1;
}
body[data-theme=light] .project-main .card-content-title {
  color: #121624;
}
.project-main .card-content-text {
  line-height: 150%;
}
body[data-theme=dark] .project-main .card-content-text {
  color: #a0acbd;
}
body[data-theme=light] .project-main .card-content-text {
  color: #3d4856;
}
.project-main .visuals {
  display: flex;
  flex-direction: column;
}
.project-main .pics {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .project-main .pics {
    grid-template-columns: 1fr;
  }
}
.project-main .visuals-pic {
  width: 100%;
  border-radius: 26px;
}
body[data-theme=dark] .project-main .visuals-pic {
  box-shadow: 0 0 2px #ffffff;
}
body[data-theme=light] .project-main .visuals-pic {
  box-shadow: 0 0 2px #000000;
}
.project-main .visuals-pic:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (max-width: 768px) {
  .project-main .visuals-pic:first-child {
    grid-column-end: 2;
  }
}
.project-main .visuals-img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: inherit;
}

.blogs-hero .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40svh;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .blogs-hero .wrapper {
    padding-block: 40px;
  }
}

.blogs-main .wrapper {
  display: flex;
  flex-direction: column;
  padding: 60px 15px 120px;
}
@media (max-width: 992px) {
  .blogs-main .wrapper {
    padding: 40px 15px 80px;
  }
}
.blogs-main .blogs-main-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  text-transform: uppercase;
  padding-bottom: 26px;
}
body[data-theme=dark] .blogs-main .blogs-main-title {
  color: #d3dce1;
}
body[data-theme=light] .blogs-main .blogs-main-title {
  color: #121624;
}
@media (max-width: 992px) {
  .blogs-main .tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .blogs-main .tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blogs-main .tabs {
    grid-template-columns: 1fr;
  }
}
.blogs-main .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blogs-main .card {
  width: 100%;
  border-radius: 20px;
  padding: 20px 18px 20px 20px;
  display: flex;
  gap: 20px;
}
body[data-theme=dark] .blogs-main .card {
  background: #292d39;
}
body[data-theme=light] .blogs-main .card {
  background: rgba(160, 172, 189, 0.2);
}
.blogs-main .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .blogs-main .card::before {
  display: none;
}
@media (max-width: 992px) {
  .blogs-main .card {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .blogs-main .card {
    padding: 12px;
  }
}
.blogs-main .card-pic {
  width: 542px;
  height: 271px;
  position: relative;
  border-radius: 20px;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .blogs-main .card-pic {
    width: 450px;
    height: 250px;
  }
}
@media (max-width: 992px) {
  .blogs-main .card-pic {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 576px) {
  .blogs-main .card-pic {
    height: 200px;
  }
}
.blogs-main .card-img {
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogs-main .tag {
  max-width: 50%;
  border-radius: 6px;
  padding: 4px 10px;
  -webkit-backdrop-filter: blur(3.7000000477px);
          backdrop-filter: blur(3.7000000477px);
  background: rgba(15, 129, 199, 0.5019607843);
  font-weight: 500;
  font-size: 12px;
  line-height: 192%;
  color: #ffffff;
  position: absolute;
  top: 16px;
  left: 16px;
}
.blogs-main .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3px;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .blogs-main .card-content {
    width: 100%;
    margin-bottom: unset;
  }
}
.blogs-main .card-content-desc {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
body[data-theme=dark] .blogs-main .card-content-desc {
  border-bottom: 1px solid #3d4856;
}
body[data-theme=light] .blogs-main .card-content-desc {
  border-bottom: 1px solid rgba(160, 172, 189, 0.6);
}
.blogs-main .card-content-desc-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}
body[data-theme=dark] .blogs-main .card-content-desc-title {
  color: #d3dce1;
}
body[data-theme=light] .blogs-main .card-content-desc-title {
  color: #121624;
}
.blogs-main .card-content-desc-text {
  font-size: 20px;
  line-height: 150%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  word-break: break-word;
}
body[data-theme=dark] .blogs-main .card-content-desc-text {
  color: #a0acbd;
}
body[data-theme=light] .blogs-main .card-content-desc-text {
  color: #3d4856;
}
@media (max-width: 1200px) {
  .blogs-main .card-content-desc-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    word-break: break-word;
  }
}
.blogs-main .stats {
  display: flex;
  justify-content: space-between;
  gap: 10px 30px;
  align-items: center;
}
@media (max-width: 576px) {
  .blogs-main .stats {
    flex-direction: column;
    align-items: flex-end;
  }
}
.blogs-main .left {
  display: flex;
  gap: 30px;
  align-items: center;
  min-width: 370px;
}
@media (max-width: 1200px) {
  .blogs-main .left {
    min-width: unset;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .blogs-main .left {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .blogs-main .left {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blogs-main .profile {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blogs-main .profile-pic {
  border-radius: 100px;
  width: 24px;
  height: 24px;
  background: linear-gradient(180deg, #859dbc 0%, #3d4856 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.blogs-main .profile-pic.no-background {
  background: unset;
}
.blogs-main .profile-img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: inherit;
}
.blogs-main .profile-span {
  font-size: 16px;
  line-height: 187%;
}
body[data-theme=dark] .blogs-main .profile-span {
  color: #a0acbd;
}
body[data-theme=light] .blogs-main .profile-span {
  color: #3d4856;
}
.blogs-main .time {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blogs-main .time-img {
  width: 24px;
  height: 24px;
}
body[data-theme=dark] .blogs-main .time-img.light-theme {
  display: none;
}
body[data-theme=light] .blogs-main .time-img.dark-theme {
  display: none;
}
.blogs-main .time-span {
  font-size: 16px;
  line-height: 187%;
  min-width: 80px;
}
body[data-theme=dark] .blogs-main .time-span {
  color: #a0acbd;
}
body[data-theme=light] .blogs-main .time-span {
  color: #3d4856;
}
.blogs-main .right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .blogs-main .right {
    gap: 6px;
  }
}
.blogs-main .right:hover .right-span {
  color: #d3dce1;
}
body[data-theme=dark] .blogs-main .right:hover > svg > path {
  stroke: #d3dce1;
}
body[data-theme=light] .blogs-main .right:hover > svg > path {
  stroke: #d3dce1;
}
.blogs-main .right > svg {
  width: 20px;
  height: 20px;
}
body[data-theme=light] .blogs-main .right > svg > path {
  stroke: #3d4856;
}
.blogs-main .right-span {
  font-size: 16px;
  line-height: 187%;
  max-width: 100px;
}
body[data-theme=dark] .blogs-main .right-span {
  color: #a0acbd;
}
body[data-theme=light] .blogs-main .right-span {
  color: #3d4856;
}

.blog-main .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 120px;
}
@media (max-width: 992px) {
  .blog-main .wrapper {
    padding-block: 80px;
  }
}
.blog-main .content {
  display: flex;
  flex-direction: column;
}
.blog-main .top {
  border-radius: 26px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
body[data-theme=dark] .blog-main .top {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .blog-main .top {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .blog-main .top {
    padding: 25px 20px;
  }
}
.blog-main .top-pic {
  width: 100%;
  height: 575px;
  position: relative;
  border-radius: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .blog-main .top-pic {
    height: 520px;
  }
}
@media (max-width: 992px) {
  .blog-main .top-pic {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .blog-main .top-pic {
    height: 380px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .blog-main .top-pic {
    height: auto;
  }
}
.blog-main .top-img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.blog-main .tag {
  max-width: 50%;
  border-radius: 6px;
  padding: 4px 10px;
  -webkit-backdrop-filter: blur(3.7000000477px);
          backdrop-filter: blur(3.7000000477px);
  background: rgba(15, 129, 199, 0.5019607843);
  font-weight: 500;
  font-size: 12px;
  line-height: 192%;
  color: #ffffff;
  position: absolute;
  top: 16px;
  left: 16px;
}
.blog-main .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}
.blog-main .heading-title {
  font-weight: 700;
  font-size: clamp(22px, 0.807rem + 2.84vw, 47px);
  text-align: center;
  -webkit-text-fill-color: transparent;
  padding-bottom: 30px;
}
body[data-theme=dark] .blog-main .heading-title {
  background: linear-gradient(90deg, #d3dce1 0%, #73787b 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
body[data-theme=light] .blog-main .heading-title {
  background: #121624;
  background-clip: text;
  -webkit-background-clip: text;
}
.blog-main .stats {
  display: flex;
  gap: 15px 30px;
  align-items: center;
}
@media (max-width: 576px) {
  .blog-main .stats {
    align-items: flex-start;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .blog-main .stats {
    flex-direction: column;
  }
}
.blog-main .profile {
  display: flex;
  gap: 12px;
  align-items: center;
}
.blog-main .profile-pic {
  border-radius: 100px;
  width: 42px;
  height: 42px;
  background: linear-gradient(180deg, #859dbc 0%, #3d4856 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.blog-main .profile-pic.no-background {
  background: unset;
}
.blog-main .profile-img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: inherit;
}
.blog-main .profile-span {
  max-width: 300px;
  font-weight: 600;
  font-size: 20px;
}
body[data-theme=dark] .blog-main .profile-span {
  color: #d3dce1;
}
body[data-theme=light] .blog-main .profile-span {
  color: #121624;
}
.blog-main .stats-span {
  width: 30px;
  height: 30px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  align-self: baseline;
}
body[data-theme=dark] .blog-main .stats-span {
  color: #d3dce1;
}
body[data-theme=light] .blog-main .stats-span {
  color: #121624;
}
@media (max-width: 768px) {
  .blog-main .stats-span {
    display: none;
  }
}
.blog-main .time {
  font-size: 20px;
}
body[data-theme=dark] .blog-main .time {
  color: #d3dce1;
}
body[data-theme=light] .blog-main .time {
  color: #121624;
}
.blog-main .desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body[data-theme=dark] .blog-main .desc p {
  color: #a0acbd;
}
body[data-theme=light] .blog-main .desc p {
  color: #3d4856;
}
@media (max-width: 576px) {
  .blog-main .desc p {
    font-size: 18px;
  }
}
.blog-main .desc ul, .blog-main .desc ol {
  padding-left: 30px;
}
body[data-theme=dark] .blog-main .desc ul li, body[data-theme=dark] .blog-main .desc ol li {
  color: #a0acbd;
}
body[data-theme=light] .blog-main .desc ul li, body[data-theme=light] .blog-main .desc ol li {
  color: #3d4856;
}
.blog-main .desc ul {
  list-style: disc;
}
body[data-theme=dark] .blog-main .desc li {
  color: #a0acbd;
}
body[data-theme=light] .blog-main .desc li {
  color: #3d4856;
}
.blog-main .desc-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
}
body[data-theme=dark] .blog-main .desc-title {
  color: #d3dce1;
}
body[data-theme=light] .blog-main .desc-title {
  color: #121624;
}
.blog-main .desc-text {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .blog-main .desc-text {
  color: #a0acbd;
}
body[data-theme=light] .blog-main .desc-text {
  color: #3d4856;
}
.blog-main .desc-list {
  list-style: disc;
  padding-left: 30px;
}
.blog-main .desc-item {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .blog-main .desc-item {
  color: #a0acbd;
}
body[data-theme=light] .blog-main .desc-item {
  color: #3d4856;
}
.blog-main .bottom {
  border: 1px solid #3d4856;
  border-radius: 26px;
  padding: 10px 30px;
  display: flex;
  gap: 10px;
  align-self: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.blog-main .likes {
  display: flex;
  gap: 6px;
  align-items: center;
}
.blog-main .btn-like {
  display: none;
  background: transparent;
  border: none;
  outline: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.blog-main .btn-like.active {
  display: flex;
}
.blog-main .likes-img {
  width: 26px;
  height: 26px;
}
body[data-theme=dark] .blog-main .likes-img.light-theme {
  display: none;
}
body[data-theme=light] .blog-main .likes-img.dark-theme {
  display: none;
}
.blog-main .likes-span {
  font-family: monospace;
  max-width: 200px;
  font-size: 20px;
  line-height: 130%;
}
body[data-theme=dark] .blog-main .likes-span {
  color: #a0acbd;
}
body[data-theme=light] .blog-main .likes-span {
  color: #3d4856;
}
.blog-main .vertical-line {
  width: 18px;
  height: 26px;
  font-weight: 275;
  font-size: 20px;
  line-height: 130%;
  color: #3d4856;
  text-align: center;
  align-self: baseline;
  margin-block: auto;
}
.blog-main .bottom-img {
  width: 26px;
  height: 26px;
  cursor: pointer;
}
body[data-theme=dark] .blog-main .bottom-img.light-theme {
  display: none;
}
body[data-theme=light] .blog-main .bottom-img.dark-theme {
  display: none;
}
.blog-main .next {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .blog-main .next {
    margin-top: 80px;
  }
}
.blog-main .next:hover .next-content-img {
  transform: translate(10px, 0);
}
.blog-main .next-text {
  font-weight: 600;
  font-size: clamp(27px, 1.636rem + 0.57vw, 33px);
  text-align: center;
  padding-bottom: 2px;
}
body[data-theme=dark] .blog-main .next-text {
  color: #a0acbd;
}
body[data-theme=light] .blog-main .next-text {
  color: #3d4856;
}
.blog-main .next-content {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-main .next-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
}
body[data-theme=dark] .blog-main .next-title {
  color: #d3dce1;
}
body[data-theme=light] .blog-main .next-title {
  color: #121624;
}
.blog-main .next-content-img {
  width: 50px;
  height: 50px;
}
body[data-theme=dark] .blog-main .next-content-img.light-theme {
  display: none;
}
body[data-theme=light] .blog-main .next-content-img.dark-theme {
  display: none;
}

.contact-hero .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40svh;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .contact-hero .wrapper {
    padding-block: 40px;
  }
}

.contact-main .wrapper {
  display: flex;
  flex-direction: column;
  padding: 60px 15px 120px;
}
@media (max-width: 992px) {
  .contact-main .wrapper {
    padding: 40px 15px 80px;
  }
}
.contact-main .contact-main-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  text-transform: uppercase;
  padding-bottom: 26px;
}
body[data-theme=dark] .contact-main .contact-main-title {
  color: #d3dce1;
}
body[data-theme=light] .contact-main .contact-main-title {
  color: #121624;
}
.contact-main .details {
  display: flex;
  justify-content: space-between;
  gap: 30px 50px;
  padding-bottom: 30px;
  align-items: center;
}
@media (max-width: 1200px) {
  .contact-main .details {
    flex-direction: column;
    align-items: unset;
  }
}
.contact-main .location {
  max-width: 578px;
  width: 100%;
  display: grid;
  grid-template-columns: 24px 1fr 100px;
  gap: 10px 20px;
  align-items: center;
  border: 1px solid #3d4856;
  border-radius: 12px;
  padding: 10px 10px 10px 20px;
}
@media (max-width: 1200px) {
  .contact-main .location {
    max-width: unset;
    width: 70%;
  }
}
@media (max-width: 992px) {
  .contact-main .location {
    width: 100%;
    grid-template-columns: 24px 1fr 100px;
  }
}
@media (max-width: 576px) {
  .contact-main .location {
    grid-template-columns: 24px 1fr;
  }
}
.contact-main .location-img {
  width: 24px;
  height: 24px;
}
body[data-theme=dark] .contact-main .location-img.light-theme {
  display: none;
}
body[data-theme=light] .contact-main .location-img.dark-theme {
  display: none;
}
.contact-main .location-span {
  font-size: 20px;
  line-height: 130%;
}
body[data-theme=dark] .contact-main .location-span {
  color: #a0acbd;
}
body[data-theme=light] .contact-main .location-span {
  color: #3d4856;
}
.contact-main .maps {
  display: flex;
  gap: 4px;
}
@media (max-width: 992px) {
  .contact-main .maps {
    grid-column-start: unset;
    grid-column-end: unset;
    justify-content: unset;
  }
}
@media (max-width: 576px) {
  .contact-main .maps {
    grid-column-start: 1;
    grid-column-end: 3;
    justify-content: center;
  }
}
.contact-main .maps-link {
  width: 48px;
  height: 36px;
  border-radius: 8px;
  padding: 6px 12px;
  background: rgba(160, 172, 189, 0.2);
  display: flex;
}
@media (max-width: 576px) {
  .contact-main .maps-link {
    width: auto;
  }
}
@media (max-width: 576px) {
  .contact-main .maps-link-img {
    width: 22px;
  }
}
.contact-main .stats {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-grow: 1;
}
@media (max-width: 1200px) {
  .contact-main .stats {
    justify-content: flex-start;
    gap: 50px;
    padding-inline: 10px;
  }
}
@media (max-width: 992px) {
  .contact-main .stats {
    width: 100%;
    justify-content: space-between;
    align-self: center;
  }
}
@media (max-width: 768px) {
  .contact-main .stats {
    flex-direction: column;
  }
}
.contact-main .stat {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 50%;
}
@media (max-width: 768px) {
  .contact-main .stat {
    max-width: unset;
  }
}
.contact-main .stat-pic {
  border-radius: 50px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(160, 172, 189, 0.2);
  flex-shrink: 0;
}
.contact-main .stat-img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=dark] .contact-main .stat-img.light-theme {
  display: none;
}
body[data-theme=light] .contact-main .stat-img.dark-theme {
  display: none;
}
.contact-main .stat-desc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-main .stat-desc-title {
  font-size: 20px;
  line-height: 130%;
}
body[data-theme=dark] .contact-main .stat-desc-title {
  color: #d3dce1;
}
body[data-theme=light] .contact-main .stat-desc-title {
  color: #121624;
}
.contact-main .stat-desc-span {
  font-size: 18px;
  line-height: 167%;
}
body[data-theme=dark] .contact-main .stat-desc-span {
  color: #a0acbd;
}
body[data-theme=light] .contact-main .stat-desc-span {
  color: #3d4856;
}
.contact-main .contact-main-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: flex-start;
  overflow: hidden;
  padding-block: 20px;
}
@media (max-width: 1200px) {
  .contact-main .contact-main-content {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .contact-main .contact-main-content {
    grid-template-columns: 1fr;
  }
}
.contact-main .yandex-maps {
  width: 100%;
  border-radius: 20px;
  display: flex;
}
.contact-main .yandex-maps > iframe {
  width: 100%;
  border-radius: inherit;
}
@media (max-width: 992px) {
  .contact-main .yandex-maps > iframe {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .contact-main .yandex-maps > iframe {
    height: 400px;
  }
}
.contact-main .socials {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .contact-main .socials {
    order: -1;
  }
}
.contact-main .socials-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #3d4856;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact-main .socials-desc-title {
  font-weight: 600;
  font-size: 20px;
}
body[data-theme=dark] .contact-main .socials-desc-title {
  color: #d3dce1;
}
body[data-theme=light] .contact-main .socials-desc-title {
  color: #121624;
}
.contact-main .socials-desc-text {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .contact-main .socials-desc-text {
  color: #a0acbd;
}
body[data-theme=light] .contact-main .socials-desc-text {
  color: #3d4856;
}
.contact-main .cards {
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .contact-main .cards {
    width: 100%;
    max-width: unset;
  }
}
.contact-main .card {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 14px;
  position: relative;
}
body[data-theme=dark] .contact-main .card {
  background: #292d39;
}
body[data-theme=light] .contact-main .card {
  background: rgba(160, 172, 189, 0.2);
}
.contact-main .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .contact-main .card::before {
  display: none;
}
.contact-main .card::before {
  z-index: 0;
}
.contact-main .card:hover .card-pic {
  transform: rotate(-45deg);
}
.contact-main .card-left {
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}
@media (max-width: 576px) {
  .contact-main .card-left {
    width: 100%;
  }
}
.contact-main .card-left-pic {
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  max-width: 60px;
  max-height: 60px;
}
body[data-theme=dark] .contact-main .card-left-pic {
  background: #121624;
}
body[data-theme=light] .contact-main .card-left-pic {
  background: #ffffff;
}
.contact-main .card-left-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-main .card-desc {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-main .card-desc-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}
body[data-theme=dark] .contact-main .card-desc-title {
  color: #d3dce1;
}
body[data-theme=light] .contact-main .card-desc-title {
  color: #121624;
}
.contact-main .card-desc-span {
  font-size: 16px;
  line-height: 144%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-word;
}
body[data-theme=dark] .contact-main .card-desc-span {
  color: #a0acbd;
}
body[data-theme=light] .contact-main .card-desc-span {
  color: #3d4856;
}
.contact-main .card-pic {
  border-radius: 50px;
  padding: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(160, 172, 189, 0.2);
  flex-shrink: 0;
  z-index: 10;
}
@media (max-width: 480px) {
  .contact-main .card-pic {
    display: none;
  }
}
.contact-main .card-img {
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=dark] .contact-main .card-img.light-theme {
  display: none;
}
body[data-theme=light] .contact-main .card-img.dark-theme {
  display: none;
}

.clients-hero .wrapper {
  display: flex;
  flex-direction: column;
  padding: 70px 15px 60px;
}
.clients-hero .hero-img-block-desc {
  max-width: 787px;
}
@media (max-width: 992px) {
  .clients-hero .hero-img-block-desc {
    max-width: unset;
  }
}

.clients-main .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .clients-main .wrapper {
    padding-top: 30px;
  }
}
.clients-main .clients-main-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  text-transform: uppercase;
  margin-bottom: 26px;
}
body[data-theme=dark] .clients-main .clients-main-title {
  color: #d3dce1;
}
body[data-theme=light] .clients-main .clients-main-title {
  color: #121624;
}
.clients-main .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .clients-main .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .clients-main .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .clients-main .cards {
    grid-template-columns: 1fr;
  }
}
.clients-main .card {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
body[data-theme=dark] .clients-main .card {
  background: #292d39;
}
body[data-theme=light] .clients-main .card {
  background: rgba(160, 172, 189, 0.2);
}
.clients-main .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icons/dots.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -10;
  border-radius: inherit;
}
body[data-theme=light] .clients-main .card::before {
  display: none;
}
.clients-main .card:hover .card-img.light-theme {
  display: block;
}
.clients-main .card:hover .card-img.dark-theme {
  display: none;
}
.clients-main .card-img {
  max-width: 75%;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-theme=dark] .clients-main .card-img.light-theme {
  display: none;
}
body[data-theme=light] .clients-main .card-img.dark-theme {
  display: none;
}
.clients-main .card-img.uzsama {
  width: 200px;
  height: 48px;
}
.clients-main .card-img.profi-university {
  width: 150px;
  height: 56px;
}
.clients-main .card-img.it-park {
  width: 150px;
  height: 48px;
}
.clients-main .card-img.vazirlik {
  width: 60px;
  height: 60px;
}
.clients-main .card-img.markaz {
  width: 60px;
  height: 60px;
}
.clients-main .card-img.xalq-talim {
  width: 166px;
  height: 60px;
}
.clients-main .card-img.marifat {
  width: 200px;
  height: 42px;
}
.clients-main .card-img.japan {
  width: 126px;
  height: 60px;
}
.clients-main .card-img.bright {
  width: 100px;
  height: 100px;
  max-height: unset;
}

.client-main .wrapper {
  display: flex;
  flex-direction: column;
  padding: 120px 15px 60px;
}
@media (max-width: 992px) {
  .client-main .wrapper {
    padding: 80px 15px 40px;
  }
}
.client-main .content {
  display: flex;
  flex-direction: column;
}
.client-main .top {
  border-radius: 26px 26px 0 0;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}
body[data-theme=dark] .client-main .top {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .client-main .top {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .client-main .top {
    padding: 25px 30px;
  }
}
@media (max-width: 576px) {
  .client-main .top {
    padding: 15px;
  }
}
.client-main .profile {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 30px;
}
@media (max-width: 576px) {
  .client-main .profile {
    flex-direction: column;
    gap: 20px 30px;
    padding-bottom: 20px;
  }
}
.client-main .profile-pic {
  max-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .client-main .profile-pic {
    max-width: 80px;
  }
}
.client-main .profile-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.client-main .profile-desc {
  min-width: 385px;
  display: flex;
  flex-direction: column;
}
.client-main .profile-desc-title {
  font-weight: 700;
  font-size: clamp(27px, 1.233rem + 2.27vw, 47px);
  -webkit-text-fill-color: transparent;
}
body[data-theme=dark] .client-main .profile-desc-title {
  background: linear-gradient(90deg, #d3dce1 0%, #a0acbd 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
body[data-theme=light] .client-main .profile-desc-title {
  background: linear-gradient(90deg, #121624 0%, #7b828c 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
@media (max-width: 576px) {
  .client-main .profile-desc-title {
    text-align: center;
  }
}
.client-main .profile-desc-text {
  font-weight: 500;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  color: #0f81c7;
}
@media (max-width: 576px) {
  .client-main .profile-desc-text {
    text-align: center;
  }
}
.client-main .top-content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .client-main .top-content {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .client-main .top-content {
    gap: 20px 30px;
  }
}
.client-main .top-content-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 992px) {
  .client-main .top-content-desc {
    width: 100%;
  }
}
.client-main .block {
  display: flex;
  gap: 50px;
}
@media (max-width: 480px) {
  .client-main .block {
    flex-direction: column;
    gap: 0px 50px;
    align-items: center;
  }
}
.client-main .block-heading {
  max-width: 204px;
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .client-main .block-heading {
    justify-content: center;
  }
}
.client-main .block-heading-img {
  width: 24px;
  height: 24px;
}
body[data-theme=dark] .client-main .block-heading-img.light-theme {
  display: none;
}
body[data-theme=light] .client-main .block-heading-img.dark-theme {
  display: none;
}
.client-main .block-heading-title {
  line-height: 187%;
}
body[data-theme=dark] .client-main .block-heading-title {
  color: #a0acbd;
}
body[data-theme=light] .client-main .block-heading-title {
  color: #3d4856;
}
@media (max-width: 576px) {
  .client-main .block-heading-title {
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .client-main .block-heading-title {
    max-width: unset;
    text-align: center;
  }
}
.client-main .block-title {
  max-width: 204px;
  width: 100%;
  line-height: 187%;
}
body[data-theme=dark] .client-main .block-title {
  color: #a0acbd;
}
body[data-theme=light] .client-main .block-title {
  color: #3d4856;
}
@media (max-width: 576px) {
  .client-main .block-title {
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .client-main .block-title {
    max-width: unset;
    text-align: center;
  }
}
.client-main .block-span {
  font-weight: 500;
  line-height: 187%;
}
body[data-theme=dark] .client-main .block-span {
  color: #d3dce1;
}
body[data-theme=light] .client-main .block-span {
  color: #121624;
}
@media (max-width: 480px) {
  .client-main .block-span {
    text-align: center;
  }
}
.client-main .top-more {
  min-width: 260px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .client-main .top-more {
    align-self: center;
  }
}
@media (max-width: 480px) {
  .client-main .top-more {
    min-width: unset;
    width: auto;
  }
}
.client-main .bottom {
  border-radius: 0 0 26px 26px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
}
body[data-theme=dark] .client-main .bottom {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .client-main .bottom {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .client-main .bottom {
    padding: 25px 30px;
  }
}
@media (max-width: 576px) {
  .client-main .bottom {
    padding: 15px;
  }
}
.client-main .bottom-desc {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
body[data-theme=dark] .client-main .bottom-desc p, body[data-theme=dark] .client-main .bottom-desc h1, body[data-theme=dark] .client-main .bottom-desc span {
  color: #a0acbd;
}
body[data-theme=light] .client-main .bottom-desc p, body[data-theme=light] .client-main .bottom-desc h1, body[data-theme=light] .client-main .bottom-desc span {
  color: #3d4856;
}
@media (max-width: 576px) {
  .client-main .bottom-desc p, .client-main .bottom-desc h1, .client-main .bottom-desc span {
    font-size: 20px !important;
  }
}
.client-main .bottom-desc strong span {
  font-weight: bold;
}
.client-main .bottom-desc-title, .client-main .results-title, .client-main .achievements-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  padding-bottom: 20px;
}
body[data-theme=dark] .client-main .bottom-desc-title, body[data-theme=dark] .client-main .results-title, body[data-theme=dark] .client-main .achievements-title {
  color: #d3dce1;
}
body[data-theme=light] .client-main .bottom-desc-title, body[data-theme=light] .client-main .results-title, body[data-theme=light] .client-main .achievements-title {
  color: #121624;
}
.client-main .bottom-desc-text, .client-main .achievements-item {
  font-size: 20px;
  line-height: 150%;
}
body[data-theme=dark] .client-main .bottom-desc-text, body[data-theme=dark] .client-main .achievements-item {
  color: #a0acbd;
}
body[data-theme=light] .client-main .bottom-desc-text, body[data-theme=light] .client-main .achievements-item {
  color: #3d4856;
}
.client-main .results {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.client-main .cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.client-main .card {
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
body[data-theme=dark] .client-main .card {
  background: rgba(61, 72, 86, 0.3019607843);
}
body[data-theme=light] .client-main .card {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 576px) {
  .client-main .card {
    width: 100%;
  }
}
.client-main .card-img {
  width: 24px;
  height: 24px;
}
body[data-theme=dark] .client-main .card-img.light-theme {
  display: none;
}
body[data-theme=light] .client-main .card-img.dark-theme {
  display: none;
}
.client-main .card-span {
  font-size: 18px;
}
body[data-theme=dark] .client-main .card-span {
  color: #a0acbd;
}
body[data-theme=light] .client-main .card-span {
  color: #3d4856;
}
.client-main .card-title {
  font-weight: 500;
  font-size: 18px;
}
body[data-theme=dark] .client-main .card-title {
  color: #d3dce1;
}
body[data-theme=light] .client-main .card-title {
  color: #121624;
}
.client-main .achievements {
  display: flex;
  flex-direction: column;
}
.client-main .achievements ul {
  list-style: disc;
  display: flex;
  flex-direction: column;
  padding-inline: 30px;
}
@media (max-width: 576px) {
  .client-main .achievements ul {
    padding-inline: 20px;
  }
}
body[data-theme=dark] .client-main .achievements p, body[data-theme=dark] .client-main .achievements h1, body[data-theme=dark] .client-main .achievements span {
  color: #a0acbd;
}
body[data-theme=light] .client-main .achievements p, body[data-theme=light] .client-main .achievements h1, body[data-theme=light] .client-main .achievements span {
  color: #3d4856;
}
@media (max-width: 576px) {
  .client-main .achievements p, .client-main .achievements h1, .client-main .achievements span {
    font-size: 20px !important;
  }
}
.client-main .achievements strong span {
  font-weight: bold;
}
.client-main .achievements-list {
  list-style: disc;
  display: flex;
  flex-direction: column;
  padding-inline: 30px;
}
@media (max-width: 576px) {
  .client-main .achievements-list {
    padding-inline: 20px;
  }
}

.client-projects .wrapper {
  display: flex;
  flex-direction: column;
  padding-block: 60px;
}
@media (max-width: 992px) {
  .client-projects .wrapper {
    padding-block: 40px;
  }
}
.client-projects .client-projects-title {
  font-weight: 600;
  font-size: clamp(22px, 1.261rem + 0.57vw, 27px);
  text-transform: uppercase;
  padding-bottom: 26px;
}
body[data-theme=dark] .client-projects .client-projects-title {
  color: #d3dce1;
}
body[data-theme=light] .client-projects .client-projects-title {
  color: #121624;
}
.client-projects .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-inline: 10px;
}
@media (max-width: 1200px) {
  .client-projects .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .client-projects .cards {
    grid-template-columns: 1fr;
    padding-inline: unset;
  }
}

.client-testimonials .wrapper {
  display: flex;
  flex-direction: column;
  padding: 60px 15px 120px;
}
@media (max-width: 992px) {
  .client-testimonials .wrapper {
    padding: 40px 15px 80px;
  }
}
.client-testimonials .client-testimonials-title {
  font-weight: 600;
  font-size: clamp(27px, 1.636rem + 0.57vw, 33px);
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 30px;
}
body[data-theme=dark] .client-testimonials .client-testimonials-title {
  color: #d3dce1;
}
body[data-theme=light] .client-testimonials .client-testimonials-title {
  color: #121624;
}
.client-testimonials .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.client-testimonials .card {
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 15px 40px;
  align-items: flex-start;
}
body[data-theme=dark] .client-testimonials .card {
  background: #292d39;
}
body[data-theme=light] .client-testimonials .card {
  background: rgba(160, 172, 189, 0.2);
}
@media (max-width: 992px) {
  .client-testimonials .card {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .client-testimonials .card {
    padding: 12px;
  }
}
.client-testimonials .profile {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .client-testimonials .profile {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.client-testimonials .profile-pic {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  flex-shrink: 0;
}
.client-testimonials .profile-img {
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.client-testimonials .profile-desc {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.client-testimonials .profile-desc-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}
body[data-theme=dark] .client-testimonials .profile-desc-title {
  color: #d3dce1;
}
body[data-theme=light] .client-testimonials .profile-desc-title {
  color: #121624;
}
@media (max-width: 480px) {
  .client-testimonials .profile-desc-title {
    text-align: center;
  }
}
.client-testimonials .profile-desc-text {
  font-size: 16px;
  line-height: 144%;
}
body[data-theme=dark] .client-testimonials .profile-desc-text {
  color: #a0acbd;
}
body[data-theme=light] .client-testimonials .profile-desc-text {
  color: #3d4856;
}
@media (max-width: 480px) {
  .client-testimonials .profile-desc-text {
    text-align: center;
  }
}
.client-testimonials .card-text {
  font-size: 16px;
  line-height: 144%;
}
body[data-theme=dark] .client-testimonials .card-text {
  color: #a0acbd;
}
body[data-theme=light] .client-testimonials .card-text {
  color: #3d4856;
}
@media (max-width: 480px) {
  .client-testimonials .card-text {
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */
