/* FONTS */

@font-face {
  font-family: "Roobert";
  src: url("../fonts/Roobert.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

/* --- FONTS --- */

/* DEFAULT */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  border: none;
  font-family: "Roobert", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: transparent;
}

body {
  background: #fff;
}

#wpadminbar {
  top: auto !important;
  bottom: 0 !important;
}

html {
  margin-top: 0 !important;
}

body.admin-bar {
  padding-bottom: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    padding-bottom: 46px;
  }
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

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

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.section-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
}

.btn {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  padding: 24px 28px;
  background: #010109;
  width: fit-content;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  opacity: 0.8;
}

.slider-navigation {
  display: flex;
  gap: 8px;
}

.slider-navigation-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-navigation-btn svg {
    pointer-events: none;
}

.slider-navigation-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #000;
  background-color: transparent;
  transition: opacity 0.3s ease-in-out;
}

.slider-navigation-btn:hover {
  opacity: 0.7;
}

.swiper-button-disabled,
.swiper-button-disabled:hover {
  opacity: 0.3;
}

/* --- DEFAULT --- */

/* HEADER */

.header {
  background: #ffffff;
  width: 100%;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.25s ease;
  will-change: transform;
}

.header.is-hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 68px;
}

.header-main-menu,
.header-add-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.has-submenu svg {
  transition: transform 0.2s ease-in-out;
}

.has-submenu span,
.header-menu > li span {
  transition: opacity 0.2s ease-in-out;
}

.has-submenu.active span,
.header-menu > li:hover span {
  opacity: 0.5;
}

.has-submenu.active svg {
  transform: rotate(180deg);
  transform-origin: center center;
}

.header-menu .menu-item {
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #000000;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

.header-menu > li a {
  padding: 20px 0;
  cursor: pointer;
}

.submenu {
  position: absolute;
  top: 70px;
  z-index: 0;

  width: 100%;
  margin: 0 auto;

  display: none;
  gap: 20px;
  background: #fff;

  opacity: 0;
}

.submenu:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  top: 0;
  left: 0;
  box-shadow: 0px 4px 0px 0px rgba(91, 81, 64, 0.1) inset;
  -webkit-box-shadow: 0px 4px 4.8px 0px rgba(91, 81, 64, 0.1) inset;
  -moz-box-shadow: 0px 4px 4.8px 0px rgba(91, 81, 64, 0.1) inset;
  pointer-events: none;
}

@keyframes submenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes submenuFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}

.submenu.active {
  display: flex;
  animation: submenuFadeIn 0.2s ease-out 0.1s forwards;
}

.submenu.is-hiding {
  display: flex;
  animation: submenuFadeOut 0.1s ease-in forwards;
}

.submenu-categories {
  width: 20%;
  background: #f0f0f0;
  opacity: 1;
}

.submenu-items-area {
  flex: 1;
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
}

.submenu-categories-items,
.submenu-items-content {
  list-style: none;
}

.submenu-categories-items {
  display: flex;
  flex-direction: column;
}

.submenu-categories-items li {
  padding: 32px 0;
  border-bottom: 1px solid #bbbbbb;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.2s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  color: #0b2923;
}

.submenu-categories-items li:hover,
.submenu-categories-items li.active {
  background-color: #fff;
}

.submenu-categories-items li span {
  padding-left: 20px;
}

.practic-items .submenu-items-content {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 14px;

  /* высота “малой” карточки */
  grid-auto-rows: 110px; /* подгони под дизайн */
}

/* раскладка */
.practic-items .item1 {
  grid-column: 1;
  grid-row: 1;
}
.practic-items .item2 {
  grid-column: 1;
  grid-row: 2;
}
.practic-items .item3 {
  grid-column: 1;
  grid-row: 3;
}
.practic-items .item4 {
  grid-column: 1;
  grid-row: 4;
}

.practic-items .item5 {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.practic-items .item6 {
  grid-column: 2;
  grid-row: 3 / span 2;
}

.practic-items .item7 {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.practic-items .item8 {
  grid-column: 3;
  grid-row: 3 / span 2;
}

/* карточка */
.practic-items .submenu-item > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 20px;
  background: #d2eee8; /* подгони */
  text-decoration: none;
  color: #000;
}

/* текст */
.practic-items .submenu-item > a > span {
  display: block;
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
  max-width: 90%;
}

/* стрелка вниз справа */
.practic-items .submenu-item > a {
  position: relative;
}

.practic-items .submenu-item > a::after {
  content: "→";
  font-size: 37px;
  line-height: 1;
  position: absolute;
  right: 18px;
  bottom: 16px;
}

.practic-items .submenu-item > a {
  gap: 12px;
}
.practic-items .submenu-item > a > :not(span) {
  display: none;
}

/* hover */
.practic-items .submenu-item > a:hover {
  filter: brightness(0.97);
}

/* =========================
   INDUSTRY ITEMS — FULL CSS (final)
   Layout:
   - 3 columns × 4 big rows
   - Col 3 bottom block (rows 3–4) = 3 equal small cards
     (their total height = 2 big rows + one row gap)
========================= */

.industry-items .submenu-items-content {
  list-style: none;
  margin: 0;
  padding: 0;

  --row-h: 110px; /* big card height */
  --gap-x: 14px;
  --gap-y: 12px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, var(--row-h));
  gap: var(--gap-y) var(--gap-x);
}

/* ===== placement: col 1 ===== */
.industry-items .item1 {
  grid-column: 1;
  grid-row: 1;
}
.industry-items .item2 {
  grid-column: 1;
  grid-row: 2;
}
.industry-items .item3 {
  grid-column: 1;
  grid-row: 3;
}
.industry-items .item4 {
  grid-column: 1;
  grid-row: 4;
}

/* ===== placement: col 2 ===== */
.industry-items .item5 {
  grid-column: 2;
  grid-row: 1;
}
.industry-items .item6 {
  grid-column: 2;
  grid-row: 2;
}
.industry-items .item7 {
  grid-column: 2;
  grid-row: 3;
}
.industry-items .item8 {
  grid-column: 2;
  grid-row: 4;
}

/* ===== placement: col 3 (top) ===== */
.industry-items .item9 {
  grid-column: 3;
  grid-row: 1;
}
.industry-items .item10 {
  grid-column: 3;
  grid-row: 2;
}

/* ===== placement: col 3 (bottom stacked block) ===== */
.industry-items .industry-stack {
  grid-column: 3;
  grid-row: 3 / 5;

  /* critical: behave like a normal grid item, no list formatting */
  display: block;
  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;
  list-style: none;
}

/* inner list fills the grid cell */
.industry-items .industry-stack-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--gap-y);

  width: 100%;
  height: 100%;
}

/* ensure each small item stretches */
.industry-items .industry-stack-list > li {
  width: 100%;
  height: 100%;
  justify-self: stretch;
  align-self: stretch;
}

/* =========================
   CARD STYLES (all items)
========================= */

.industry-items .submenu-item > a {
  position: relative;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  padding: 20px;
  background: #9fcaf7; /* adjust to design */
  text-decoration: none;
  color: #000;
}

.industry-items .submenu-item > a > span {
  display: block;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 600;
  max-width: 90%;
}

/* arrow bottom-right */
.industry-items .submenu-item > a::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 32px;
  line-height: 1;
}

/* hover */
.industry-items .submenu-item > a:hover {
  filter: brightness(0.96);
}

/* =========================
   COMPLEX ITEMS
   - 3 columns
   - each item height = 4 "normal" rows + 3 gaps (same gaps as other grids)
========================= */

.complex-items .submenu-items-content {
  list-style: none;
  margin: 0;
  padding: 0;

  --row-h: 110px; /* height of one normal card */
  --gap-x: 14px;
  --gap-y: 12px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-y) var(--gap-x);
}

/* each card = 4 rows + 3 vertical gaps */
.complex-items .submenu-item {
  height: calc((var(--row-h) * 4) + (var(--gap-y) * 3));
}

/* card styling (same pattern) */
.complex-items .submenu-item > a {
  position: relative;
  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  padding: 20px;
  background: #ffc6b8; /* adjust */
  text-decoration: none;
  color: #000;
}

.complex-items .submenu-item > a > span {
  display: block;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 600;
  max-width: 90%;
}

/* arrow */
.complex-items .submenu-item > a::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 32px;
  line-height: 1;
}

/* hover */
.complex-items .submenu-item > a:hover {
  filter: brightness(0.96);
}

/* =========================
   ABOUT ITEMS
========================= */

#about-menu .submenu-items-area {
  padding: 20px 0;
}

.about-items {
  height: auto !important;
}

.about-items .submenu-items-content {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;

  grid-auto-rows: 160px;
}

.about-items .submenu-item > a {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  height: 100%;
  padding: 20px;

  text-decoration: none;
  color: #000;
  background: #c9b6f4;

  font-size: 21px;
  line-height: 1.1;
  font-weight: 600;
}

.about-items .submenu-item > a::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 16px;

  font-size: 32px;
  line-height: 1;
  color: currentColor;
}

.about-items .submenu-item > a > span {
  max-width: 90%;
}

.about-items .submenu-item:last-child > a {
  background: #4b2c5e;
  color: #ffffff;
}

.about-items .submenu-item > a:hover {
  filter: brightness(0.96);
}

/* =========================
   Submenu items animation
========================= */

.submenu-items {
  height: 0;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(6px);
  transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease,
    visibility 0s linear 0.3s;
}

.submenu-items.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
  transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease,
    visibility 0s;
}

.submenu-items.is-hiding {
  opacity: 0;
  /* transform: translateY(3px); */
  visibility: visible;
}

.all-services-btn {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  padding: 24px 28px;
  background: #010109;
  width: fit-content;
  text-decoration: none;
}

.all-services-btn:hover {
  opacity: 0.8;
}

.header-right {
  display: flex;
  align-items: center;
}

.burger-area,
.mobmenu {
  display: none;
}

.burger-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.burger {
  --w: 44px; 
  --h: 2px; 
  --gap: 10px;

  width: var(--w);
  height: calc(var(--h) * 2 + var(--gap));
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  width: var(--w);
  height: var(--h);
  background: #000;
  transform-origin: center;
  transition: transform 180ms cubic-bezier(0.04, 0.04, 0.12, 0.96),
    opacity 180ms cubic-bezier(0.04, 0.04, 0.12, 0.96);
}

.burger span:nth-child(1) {
  transform: translateY(calc(-1 * var(--gap) / 2));
}
.burger span:nth-child(2) {
  transform: translateY(calc(1 * var(--gap) / 2));
}

.burger-toggle:checked + .burger span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.burger-toggle:checked + .burger span:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header {
    height: 55px;
  }

  .header-left-menu,
  .header-right-menu {
    display: none;
  }

  .burger-area {
    display: block;
  }

  .header-content {
    padding: 18px 0;
  }

  .mobmenu {
    display: block;
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    padding: 44px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease,
      visibility 0s linear 0.3s;
    overflow-x: hidden;
    background: #fff;
    height: 0;
  }

  .mobmenu.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
    height: calc(100vh - 56px);
  }

  .mobmenu:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    top: 0;
    left: 0;
    box-shadow: 0px 4px 0px 0px rgba(91, 81, 64, 0.1) inset;
    -webkit-box-shadow: 0px 4px 4.8px 0px rgba(91, 81, 64, 0.1) inset;
    -moz-box-shadow: 0px 4px 4.8px 0px rgba(91, 81, 64, 0.1) inset;
    pointer-events: none;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 40px;

    opacity: 1;
    transform: translateX(0);

    pointer-events: auto;
    visibility: visible;

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
  }

  .mobile-menu.hidden {
    transform: translateX(100%);
    opacity: 0;

    pointer-events: none;
    visibility: hidden;

    transition: opacity 0.3s ease, transform 0.3s ease,
      visibility 0s linear 0.3s;
  }

  .mob-menu {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .mob-menu-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #000;
  }

  .mob-menu-items {
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  .mob-menu-item {
    border-bottom: 1px solid #bbbbbb;
    padding: 22px 14px 22px 22px;
  }

  .mob-menu-item:first-child {
    border-top: 1px solid #bbbbbb;
  }

  .mob-menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }

  .mob-menu-title a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    text-decoration: none;
  }

  .mob-submenu {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    width: 100%;
    top: 30px;
    left: 0;
    padding: 0px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    background: #fff;
    padding-bottom: 40px;
  }

  .mob-submenu.is-active {
    transform: translateX(0);
  }

  .mob-submenu-title {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #000;
  }

  .mob-submenu-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
  }

  .mob-submenu-item {
    display: flex;
    align-items: center;
  }

  .mob-submenu-item a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 22px;
  }

  .mob-submenu-practic .mob-submenu-item {
    height: 69px;
    background: #d2eee8;
  }

  .mob-submenu-industry .mob-submenu-item {
    height: 69px;
    background: #9fcffa;
  }

  .mob-submenu-complex .mob-submenu-item {
    height: 192px;
    background: #ffc3b2;
    align-items: flex-start;
    position: relative;
  }

  .mob-submenu-complex .mob-submenu-item a {
    position: absolute;
    display: inline;
    padding: 30px 22px;
  }

  .header-btn {
    padding: 16px 65px;
  }

  .logo img {
    width: 224px;
  }
}

@media (max-width: 767px) {
  .header-btn {
    padding: 16px 65px;
    width: 100%;
  }

  .logo img {
    width: 198px;
  }
}

/* --- HEADER --- */

/* breadcrumbs */

.services-title-area-breadcrumbs {
  background: #f2f2f2;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 21px 0 21px 38px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.breadcrumbs-item {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  opacity: 0.3;
  text-transform: uppercase;
}

.breadcrumbs-item a {
  color: inherit;
  text-decoration: none;
  padding: 21px 0;
}

.breadcrumbs-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-item + .breadcrumbs-item::before {
  content: "|";
  margin-right: 12px;
  color: #000;
  opacity: 0.3;
}

.breadcrumbs-current {
  opacity: 1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .breadcrumbs-list {
    padding-left: 24px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs-list {
    padding: 17px 0 17px 0px;
    gap: 8px;
  }

  .breadcrumbs-item {
    font-size: 12px;
  }

  .breadcrumbs-item + .breadcrumbs-item::before {
    margin-right: 8px;
  }
}

/* -- breadcrumbs -- */


/* FOOTER */

.footer {
  background: #1e1e1e;
}

.footer-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-desc,
.footer-top-logos {
  width: 33.3%;
}

.footer-p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.footer-top-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-top-logos-content {
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.footer-middle {
  padding-top: 69px;
  display: flex;
}

.footer-middle-form,
.footer-middle-navigation,
.footer-middle-info {
  width: 33.3%;
  display: flex;
}

.footer-middle-form {
  flex-direction: column;
}

.footer-middle-navigation {
  justify-content: space-between;
}

.foter-middle-nav-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-menu-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer-menu-item a {
  text-decoration: none;
  color: #fff;
  opacity: 0.4;
  transition: opacity 0.2s ease-in-out;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.footer-menu-item a:hover {
  opacity: 1;
}

.footer-middle-info {
  justify-content: flex-end;
}

.footer-middle-info-col {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-middle-info-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-middle-info-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
  opacity: 0.4;
}

.footer-middle-info-socials {
  display: flex;
  gap: 12px;
}

.footer-middle-info-socials a {
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
}

.footer-middle-info-socials a:hover {
  opacity: 1;
}

.footer-middle-info-socials img {
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.footer-bottom {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  padding-top: 32px;
}

.footer-bottom svg {
  width: 100%;
  height: auto;
  opacity: 0.3;
}

.footer-copy {
  position: relative;
  padding: 12px 0 14px;
  display: flex;
}

.copy-link,
.copy-text {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  opacity: 0.4;
  color: #fff;
}

.copy-link {
  transition: opacity 0.2s ease-in-out;
  text-decoration: none;
}

.copy-link:hover {
  opacity: 1;
}

.copy-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
  .footer-top-desc,
  .footer-top-logos {
    width: 50%;
  }

  .footer-middle {
    padding-top: 32px;
    flex-wrap: wrap;
    row-gap: 32px;
  }

  .footer-middle-form {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
  }

  .footer-middle-navigation,
  .footer-middle-info {
    width: 50%;
  }
}

@media (max-width: 820px) {
  .footer-p {
    font-size: 22px;
  }

  .footer-menu {
    gap: 24px;
  }

  .footer-copy {
    justify-content: space-between;
  }

  .copy-text {
    position: relative;
    left: auto;
    top: auto;
    transform: translate(0, 0);
  }

  .footer-middle-info-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .footer-p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-top-desc,
  .footer-top-logos {
    width: 100%;
  }

  .footer-top-logos-content {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-middle {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .footer-middle-navigation,
  .footer-middle-info,
  .footer-middle-info-col {
    width: 100%;
  }

  .footer-middle-info-text {
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 64px;
  }

  .copy-link {
    position: absolute;
    top: -90px;
    left: 0;
  }
}

/* --- FOOTER --- */