:root {
  --theme-primary: #2cdbbd;
  --theme-primary-dark: #004940;
  --theme-primary-text: #003c3c;
  --theme-text: #333;
  --theme-white: #fff;
  --theme-black: #000;
  --theme-dark: #252626;
  --theme-light-text: #666;
  --theme-light-bg: rgba(44, 219, 189, 0.1);
  --theme-light-yellow: #f2f2dc;
  --theme-highlight-color: #4ee1b7;
  --font-technomat: 'Technomat', sans-serif;
}
@font-face {
  font-family: 'Technomat';
  src: url('/fonts/technomat.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  background-color: var(--theme-white);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  top: 1rem;
}

.navbar-container {
  background: rgba(14, 48, 44, 0.75);
  border-radius: 15px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 20px 250px;
  margin-top: 0;

  a.logo {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
}

.logo {
  font-size: 28px;
  color: var(--theme-primary);
}
.logo img {
  display: block;
}
.logo span {
  color: var(--theme-white);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--theme-white);
  font-weight: 500;
  line-height: 1;

  font-family: 'IBM Plex Sans', sans-serif;
  transition: color 0.3s;
  position: relative;
  display: inline-block;
  outline: none;
  border: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
}
.nav-links li a {
  text-decoration: none;
  color: var(--theme-white);
  font-size: 16px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--theme-primary);
}

.nav-links.nav-link-work a.nav-link-work,
.nav-links.nav-link-blog a.nav-link-blog,
.nav-links.nav-link-about a.nav-link-about,
.nav-links.nav-link-admin a.nav-link-admin {
  color: var(--theme-primary);
}

.nav-links a:focus,
.nav-links a:active {
  outline: none;
  border: none;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--theme-white);
  cursor: pointer;
}
@media (max-width: 1200px) {
  .navbar-container {
    margin: 3rem 100px;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    margin: 10px 1rem;
    position: relative;
    margin-top: 0;
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--theme-white);
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(14, 48, 44, 0.95);
    border-radius: 15px;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
    gap: 1rem;
    z-index: 998;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    font-size: 1rem;
    color: var(--theme-white);
    text-align: left;
  }
}

.main-content {
  min-height: 100vh;
}

.intro-section {
  position: relative;
  width: 100%;
  height: fit-content;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 35px 35px;
  color: var(--theme-white);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  margin-top: -8rem;
  padding-top: 10rem;
  padding-bottom: 2rem;
  text-align: center;

  .intro-overlay {
    margin-top: 2rem;
    h2 {
      text-transform: uppercase;
      color: var(--theme-white);
      font-weight: normal;
      font-family: var(--font-technomat);
      font-size: 32px;
    }

    h1 {
      font-size: 84px;
      color: var(--theme-white);
      font-weight: 500;
      margin: 0;

      span {
        display: block;
        font-family: var(--font-technomat);
        background: linear-gradient(#2adaf2, #2fdc89);
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
    }
    .subtitle {
      font-size: 2rem;
    }
    .clients-title {
      text-transform: uppercase;
      color: var(--theme-white);
      font-size: 16px;
    }

    .partners {
      display: flex;
      justify-content: center;
      gap: 5rem;
      padding: 1rem;
      flex-wrap: wrap;
      margin-top: 1rem;

      img {
        height: 60px;
      }
    }
  }
}

@media (max-width: 768px) {
  .intro-section {
    .intro-overlay {
      h2 {
        font-size: 1.5rem;
      }
      h1 {
        font-size: 2rem;
        padding-top: 2rem;
      }
      .subtitle {
        font-size: 1rem;
      }
      p {
        font-size: 1rem;
      }

      .partners {
        gap: 0.5rem;

        img {
          margin: 0 auto;
          height: 40px;
        }
      }
    }
  }
}

.footer {
  background-color: var(--theme-dark);
  margin: 0px 250px;
  border-radius: 35px 35px 0px 0px;
  color: var(--theme-white);
  text-align: left;
  position: relative;
  bottom: 0;
  color: var(--theme-white);
  font-size: 12px;
  padding: 40px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.footer h4 {
  color: var(--theme-primary);
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 180px;
}

.footer-section h4 {
  padding-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}

.footer-section ul li a {
  color: var(--theme-white);
  text-decoration: none;
  font-size: 12px;
  display: block;
  margin: 1rem 0;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a {
  color: var(--theme-white);
  margin-right: 10px;
  font-size: 18px;
}

.footer-middle {
  text-align: center;
  margin-bottom: 5rem;
}

.footer-logo {
  width: 60px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
}

.legal-links a {
  color: var(--theme-white);
  margin-left: 15px;
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid var(--theme-primary-dark);
  margin: 30px 0;
}

.comming-soon {
  justify-content: center;
  color: #009684;
  display: flex;
  margin: 250px;
}

.button-green {
  border-radius: 35px;
  background-color: var(--theme-primary);
  border: 1px solid var(--theme-black);
  padding: 8px 24px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  margin: 1rem;
  text-decoration: none;
  color: var(--theme-dark);
}

.section-title {
  font-family: var(--font-technomat);
  font-size: 24px;
}
@media (max-width: 1200px) {
  .footer {
    margin: 0px 100px;
  }
}

@media (max-width: 768px) {
  .footer {
    margin: 0px 30px;
    padding: 30px 15px;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-section {
    min-width: 100%;
  }

  .footer-middle {
    margin-bottom: 3rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
  }

  .legal-links a {
    margin-left: 0;
  }

  .comming-soon {
    margin: 100px 30px;
  }
}

.tox .tox-dialog {
  z-index: 999999 !important;
}
