@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font-family: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #1D1D1F;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #24A3FF;
  margin-bottom: 10px;
}
.section-label--center {
  text-align: center;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.section-title--accent {
  color: #F0145A;
}
.section-title--center {
  text-align: center;
}

.page {
  padding: 80px 0 120px;
}
.page__inner {
  max-width: 760px;
}
.page__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.page__text {
  font-size: 18px;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 30px;
}

.header {
  background: #323264;
  color: #ffffff;
  padding: 40px 0 0;
  position: relative;
  z-index: 20;
}
.header--light {
  background: #ffffff;
  color: #323264;
}
.header--light .header__nav a {
  color: #323264;
}
.header--light .header__phone {
  color: #B3B3BA;
}
.header--light .header__nav a.is-active {
  color: #F0145A;
}
.header__top {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.header__top-row {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.header__langs {
  display: flex;
  gap: 6px;
}
.header__langs .lang {
  border: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 12px;
  color: inherit;
  cursor: pointer;
  transition: 0.2s;
}
.header__langs .lang--active {
  background: #F0145A;
}
.header__langs .lang:hover:not(.lang--active) {
  background: rgba(255, 255, 255, 0.35);
}
.header__dot {
  opacity: 0.6;
}
.header__address {
  opacity: 0.8;
}
.header__phone {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
}
.header__phone:hover {
  color: #F0145A;
}
.header__facebook img {
  width: 18px;
  transition: 0.25s;
  opacity: 0.9;
}
.header__facebook img:hover {
  opacity: 1;
  transform: scale(1.12);
}
.header__bottom {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.header__bottom-row {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  height: 48px;
}
.header__nav {
  display: flex;
  gap: 24px;
}
.header__nav a {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  opacity: 0.85;
  transition: 0.2s;
}
.header__nav a:hover {
  opacity: 1;
  color: #F0145A;
}
.header__nav a.is-active {
  color: #F0145A;
  opacity: 1;
}
.header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #F0145A;
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.header__burger img {
  width: 28px;
  height: 28px;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__burger {
    display: block;
  }
}
@media (max-width: 375px) {
  .header__address, .header__dot {
    display: none;
  }
  .header__top-row {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  z-index: 200;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}
.mobile-menu.is-open {
  right: 0;
}
.mobile-menu__close {
  background: none;
  border: none;
  font-size: 26px;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  color: #323264;
}
.mobile-menu a {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #E6E6F0;
  text-decoration: none;
  font-weight: 700;
  color: #323264;
  margin-bottom: 10px;
  transition: 0.2s;
}
.mobile-menu a.is-active {
  color: #F0145A;
  border-color: #F0145A;
}
.mobile-menu a:hover {
  border-color: #F0145A;
  color: #F0145A;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 180;
}
.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.footer {
  background: #F5F5FA;
  padding: 40px 0;
  margin-top: 80px;
}
.footer__wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__address {
  font-size: 16px;
  font-weight: 700;
  color: #323264;
}
.footer__map {
  color: #24A3FF;
  font-weight: 700;
  text-decoration: none;
}
.footer__map:hover {
  color: #F0145A;
}
.footer__center {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .footer__center {
    flex-direction: column;
    gap: 12px;
  }
}
.footer__facebook img {
  width: 24px;
  transition: 0.2s;
}
.footer__facebook img:hover {
  transform: scale(1.15);
}
.footer__phone, .footer__mail {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.footer__phone {
  color: #323264;
}
.footer__phone:hover {
  color: #F0145A;
}
.footer__mail {
  color: #24A3FF;
}
.footer__mail:hover {
  color: #F0145A;
}
.footer__right {
  font-size: 14px;
  color: #B3B3BA;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .footer__right {
    margin-top: 10px;
  }
}

.hero {
  position: relative;
  background: linear-gradient(225deg, #323264 0%, #323264 60%, #643e72 100%);
  color: #fff;
  padding: 220px 0 260px;
  overflow: hidden;
}
.hero__symbol {
  position: absolute;
  top: -260px;
  left: 50%;
  width: 1500px;
  transform: translateX(-50%);
  opacity: 0.25;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
}
.hero__tags {
  display: none;
}
.hero__columns {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 80px;
}
.hero__left {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 40px;
}
.hero__label {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.6;
  display: inline-block;
  margin-bottom: 12px;
}
.hero__list {
  list-style: none;
}
.hero__item {
  font-size: 20px;
  margin-bottom: 6px;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.2s;
}
.hero__item--active {
  color: #F0145A;
  opacity: 1;
}
.hero__item:hover {
  opacity: 1;
}
.hero__right {
  max-width: 560px;
}
.hero__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero__text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}
.hero__scroll {
  margin: 80px auto 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.hero__scroll span {
  width: 16px;
  height: 24px;
  border-radius: 10px;
  border: 2px solid #fff;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .hero {
    padding: 200px 0 220px;
  }
  .hero__columns {
    gap: 40px;
  }
  .hero__title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 180px 0 200px;
  }
  .hero__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .hero__right {
    max-width: none;
  }
  .hero__title {
    margin-bottom: 40px;
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 160px 0 180px;
  }
  .hero__title {
    font-size: 26px;
  }
}
@media (max-width: 375px) {
  .hero {
    padding: 140px 0 160px;
  }
  .hero__title {
    font-size: 22px;
  }
  .hero__subtitle {
    font-size: 20px;
  }
}

.services {
  padding: 120px 0;
  background: #fff;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.service-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: #1D1D1F;
  opacity: 0.9;
}

.team-quote {
  padding: 120px 0 80px;
  background: #f5f5fa;
}
.team-quote .team-quote__slider {
  position: relative;
  overflow: hidden;
}
.team-quote .team-quote__track {
  display: flex;
  transition: transform 0.6s ease;
}
.team-quote .team-quote__card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 400px 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  align-items: stretch;
}
.team-quote .team-quote__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #e6e6f0;
}
.team-quote .team-quote__content {
  padding: 40px;
}
.team-quote .team-quote__label {
  font-size: 14px;
  text-transform: uppercase;
  color: #24A3FF;
  margin-bottom: 10px;
}
.team-quote .team-quote__title {
  font-size: 24px;
  font-weight: 700;
  color: #F0145A;
  margin-bottom: 20px;
  line-height: 1.4;
}
.team-quote .team-quote__name {
  margin-top: 10px;
  font-weight: 700;
}
.team-quote .team-quote__role {
  font-size: 14px;
  color: #B3B3BA;
}
.team-quote .team-quote__dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.team-quote .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #B3B3BA;
  cursor: pointer;
  transition: 0.3s;
}
.team-quote .dot.active {
  background: #F0145A;
}
@media (max-width: 1024px) {
  .team-quote .team-quote__card {
    grid-template-columns: 1fr;
  }
  .team-quote .team-quote__photo {
    height: 260px;
  }
}

.clients {
  background: #fff;
  padding: 80px 0;
}
.clients__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .clients__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .clients__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.clients__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  height: 120px;
}
.clients__item img {
  max-height: 60px;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.clients__item--hillel {
  background: #1C4280;
}
.clients__item--wannabiz {
  background: #143646;
}
.clients__item--tapgerine {
  background: #F48B30;
}
.clients__item--3dlook {
  background: #9E4DC3;
}
.clients__item--orangear {
  background: #FD9339;
}
.clients__item--adtelligent {
  background: #E2E2E4;
}
.clients__item--adtelligent img {
  filter: none;
}
.clients__item--clickky {
  background: #C71C36;
}
.clients__item--eco {
  background: #DCF3F9;
}
.clients__item--eco img {
  filter: none;
}
.clients__item--infratek {
  background: #EAEAEA;
}
.clients__item--infratek img {
  filter: none;
}
.clients__item--citypark {
  background: #282240;
}
.clients__item--artprint {
  background: #1D4568;
}
.clients__item--ultimate {
  background: #000000;
}

.blog {
  background: #f5f5fa;
  padding: 80px 0 100px;
}
.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .blog__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog__all {
  font-size: 14px;
  font-weight: 700;
  color: #24A3FF;
  text-decoration: none;
}
.blog__all:hover {
  color: #F0145A;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media (max-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card__body {
  padding: 24px;
}
.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-card__date {
  font-size: 12px;
  text-transform: uppercase;
  color: #B3B3BA;
  display: block;
  margin-bottom: 16px;
}
.blog-card__text {
  font-size: 14px;
  line-height: 1.6;
}/*# sourceMappingURL=main.css.map */