@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

:root {
  --c-primary: #101820;
  --c-white: #FFFFFF;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Manrope";
  background-color: var(--c-primary);
  overflow-x: hidden;
}
body.hiddenY {
  overflow-y: hidden;
}

h1,
h2,
h3 {
  color: var(--c-white);
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--c-white);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.d-none {
  display: none !important;
}

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats, .count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

#mouseCursor {
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  top: 0;
  left: 0;
}
#mouseCursor #cursor {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
}
#mouseCursor #dot {
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgb(255, 255, 255);
  opacity: 1;
}
@media (max-width: 768px) {
  #mouseCursor {
    display: none;
  }
}

.header {
  width: 100%;
  position: relative;
  z-index: 9999;
}
.header-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-logo a {
  display: block;
  height: 48px;
}
.header-menu-toggle {
  display: none;
}
.header-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header-menu nav.menu ul.menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
.header-menu nav.menu ul.menu-ul li a {
  display: block;
}
.header-menu nav.menu ul.menu-ul li a span {
  line-height: 22px;
  color: var(--c-white);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .header-wrapper {
    padding: 16px 24px;
  }
  .header-logo a {
    width: 100px;
    height: 32px;
  }
  .header-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 64px;
    right: 0;
    background: var(--c-primary);
    z-index: 9999;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: 800ms all;
    -webkit-transition: 800ms all;
    -moz-transition: 800ms all;
    -ms-transition: 800ms all;
    -o-transition: 800ms all;
  }
  .header-menu nav.menu ul.menu-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1px;
  }
  .header-menu nav.menu ul.menu-ul li:first-child {
    position: relative;
  }
  .header-menu nav.menu ul.menu-ul li:first-child::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(-28deg, rgb(16, 24, 32) 0%, rgb(255, 255, 255) 50%, rgb(16, 24, 32) 100%);
  }
  .header-menu nav.menu ul.menu-ul li a {
    padding: 24px;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: var(--c-primary);
  }
  .header-menu nav.menu ul.menu-ul li a::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.76733 16.1666L12.1513 8.74925C12.1866 8.71798 12.2148 8.67958 12.2341 8.63661C12.2534 8.59363 12.2634 8.54704 12.2634 8.49992C12.2634 8.4528 12.2534 8.40621 12.2341 8.36323C12.2148 8.32025 12.1866 8.28186 12.1513 8.25059L3.76733 0.833252' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
  .header-menu nav.menu ul.menu-ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(-28deg, rgb(16, 24, 32) 0%, rgb(255, 255, 255) 50%, rgb(16, 24, 32) 100%);
  }
  .header-menu.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header-menu-toggle {
    display: block;
  }
}

.footer {
  width: 100%;
  display: block;
  padding: 24px 0 16px 0;
}
.footer__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.footer .logo {
  width: 48px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__copyright {
  width: 100%;
  text-align: center;
}
.footer__copyright span {
  font-size: 10px;
  font-weight: 325;
  line-height: 12px;
  color: var(--c-gray-dark);
}
.footer .footerline {
  width: 100%;
  opacity: 40%;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--c-gray-dark);
}

.hero {
  width: 100%;
  height: 768px;
  position: relative;
  z-index: -1;
}
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-img {
  width: 100%;
  display: block;
  height: 100%;
}
.hero-img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-content {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 64px;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-content h1 {
  line-height: 96px;
  font-family: "Playfair Display";
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  color: var(--c-white);
}
.hero-content h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
}
@media (max-width: 768px) {
  .hero {
    height: 320px;
  }
  .hero-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero-content {
    top: 24px;
  }
  .hero-content h1 {
    font-size: 32px;
    line-height: 43px;
  }
  .hero-content h2 {
    line-height: 22px;
    font-size: 16px;
  }
}

.services {
  width: 100%;
  display: block;
}
.services-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.services-title {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}
.services-title h3 {
  font-family: "Playfair Display";
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  color: var(--c-white);
  line-height: 96px;
}
.services-grid {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.services-grid-row {
  width: 100%;
  max-width: 1145px;
  display: -ms-grid;
  display: grid;
  row-gap: 32px;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  -ms-grid-rows: auto 32px auto 32px auto 32px auto;
      grid-template-areas: "item1 item1 item2 item2 item3 item3" ". item4 item4 item5 item5 ." "item6 item6 item7 item7 item8 item8" ". item9 item9 item10 item10 .";
}
.services-grid-row .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  --gradient-opacity: 0.1;
  --gradient-angle: -40deg;
  --gradient-x: 50%;
  --gradient-y: 50%;
}
.services-grid-row .item1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  grid-area: item1;
}
.services-grid-row .item2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-area: item2;
}
.services-grid-row .item3 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  grid-area: item3;
}
.services-grid-row .item4 {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  grid-area: item4;
  padding-right: 16px;
}
.services-grid-row .item5 {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  grid-area: item5;
  padding-left: 16px;
}
.services-grid-row .item6 {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  grid-area: item6;
}
.services-grid-row .item7 {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-area: item7;
}
.services-grid-row .item8 {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  grid-area: item8;
}
.services-grid-row .item9 {
  -ms-grid-row: 7;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  padding-right: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  grid-area: item9;
}
.services-grid-row .item10 {
  -ms-grid-row: 7;
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  padding-left: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  grid-area: item10;
}
.services-grid-row .service {
  max-width: 320px;
  width: 100%;
  height: 240px;
  position: relative;
  padding: 1px;
}
.services-grid-row .service::before {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: var(--gradient-opacity); /* Dinamik opacity */
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-angle)), color-stop(0%, rgb(16, 24, 32)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgb(16, 24, 32)));
  background: linear-gradient(var(--gradient-angle), rgb(16, 24, 32) 0%, rgba(255, 255, 255, 0.3) 50%, rgb(16, 24, 32) 100%);
  background-position: var(--gradient-x) var(--gradient-y);
}
.services-grid-row .service-img {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.services-grid-row .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.services-grid-row .service-title {
  position: absolute;
  top: 32px;
  left: 32px;
}
.services-grid-row .service-title p {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  color: var(--c-white);
}
@media (max-width: 768px) {
  .services-title h3 {
    font-size: 32px;
    line-height: 43px;
  }
  .services-grid {
    row-gap: 16px;
  }
  .services-grid-row {
    max-width: 100%;
    padding: 0 20.5px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
        grid-template-areas: unset;
    row-gap: 16px;
  }
  .services-grid-row .item {
    grid-area: unset;
    padding: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .services-grid-row .item:nth-child(odd) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding-right: 8px;
  }
  .services-grid-row .item:nth-child(even) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-left: 8px;
  }
  .services-grid-row .service {
    max-width: 168px;
    height: 126px;
  }
  .services-grid-row .service-title {
    top: 16px;
    left: 16px;
  }
  .services-grid-row .service-title p {
    font-size: 14px;
    line-height: 19px;
  }
}

.references {
  width: 100%;
  display: block;
}
.references-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.references-title {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}
.references-title h3 {
  font-family: "Playfair Display";
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  color: var(--c-white);
  line-height: 96px;
}
.references-brands {
  padding: 48px 0;
  max-width: 1224px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.references-brands .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 224px;
  height: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.references-brands .brand img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .references-title {
    padding-bottom: 0;
  }
  .references-title h3 {
    font-size: 32px;
    line-height: 43px;
  }
  .references-brands {
    padding: 48px 64.5px;
  }
  .references-brands .brand {
    width: 72px;
    height: 80px;
    opacity: 1;
    -webkit-transform: unset;
            transform: unset;
  }
}

.about {
  width: 100%;
  display: block;
  padding: 40px 0;
}
.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative;
  background: var(--c-primary);
}
.about-wrapper::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.4;
  z-index: -1;
  background: linear-gradient(-45deg, rgb(16, 24, 32) 0%, rgb(255, 255, 255) 50%, rgb(16, 24, 32) 100%);
}
.about-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.about-header img {
  width: 800.5px;
  height: 300.5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 48px;
  max-width: 1224px;
  margin: 0 auto;
  width: 100%;
}
.about-highlighted {
  width: 761px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.about-highlighted::before {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  left: 72px;
  top: -24px;
  background: url(../images/svg/quote-left.svg);
}
.about-highlighted::after {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  right: 72px;
  top: -24px;
  background: url(../images/svg/quote-right.svg);
}
.about-highlighted p {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  color: var(--c-white);
}
.about-description p {
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: var(--c-white);
}
@media (max-width: 768px) {
  .about-header img {
    width: 100%;
    height: 181px;
  }
  .about-content {
    max-width: 100%;
    row-gap: 32px;
    padding: 0 16px;
  }
  .about-highlighted {
    width: 100%;
    padding: 0 32px 0 32px;
  }
  .about-highlighted::after {
    right: 0;
  }
  .about-highlighted::before {
    left: 0;
  }
  .about-highlighted p {
    font-size: 18px;
    line-height: 25px;
  }
  .about-description p {
    font-size: 16px;
    line-height: 22px;
  }
}

.contact {
  width: 100%;
  display: block;
}
.contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-title {
  width: 100%;
  text-align: center;
  padding: 40px 0 0 0;
}
.contact-title h3 {
  font-family: "Playfair Display";
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  color: var(--c-white);
  line-height: 96px;
}
.contact-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 24px;
}
.contact-links-mail {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  color: var(--c-white);
  line-height: 55px;
}
.contact-links-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 16px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  position: relative;
  background: var(--c-primary);
  --gradient-angle: -45deg;
  --gradient-x: 50%;
  --gradient-y: 50%;
  cursor: none;
}
.contact-links-item::before {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  opacity: 0.4;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-angle)), color-stop(0%, rgb(16, 24, 32)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgb(16, 24, 32)));
  background: linear-gradient(var(--gradient-angle), rgb(16, 24, 32) 0%, rgba(255, 255, 255, 0.3) 50%, rgb(16, 24, 32) 100%);
  background-position: var(--gradient-x) var(--gradient-y);
}
.contact-links-item .icon {
  width: 24px;
  height: 24px;
}
.contact-links-item span {
  color: var(--c-white);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}
@media (max-width: 768px) {
  .contact-title h3 {
    font-size: 32px;
    line-height: 43px;
  }
  .contact-links-mail {
    font-size: 16px;
    line-height: 22px;
  }
  .contact-links-item span {
    font-size: 18px;
    line-height: 25px;
  }
}

.footer {
  width: 100%;
  display: block;
  margin-top: -152px;
  position: relative;
  z-index: -2;
}
.footer-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}
.footer #particles-js-snow {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .footer {
    height: 518px;
    margin-top: -110px;
  }
  .footer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.particles-js-canvas-el {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}