@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: "Interfaces";
  src: url(TTINTERFACES-REGULAR.TTF);
}

@font-face {
  font-family: "Interfaces-500";
  src: url(TTINTERFACES-MEDIUM.TTF);
}

@font-face {
  font-family: "Bebas-700";
  src: url(BebasNeue-Bold.ttf);
}

@font-face {
  font-family: "Bebas";
  src: url(BebasNeue-Regular.ttf);
}

:root {
  --regular: "Interfaces";
  --medium: "Interfaces-500";
  --decor: "Bebas-700";

  --grey: #f5f5f7;
  --black: #020105;
  --dark: #101920;
  --dark-blue: #002856;
  --blue: #1878f3;
}

body {
  font-family: var(--regular);
}
p {
  margin: 0;
}
*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}
.container {
  max-width: 1435px;
}

ul {
  padding: 0;
  margin: 0;
}
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 29px 0;
  color: white;
  transition: 0.4s;
}
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 29px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.top .left {
  display: flex;
  align-items: center;
  gap: 128px;
}
.top .right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header a {
  color: var(--white, #fff);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  transition: 0.4s;
}
.info {
  display: flex;
  gap: 20px;
}
.bottom {
  padding-top: 29px;
}
.header .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .button {
  font-size: 16px;
  padding: 10px 24px;
  border: 1px solid var(--white, #fff);
}
.stick {
  height: 30px;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.lang {
  display: flex;
  align-items: center;
  gap: 40px;
}
.lang a {
  color: #c2c2c3;
}
.lang a.active {
  color: white;
}
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
}
.hero::after {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(180deg, #101920 0%, rgba(16, 25, 32, 0) 100%);
  transform: rotate(180deg);
}
.hero::before {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(16, 25, 32, 0.56) 0%,
    rgba(16, 25, 32, 0) 100%
  );
  z-index: 9;
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.hero .container {
  position: relative;
  z-index: 9;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero .title {
  color: var(--white, #fff);
  font-size: 32px;
  font-family: var(--medium);
  font-style: italic;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 50px;
}
.hero .button {
  color: var(--blue-dark, #002856);
  font-size: 16px;
  font-family: var(--medium);
  font-weight: 600;
  line-height: 150%;
  display: inline-flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  background: white;
  text-decoration: none;
}
.header.scrolled {
  background: var(--dark);
  transform: translateY(-108px);
  border-bottom: 1px solid #42515f;
}

.bottom {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(1, 1fr);
}
.dark {
  display: none;
}
.header.scrolled .dark {
  display: block;
}
.header.scrolled .bottom {
  grid-template-columns: 4fr 6fr;
}
.cards {
  background: var(--dark);
  color: white;
  padding: 120px 0 0 0;
}
.cards .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 120px;
}
.cards .cardo {
  height: 302px;
  background: #1c262f;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cardo .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}
.cardo .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #42515f;
}
.cards .container {
  position: relative;
  padding-bottom: 296px;
}
.cards .big {
  overflow: hidden;
  left: 0;
  background: #1c262f;
  padding: 48px;
  position: absolute;
  bottom: -272px;
  margin: 0 12px;
}
.big .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #42515f;
  font-family: var(--decor);
  text-transform: uppercase;
}
.big .left {
  padding-right: 24px;
}
.big .sub {
  color: var(--grey-24, #c2c2c3);
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 32px;
}
.big .flexer {
  display: flex;
  align-items: center;
  gap: 24px;
}
.big .button {
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--facebook-blue, #1878f3);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: white;
  text-decoration: none;
  border: 1px solid var(--blue);
}
.big .button-tra {
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: var(--blue);
  text-decoration: none;
  border: 1px solid var(--blue);
  min-width: 196px;
}
.service {
  padding: 358px 0 120px 0;
}
.section__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  font-family: var(--decor);
  margin-bottom: 8px;
}
.service .sub {
  color: var(--grey-64, #5d5d5f);
  font-size: 18px;
  line-height: 150%;
  max-width: 934px;
  margin-bottom: 24px;
}
.service .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service .item {
  height: 434px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service .content {
  border-radius: 4px 4px 0 0;
  border: 1px solid var(--grey-8, #ebebeb);
  background: var(--apple-grey, #f5f5f7);
  padding: 24px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service .title {
  color: var(--black, #020105);
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}
.service .pic {
  width: 100%;
  height: 264px;
  object-fit: cover;
}
.service .item .stick {
  width: 100%;
  height: 1px;
  background: #dbdbe9;
  display: none;
}
.big .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contacts {
  background: var(--dark);
  padding: 80px 0;
  color: white;
}
.contacts .section__title {
  margin-bottom: 40px;
}
.contacts .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
}
.contacts .item:nth-child(1) {
  grid-column: 1/3;
}
.contacts .sup {
  color: #5b6268;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 8px;
}
.contacts .item:nth-child(1) .txt {
  color: var(--white, #fff);
  font-size: 32px;
  line-height: 130%;
  text-transform: uppercase;
}
.contacts .txt {
  color: var(--white, #fff);
  font-size: 32px;
  line-height: 150%;
  font-family: var(--decor);
  text-transform: uppercase;
  text-decoration: none;
}
.contacts .item:nth-child(1) .txt:hover {
  text-decoration: none;
}
.contacts .txt:hover {
  text-decoration: underline;
}
.flexer {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}
.flexer input {
  border-bottom: 1px solid #31393f;
  padding-bottom: 16px;
  font-size: 18px;
  line-height: 150%;
  color: white;
  width: 100%;
}
.flexer input::placeholder {
  color: #5b6268;
}
.contacts textarea {
  font-size: 18px;
  line-height: 150%;
  color: white;
  min-height: 98px;
  resize: none;
  border-bottom: 1px solid #31393f;
  width: 100%;
}
.contacts textarea::placeholder {
  color: #5b6268;
}
.buttons {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 24px;
}
.send {
  color: var(--white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  width: 385px;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2px;
  background: var(--facebook-blue, #1878f3);
  width: 100%;
}
.gallery {
  background: var(--dark);
  padding: 120px 0;
  color: white;
}
.gallery .buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.gallery .buttons button {
  color: var(--white, #fff);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  padding: 12px 32px;
  border-radius: 4px;
  border: 1px solid #283036;
}
.gallery .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery .item {
  position: relative;
}
.gallery .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.gallery .pic {
  height: 232px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.gallery .items .item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
.gallery .items .item:nth-child(1) .pic {
  height: 100%;
}
.gallery .buttons .active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.products {
  background: var(--dark);
  color: white;
  padding-bottom: 156px;
}
.products .section__title {
  margin-bottom: 24px;
}
.products .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  row-gap: 48px;
}
.products .pic {
  width: 100%;
  height: 344px;
  object-fit: cover;
  transition: 0.4s;
}
.products .name {
  color: var(--white, #fff);
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
}
.show {
  color: var(--facebook-blue, #1878f3);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  text-decoration-line: underline;
}
.products .img {
  overflow: hidden;
  margin-bottom: 24px;
}
.products .item:hover .pic {
  transform: scale(1.1);
}
.products .item {
  cursor: pointer;
}
.products .item:hover .name {
  text-decoration: underline;
}
.map {
  padding: 193px 0 0 0;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: invert(90%);
}
.map .cardo {
  position: relative;
  z-index: 90;
  max-width: 580px;
  padding: 40px 44px;
  background: white;
}
.map .title {
  color: var(--blue-dark, #002856);
  font-size: 32px;
  line-height: 110%;
  font-family: var(--decor);
  margin-bottom: 24px;
}
.map .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 46px;
}
.map .items .item:nth-child(1) {
  grid-column: 1/3;
}
.map .item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.map .txt {
  color: var(--black, #020105);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  font-family: var(--medium);
  max-width: 320px;
  text-decoration: none;
}
.map input {
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e3ed;
  color: black;
}
.map input::placeholder {
  color: #9a999b;
}
.map .flexer {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer {
  background: var(--dark);
  margin-top: -2px;
  padding: 58px 0 68px 0;
  color: white;
  border-top: 3px solid #42515f;
}
footer .brand {
  margin-bottom: 56px;
  display: flex;
}
footer .content .txt {
  color: var(--white, #fff);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  text-decoration: none;
}
footer .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .title {
  color: var(--white, #fff);
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}
.link {
  color: #98a5af;
  font-size: 18px;
  line-height: 150%;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}
::-webkit-scrollbar {
  width: 0.44rem;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
}
.mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header {
    display: none;
  }
  .cards .big {
    position: static;
    margin: 0;
    padding: 24px;
  }
  .big .title {
    font-size: 24px;
  }
  .big .sub {
    font-size: 14px;
  }
  .buttons .button,
  .flexer .button,
  .flexer .button-tra {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 14px 0;
  }
  .cards .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 80px;
  }
  .service .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .buttons,
  .flexer {
    flex-wrap: wrap;
    gap: 16px;
  }
  .gallery .items {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery .items .item:nth-child(1) {
    grid-column: unset;
    grid-row: unset;
  }
  .products .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hero .title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .hero .button {
    width: 100%;
    max-width: 100%;
    padding: 14px 0;
    justify-content: center;
  }
  .hero video {
    height: 100%;
  }
  .cards {
    padding: 64px 0;
  }
  .cards .cardo {
    height: 164px;
    padding: 16px;
  }
  .cards .cardo .title {
    font-size: 12px;
  }
  .cardo .bottom {
    padding-top: 14px;
  }
  .cardo .num {
    font-family: var(--decor);
    font-size: 16px;
    color: #90a0ae;
  }
  .cards .container {
    padding-bottom: 0;
  }
  .service {
    padding: 80px 0;
  }
  .section__title {
    font-size: 24px;
  }
  .service .sub {
    font-size: 14px;
  }
  .service .pic {
    height: 204px;
  }
  .service .item {
    height: auto;
  }
  .service .title {
    font-size: 16px;
  }
  .contacts {
    padding: 32px 0 0 0;
  }
  .contacts .txt {
    font-size: 20px !important;
    font-weight: 300;
  }
  .contacts .items {
    gap: 16px;
    margin-bottom: 24px;
  }
  .contacts .right .section__title {
    display: none;
  }
  .gallery {
    padding: 80px 0;
  }
  .gallery .buttons {
    gap: 16px;
    flex-wrap: nowrap;
    overflow: scroll;
  }
  .gallery .buttons::-webkit-scrollbar {
    display: none;
  }
  .gallery .pic {
    height: 117px !important;
  }
  .gallery .buttons button {
    padding: 12px 32px;
    font-size: 14px;
  }
  .products .pic {
    height: 107px;
  }
  .products .name {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .products .show {
    font-size: 12px;
  }
  .products {
    padding-bottom: 80px;
  }
  .map {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 0;
    background: var(--dark);
  }
  .map iframe {
    position: static;
    margin: 40px 0;
    height: 700px !important;
  }
  .map .cardo {
    padding: 0;
    background: var(--dark);
    color: white;
  }
  .map .title,
  .map .txt {
    color: white;
  }
  .map .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .map .items .item:nth-child(1) {
    grid-column: unset;
  }
  footer .content .txt {
    font-size: 16px;
  }
  footer .row {
    gap: 40px;
  }

  .mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 27px 0 0 0;
    transition: 0.4s;
  }
  .mobile .brand {
    width: 150px;
    display: flex;
  }
  .mobile .up {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 27px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: 0.4s;
  }
  .mobile .pick {
    position: relative;
    width: 30px;
    height: 2px;
    background: white;
  }
  .pick::after {
    width: 30px;
    height: 2px;
    background: white;
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
  }
  .pick::before {
    width: 30px;
    height: 2px;
    background: white;
    position: absolute;
    top: -10px;
    left: 0;
    content: "";
  }
  .mobile .burger {
    padding: 16px;
  }
  .mobile.scrolled {
    background: var(--dark);
    padding-top: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .mobile.scrolled .up {
    border: none;
    padding-bottom: 24px;
  }
  .contacts .items,
  .map .items {
    display: flex;
    flex-direction: column;
  }
}
.menu::-webkit-scrollbar {
  display: none;
}
.menu {
  background: var(--dark);
  padding: 24px 0;
  transition: 0.4s;
  transform: translateX(-100%);
  position: fixed;
  top: 83px;
  left: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 90vh;
}
.menu.handle {
  transform: translateX(0);
}
.menu .button a {
  text-decoration: none;
  width: 100%;
  padding: 14px 0;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  color: white;
  margin-bottom: 32px;
}
.menu .lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 80%;
  margin: 0 auto 32px auto;
}
.menu .lang a {
  font-size: 18px;
  color: white;
  text-decoration: none;
}
.menu .links {
  border-top: 1px solid #263441;
}
.menu .link {
  padding: 24px;
  color: var(--white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  border-bottom: 1px solid #263441;
}
.menu .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.menu .info {
  justify-content: center;
  padding: 24px 0 32px 0;
}
.menu .info a {
  color: var(--white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.gallery .items {
  display: none;
}
.gallery .items.active {
  display: grid;
}
.toaster {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999;
  background: #2dc653;
  padding: 16px 32px;
  color: white;
  font-size: 18px;
  line-height: 150%;
  font-weight: 500;
  border-radius: 8px;
  transition: 0.4s;
  transform: translateX(400px);
}
.toaster.active {
  transform: translateX(0);
}
