/* Reset and base styles  */
* {
  padding: 0;
  margin: 0;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ol, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  outline: none;
}

input::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background: transparent none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

html {
  scrollbar-gutter: stable;
}
html.locked {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  font-family: "Syne", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

main {
  flex-grow: 1;
}

.container {
  max-width: 1640px;
  padding-inline: 20px;
  margin-inline: auto;
}

.section-title {
  font-weight: 600;
  font-size: clamp(1rem, 0.929rem + 0.3vw, 1.25rem);
  text-transform: uppercase;
  color: #000;
}

.btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: clamp(1rem, 0.929rem + 0.3vw, 1.25rem);
  text-transform: uppercase;
  color: #000;
  border: 1px solid #000;
  border-radius: 7px;
  padding: clamp(0.375rem, 0.322rem + 0.23vw, 0.563rem) clamp(0.625rem, 0.36rem + 1.13vw, 1.563rem);
  transition: 0.2s;
}
.btn-link span {
  width: 19px;
  display: flex;
  overflow: hidden;
  flex-shrink: 0;
}
.btn-link svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn-link svg:nth-child(1) {
  transform: translateX(-100%);
}
.btn-link svg:nth-child(2) {
  transform: translateX(-19px);
}
@media (hover: hover) {
  .btn-link:hover {
    background-color: #000;
    color: #fff;
  }
  .btn-link:hover svg:nth-child(1) {
    transform: translateX(0);
  }
  .btn-link:hover svg:nth-child(2) {
    transform: translateX(100%);
  }
}

.option-item {
  font-size: clamp(0.813rem, 0.759rem + 0.23vw, 1rem);
  font-weight: 600;
  padding: clamp(0.438rem, 0.402rem + 0.15vw, 0.563rem) clamp(0.313rem, 0.224rem + 0.38vw, 0.625rem);
  color: #000;
  border: 1px solid #000;
  border-radius: 7px;
  text-align: center;
  text-transform: uppercase;
}

.menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 780px;
  background-color: #F6F7FA;
  z-index: 10;
  padding: 76px clamp(1.25rem, 0.366rem + 3.77vw, 4.375rem) clamp(3.125rem, 2.771rem + 1.51vw, 4.375rem);
  transition: 0.2s;
  transform: translateX(100%);
}
.menu nav {
  display: flex;
  align-items: start;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
}
@media (max-width: 999px) {
  .menu nav {
    flex-direction: column-reverse;
    align-items: center;
    gap: 70px;
  }
}
.menu__social {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-shrink: 0;
  margin-top: auto;
}
@media (max-width: 999px) {
  .menu__social {
    flex-direction: row;
    align-items: center;
  }
}
.menu__links {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: clamp(2.5rem, 2.075rem + 1.81vw, 4rem);
  flex: 1;
  margin-top: auto;
}
.menu__links a {
  font-weight: 700;
  font-size: clamp(2rem, 1.717rem + 1.21vw, 3rem);
  transition: 0.2s;
}
@media (hover: hover) {
  .menu__links a:hover {
    color: #999;
  }
}
@media (max-width: 999px) {
  .menu__links {
    align-items: center;
    justify-content: end;
  }
}
.menu--active {
  transform: translateX(0);
}

.header {
  padding-top: 20px;
}
.header__content {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}
@media (max-width: 768px) {
  .header__content {
    gap: 30px;
  }
}
.header__logo {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 11;
}
@media (max-width: 768px) {
  .header__logo {
    position: relative;
    left: 0;
    top: 0;
    transform: unset;
  }
}
.header__menu-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  z-index: 11;
  margin-left: auto;
}
.header .is-absolute {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.works-list {
  padding-top: clamp(6.25rem, 4.481rem + 7.55vw, 12.5rem);
  padding-bottom: clamp(6.25rem, 2.712rem + 15.09vw, 18.75rem);
}
.works-list__title {
  font-weight: 600;
  font-size: 48px;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  margin-bottom: clamp(1.875rem, 0.637rem + 5.28vw, 6.25rem);
}
.works-list__filters {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.313rem, 0.136rem + 0.75vw, 0.938rem);
  margin-bottom: clamp(1.875rem, 0.637rem + 5.28vw, 6.25rem);
}
.works-list__filters button {
  width: 100%;
  transition: 0.2s;
}
.works-list__filters button.active {
  background-color: #000;
  color: #fff;
}
@media (hover: hover) {
  .works-list__filters button:hover {
    background-color: #000;
    color: #fff;
  }
}
@media (max-width: 1477px) {
  .works-list__filters {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 999px) {
  .works-list__filters {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .works-list__filters {
    grid-template-columns: repeat(2, 1fr);
  }
}
.works-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 0.719rem + 2.26vw, 3.125rem);
}
.works-list__items li.hidden {
  display: none;
}
@media (max-width: 1240px) {
  .works-list__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .works-list__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.works-list__items li {
  display: flex;
  flex-direction: column;
}
.works-list__items li img {
  width: 100%;
  flex-grow: 1;
  border-radius: 7px;
  margin-bottom: 20px;
  transition: 0.2s;
}
@media (hover: hover) {
  .works-list__items li:hover img {
    scale: 1.05;
  }
  .works-list__items li:hover h3 {
    opacity: 0.5;
  }
}
.works-list__items .work-item-inner {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  gap: 5px;
}
.works-list__items .work-item-inner h3 {
  font-size: clamp(1.5rem, 1.217rem + 1.21vw, 2.5rem);
  transition: 0.2s;
}
.works-list__items .work-item-inner p {
  font-size: 16px;
  color: #4D4D4D;
  grid-column: span 2;
}
.works-list .no-projects {
  display: none;
  text-align: center;
}
.works-list .no-projects.show {
  display: block;
}

.partners {
  padding-block: clamp(6.25rem, 3.597rem + 11.32vw, 15.625rem);
}
.partners__row {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  margin-bottom: clamp(3.125rem, 1.887rem + 5.28vw, 7.5rem);
}
.partners__row h2 {
  max-width: 813px;
  font-weight: 700;
  font-size: clamp(3.125rem, 2.311rem + 3.47vw, 6rem);
  line-height: 100%;
  grid-row: span 2;
}
@media (max-width: 1250px) {
  .partners__row h2 {
    grid-row: unset;
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .partners__row h2 {
    grid-column: unset;
  }
}
.partners__row p {
  max-width: 320px;
  font-weight: 400;
  font-size: clamp(1rem, 0.929rem + 0.3vw, 1.25rem);
  line-height: 120%;
  color: #999;
}
@media (max-width: 1250px) {
  .partners__row p {
    max-width: unset;
    grid-row: 2;
  }
}
@media (max-width: 767px) {
  .partners__row p {
    grid-row: unset;
  }
}
.partners__row a {
  max-width: 198px;
  grid-row: span 2;
}
@media (max-width: 1250px) {
  .partners__row a {
    min-width: 196px;
    grid-row: 2;
  }
}
@media (max-width: 767px) {
  .partners__row a {
    min-width: unset;
    grid-row: unset;
    max-width: 160px;
  }
}
@media (max-width: 767px) {
  .partners__row {
    grid-template-columns: repeat(1, auto);
  }
}
.partners__list {
  padding-block: clamp(0.938rem, 0.672rem + 1.13vw, 1.875rem);
  background-color: #F6F7FA;
  border-radius: 7px;
}
.partners__list .splide__slide {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -0.926rem + 9.28vw, 8.938rem);
  width: clamp(8.875rem, 6.664rem + 9.43vw, 16.688rem);
}

.loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 20;
  transition: 1s;
}
.loader div {
  transition: 0.8s;
  animation: pulse 0.5s infinite alternate;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader.hidden div {
  animation: none;
}
@keyframes pulse {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.our-services__content {
  display: flex;
  align-items: start;
  gap: clamp(3.125rem, 2.241rem + 3.77vw, 6.25rem);
}
@media (max-width: 1199px) {
  .our-services__content {
    flex-direction: column;
    align-items: unset;
  }
}
.our-services__description {
  position: sticky;
  top: 0;
  flex: 1;
  padding-block: clamp(6.25rem, 4.481rem + 7.55vw, 12.5rem);
}
.our-services__description h2 {
  font-weight: 700;
  font-size: clamp(3.125rem, 2.241rem + 3.77vw, 6.25rem);
  line-height: 90%;
  margin-bottom: clamp(1.875rem, 0.637rem + 5.28vw, 6.25rem);
  color: #999;
}
@media (max-width: 1199px) {
  .our-services__description h2 {
    color: #000;
  }
}
.our-services__description p {
  max-width: 570px;
  font-size: clamp(1rem, 0.929rem + 0.3vw, 1.25rem);
  line-height: 120%;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .our-services__description p {
    max-width: unset;
  }
}
@media (max-width: 1199px) {
  .our-services__description {
    padding-block: 20px;
    align-items: start;
    background-color: #fff;
    min-height: 350px;
  }
}
.our-services__description::before {
  display: none;
  max-width: 20px;
  position: absolute;
  content: "";
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 1199px) {
  .our-services__description::before {
    display: initial;
  }
}
.our-services__description::after {
  display: none;
  max-width: 20px;
  position: absolute;
  content: "";
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 1199px) {
  .our-services__description::after {
    display: initial;
  }
}
.our-services__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, -0.248rem + 9.06vw, 9.375rem);
  flex: 1;
  padding-block: 200px;
}
@media (max-width: 1199px) {
  .our-services__list {
    padding-block: 0;
  }
}
.our-services__list-item {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 1.217rem + 1.21vw, 2.5rem);
  padding: clamp(0.625rem, 0.094rem + 2.26vw, 2.5rem);
  background-color: #F6F7FA;
  border-radius: 7px;
  transition: 0.5s;
}
.our-services__list-item div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.our-services__list-item div h3 {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.217rem + 1.21vw, 2.5rem);
}
.our-services__list-item img {
  width: 100%;
  border-radius: 7px;
}
.our-services__list-item .btn-link {
  font-size: clamp(0.75rem, 0.608rem + 0.6vw, 1.25rem);
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .our-services__list-item .btn-link span {
    display: none;
  }
}
.our-services__list-item--active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.our-services__options {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(0.313rem, 0.224rem + 0.38vw, 0.625rem);
}
.our-services__options li {
  font-size: clamp(0.625rem, 0.448rem + 0.75vw, 1.25rem);
  color: #4D4D4D;
  padding: clamp(0.25rem, 0.162rem + 0.38vw, 0.563rem) clamp(0.313rem, -0.024rem + 1.43vw, 1.5rem);
  border: 1px solid #4D4D4D;
  border-radius: clamp(0.313rem, 0.224rem + 0.38vw, 0.625rem);
  text-align: center;
}
@media (max-width: 1199px) {
  .our-services__options {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1199px) {
  .our-services {
    padding-block: clamp(6.25rem, 4.481rem + 7.55vw, 12.5rem);
  }
}

.contact {
  padding-block: clamp(6.25rem, 3.597rem + 11.32vw, 15.625rem);
}
.contact__title {
  font-weight: 700;
  font-size: clamp(3.125rem, 2.877rem + 1.06vw, 4rem);
  line-height: 150%;
  text-align: center;
  margin-bottom: clamp(3.125rem, 2.594rem + 2.26vw, 5rem);
}
.contact__title span {
  color: #0023B3;
}
@media (max-width: 999px) {
  .contact__title {
    line-height: 1;
  }
}
.contact__row {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: clamp(3.125rem, 2.594rem + 2.26vw, 5rem);
}
@media (max-width: 999px) {
  .contact__row {
    flex-direction: column;
  }
}
.contact__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.contact__inputs li {
  position: relative;
}
.contact__inputs li::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform-origin: center;
  scale: 0;
  transition: 1s;
}
.contact__inputs li.active::after {
  scale: 1;
}
.contact__inputs input {
  width: 100%;
  padding: clamp(0.938rem, 0.672rem + 1.13vw, 1.875rem) 10px;
  font-size: clamp(1rem, 0.788rem + 0.91vw, 1.75rem);
}
.contact__options h3 {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.288rem + 0.91vw, 2.25rem);
  line-height: 89%;
  margin-bottom: clamp(1.875rem, 1.521rem + 1.51vw, 3.125rem);
}
.contact__options ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.625rem, 0.537rem + 0.38vw, 0.938rem);
}
.contact__options ul li label {
  display: inline-block;
  width: 100%;
  transition: 0.2s;
}
.contact__options ul li label:has(input:checked) {
  background-color: #000;
  color: #fff;
}
@media (hover: hover) {
  .contact__options ul li label:hover {
    background-color: #000;
    color: #fff;
  }
}
@media (max-width: 999px) {
  .contact__options ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 365px) {
  .contact__options ul {
    gap: 4px;
  }
}
.contact__btn {
  display: flex;
  gap: 10px;
  font-weight: 600;
  font-size: clamp(1rem, 0.929rem + 0.3vw, 1.25rem);
  text-transform: uppercase;
  border: 1px solid #000;
  background-color: #000;
  border-radius: 7px;
  color: #fff;
  padding: 9px 25px;
  margin-inline: auto;
  transition: 0.2s;
}
.contact__btn span {
  width: 19px;
  display: flex;
  overflow: hidden;
  flex-shrink: 0;
}
.contact__btn svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.contact__btn svg:nth-child(1) {
  transform: translateX(-100%);
}
.contact__btn svg:nth-child(2) {
  transform: translateX(-19px);
}
@media (hover: hover) {
  .contact__btn:hover {
    background-color: transparent;
    color: #000;
  }
  .contact__btn:hover svg:nth-child(1) {
    transform: translateX(0);
  }
  .contact__btn:hover svg:nth-child(2) {
    transform: translateX(100%);
  }
}

.work-process {
  overflow: hidden;
  padding-block: clamp(6.25rem, 5.366rem + 3.77vw, 9.375rem);
}
.work-process__top {
  min-height: 709px;
}
.work-process__top h2 {
  font-weight: 700;
  font-size: clamp(3.125rem, 2.877rem + 1.06vw, 4rem);
  line-height: 150%;
}
@media (max-width: 999px) {
  .work-process__top h2 {
    line-height: 1;
  }
}
.work-process__top p {
  max-width: 320px;
  font-size: clamp(1rem, 0.929rem + 0.3vw, 1.25rem);
  line-height: 120%;
  margin-top: clamp(1.875rem, 0.991rem + 3.77vw, 5rem);
  color: #999;
}
@media (max-width: 999px) {
  .work-process__top p {
    max-width: unset;
  }
}
@media (max-width: 999px) {
  .work-process__top .work-process__title-wrapper::before {
    display: none;
  }
}
@media (max-width: 999px) {
  .work-process__top {
    min-height: unset;
    margin-bottom: 50px;
  }
}
.work-process__title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.work-process__title-wrapper::before {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background-color: #000;
}
@media (max-width: 999px) {
  .work-process__title-wrapper::before {
    max-width: 30px;
  }
}
.work-process__items h3 {
  font-size: clamp(1rem, 0.929rem + 0.3vw, 1.25rem);
  color: #4D4D4D;
}
.work-process__list {
  display: flex;
  gap: clamp(1.875rem, 1.521rem + 1.51vw, 3.125rem);
  margin-top: clamp(1.875rem, 1.344rem + 2.26vw, 3.75rem);
}
.work-process__list li {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-content: space-between;
  background-color: #F6F7FA;
  padding: clamp(0.938rem, 0.672rem + 1.13vw, 1.875rem);
  flex-shrink: 0;
  width: 550px;
  border-radius: clamp(0.625rem, 0.448rem + 0.75vw, 1.25rem);
  min-height: clamp(15.625rem, 10.849rem + 20.38vw, 32.5rem);
}
.work-process__list li h4 {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.288rem + 0.91vw, 2.25rem);
  line-height: 89%;
  text-transform: uppercase;
}
.work-process__list li span {
  font-weight: 600;
  font-size: clamp(4.375rem, 2.075rem + 9.81vw, 12.5rem);
  line-height: 50%;
  text-align: right;
}
.work-process__list li p {
  font-size: clamp(1rem, 0.929rem + 0.3vw, 1.25rem);
  line-height: 120%;
  grid-column: span 2;
}
@media (max-width: 999px) {
  .work-process__list li {
    width: auto;
  }
}
@media (max-width: 999px) {
  .work-process__list {
    flex-direction: column;
  }
}

.agency-manifest {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: clamp(18.75rem, 15.212rem + 15.09vw, 31.25rem);
}
.agency-manifest h2 {
  max-width: 1050px;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.113rem + 2.72vw, 4rem);
  line-height: 150%;
  text-align: center;
}

.footer {
  padding-block: clamp(3.125rem, 2.241rem + 3.77vw, 6.25rem);
}
.footer nav {
  margin-bottom: clamp(3.125rem, 2.241rem + 3.77vw, 6.25rem);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: start;
  gap: 50px 30px;
}
.footer__links li {
  justify-self: start;
}
.footer__links li h2 {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.769rem + 0.45vw, 1.25rem);
  line-height: 160%;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
  margin-bottom: 8px;
}
.footer__links li a {
  display: block;
  font-size: 16px;
  line-height: 200%;
}
@media (max-width: 767px) {
  .footer__links li a {
    line-height: 150%;
  }
}
@media (max-width: 767px) {
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__address {
  max-width: 142px;
  line-height: 125% !important;
}

/*# sourceMappingURL=works.css.map */
