.heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1030px;
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .heading {
    gap: 16px;
    margin-bottom: 24px;
  }
}

.title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .title {
    font-size: 14px;
  }
}

.biggest-title {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 768px) {
  .biggest-title {
    font-size: 32px;
  }
}

.subtitle {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
.subtitle span {
  color: #FF5959;
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 20px;
  }
}

.button {
  cursor: pointer;
  padding: 15px 24px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  border-radius: 8px;
  background: #FF5959;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .button:hover {
    scale: 0.97;
  }
  .button:active {
    scale: 0.9;
  }
}
@media (hover: none) {
  .button:active {
    scale: 0.9;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"), auto;
  visibility: hidden;
}
@media (max-width: 768px) {
  .modal {
    padding: 16px;
  }
}
.modal.is_active {
  display: flex;
  visibility: visible;
}
.modal.is_active .modal-inner {
  animation: scaleModal 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.modal.is_active .modal-inner__bg {
  animation: scaleModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, float2 3s ease-in-out 0.8s infinite;
  animation-delay: 0.3s;
}
.modal.is_active .modal-inner__bg_bottom {
  animation: scaleModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, float1 3s ease-in-out 0.8s infinite;
}
.modal__close {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #F0F0F0;
  transition: scale 0.3s ease;
}
@media (max-width: 768px) {
  .modal__close {
    right: 15px;
    top: 15px;
  }
}
@media (max-width: 768px) {
  .modal__close svg {
    width: 24px;
    height: 24px;
  }
}
.modal__close:hover {
  scale: 1.1;
}
.modal__close:active {
  scale: 0.9;
}
.modal__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  width: calc(100% - 40px);
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 23px;
    margin-bottom: 10px;
  }
}
.modal__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  width: calc(100% - 40px);
}
@media (max-width: 768px) {
  .modal__desc {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.modal-inner {
  position: relative;
  display: flex;
  background: #1C1C1C;
  border-radius: 24px;
  width: 100%;
  max-width: 690px;
  padding: 30px;
  margin: auto;
  cursor: auto;
  will-change: scale, opacity, transform;
}
@media (max-width: 768px) {
  .modal-inner {
    border: 16px;
    padding: 20px;
  }
}
.modal-inner__box {
  width: 100%;
}

@keyframes scaleModal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.container {
  width: 100%;
  max-width: 1412px;
  padding-inline: 16px;
  margin-inline: auto;
}

.main {
  padding-top: 112px;
}
@media (max-width: 768px) {
  .main {
    padding-top: 90px;
  }
}

section {
  padding: 50px 0;
}

.header {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  padding: 32px 0;
  background: #1C1C1C;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .header {
    background: #232323;
    padding: 24px 0;
  }
}
.header__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
  width: 100%;
  transition: all 0.3s ease;
}
.header__logo {
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__logo {
    z-index: 1001;
  }
}
.header__logo img {
  width: 200px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 160px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .header__btn {
    width: 100%;
  }
}
.header.menu-active .menu {
  opacity: 1;
  pointer-events: all;
}
.header.menu-active .burger {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}
.header.menu-active .burger__line:nth-child(1) {
  transform: rotate(45deg) translateY(4px) translateX(5px);
}
.header.menu-active .burger__line:nth-child(2) {
  opacity: 0;
}
.header.menu-active .burger__line:nth-child(3) {
  transform: rotate(-45deg) translateY(-4px) translateX(4px);
}
.header.scrolled {
  padding: 10px 0;
}

.menu {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 52px;
  width: 100%;
}
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #232323;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    padding: 100px 16px 16px;
    transition: all 0.3s ease;
  }
}
.menu__nav {
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .menu__nav {
    flex-direction: column;
    overflow-y: auto;
    gap: 8px;
    width: 100%;
    height: 100%;
  }
}
.menu__link {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .menu__link {
    font-size: 16px;
    padding: 24px;
    border-radius: 8px;
    background: #1C1C1C;
  }
}
@media (hover: hover) {
  .menu__link:hover {
    color: #FF5959;
  }
}
@media (hover: none) {
  .menu__link:active {
    color: #FF5959;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 4px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #FF5959;
  z-index: 1000;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}
.burger__line {
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.footer {
  padding: 100px 0 50px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }
}
.footer__box {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__box {
    grid-template-columns: 100%;
    gap: 8px;
    margin-inline: -16px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  background: #1C1C1C;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__left {
    border-radius: 0;
    padding: 24px 16px;
  }
}
.footer__right {
  padding: 24px;
  border-radius: 8px;
  background: #1C1C1C;
  display: grid;
  grid-template-columns: repeat(3, minmax(185px, max-content));
  justify-content: space-between;
  gap: 65px;
}
@media (max-width: 768px) {
  .footer__right {
    border-radius: 0;
    padding: 16px;
    gap: 32px;
    display: flex;
    flex-wrap: wrap;
  }
}
.footer__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .footer__desc {
    font-size: 14px;
  }
}
.footer__socbox {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__col {
    gap: 12px;
    flex-grow: 1;
  }
}
.footer__col_head {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__link {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .footer__link {
    font-size: 14px;
  }
}
.footer__link:hover {
  color: #FF5959;
}
.footer__socnav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__socnav {
    gap: 12px;
  }
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__contact_left {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 768px) {
  .footer__contact_left {
    font-size: 14px;
  }
}
.footer__contact_right {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .footer__contact_right {
    font-size: 14px;
  }
}
.footer__contact_right:hover {
  color: #FF5959;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__soclink {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .footer__soclink {
    font-size: 14px;
  }
}
.footer__soclink:hover {
  color: #FF5959;
}
.footer__soclink::after {
  content: "/";
  font-weight: 500;
  color: #fff !important;
}
.footer__soclink:last-child::after {
  display: none;
}
.footer__right-bottom {
  grid-column: 1/4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__right-bottom {
    grid-column: unset;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-inline: auto;
  }
}
.footer__copyright {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.footer__madein {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: color 0.3s ease;
}
.footer__madein span {
  font-weight: 800;
}
.footer__madein:hover {
  color: #FF5959;
}

.hero {
  padding-top: 24px;
}
.hero__box {
  position: relative;
  z-index: 0;
  border-radius: 20px;
  min-height: calc(100vh - 170px);
  display: flex;
  padding: 40px 32px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero__box {
    padding: 16px;
    min-height: calc(100vh - 140px);
    margin-bottom: 12px;
  }
}
.hero__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30.78%, rgba(0, 0, 0, 0.6) 84.03%);
  z-index: -1;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: end;
  }
}
.hero__title {
  max-width: 780px;
}
@media (max-width: 768px) {
  .hero__btn {
    width: 100%;
  }
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .hero__facts {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    gap: 12px;
  }
}

.hero-fact {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #1C1C1C;
  min-height: 155px;
  height: 100%;
  padding: 24px;
  text-align: center;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .hero-fact {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
.hero-fact__title {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-fact__title {
    font-size: 24px;
  }
}
.hero-fact__desc {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 270px;
}
@media (max-width: 768px) {
  .hero-fact__desc {
    font-size: 15px;
  }
}

.whowe {
  overflow: hidden;
}

.swiper-whowe .swiper-slide {
  height: auto;
}

.whowe-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 12px 24px 12px;
  background: #1C1C1C;
  height: 100%;
  border-radius: 8px;
}
.whowe-card__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.whowe-card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .whowe-card__title {
    font-size: 18px;
  }
}
.whowe-card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .whowe-card__desc {
    font-size: 14px;
  }
}
.whowe-card__icon-box {
  height: 95px;
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #FF5959 0%, #802D2D 49.93%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .whowe-card__icon-box {
    height: 90px;
  }
}
.whowe-card__icon {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}

.team {
  overflow: hidden;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-card__img-box {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
}
.team-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease;
}
.team-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .team-card__title {
    font-size: 18px;
  }
}
.team-card__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
@media (hover: hover) {
  .team-card:hover .team-card__img {
    scale: 1.1;
  }
}
@media (hover: none) {
  .team-card:active .team-card__img {
    scale: 1.1;
  }
}

.herserv__heading {
  max-width: 765px;
}
.herserv__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .herserv__box {
    grid-template-columns: 100%;
    gap: 12px;
  }
}

.herserv-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #1C1C1C;
  border-radius: 8px;
  padding: 12px 12px 24px;
  height: 100%;
}
.herserv-card__icon-box {
  width: 100%;
  height: 290px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FF5959 0%, #802D2D 49.93%, #000 100%);
}
.herserv-card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .herserv-card__title {
    font-size: 18px;
  }
}
.herserv-card__btn {
  width: 100%;
  margin-top: auto;
}

.howwork {
  overflow: hidden;
}
.howwork__heading {
  max-width: 765px;
}

.howwork-card {
  position: relative;
  border-radius: 8px;
  z-index: 0;
  overflow: hidden;
  height: 555px;
}
@media (max-width: 768px) {
  .howwork-card {
    height: 420px;
  }
}
.howwork-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(28, 28, 28, 0.3) 0%, rgba(28, 28, 28, 0.3) 100%);
  z-index: -1;
}
.howwork-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  transition: scale 1s ease;
}
.howwork-card__box {
  display: grid;
  grid-template-columns: 117px 1fr;
  border: 0.5px solid #fff;
  min-height: 117px;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 768px) {
  .howwork-card__box {
    min-height: 90px;
  }
}
.howwork-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  border: 0.5px solid #fff;
  border-radius: 8px 0 0 0;
}
@media (max-width: 768px) {
  .howwork-card__num {
    font-size: 24px;
  }
}
.howwork-card__title {
  display: flex;
  align-items: center;
  padding: 35px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  border: 0.5px solid #fff;
  border-radius: 0 8px 0 0;
}
@media (max-width: 768px) {
  .howwork-card__title {
    padding: 20px;
    font-size: 14px;
  }
}
.howwork-card:hover .howwork-card__img {
  scale: 1.1;
}

.projects__heading {
  max-width: 660px;
}
@media (max-width: 768px) {
  .projects__heading {
    max-width: 100%;
  }
}
.projects__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .projects__box {
    grid-template-columns: 100%;
  }
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.project-card__img-over {
  border-radius: 8px;
  overflow: hidden;
  height: 310px;
}
@media (max-width: 768px) {
  .project-card__img-over {
    height: 250px;
  }
}
.project-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 1s ease;
}
.project-card:hover .project-card__img {
  scale: 1.1;
}
.project-card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .project-card__title {
    font-size: 18px;
  }
}
.project-card__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: auto;
}
@media (max-width: 768px) {
  .project-card__desc {
    font-size: 14px;
  }
}

.serts {
  overflow: hidden;
}
.serts__heading {
  max-width: 740px;
}

.swiper-serts {
  height: 400px;
}
@media (max-width: 768px) {
  .swiper-serts {
    height: 250px;
  }
}

.sert-card {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  outline: none;
}
.sert-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__heading {
  max-width: 700px;
}
.news__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .news__box {
    grid-template-columns: 100%;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card__img-over {
  position: relative;
  border-radius: 8px;
  height: 310px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-card__img-over {
    height: 250px;
  }
}
.news-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 1s ease;
}
.news-card:hover .news-card__img {
  scale: 1.1;
}
.news-card__date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1C1C1C;
  padding: 8px;
  border-radius: 4px;
  z-index: 1;
}
.news-card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .news-card__title {
    font-size: 18px;
  }
}
.news-card__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: auto;
}
@media (max-width: 768px) {
  .news-card__subtitle {
    font-size: 14px;
  }
}

.feedback__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .feedback__box {
    grid-template-columns: 100%;
  }
}
.feedback__left {
  padding: 24px;
  background: #1C1C1C;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .feedback__left {
    padding: 16px;
  }
}
.feedback__title {
  color: #FFF;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .feedback__title {
    font-size: 25px;
  }
}
.feedback__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .feedback__info {
    margin-bottom: 32px;
  }
}

.feedback-adres {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(248, 248, 248, 0.1);
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  max-width: 550px;
}
@media (max-width: 768px) {
  .feedback-adres {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.feedback-adres__left {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .feedback-adres__left {
    font-size: 14px;
  }
}
.feedback-adres__right {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .feedback-adres__right {
    font-size: 14px;
  }
}

a.feedback-adres__right:hover {
  color: #FF5959;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.socials__title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .socials__title {
    font-size: 15px;
  }
}
.socials__box {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .socials__box {
    flex-wrap: wrap;
  }
}
.socials__link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .socials__link {
    font-size: 14px;
  }
}
.socials__link::after {
  content: "/";
  color: rgba(255, 255, 255, 0.22) !important;
}
.socials__link:last-child::after {
  display: none;
}
.socials__link:hover {
  color: #FF5959;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feedback-form__input {
  border-radius: 8px;
  background: rgba(248, 248, 248, 0.1);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  padding: 16px;
}
@media (max-width: 768px) {
  .feedback-form__input {
    font-size: 14px;
    padding: 14px;
  }
}
.feedback-form__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.feedback-form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.feedback-form__submit {
  width: 100%;
  padding: 21px;
  margin-top: 12px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .feedback-form__submit {
    padding: 14px;
  }
}

.hero-about__box {
  margin-bottom: 0;
}

.about__heading {
  margin-bottom: 0;
}

.hero-serv__box {
  margin-bottom: 0;
}

.whowe-card__num {
  color: rgba(255, 255, 255, 0.4);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.worksteps__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .worksteps__box {
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
    gap: 12px;
  }
  .worksteps__box .whowe-card {
    width: calc(100% - 32px);
    flex-shrink: 0;
    height: auto;
  }
}

.page-projects {
  padding-top: 25px;
}

.hero-prjinner__box {
  margin-bottom: 0;
}

.prjinner-done__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .prjinner-done__box {
    grid-template-columns: 100%;
    gap: 16px;
  }
}

.prjinner-done-card {
  height: 445px;
  width: 100%;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
	position: relative;
}
@media (max-width: 768px) {
  .prjinner-done-card {
    height: 100%;
    aspect-ratio: 1;
  }
}
.prjinner-done-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 1s ease;
}
.prjinner-done-card:hover .prjinner-done-card__img {
  scale: 1.2;
}

.page-news {
  padding-top: 25px;
}

.news-inner__container {
  max-width: 680px;
}
.news-inner__date {
  background: #FF5959;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  padding: 8px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.news-inner__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 34px;
}
.news-inner__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}
.news-inner__content blockquote {
  font-style: italic;
  padding-inline: 12px;
  border-left: 2px solid #FF5959;
}
.news-inner__content h2 {
  font-weight: 700;
  margin-bottom: -10px;
}

.contacts__box {
  position: relative;
  height: 700px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contacts__box {
    height: 300px;
    background: #FF5959;
  }
}
.contacts__box iframe {
  width: 100%;
  height: 100%;
}
.contacts__box-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 18px;
  z-index: 10;
}
@media (max-width: 768px) {
  .contacts__box-inner {
    gap: 5px;
    padding: 5px;
  }
}
.contacts__link {
  padding: 18px 12px;
  background: #1C1C1C;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 768px) {
  .contacts__link {
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 14px;
  }
}
.contacts__link span {
  color: rgba(255, 255, 255, 0.5);
}

.pnf {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 16px;
  height: calc(100vh - 170px);
}
.pnf__num {
  color: #fff;
  font-size: 109px;
  font-weight: 700;
  line-height: 1;
}
.pnf__title {
  margin-bottom: -20px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.pnf__desc {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  max-width: 500px;
}
.pnf__btn {
  width: 380px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .pnf__btn {
    width: 100%;
  }
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-15px);
  }
}
@keyframes float3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes float4 {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-25px);
  }
}
.float1 {
  animation: float1 3s ease-in-out infinite;
}

.float2 {
  animation: float2 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.float3 {
  animation: float3 5s ease-in-out infinite;
  animation-delay: 1s;
}

.float4 {
  animation: float4 6s ease-in-out infinite;
  animation-delay: 1.5s;
}/*# sourceMappingURL=style.css.map */
.prjinner-done-card__btn{
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}