:root {
  --alt-bg-color: #2b99a0;
  --c-text: #57bcd2;
}

@font-face {
  font-family: "Segoe UI";
  src: url("fonts/SegoeUI.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI";
  src: url("fonts/SegoeUI-Italic.ttf") format("ttf");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI";
  src: url("fonts/SegoeUI-BoldItalic.ttf") format("ttf");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI";
  src: url("fonts/SegoeUI-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src:
    local("✽"),
    url("fonts/Mont-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src:
    local("✽"),
    url("fonts/Mont-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src:
    local("✽"),
    url("fonts/Mont-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src:
    local("✽"),
    url("fonts/Mont-RegularItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #4138ad url("./images/bg/bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

*,
::before,
::after {
  box-sizing: border-box;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.main {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.content {
  flex: 1;
}

.wrapper {
  width: 100%;
  max-width: 1388px;
  padding: 0 10px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  padding: 0;
}

.title {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  color: var(--c-text);
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0px 0px 10px var(--c-text);
  font-family: "Mont";
}
.subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: var(--c-text);
  font-family: "Mont";
}

.outline-text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--c-text);
  -webkit-text-stroke-width: 3px;
}

.outline-title {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--c-text);
  -webkit-text-stroke-width: 2px;
  color: var(--c-text);
  font-size: 60px;
  line-height: 48px;
  font-weight: 700;
}

.gradient {
  background-image: linear-gradient(120deg, #64d9f4 0px, #ae87e6, #6746b3 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-number {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  background-image: linear-gradient(120deg, #64d9f4 0px, #ae87e6, #6745b3 150%);
  -webkit-background-clip: text;
  font-style: italic;
  font-weight: 700;
}

.glow {
  text-shadow: 5px 0px 45px var(--c-text);
  /* -webkit-appearance: none; */
}

/* Header */
.headerWrap {
  padding: 10px 0;
  color: #fff;
}
.mobileHeader {
  display: none;
}
.mobileMenu {
  position: fixed;
  right: -100%;
  top: 68px;
  background: #57bcd2;
  z-index: 6;
  transition: 0.1s right linear;
  border-radius: 0 0 0 10px;
}
.mobileMenu.open {
  right: 0;
}
.overlay.open {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.2s linear;
  z-index: 2;
}
.menu__link {
  font-size: 36px;
  line-height: 45px;
  color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s linear color;
  padding: 10px 30px 10px;
}
.menu__link:hover {
  background: #47a7bc;
}
.menu__link:first-child {
  margin-top: 0;
  padding-top: 10px;
}
.menu__link:last-child {
  padding-bottom: 10px;
}
.menu__link-phone {
  padding: 20px 30px 30px;
  border-top: 1px solid #dddddd;
}
.menu__link-phone a {
  font-size: 24px;
  color: #fff;
}

.headerWrap .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerWrap a {
  color: #fff;
}

.header {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 800px;
  justify-content: space-between;
  padding: 0 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  z-index: 3;
}
.header__logo img {
  height: 35px;
}
.header__link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px 0;
  cursor: pointer;
  white-space: nowrap;
  z-index: 3;
}
.header__phone {
  white-space: nowrap;
}

.header__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 2px;
  right: calc(1px + -9%);
  transform-origin: right;
  transform: scaleX(0);
  background: #55a7d3;
  transition: transform 300ms ease;
  z-index: 1;
}

.header__link:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.header__link:hover span::before {
  transform: rotate(-45deg);
}

.header__link:hover span::after {
  transform: translateX(-2px) rotate(-45deg);
}

.header__link span::before,
.header__link span::after {
  content: "";
  position: absolute;
  right: -9%;
  bottom: 0px;
  background: #55a7d3;
  transition: transform 200ms cubic-bezier(0.3, 1.5, 0.5, 1);
  transition-delay: 240ms;
  z-index: 2;
}
.header__link span::before {
  height: 6px;
  width: 2px;
  transform-origin: 0% 100%;
  transform: rotate(-90deg);
}
.header__link span::after {
  height: 2px;
  width: 6px;
  transform-origin: 100% 0%;
  transform: translateX(-2px) rotate(0deg);
}
/* BLOCK 1 */
#block1 .wrapper {
  display: flex;
  min-height: 850px;
  max-height: 1200px;
  height: 100vh;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 170px;
}
/* .hero::before {
  position: absolute;
  content: "";
  top: -210px;
  left: -30px;
  background-image: url("/files/images/bg/comma.png");
  height: 200px;
  width: 100%;
  background-repeat: no-repeat;
} */

.hero__wrapper {
  position: relative;
  padding: 40px 0px 40px 20px;
  font-size: 24px;
  font-weight: bold;
  font-family: "Mont";
}
#block1 {
  margin-top: 40px;
}
.border-wrapped {
  position: relative;
}
.border-wrapped::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 60px;
  border: 5px solid var(--c-text);
  border-right: 5px solid transparent;
}
.hero {
  transform: translateY(-130px);
}

.hero__mirtek {
  font-weight: 800;
  margin-bottom: 35px;
}

.additional {
  font-size: 16px;
  color: var(--c-text);
  margin-left: 100px;
  margin-top: 10px;
}
.additional__info {
  font-weight: 700;
}

.additional__mirtek {
  margin-top: 13px;
}

.hero__image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
}
.hero__image img {
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

#block1 .wrapper > div > div:nth-child(3) {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

#block1 .wrapper > div > div:nth-child(4) {
  font-size: 24px;
  margin-bottom: 10px;
}

.development > .wrapper {
  position: relative;
}
.development > .wrapper::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  background-image: url("/files/images/blueprints/blueprint1.png");
  max-height: 570px;
  max-width: 450px;
  height: 100%;
  width: 100%;
  background-size: contain;
  opacity: 0.5;
}

.development__wrapper {
  position: relative;
  padding-bottom: 60px;
  gap: 100px 30px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--c-text);
  grid-auto-flow: row dense;
  z-index: 2;
}

.development__wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  background-image: url("/files/images/blueprints/blueprint2.png");
  max-height: 325px;
  max-width: 470px;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-size: contain;
  opacity: 0.5;
}

.development__item {
  font-weight: 700;
  overflow-wrap: break-word;
  flex-basis: 30%;
}

/* BLOCK 3 */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.steps__item {
  display: flex;
  align-items: center;
  z-index: 2;
}
.steps__item-number {
  font-size: 100px;
  font-weight: 600;
  padding-left: 5px;
  padding-right: 15px;
}
.steps__item-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
/* BLOCK 4 */
.result {
  margin-top: 30px;
}
.result__wrapper {
  padding: 40px 20px;
}
.result__title {
  margin-bottom: 20px;
}

/* BLOCK 5 */
.card {
  margin-top: 60px;
  /* background: url("/files/images/bg/cardBg2.png"); */
  background-color: #6146a8;
  background-size: 110% 130%;
  background-repeat: no-repeat;
  background-position: 60% 46%;
  border-radius: 45px;
  padding: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.card__statistic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column: 1 / 3;
  row-gap: 50px;
  column-gap: 20px;
}

.card__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 70px;
}

.card__title > p {
  position: relative;
  font-size: 48px;
  margin: 0;
}

.card__title > p::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(120deg, #57bcd2 0px, #ae87e6, #37206e 150%);
}
.card__title-wrapper {
  position: relative;
}

.card__body {
  display: grid;
  grid-template-columns: 1fr 1fr 44%;
}
.card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  scale: 1.1;
  transform: translate(-30px, -30px);
  z-index: 1;
}
.card__image img {
  height: 100%;
  max-height: 500px;
  user-select: none;
  -webkit-user-drag: none;
}

.statistic__item {
  display: flex;
  z-index: 2;
}
.statistic__item--centered {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.statistic__item--centered > div {
  padding-right: 10px;
}
.statistic__number {
  padding-right: 30px;
  font-size: 155px;
  line-height: 130px;
  margin-top: -18px;
}
.statistic__icon {
  margin-right: 20px;
}
.statistic__icon img {
  height: 75px;
  user-select: none;
  -webkit-user-drag: none;
}
.statistic__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  justify-content: space-between;
  max-height: 113px;
  line-height: 20px;
  font-weight: 400;
  font-style: italic;
  font-family: "Mont";
}
.statistic__text-bottom {
  line-height: 20px;
}
.statistic__text--centered {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 25px;
  max-height: 100%;
}
.statistic__number--fz80 {
  font-size: 80px;
  line-height: 65px;
  flex: 0;
  margin-top: -10px;
  white-space: nowrap;
}
.statistic__number--fz48 {
  font-size: 48px;
  line-height: 60px;
  margin-top: -4px;
  flex: 0;
  height: 110px;
  white-space: nowrap;
}
.statistic__text--fz80 {
  height: 60px;
}
.statistic__item--mobile {
  grid-column: 2 / 3;
}
.statistic__bonus {
  font-weight: 700;
  font-size: 20px;
  -webkit-text-stroke-width: 0.4px;
}
.statistic__image > img {
  height: 150px;
  width: 150px;
}

.docs__title {
  margin-top: 45px;
}
.docs__subtitle {
  margin-top: 30px;
}
.docs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
  grid-gap: 65px;
}
.docs__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 15px 70px;
}
.docs__item {
  background: #6c4fbd;
  max-width: 350px;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: rgba(80, 202, 230, 0.33) 0px 0px 100px 1px;
}
.docs__item-link:hover + .docs__item-arrow {
  opacity: 1;
}
.docs__item-link {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
}
.docs__item-arrow {
  display: flex;
  justify-content: flex-end;
  font-size: 35px;
  line-height: 25px;
  color: #fff;
  opacity: 0.5;
  transition: 0.1s opacity linear;
}
.docs__image {
  display: flex;
  align-items: center;
  height: 100%;
}

.docs__image img {
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* About */
.about {
  padding: 40px 0px 40px 20px;
  margin-top: 45px;
  max-width: 50%;
}

.about__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
.about__number {
  margin-right: 20px;
}

.about__subtitle {
  margin-top: 30px;
}
.about__cities {
  margin-top: 20px;
  line-height: 20px;
  word-break: keep-all;
}
.about__title--mobile {
  display: none;
}

.about__subtitle p:last-child {
  margin-top: 30px;
}

/* Trusted */
.trusted {
  position: relative;
  margin-top: 40px;
  height: 200px;
}

.marquee-wrapper {
  position: absolute;
  top: 60px;

  display: flex;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}

.marquee {
  height: 70px;
  display: flex;
}
.marquee > img {
  object-fit: contain;
}

.image-10 {
  margin-right: 34px;
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* Contacts */
.contacts {
  padding: 40px 0;
}

.contacts__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
}

.contact__creds {
  display: flex;
  flex-direction: column;
}
.contact__creds a {
  text-decoration: none;
}
.contact__creds a span {
  transition: 0.1s all linear;
  border-bottom: 1px solid transparent;
}
.contact__creds a span:hover {
  color: #7dddf8;
  border-bottom: 1px solid #7dddf8;
}
.contact__city {
  margin-top: 20px;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact__address {
  font-size: 20px;
  cursor: pointer;
}
.contact__address span {
  color: #fff;
  padding-bottom: 1px;
  border-bottom: 1px solid #fff;
  transition: 0.1s all linear;
}
.contact__address span:hover {
  color: #7dddf8;
  border-bottom: 1px solid #7dddf8;
}
.contact__phone {
  margin-top: 6px;
}

.contact__creds > a {
  font-size: 20px;
  color: #fff;
}

.mapWrap > * {
  min-height: 600px;
}

/* MobileNav */
.mobileHeader {
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 3;
}
.header--mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#hamburger {
  width: 50px;
  height: 40px;
  position: relative;
  margin-left: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #57bcd2;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2),
#hamburger span:nth-child(3) {
  top: 18px;
}

#hamburger span:nth-child(4) {
  top: 36px;
}

#hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* Media */
@media screen and (max-width: 992px) {
  .title {
    font-size: 36px;
    line-height: 38px;
  }

  /* header */
  .headerWrap {
    display: none;
  }
  .headerWrap--mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobileHeader {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    padding: 10px 0;
  }
  #hamburger {
    line-height: 2px;
    width: 30px;
  }
  #hamburger span {
    height: 3px;
  }
  #hamburger span:nth-child(1) {
    top: 10px;
  }
  #hamburger span:nth-child(2),
  #hamburger span:nth-child(3) {
    top: 20px;
  }
  #hamburger span:nth-child(4) {
    top: 30px;
  }

  /* hero */
  #block1 {
    margin-top: 100px;
  }
  #block1 .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .hero {
    margin-bottom: 40px;
    transform: translateY(0px);
  }
  .hero::before {
    display: none;
  }
  .hero__image {
    justify-content: center;
  }
  .hero__image img {
    max-height: 700px;
  }

  /* development */
  .development__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .development > .wrapper::after {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
  .development__wrapper::before {
    top: 80%;
  }
  .statistic__item:nth-child(even) {
    justify-content: flex-end;
  }
  .statistic__item--centered {
    align-items: center;
    justify-content: flex-start;
    /* gap: 10px; */
    margin-bottom: 10px;
  }
  .statistic__number--fz80 {
    font-size: 65px;
    line-height: 60px;
    flex: 0;
  }
  .card {
    background: #6146a8;
  }
  .card__body {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .card__image {
    grid-row: 2 / 3;
    grid-column: 1 / 4;
    transform: translate(0, 0);
    scale: 1;
  }
  .statistic__item--mobile {
    grid-column: 1 / 3;
    justify-self: center;
    text-align: center;
  }
  .about__number {
    margin-right: 0;
  }
  .about__wrapper {
    gap: 0;
  }
  .docs__grid {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .docs__item {
    justify-self: center;
    width: 100%;
  }
  .docs__wrapper {
    column-gap: 20px;
  }
  .docs__image {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .development__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 55px 20px;
  }
  .steps__item {
    gap: 7px;
  }
  .steps__item-number {
    font-size: 50px;
  }
  #block3 .wrapper {
    margin-bottom: 60px;
  }
  .card__title > p {
    font-size: 32px;
    line-height: 34px;
  }
  .card__statistic {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about {
    max-width: 100%;
  }
  .about__wrapper {
    flex-direction: column;
  }
  .about__info {
    margin-top: 20px;
  }
  .about__cities {
    margin-top: 5px;
  }
  .statistic__item {
    justify-content: flex-start;
    margin-bottom: 50px;
  }
  .statistic__item:nth-child(even) {
    justify-content: unset;
  }
  .statistic__item--centered {
    justify-content: center;
  }
  .docs__image {
    margin-bottom: 30px;
  }
  .docs__subtitle {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .title {
    font-size: 26px;
    line-height: 31px;
  }
  .mobileMenu {
    top: 60px;
    border-radius: 0;
  }
  .mobileMenu.open {
    top: 60px;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  .header__logo--mobile img {
    height: 30px;
  }
  .outline-title {
    font-size: 45px;
    line-height: 40px;
  }
  .development__wrapper {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    justify-self: center;
    width: 300px;
    margin: 0 auto;
    gap: 10px;
  }
  .steps__item-number {
    font-size: 60px;
    line-height: 70px;
  }
  .statistic__text {
    font-size: 16px;
  }
  #block5 .wrapper {
    padding: 0;
  }
  #block6 .wrapper {
    padding: 0;
  }
  .card {
    padding: 20px 10px;
  }
  .card__title > p {
    font-size: 30px;
    text-align: center;
    padding-bottom: 10px;
  }
  .card__statistic {
    gap: 0;
  }
  .statistic__item--mobile {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .statistic__item:last-child {
    margin-bottom: 0;
  }
  .statistic__number {
    font-size: 60px;
    line-height: 80px;
    padding-right: 10px;
  }
  .docs__item {
    width: 100%;
    margin-bottom: 10px;
  }
  .docs__item:last-child {
    margin-bottom: 0;
  }
  .docs__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about__title {
    display: none;
  }
  .about__title--mobile {
    display: block;
  }
  .contacts__wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .contact__creds {
    margin-top: 10px;
    gap: 4px;
  }
}

/* FOOTER */
.footer {
  padding: 30px 0;
  color: #fff;
  background-color: #22243a;
}
.footer__copyright {
  margin-top: 10px;
  font-weight: 800;
}

.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 400;
}

.footer-left div {
  font-size: 16px;
  line-height: 1.4;
}

.footer-left a {
  color: #fff;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-self: flex-end;
  gap: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.7;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #4b60c9;
  color: #fff;
  z-index: 1000;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: 1388px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  text-decoration: none;
}

.cookie-banner__button {
  font-family: Mont;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 800;
  margin-left: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cookie-banner__button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
