@font-face {
  font-family: "KT Kiyosuna Sans";
  src: url("../fonts/KiyosunaSans-L.otf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "KT Kiyosuna Sans";
  src: url("../fonts/KiyosunaSans-B.otf");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "KT Kiyosuna Sans", sans-serif;
  color: #dbdee3;
}
body {
  background-color: #181919;
  cursor: url(../icons/cursor.svg), auto;
}
.wrapper {
  overflow: hidden;
}
ul {
  list-style: none;
}
.header {
  margin-bottom: 60px;
}
section {
  margin-bottom: 160px;
}

@media (max-width: 600px) {
  .header {
    margin-bottom: 40px;
  }
}
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 240px;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 23px;
}

.header__actions {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header__button--discuss {
  border-radius: 100px;
  padding: 10px 20px;
  background-color: #0e4ce8;
  border: none;
  font-weight: 500;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
button {
  cursor: pointer;
}
.header__button--menu {
  width: 71px;
  height: 20px;
  border: none;
  background-color: #181919;
  font-weight: 500;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.header__button--menu span {
  width: 14px;
  height: 14px;
  background: #dbdee3;
  margin-left: 6px;
  font-family: "Montserrat", sans-serif;
  z-index: 999;
}

/* .header__button--menu.active {
  visibility: hidden;
} */

/* .header__button--menu.active > span {
  display: none;
} */

.header__button--menu.active .header__menu-icon {
  /* display: block;
  position: absolute;
  top: 0;
  right: 0;
  /* top: 50%;
  left: 70%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); */
  /* width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; */
}
/* .header__button--menu.active .header__menu-icon::before,
.header__button--menu.active .header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 34px;
  height: 1px;
  background: #dbdee3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__button--menu.active .header__menu-icon::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header__button--menu.active .header__menu-icon::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
} */

.header__close-btn {
  cursor: pointer;
  display: none;
}

.header__button--menu.active > .header__close-btn {
  display: block;
}

@media (hover: hover) {
  .header__button:hover .header__menu-icon {
    border-radius: 50%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .header__button--discuss:hover {
    background-color: #ff5132;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media (max-width: 1320px) {
  .container {
    padding: 0 60px;
  }
  .header__container {
    padding: 20px 60px;
  }
}
@media (max-width: 768px) {
  .header__button--discuss {
    display: none;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .header__container {
    padding: 20px 16px;
  }

  .header__logo img {
    width: 150px;
  }
}
.overlay {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  padding-bottom: 30px;
  background: #181919;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-top: 23px;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
  overflow: auto;
}
.overlay__logo {
  display: block;
  margin-bottom: 143px;
  width: fit-content;
}
.overlay__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 120px;
  row-gap: 60px;
}
.overlay__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.overlay__nav ul li a {
  font-weight: 300;
  font-size: 100px;
  line-height: 120%;
  color: #dbdee3;
}
.overlay__nav ul li a:hover {
  color: #ff5132;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.overlay__services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 46px;
  position: relative;
}
.overlay__services-list li {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: rgba(219, 222, 227, 0.5019607843);
  position: relative;
}
.overlay__services-list > li::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 15%;
  width: 18px;
  height: 18px;
  background-color: #ff5132;
  border-radius: 50%;
  opacity: 0;
}

@media (hover: hover) {
  .overlay__services-list > li:hover {
    color: #ff5132;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  .overlay__services-list > li:hover::before {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.overlay__extra-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 74px;
}
.overlay__extra-nav ul li a {
  font-weight: 300;
  font-size: 30px;
  line-height: 120%;
  color: #dbdee3;
}

@media (hover: hover) {
  .overlay__extra-nav ul li a:hover {
    color: #ff5132;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media (max-width: 1550px) {
  .overlay__content {
    margin-top: 35px;
  }
}

@media (max-width: 1150px) {
  .overlay__content {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 100px;
  }
  .overlay__nav ul li {
    text-align: center;
  }

  .overlay__services-list li {
    text-align: center;
  }

  .overlay__extra-nav {
    grid-row: 2;
  }
  .overlay__extra-nav ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .overlay__content {
    margin-top: 60px;
    gap: 50px;
  }
  .overlay__nav ul li a {
    font-size: 50px;
  }
  .overlay__extra-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
  .overlay__services-list li {
    font-size: 15px;
  }
  .overlay__extra-nav ul li a {
    font-size: 20px;
  }
}
.services-popup {
  position: absolute;
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
  left: 10%;
  top: 150%;
  padding: 40px;
  width: 486px;
  text-wrap: wrap;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(121, 124, 126, 0.4);
  z-index: 999;
  opacity: 0;
  overflow: hidden;
}
.services-popup > p {
  font-family: KT Kiyosuna Sans;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #dbdee3;
}
.services-popup ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.services-popup::before {
  content: "";
  width: 127px;
  height: 126px;
  position: absolute;
  background-color: #ff5132;
  border-radius: 50%;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  z-index: 99;
}
.overlay__services-list > li:nth-child(1):hover .services-popup::before {
  top: 50px;
  right: -20px;
}
.overlay__services-list > li:nth-child(2):hover .services-popup::before {
  bottom: -100px;
  right: 20px;
}
.overlay__services-list > li:nth-child(3):hover .services-popup::before {
  top: -20px;
  right: 120px;
}
.overlay__services-list > li:nth-child(4):hover .services-popup::before {
  top: 60px;
  left: 20px;
}
.overlay__services-list > li:nth-child(5):hover .services-popup::before {
  top: 225px;
  right: 380px;
}
.overlay__services-list > li:nth-child(6):hover .services-popup::before {
  bottom: 30px;
  right: 112px;
}
.overlay__services-list > li:nth-child(7):hover .services-popup::before {
  top: -35px;
  left: 7px;
}
.overlay__services-list > li:nth-child(8):hover .services-popup::before {
  top: -35px;
  left: 7px;
}
.overlay__services-list > li:nth-child(9):hover .services-popup::before {
  top: -35px;
  left: 7px;
}
.services-popup li {
  padding: 5px 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #dbdee3;
}
@media (max-width: 900px) {
  .services-popup {
    width: 300px;
  }
  .services-popup > p {
    font-size: 14px;
  }
}
.introduction {
  margin-bottom: 200px;
  position: relative;
  background-color: #181919;
  overflow: hidden;
  height: calc(100vh - 100px);
}

@media (max-width: 600px) {
  .introduction {
    margin-bottom: 60px;
  }
}

.introduction .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  position: relative;
  height: 100%;
}
.introduction__hidden-text {
  position: absolute;
  top: 0;
  left: 0;
  text-wrap: unset;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 140px;
  line-height: 100%;
  white-space: nowrap;
  color: #ca3d24;
  z-index: 1;
  mix-blend-mode: darken;
  height: 100%;
}
.introduction__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  width: 953px;
  height: 100%;
}
.introduction__content-title {
  font-weight: 300;
  font-size: 65px;
  text-transform: uppercase;
  color: #ff5132;
  -webkit-transition: 0.3s ease;
  width: fit-content;
  transition: 0.3s ease;
}
.introduction__content-text {
  font-weight: 300;
  font-size: 45px;
  line-height: 120%;
  margin-bottom: 53px;
}
.introduction__button {
  width: 168px;
  height: 168px;
  border-radius: 1000px;
  background-color: #ff5132;
  color: #fff;
  border: none;
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
  padding: 0 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.introduction__content > button > span {
  width: 15px;
  height: 15px;
}

.introduction__content > button path {
  stroke: #fff;
}
.introduction__cursor {
  width: 517px;
  height: 517px;
  background-color: #ff5132;
  border-radius: 50%;
  display: block;
  position: absolute;
  pointer-events: none;
  -webkit-transform: translate(-50%, -80%);
  -ms-transform: translate(-50%, -80%);
  transform: translate(-50%, -80%);
}
@media (hover: hover) {
  .introduction__content-title:hover {
    color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .introduction__button:hover {
    background-color: #0e4ce8;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media (max-width: 800px) {
  .introduction__content-title {
    font-size: 53px;
  }
  .introduction__content-text {
    font-size: 35px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .introduction__cursor,
  .introduction__hidden-text {
    display: none;
  }
}
@media (max-width: 600px) {
  .introduction__content {
    gap: 0;
    justify-content: center;
  }

  .introduction__content-title {
    font-size: 45px;
    color: #ff5132;
    text-align: center;
    margin-bottom: 8px;
  }
  .introduction__content-text {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .introduction__button {
    width: 148px;
    height: 148px;
    font-size: 20px;
    padding: 0 26.5px;
    margin: 0 auto;
  }
}
.technologies {
  margin-bottom: 160px;
}

.technologies__running-line {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.technologies__running-line:first-child {
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .technologies {
    margin-bottom: 120px;
  }

  .technologies__running-line:first-child {
    margin-bottom: 20px;
  }
}

.technologies__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  justify-content: space-around;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  padding-right: 40px;
}
.technologies__list-left {
  -webkit-animation: leftScroll 20s linear infinite;
  animation: leftScroll 20s linear infinite;
}
.technologies__list-right {
  -webkit-animation: rightScroll 20s linear infinite;
  animation: rightScroll 20s linear infinite;
}
@-webkit-keyframes leftScroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes leftScroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes rightScroll {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes rightScroll {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.technologies__list > li {
  border: 1px solid rgba(219, 222, 227, 0.3019607843);
  border-radius: 1000px;
  padding: 15px 35px;
  font-weight: 300;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 2%;
}
@media (max-width: 800px) {
  .technologies__list > li {
    font-size: 22px;
  }
}
.projects {
  margin-bottom: 160px;
}

@media (max-width: 600px) {
  .projects {
    margin-bottom: 60px;
  }
}

.projects__content {
  position: relative;
}
.title {
  font-weight: 300;
  font-size: 65px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ff5132;
  margin-bottom: 40px;
  text-align: center;
}

.projects__heading {
  margin-bottom: 40px;
}
.projects__heading-word {
  display: block;
  font-weight: 300;
  font-size: 120px;
  line-height: 120%;
  text-transform: uppercase;
  color: #dbdee3;
  opacity: 0.1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  white-space: nowrap;
}
.projects__heading-word:first-child {
  text-align: end;
}

@media (max-width: 600px) {
  .title {
    font-size: 40px;
  }
}

.projects__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 90px;
  margin-bottom: 72px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 774px;
}

.project-card img {
  opacity: 0.7;
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.project-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex-grow: 1;
}

.project-card__content-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 20px;
}
.project-card__content-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
}

.project-card__actions {
  display: flex;
  gap: 12px;
}

.project-card__actions > button {
  border: 1px solid #3f4041;
  border-radius: 100px;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  padding: 16px 29px;
  background-color: #181919;
  transition: 0.3s ease;
}

@media (max-width: 600px) {
  .project-card__actions > button {
    font-size: 20px;
  }
}

@media (hover: hover) {
  .project-card__actions > button:hover {
    background-color: #ff5132;
    color: #ffffff;
    border-color: #ff5132;
    transition: 0.3s ease;
  }
}

.projects__load-more {
  display: flex;
  gap: 10px;
  margin: 0 auto;
  border: none;
  background-color: #181919;
  color: rgba(219, 222, 227, 0.5019607843);
  /* width: 141px; */
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  position: relative;
  transition: 0.3s ease;
}

.projects__load-more path {
  stroke: #797c7e;
  transition: 0.3s ease;
  /* content: "";
  position: absolute;
  bottom: 5px;
  right: -20px;
  width: 15px;
  height: 15px;
  background-image: url("../icons/projects-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; */
}

@media (hover: hover) {
  .projects__load-more:hover {
    color: #ff5132;
    transition: 0.3s ease;
  }

  .projects__load-more:hover path {
    stroke: #ff5132;
    transition: 0.3s ease;
  }
}

.project-card__wrapper {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.project-card__cursor {
  top: 0;
  width: 140px;
  height: 140px;
  background-color: #0e4ce8;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
  z-index: 999;
}
.project-card__cursor span {
  font-family: KT Kiyosuna Sans;
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
  color: #fff;
}
.project-card__cursor.visible {
  opacity: 1;
}
@media (hover: hover) {
  .projects__heading-word:hover {
    color: #ff5132;
    opacity: 0.4;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .project-card:hover img {
    opacity: 1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media (max-width: 1740px) {
  .projects__list {
    grid-template-columns: 1fr 1fr;
  }
  .projects__heading-word {
    font-size: 80px;
  }
}
@media (max-width: 1100px) {
  .projects__heading-word {
    font-size: 50px;
    white-space: normal;
  }
}
@media (max-width: 800px) {
  .project-card {
    min-height: auto;
  }

  .project-card__content {
    flex-shrink: 1;
  }

  .project-card__content-title {
    font-size: 22px;
    color: #8d8f92;
    margin-bottom: 12px;
  }
  .project-card__content-text {
    font-size: 20px;
  }
  .projects__list {
    grid-template-columns: 1fr;
    row-gap: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .projects__title {
    font-size: 45px;
    text-align: left;
    margin-bottom: 20px;
  }
  .projects__heading {
    top: 65px;
  }
  .projects__heading-word {
    font-size: 30px;
  }
  .projects__heading-word:first-child {
    text-align: start;
  }
}
.illustration {
  margin-bottom: 160px;
}

.illustration__heading {
  margin-bottom: -450px;
  position: relative;
}
.illustration__heading-word {
  display: block;
  font-weight: 300;
  font-size: 120px;
  line-height: 120%;
  text-transform: uppercase;
  color: rgba(219, 222, 227, 0.2);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  white-space: nowrap;
}
.illustration__wrapper {
  position: relative;
  /* top: -515px; */
  top: -350px;
  height: 700px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: -1;
}
.illustration__circle {
  position: absolute;
  left: 46%;
  top: 61%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ff5132;
}
.illustration__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 81, 50, 0.4) 0%,
    rgba(255, 81, 50, 0.2) 40%,
    rgba(255, 81, 50, 0) 70%
  );
  -webkit-filter: blur(25px);
  filter: blur(25px);
  z-index: 1;
  width: 170px;
  height: 170px;
}
.illustration__image {
  position: absolute;
  width: auto;
  height: auto;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition:
    transform 0.1s ease,
    -webkit-transform 0.1s ease;
  will-change: transform;
}
.illustration__image.left-hand {
  left: -11%;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.illustration__image.right-hand {
  right: -11%;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.--left-color,
.--right-color {
  opacity: 0;
}
@media (hover: hover) {
  .illustration__heading-word:hover {
    color: #ff5132;
    opacity: 0.4;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media (max-width: 1930px) {
  .illustration__wrapper {
    top: -265px;
  }
  .illustration__image {
    width: 500px;
  }
  .illustration__image.left-hand {
    left: -30px;
  }
  .illustration__image.right-hand {
    right: -30px;
  }
  .illustration__circle {
    left: 49%;
    top: 42%;
  }
}
@media (max-width: 1740px) {
  .illustration__heading-word {
    font-size: 80px;
  }
  .illustration__wrapper {
    height: 550px;
  }
  .illustration__image {
    width: 400px;
  }
  .illustration__image.left-hand {
    left: 30px;
  }
  .illustration__image.right-hand {
    right: 30px;
  }
  .illustration__circle {
    width: 15px;
    height: 15px;
    top: 43%;
  }
}
@media (max-width: 1580px) {
  .illustration__image.left-hand {
    left: -30px;
  }
  .illustration__image.right-hand {
    right: -30px;
  }
}
@media (max-width: 1450px) {
  .illustration__image.left-hand {
    left: -90px;
  }
  .illustration__image.right-hand {
    right: -90px;
  }
}
@media (max-width: 1320px) {
  .illustration__image.left-hand {
    left: 0px;
  }
  .illustration__image.right-hand {
    right: 0px;
  }
}
@media (max-width: 1150px) {
  .illustration__image.left-hand {
    left: -60px;
  }
  .illustration__image.right-hand {
    right: -60px;
  }
}
@media (max-width: 1110px) {
  .illustration__heading-word {
    font-size: 50px;
    white-space: normal;
  }
  .illustration__wrapper {
    top: -120px;
  }
  .illustration__image {
    width: 300px;
  }
  .illustration__image.left-hand {
    left: 0px;
  }
  .illustration__image.right-hand {
    right: 0px;
  }
  .illustration__circle {
    top: 32%;
  }
}
@media (max-width: 920px) {
  .illustration__image.left-hand {
    left: -60px;
  }
  .illustration__image.right-hand {
    right: -60px;
  }
}
@media (max-width: 800px) {
  .illustration__image.left-hand {
    left: -120px;
  }
  .illustration__image.right-hand {
    right: -120px;
  }
}
@media (max-width: 700px) {
  .illustration__image.left-hand {
    left: -180px;
  }
  .illustration__image.right-hand {
    right: -180px;
  }
}
@media (max-width: 600px) {
  .illustration__heading-word {
    font-size: 30px;
    word-wrap: break-word;
  }
  .illustration__wrapper {
    height: 500px;
  }
  .illustration__image {
    width: 250px;
  }
  .illustration__image.left-hand {
    left: -120px;
  }
  .illustration__image.right-hand {
    right: -120px;
  }
  .illustration__circle {
    top: 30%;
  }
}
@media (max-width: 500px) {
  .illustration__wrapper {
    top: -80px;
    height: 450px;
  }
  .illustration__image {
    width: 180px;
  }
  .illustration__image.left-hand {
    top: 60px;
    left: -60px;
  }
  .illustration__image.--left-color {
    top: 60px;
  }
  .illustration__image.--right-color {
    top: 30px;
  }
  .illustration__image.right-hand {
    top: 30px;
    right: -60px;
  }
  .illustration__circle {
    width: 10px;
    height: 10px;
    top: 34%;
  }
}
@media (max-width: 430px) {
  .illustration__image.left-hand {
    left: -110px;
  }
  .illustration__image.right-hand {
    right: -110px;
  }
}
.brands__line {
  width: 100%;
  border: 1px solid rgba(219, 222, 227, 0.2);
  padding: 40px 0;
}
.brands__line > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}
.brands__line > ul > li {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: rgba(219, 222, 227, 0.5019607843);
}
@media (max-width: 1200px) {
  .brands__line {
    padding: 20px 0;
  }
  .brands__line > ul > li {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .brands {
    margin-bottom: 60px;
  }
  .brands__line {
    padding: 15px 0;
  }
  .brands__line > ul > li {
    font-size: 20px;
  }
}
.about {
  margin-bottom: 160px;
}

@media (max-width: 600px) {
  .about {
    margin-bottom: 120px;
  }
}

.about__container {
  overflow: hidden;
}
.about__inner {
  position: relative;
}
.about__title {
  margin-bottom: 40px;
}

.about__heading {
  top: 105px;
}

@media (max-width: 600px) {
  .about__title {
    font-size: 45px;
    margin-bottom: 20px;
    text-align: left;
  }

  .about__heading {
    margin-bottom: 40px;
  }
}

.about__heading-word {
  display: block;
  font-weight: 300;
  font-size: 120px;
  line-height: 120%;
  text-transform: uppercase;
  color: rgba(219, 222, 227, 0.2);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  white-space: unset;
}
.about__content {
  max-width: 844px;
  position: absolute;
  top: -75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  position: relative;
}
.about__more-button {
  position: absolute;
  top: 40px;
  right: 35.5px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #0e4ce8;
  border: none;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  padding: 0 24px;
  text-align: left;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.about__text-block {
  max-width: 534px;
  min-height: 234px;
  background-color: rgba(121, 124, 126, 0.4);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  padding: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}
.about__text-block:first-child {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.about__text-block:last-child {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.about__decorative-circle {
  position: absolute;
  content: "";
  display: inline-block;
  width: 391px;
  height: 391px;
  border-radius: 50%;
  border: 1px solid #dbdee3;
  top: 15%;
  left: calc(50% - 195.5px);
  z-index: -1;
}
.about__decorative-circle::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ff5132;
  border: none;
  bottom: 184.5px;
  left: 184.5px;
  -webkit-animation: rotateRedCircle 10s linear infinite;
  animation: rotateRedCircle 10s linear infinite;
  z-index: 1;
}
.about__decorative-circle::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #0e4ce8;
  border: none;
  top: 184.5px;
  right: 184.5px;
  -webkit-animation: rotateBlueCircle 10s linear infinite;
  animation: rotateBlueCircle 10s linear infinite;
  z-index: 1;
}
@-webkit-keyframes rotateRedCircle {
  0% {
    -webkit-transform: rotate(0deg) translateX(195.5px) rotate(0deg);
    transform: rotate(0deg) translateX(195.5px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(195.5px) rotate(-360deg);
    transform: rotate(360deg) translateX(195.5px) rotate(-360deg);
  }
}
@keyframes rotateRedCircle {
  0% {
    -webkit-transform: rotate(0deg) translateX(195.5px) rotate(0deg);
    transform: rotate(0deg) translateX(195.5px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(195.5px) rotate(-360deg);
    transform: rotate(360deg) translateX(195.5px) rotate(-360deg);
  }
}
@-webkit-keyframes rotateBlueCircle {
  0% {
    -webkit-transform: rotate(180deg) translateX(195.5px) rotate(-180deg);
    transform: rotate(180deg) translateX(195.5px) rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(540deg) translateX(195.5px) rotate(-540deg);
    transform: rotate(540deg) translateX(195.5px) rotate(-540deg);
  }
}
@keyframes rotateBlueCircle {
  0% {
    -webkit-transform: rotate(180deg) translateX(195.5px) rotate(-180deg);
    transform: rotate(180deg) translateX(195.5px) rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(540deg) translateX(195.5px) rotate(-540deg);
    transform: rotate(540deg) translateX(195.5px) rotate(-540deg);
  }
}
@media (hover: hover) {
  .about__heading-word:hover {
    color: #ff5132;
    opacity: 0.4;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .about__more-button:hover {
    background-color: #ff5132;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media (max-width: 1740px) {
  .about__heading-word {
    font-size: 80px;
  }
}
@media (max-width: 1100px) {
  .about__heading-word {
    font-size: 50px;
    white-space: normal;
  }
  .about__content {
    top: -40px;
  }
}
@media (max-width: 900px) {
  .about__more-button {
    z-index: 9;
    top: 195px;
    width: 100px;
    height: 100px;
    font-size: 12px;
    padding: 0 15px;
  }
}
@media (max-width: 600px) {
  .about__heading-word {
    font-size: 30px;
  }
  .about__text-block {
    font-size: 20px;
    padding: 20px 16px;
  }
  .about__decorative-circle {
    top: 25%;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  .about__content {
    top: 0;
    gap: 200px;
  }

  .about__more-button {
    width: 148px;
    height: 148px;
    top: 40%;
    right: 27%;
    font-size: 20px;
    padding: 0 25px;
  }
}

.brief__heading {
  margin-bottom: 40px;
}
.brief__heading-word {
  display: block;
  font-weight: 300;
  font-size: 120px;
  line-height: 120%;
  text-transform: uppercase;
  color: rgba(219, 222, 227, 0.2);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.brief__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.brief__button {
  position: absolute;
  top: 0;
  right: 168px;
  content: "";
  line-height: 120%;
  width: 140px;
  height: 140px;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  border-radius: 50%;
  border-color: transparent;
  background-color: #0e4ce8;
  padding: 0 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.brief__button path {
  stroke: #ffffff;
}

.brief__info {
  width: 467px;
}
.brief__info-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #ff5132;
  margin-bottom: 20px;
}
.brief__info-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #dbdee3;
}
@media (hover: hover) {
  .brief__heading-word:hover {
    color: #ff5132;
    opacity: 0.4;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .brief__button:hover {
    background-color: #ff5132;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media (max-width: 1740px) {
  .brief__heading-word {
    font-size: 80px;
  }
}
@media (max-width: 1600px) {
  .brief__button {
    right: 0px;
    top: 285px;
  }
}

@media (max-width: 1100px) {
  .brief__heading-word {
    font-size: 50px;
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .brief__button {
    width: 100px;
    height: 100px;
    right: 0px;
    top: 285px;
    font-size: 12px;
    padding: 0 15px;
  }

  .brief__button > span > svg {
    height: 8px;
  }
}

@media (max-width: 600px) {
  .brief__content {
    flex-direction: column;
    align-items: center;
  }
  .brief__heading {
    margin-bottom: 20px;
  }

  .brief {
    margin-bottom: 12px;
  }
  .brief__heading-word {
    font-size: 30px;
  }
  .brief__info {
    width: 100%;
  }
  .brief__info-title {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .brief__info-text {
    font-size: 15px;
  }
  .brief__button {
    top: 0;
    width: 148px;
    height: 148px;
    padding: 0 26.5px;
    font-size: 20px;
    position: relative;
    margin-bottom: 40px;
  }
  .brief__button:hover {
    transform: none;
  }
}

/* @media (max-width: 460px) {
  .brief__button {
    top: 255px;
  }
} */
.more-projects {
  margin-bottom: 160px;
}
.more-projects__title {
  margin-bottom: 40px;
}
.project-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.project-cards__item {
  max-width: 710px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 67px;
  padding: 20px;
  border: 1px solid rgba(219, 222, 227, 0.2);
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.project-cards__item:hover {
  border: 1px solid #0e4ce8;
  background: #252525;
}
.project-cards__content span {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  color: rgba(219, 222, 227, 0.4);
}
.project-cards__content h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #dbdee3;
  margin-bottom: 20px;
  margin-top: 30px;
}
.project-cards__content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  color: #dbdee3;
  margin-bottom: 43px;
  max-width: 372px;
  height: 93px;
}
.project-cards__content button {
  display: block;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 2%;
  color: rgba(219, 222, 227, 0.8);
  border: 1px solid rgba(219, 222, 227, 0.3019607843);
  border-radius: 1000px;
  padding: 14px 40px;
  background-color: #181919;
}
.project-cards__content button + button {
  margin-top: 10px;
}
.project-cards__image-wrapper {
  width: 231px;
  height: 231px;
  border-radius: 20px;
  background-color: rgba(217, 217, 217, 0.2);
}
.faq__content {
  display: grid;
  justify-items: end;
}
.faq__accordion {
  border-top: 1px solid rgba(141, 143, 146, 0.2);
  max-width: 950px;
  grid-column: 2;
}
.accordion__item {
  border-bottom: 1px solid rgba(141, 143, 146, 0.2);
  padding: 20px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 40px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s ease;
}

@media (hover: hover) {
  .accordion__item:hover .accordion__item-question {
    color: #ff5132;
    transition: 0.5s ease;
  }
}

.accordion__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.accordion__item-number {
  font-family: KT Kiyosuna Sans;
  font-weight: 300;
  font-size: 30px;
  line-height: 120%;
  color: #5f6062;
}
.accordion__item-arrow {
  width: 17px;
  height: 17px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.accordion__item-arrow.active {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.accordion__item-question {
  font-family: KT Kiyosuna Sans;
  font-weight: 300;
  font-size: 30px;
  line-height: 120%;
  color: #5f6062;
}
.accordion__item-answer {
  grid-column: 2;
  max-width: 626px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #8d8f92;
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.accordion__item-answer.active {
  max-height: 500px;
  padding-top: 40px;
  opacity: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (max-width: 700px) {
  .accordion__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .accordion__item-wrapper {
    align-items: center;
  }

  .accordion__item-number,
  .accordion__item-question {
    font-size: 20px;
  }

  .accordion__item-question {
    max-width: 245px;
  }

  .accordion__item-answer {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .faq {
    margin-bottom: 120px;
  }
}

.contact__heading {
  margin-bottom: 40px;
}
.contact__heading-word {
  display: block;
  font-weight: 300;
  font-size: 120px;
  line-height: 120%;
  text-transform: uppercase;
  color: rgba(219, 222, 227, 0.2);
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact-form {
  max-width: 800px;
  background-color: rgba(219, 222, 227, 0.1019607843);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 60px 40px;
  margin: 0 auto;
}

.contact-form__field input {
  width: 100%;
  border: 1px solid rgba(219, 222, 227, 0.2);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: rgba(219, 222, 227, 0.4);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 848.9px;
  padding: 20px;
}
.contact-form__agreement p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 23px;
  margin-bottom: 40px;
}
#agreement {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  min-width: 24px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(219, 222, 227, 0.4);
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>')
    no-repeat center;
  background-size: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
#agreement:checked {
  background-color: #007bff;
  border-color: #007bff;
  background-size: 16px;
}

.contact-form__agreement label {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgba(219, 222, 227, 0.4);
  cursor: pointer;
}
.contact-form__highlight {
  color: #0e4ce8;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.contact-form__button {
  display: inline-block;
  background: rgba(219, 222, 227, 0.4);
  color: #2c2d2e;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18.68px;
  line-height: 120%;
  padding: 12px 34px;
  border-radius: 85px;
  border: none;
  width: 174px;
  margin-left: 23px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.wpcf7-list-item {
  margin: 0;
}

@media (hover: hover) {
  .contact__heading-word:hover {
    color: #ff5132;
    opacity: 0.4;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .contact-form__button:hover {
    background-color: #ff5132;
    color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media (max-width: 1740px) {
  .contact__heading-word {
    font-size: 80px;
  }

  .contact-form {
    top: -30px;
  }
}
@media (max-width: 1100px) {
  .contact__heading {
    margin-bottom: 40px;
  }
  .contact__heading-word {
    font-size: 50px;
    white-space: normal;
  }

  .contact-form {
    top: 0;
  }
}
@media (max-width: 900px) {
  .contact-form > input {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .contact {
    margin-bottom: 120px;
  }
  .contact__heading-word {
    font-size: 45px;
    text-align: left;
    color: #ff5132;
  }
  .contact-form {
    padding: 0;
    background-color: transparent;
  }
  .contact-form > input {
    font-size: 15px;
  }
  .contact-form__agreement p {
    align-items: start;
    gap: 17px;
  }
  .contact-form__agreement label {
    font-size: 14px;
  }
  .contact-form__button {
    width: 100%;
    padding: 16px 0;
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    color: #ff5132;
    background-color: transparent;
    border: 1px solid #ff5132;
  }
  .contact-form__field input {
    padding: 14px;
    font-size: 20px;
  }
  #agreement {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 500px) {
  .contact-form__agreement {
    margin-left: 0;
  }
  .contact-form__agreement p {
    margin-left: 0;
  }
  .contact-form__button {
    display: block;
  }
}

.footer {
  border-top: 1px solid rgba(219, 222, 227, 0.2);
  padding-top: 40px;
  margin-bottom: 100px;
}
.footer__container {
  display: grid;
  grid-template-columns: 297px 1fr;
  gap: 190px;
}
.footer__brand {
  width: 297px;
  text-align: center;
}
.footer__brand img {
  margin-bottom: 20px;
}
.footer__brand h4 {
  font-weight: 300;
  font-size: 32px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ff5132;
  text-align: left;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.footer__nav h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  color: #8d8f92;
  margin-bottom: 20px;
}
.footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
a {
  text-decoration: none;
}

.footer__services {
  max-width: 142px;
}

.footer__services-list li a,
.footer__socials-list li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #8d8f92;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .footer__services-list li a:hover,
  .footer__socials-list li a:hover {
    border-bottom-color: #8d8f92;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media (max-width: 1100px) {
  .footer__container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 100px;
  }

  .footer__brand h4 {
    text-align: center;
  }

  .footer__nav {
    justify-content: space-around;
  }
}
@media (max-width: 600px) {
  .footer__container {
    gap: 50px;
  }
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  .footer__services,
  .footer__socials {
    text-align: center;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 46px;
}

.breadcrumbs__item {
  height: 19px;
  display: flex;
  align-items: center;
  a,
  span {
    text-decoration: none;
    outline: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff66;
    font-family: "Montserrat", sans-serif;
  }
}

.breadcrumbs__item.active {
  span {
    border-bottom: 1px solid #ffffff66;
  }
}

.breadcrumbs__separator {
  height: 19px;
  display: flex;
  align-items: center;
}

/* services page */

.services__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.services__nav-item {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #dbdee380;
  border: 1px solid #424242;
  padding: 32px 40px;
  border-radius: 1000px;
  cursor: pointer;
  transition: 0.5s ease;
}

@media (max-width: 1000px) {
  .services__nav-item {
    font-size: 16px;
    padding: 16px 20px;
  }
}

@media (max-width: 800px) {
  .services__nav {
    flex-direction: column;
  }
}

.services__nav-item.active {
  color: #181919;
  background-color: #ff5132;
  border-color: transparent;
}

@media (hover: hover) {
  .services__nav-item:hover {
    color: #181919;
    background-color: #ff5132;
    border-color: transparent;
    transition: 0.5s ease;
  }
}

.services__heading {
  font-weight: 300;
  font-size: 120px;
  line-height: 120%;
  text-transform: uppercase;
  color: #3f4041;
  margin-bottom: 20px;
}

.highlight {
  color: #742f23;
}

@media (max-width: 1900px) {
  .services__heading {
    font-size: 100px;
  }
}

@media (max-width: 1650px) {
  .services__heading {
    font-size: 80px;
  }
}

@media (max-width: 900px) {
  .services__heading {
    font-size: 45px;
  }
}

.services__text {
  max-width: 520px;
  color: #dbdee3;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  margin: 0 auto;
  margin-bottom: 160px;
}

.services__title {
  text-align: start;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
}

.services__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 160px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 20px;
}

.stats__item-number {
  font-weight: 300;
  font-size: 120px;
  line-height: 120%;
  text-transform: uppercase;
  color: #3f4041;
  border-right: 2px solid #3f4041;
}

.stats__item:last-child > .stats__item-number {
  border-right: transparent;
}

.stats__item-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  color: #dbdee3;
  max-width: 332px;
}

@media (max-width: 1000px) {
  .stats__item-number {
    font-size: 60px;
  }

  .stats__item-text {
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  .services__title {
    text-align: center;
  }

  .services__stats {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .stats__item {
    padding-left: 0;
  }

  .stats__item-number,
  .stats__item-text {
    text-align: center;
  }

  .stats__item-number {
    border: none;
  }
}

@media (max-width: 600px) {
  .services__stats {
    margin-top: 80px;
  }

  .services__text {
    margin-bottom: 80px;
  }
}

.services-content {
  display: none;
}

.website-design__list,
.advertisement__list {
  display: flex;
  flex-direction: column;
  gap: 134px;
}

@media (max-width: 700px) {
  .website-design__list,
  .advertisement__list {
    gap: 70px;
  }
}

.website-design__item,
.advertisement__item {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

@media (max-width: 1100px) {
  .website-design__item,
  .advertisement__item {
    gap: 50px;
  }
}

.website-design__item-image,
.advertisement__item-image {
  max-width: 955px;
  width: 100%;
  min-width: 0;
}

.website-design__item-image > img,
.advertisement__item-image > img {
  width: 100%;
}

.website-design__item-desc,
.advertisement__item-desc {
  max-width: 466px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  flex: 1 1 50%;
  min-width: 0;
}

.website-design__item-title,
.advertisement__item-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
  color: #dbdee3;
  margin-bottom: 20px;
}

.website-design__item-subtitle,
.advertisement__item-subtitle {
  margin-bottom: 40px;
}

.website-design__item-subtitle,
.advertisement__item-subtitle,
.website-design__item-text,
.advertisement__item-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  color: #dbdee3;
}

.website-design__item-links,
.advertisement__item-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.website-design__item-links > a,
.advertisement__item-links > a {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  color: #dbdee3;
  padding: 16px 22px;
  border: 1px solid #3f4041;
  border-radius: 100px;
  width: fit-content;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .website-design__item-links > a:hover,
  .advertisement__item-links > a:hover {
    border-color: transparent;
    background-color: #ff5132;
    color: #181919;
    transition: 0.3s ease;
  }
}

@media (max-width: 1100px) {
  .website-design__item,
  .advertisement__item {
    flex-direction: column;
  }

  .website-design__item-desc,
  .advertisement__item-desc {
    max-width: none;
  }
}

@media (max-width: 800px) {
  .advertisement-swiper .swiper-slide img {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .website-design__item-title,
  .advertisement__item-title {
    font-size: 20px;
  }

  .website-design__item-subtitle,
  .website-design__item-text,
  .advertisement__item-subtitle,
  .advertisement__item-text {
    font-size: 16px;
  }

  .website-design__item-links > a,
  .advertisement__item-links > a {
    font-size: 14px;
  }
}

/* projects slider */

.website-design-swiper,
.advertisement-swiper {
  width: 100%;
  /* height: 630px !important;
  height: 100% !important; */
}

.website-design-swiper .swiper-slide,
.advertisement-swiper .swiper-slide {
  width: 100%;
  overflow: hidden;
  height: auto;
}

.website-design-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.advertisement-swiper .swiper-slide img {
  display: block;
  margin: 0 auto;
}

/* Стили для пагинации */

.swiper-pagination.swiper-pagination-bullets {
  position: relative !important;
  top: 15px !important;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 700px) {
  .swiper-pagination-bullets {
    display: none !important;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #8d8f92;
  margin: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5132;
  width: 11px;
  height: 11px;
  position: relative;
}

.swiper-pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border: 1px solid #ff5132;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Стили для кнопок навигации */

.swiper-button-prev {
  left: 45px !important;
}

.swiper-button-next {
  right: 45px !important;
}

@media (max-width: 700px) {
  .swiper-button-prev {
    left: 10px !important;
  }

  .swiper-button-next {
    right: 10px !important;
  }
}

.website-design-swiper .swiper-button-prev,
.website-design-swiper .swiper-button-next,
.advertisement-swiper .swiper-button-prev,
.advertisement-swiper .swiper-button-next {
  color: #fff;
  width: 44px;
  height: 44px;
  backdrop-filter: blur(2px);
  border-radius: 50%;
  border: 1px solid #ffffff;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .website-design-swiper .swiper-button-prev:hover,
  .website-design-swiper .swiper-button-next:hover,
  .advertisement-swiper .swiper-button-prev:hover,
  .advertisement-swiper .swiper-button-next:hover {
    color: #ff5132;
    border-color: #ff5132;
    background: #ffffff66;
    transition: 0.3s ease;
  }
}

.website-design-swiper .swiper-button-prev:after,
.website-design-swiper .swiper-button-next:after,
.advertisement-swiper .swiper-button-prev:after,
.advertisement-swiper .swiper-button-next:after {
  font-size: 15px;
}

/* fullscreen */

/* Стили для кнопки полноэкранного режима */
.website-design__item-image,
.advertisement__item-image {
  position: relative;
}

.slide-fullscreen-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

@media (hover: hover) {
  .slide-fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
  }
}

.slide-fullscreen-btn svg {
  width: 20px;
  height: 20px;
}

/* Стили для модального окна */
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.fullscreen-modal.active {
  display: flex;
}

.fullscreen-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.fullscreen-modal__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.fullscreen-modal__close {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fullscreen-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.fullscreen-modal__close svg {
  width: 20px;
  height: 20px;
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
  .fullscreen-modal__close {
    top: -60px;
    right: 10px;
  }

  .slide-fullscreen-btn {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
  }

  .slide-fullscreen-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* scroll-to-top button */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ff5132;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .scroll-to-top:hover {
    opacity: 0.8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
}

.scroll-to-top:active {
  transform: translateY(0);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* language switcher */

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.language-btn:hover {
  background: #e9e9e9;
}

.language-text {
  color: black;
}

.language-arrow {
  fill: black;
  transition: transform 0.2s ease;
}

.language-switcher.active .language-arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.language-switcher.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.language-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
  color: black;
}

.language-option:hover {
  background: #f5f5f5;
}

.language-option:first-child {
  border-radius: 5px 5px 0 0;
}

.language-option:last-child {
  border-radius: 0 0 5px 5px;
}

/* policy page */

.policy__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.policy-item {
  max-width: 955px;
  width: 100%;
}

.policy-item__title {
  font-family: "KT Kiyosuna Sans", sans-serif;
  font-weight: 300;
  font-size: 65px;
  line-height: 120%;
  text-transform: uppercase;
  color: #ff5132;
  margin-bottom: 20px;
}

.policy-item__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-item__column-text,
.list-item {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #dbdee3;
}

.list-item {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.list-item::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: #dbdee3;
}

.policy__data {
  padding-top: 40px;
  border-top: 2px solid #5f6062;
}

.policy__data-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #dbdee3;
}

@media (max-width: 1000px) {
  .policy-item__title {
    font-size: 35px;
  }

  .policy-item__column-text,
  .policy__data-text,
  .list-item {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .policy-item__title {
    font-size: 25px;
  }
}
