/*
Theme Name: modcom
Author: ITFLY
Author URI: https://itfly.by
*/
:root {
  --white: #fff;
  --white-10: rgba(255, 255, 255, .1);
  --white-20: rgba(255, 255, 255, .2);
  --orange: #E74B23;
  --super-dark: #0D0D0D;
  --dark: #121212;
  --text: #bbb;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Geologica";
  font-size: clamp(14px, 3vw, 22px);
  font-weight: 100;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background: var(--dark);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.3;
  color: var(--white);
  text-transform: uppercase;
}

h1 {
  text-align: center;
}

h2, h1.h2 {
  font-size: clamp(22px, 3.6vw, 54px);
  text-align: left;
}

h3, .h3 {
  font-size: clamp(20px, 3.2vw, 48px);
}

h4, .h4 {
  font-size: clamp(20px, 2.8vw, 32px);
}

h5, .h5 {
  font-size: clamp(18px, 2.6vw, 24px);
}

h6, .h6 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

img, video, svg, iframe {
  width: 100%;
  display: block;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

._container {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: clamp(50px, 10vw, 150px) 20px;
  width: 100%;
  max-width: 1560px;
}

.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100vw;
  background: var(--dark);
  border-bottom: 1px solid var(--white-10);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header--absolute {
  position: absolute;
  background: transparent;
  border-bottom: 0px solid var(--white-10);
}
.header__container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.header__logo {
  width: 65%;
  max-width: 200px;
}
.header__menu {
  width: 77%;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.header__link {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 200;
  line-height: 1.2;
  text-transform: uppercase;
}
.header__link.current-page {
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

.burger {
  width: 50px;
  height: 50px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  border-radius: 50px;
  border: 1px solid var(--white-20);
}
.burger span, .burger::before, .burger::after {
  content: "";
  width: 24px;
  height: 1px;
  border-radius: 1px;
  background: var(--white);
}

.mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--super-dark);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
.mobileMenu.is-open {
  visibility: visible;
  opacity: 1;
}
.mobileMenu__container {
  padding-top: 15px;
  padding-bottom: 40px;
  height: 100%;
}
.mobileMenu__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobileMenu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobileMenu__logo {
  width: 65%;
  max-width: 200px;
}
.mobileMenu__close {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--white-20);
}
.mobileMenu__close::before, .mobileMenu__close::after {
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  width: 24px;
  height: 1px;
  border-radius: 1px;
  background: var(--white);
}
.mobileMenu__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.mobileMenu__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.mobileMenu__menu {
  padding-bottom: clamp(40px, 6vw, 80px);
  width: 100%;
  height: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(30px, 5.5vw, 50px);
}
.mobileMenu__link {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 200;
  line-height: 1.2;
  text-transform: uppercase;
}
.mobileMenu__link.current-page {
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

@media (max-width: 1023px) {
  .header__container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header__menu {
    display: none;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer {
  border-top: 1px solid var(--white-10);
}
.footer__container {
  padding-top: clamp(30px, 7.5vw, 60px);
  padding-bottom: clamp(30px, 7.5vw, 60px);
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.footer__logo {
  width: 100%;
  max-width: 250px;
}
.footer__copyright {
  font-size: clamp(14px, 1.8vw, 16px);
  text-transform: uppercase;
}
.footer__socials {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.footer__social {
  width: 40px;
  height: 40px;
}

@media (max-width: 700px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1024px) {
  .header__link:hover {
    color: var(--white);
  }
  .footer__social:hover {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}