@font-face {
  font-family: 'DIN2014';
  src: url("../fonts/DIN2014-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN2014';
  src: url("../fonts/DIN2014-DemiBold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN2014';
  src: url("../fonts/DIN2014-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN2014';
  src: url("../fonts/DIN2014-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

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, 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;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

:root {
  --container-width: 1246px;
  --container-padding: 15px;

  --font-main: DIN2014, sans-serif;
  --font-accent: DIN2014, sans-serif;
  --font-titles: var(--font-accent);

  --page-bg: #fff;
  --text-color: rgba(20, 20, 20, 1);
  --accent: rgba(85, 85, 85, 1);
  --link-color: rgba(0, 86, 174, 1);
  --card-bg: rgba(56, 109, 158, 0.68);
  --footer-bg:rgba(6, 44, 92, 1);
  --footer-text:rgba(137, 137, 137, 1);
  --about-br:rgba(228, 228, 228, 1);

}

html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--link-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--link-color);
}

/* Контейнеры */
.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);

  max-width: var(--container-width);
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.page {
  height: 100%;
  font-size: 14px;
  font-family: DIN2014, sans-serif;
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 40px;
  --height: 30px;

  --line-height: 4px;
  --spacing: 6px;

  --color: #000;
  --radius: 4px;

  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */

  /* Dynamic height and width */
  height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--link-color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: var(--width);
  height: var(--line-height);

  border-radius: var(--radius);
  background-color: var(--link-color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
  z-index: 999;
  display: none;
}

.mobile-nav {
  position: fixed;
  // top: 0;
  left: -110%;
  width: 45%;
  height: 100%;
  z-index: 110;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: var(--page-bg);
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in;
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav a {
  color: #151515;
  padding: 15px 10px 15px 35px;
  text-transform: uppercase;
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 22px;
  padding-top: 20px;

  & .active {
    opacity: 0.5;
  }
}

.mobile-nav__list li {
  position: relative;
}

.menu-title {
  min-height: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--link-color);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  padding: 7px 5px;
  position: relative;
}

.menu-title .menu__close {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.submenu {
  position: fixed;
  top: 0px;
  left: -100%;
  width: 45%;
  height: 100%;
  z-index: 100;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: var(--body-bg);
  transition: 0.5s ease-in;
}

.submenu--open {
  left: 0;
}

.submenu ul {
  padding-top: 20px;
}

.back-btn {
  position: absolute;
  z-index: 1000;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.back-btn img {
  transform: rotate(90deg);
}

.item-arrow {
  position: relative;
}

.item-arrow img {
  position: absolute;
  transform: translateY(-50%) rotate(-90deg);
  right: 30px;
  top: 50%;
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 200;
  transition: 0.7s ease;
}
.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fixed-social__link {
  display: block;
  transform: rotate(0deg);
  transition: 0.7s ease;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
}

.fixed-social__link:hover {
  transform: rotate(360deg);
}

.fixed-social.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}

.pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1px solid var(--link-color);
  background-color: transparent;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pagination .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
  background-color: var(--link-color);
}

.slider-arrow {
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--link-color);
  border-radius: 50%;
  z-index: 50;
  cursor: pointer;
  transition: 0.4s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  border: 1px solid var(--text-color);
}

.button-prev img {
  position: relative;
}

.button-next img {
  position: relative;
  transform: rotate(180deg);
}

.services__card .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  left: 52% !important;
  transform: translateX(-50%);
  z-index: 10;
}

.partners__block .swiper-pagination {
  bottom: -30px !important;
}

.title-1 {
  font-size: 55px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-main);
  text-transform: uppercase;
}

.title-2 {
  font-size: 40px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-main);
}

.title-3 {
  margin: 1em 0 0.5em;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-titles);
}

.title-4 {
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-main);
}

.project__text {
  font-size: 13px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.form__title {
  font-size: 48px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-main);
}

.contact__link {
  transition: 0.4s linear;
  color: rgba(102, 102, 102, 1);
}

.contact__link:focus,
.contact__link:hover,
.contact__link:active {
  color: var(--link-color);
}

.promo__text {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.promo__text-2 {
  font-size: 14px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  text-align: center;
}

.promo-scroll {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 7px;
  font-family: var(--font-main);
  color: rgba(197, 197, 197, 1);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--page-bg);
  background-color: var(--link-color);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn:focus,
.btn:hover,
.btn:active {
  color: var(--link-color);
  background-color: var(--page-bg);
  border: 1px solid var(--link-color);
}

.text-white {
  color: var(--page-bg);
}

.text-center {
  text-align: center;
}

.promo-btn {
  width: 100%;
}

.about__btn {
  max-width: 158px;
  width: 100%;
}

.form__btn {
  max-width: 158px;
  width: 100%;
}

.page-header {
  min-width: 320px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 100%;
  z-index: 80;
  transform: translateY(30px);
  transition: 0.2s linear;
}

.header--active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.header__row {
  display: flex;
  align-items: center;
  background-color: var(--page-bg);
  width: 100%;
  padding: 20px 30px;
  border-radius: 16px;
}
.logo {
  flex-shrink: 0;
}

.header__nav {
  flex-grow: 1;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 54px;
  margin-left: 76px;
}

.nav__list a {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.4s linear;
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
  color: var(--link-color);
}

.header__contact {
  max-width: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 20px;
  gap: 20px;
}

.header__tel {
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  text-transform: uppercase;
  transition: 0.4s linear;
}

.header__tel:focus,
.header__tel:hover,
.header__tel:active {
  color: var(--link-color);
}

.footer {
  background-color: var(--footer-bg);
  padding: 50px 0 63px 0;
  color: #fff;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__top {
  display: flex;
  gap: 30px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(139, 191, 255, 1);
}
.footer__logo {
  flex-shrink: 0;
}
.footer__right {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 72px;
}
.footer__contact {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.footer__block-1 {
  max-width: 192px;
  width: 100%;
}
.footer__block-2 {
  max-width: 217px;
  width: 100%;
}
.footer__block-3 {
  max-width: 240px;
  width: 100%;
}

.footer__title {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.footer__link {
  font-size: 17px;
  line-height: 20px;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.footer__text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--footer-text);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__social {
  max-width: 160px;
  width: 100%;
}
.footer__social-list {
  display: flex;
  gap: 10px;
}

.footer__copyright a {
  font-size: 17px;
  line-height: 20px;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.promo {
  height: 100vh;
}

.promo-blue {
  background-color: var(--link-color);
  height: 550px;
}

.promo__wrapper {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.promo__wrapper-after {
  position: relative;
}

.promo__wrapper-after::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  z-index: 0;
  pointer-events: none;
}

.banner {
  height: 100vh;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 94px;
  max-width: 746px;
  margin: 0 auto;
}

.promo__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.promo__info-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.promo__btns {
  max-width: 160px;
  width: 100%;
}

.promo__inner-bottom {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(26px);
  border-radius: 16px;
  padding: 30px;
}

.promo__inner-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.promo__inner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.promo__inner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 40px;
}

.promo-img-text {
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.promo-img-block {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.promo-img-block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("/storage/app/media/svg/promo-cyrcle.svg") no-repeat;
  background-size: cover;
  animation: 15s linear infinite rotate;
}

.catalog {
  min-width: 320px;
  padding: 90px 0;
}

.catalog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.catalog__top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.catalog__item {
  position: relative;
  border-radius: 16px;
  transition: 0.4s linear;
  transform: scale(1);
}

.catalog__item:focus,
.catalog__item:hover,
.catalog__item:active {
  transform: scale(1.1);
}

.catalog__img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.catalog__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.catalog__text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  padding: 28px 5px;
  background-color: rgba(56, 109, 158, 0.62);
  backdrop-filter: blur(4px);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.about {
  min-width: 320px;
  padding-bottom: 90px;
}

.about-2 {
  min-width: 320px;
  padding: 90px 0;
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.about__inner {
  display: flex;
  gap: 32px;
}

.reverse {
  flex-direction: row-reverse;
}

.about__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px 40px;
  border: 1px solid var(--about-br);
  border-radius: 16px;
  max-width: 663px;
  width: 100%;
}
.about__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__img {
  max-width: 522px;
  width: 100%;
  border-radius: 16px;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.advantage {
  min-width: 320px;
  padding-bottom: 90px;
}

.advantage__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.advantage__top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.advantage__item {
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 16px;
  border: 1px solid var(--about-br);
  padding: 53px 19px 22px 30px;
}
.advantage__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.advantage__block .text {
  line-height: 100%;
}

.work {
  min-width: 320px;
  padding-bottom: 90px;
}

.work__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.work__top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work__img {
  width: 100%;
  height: 100%;
}

.work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-about {
  min-width: 320px;
}
.form__block {
  padding: 130px 0;
  position: relative;
  z-index: 1;
}

.form__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.form__block::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

.form__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
}

.form__top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form__top .text {
  line-height: 100%;
}

.form__main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form__main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.form__label {
  width: 100%;
}
.form__input {
  width: 100%;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
  padding: 14px 10px;
  background-color: rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(4px);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: 0.4s linear;
}

.form__input:focus,
.form__input:hover,
.form__input:active {
  border: 1px solid var(--page-bg);
}

.form__input::placeholder {
  color: var(--page-bg);
}

.project {
  min-width: 320px;
  padding: 90px 0;
}

.project__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.project__top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.project__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s linear;
}
.project__img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.project__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.project__block {
  position: absolute;
  width: 100%;
  height: 147px;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 4;
}
.project__block-top {
  position: relative;
  padding: 67px 10px 40px 30px;
  background-color: var(--link-color);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0% 100%);
  z-index: 4;
  height: 100%;
}

.project__block-hidden {
  position: absolute;
  overflow: hidden;
  left: 0;
  bottom: -227px;
  min-height: 243px;
  z-index: 3;
  width: 100%;
  background-color: rgba(56, 109, 158, 0.68);
  padding: 91px 20px 60px 30px;
  clip-path: polygon(0 37%, 100% 0, 100% 100%, 0% 100%);
  transition: 0.4s linear;
}

.project__item:focus .project__block-hidden,
.project__item:hover .project__block-hidden,
.project__item:active .project__block-hidden {
  bottom: 77px;
}

.partners {
  padding-bottom: 100px;
  min-width: 320px;
  position: relative;
}

.partners-2 {
  padding: 90px 0 133px 0;
  min-width: 320px;
  position: relative;
}

.partners__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.partners__top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__block {
  position: relative;
}

.partners__swiper {
  position: relative;
}

.partners__inner {
  display: flex;
}

.partners__slide {
  border-radius: 30px;
  border: 1px solid rgba(217, 217, 217, 1);
}

.partners__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 101px;
}
.partners__link img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.our {
  min-width: 320px;
}

.our__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.our__top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.our__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.our__item {
  border-radius: 16px;
}

.our__img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.our__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.contact {
  min-width: 320px;
  padding: 50px 0 90px 0;
}

.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.contact__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid var(--about-br);
  padding: 40px 10px 33px 20px;
}
.contact__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-color);
}
.contact__block {
  display: flex;
  flex-direction: column;
}

.contact__map iframe {
  border-radius: 16px;
}

.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}

