@font-face {
    font-family: 'ManropeRegular';
    src: url('../static/fonts/Manrope-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'ManropeMedium';
    src: url('../static/fonts/Manrope-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'ManropeBold';
    src: url('../static/fonts/Manrope-Bold.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
    min-height: 100%;
    height: 100%;
}
body {
    font-family: 'ManropeRegular';
    font-size: 14px;
    color: #ffffff;
    background-color: #151532;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header {
    height: 82px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'ManropeBold';
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-wrapper {
    position: relative;
    width: 100%;
    max-width: 1420px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.logo-menu {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}
.logo {
    display: flex;
}
.menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
#menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 26px;
  height: 2px;
  background: white;
  display: block;
}
.actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
.button {
    padding: 0 20px;
    background-color: #146EF5;
    height: 42px;
    border-radius: 150px;
    display: flex;
    align-items: center;
    align-self: center;
}
.hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 80px auto 40px;
}
.hero-heading {
    font-family: 'ManropeMedium';
    font-size: 82px;
    font-weight: 500;
    text-align: center;
}
.hero-heading span {
    font-family: 'ManropeBold';
}
.hero-text {
    font-size: 24px;
    text-align: center;
    line-height: 36px;
}
.hero .button {
    font-family: 'ManropeBold';
}

.marketing {
    width: 100%;
    max-width: 1420px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 10px;
    margin: 0 auto;
}
.marketing .card {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.marketing .card-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.marketing .card-icon {
    width: 60px;
    height: 60px;
    padding: 10px;
    font-size: 36px;
    vertical-align: middle;
    line-height: 1;
    flex-shrink: 0;
    text-align: center;
}
.marketing .card-title {
    font-size: 24px;
}
.marketing .card-text {
    font-size: 16px;
    padding: 10px;
}

footer {
    font-family: 'ManropeMedium';
    margin: 0 auto;
    padding: 30px 10px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {

  .menu {
    gap: 20px;
    font-size: 13px;
  }

  .hero-heading {
    font-size: 60px;
  }

  .hero-text {
    font-size: 20px;
    line-height: 30px;
  }

}

@media (max-width: 768px) {

  header {
    height: auto;
  }

  .header-wrapper {
    flex-direction: column;
    gap: 20px;
  }

 .logo-menu {
    width: 100%;
    justify-content: space-between;
  }

  .menu-button {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    background: #151532;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  #menu-toggle:checked ~ .menu {
    display: flex;
  }

  .actions {
    gap: 15px;
  }

  .hero {
    margin: 60px auto 30px;
    padding: 0 20px;
  }

  .hero-heading {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
    line-height: 28px;
  }

}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .button {
    height: 38px;
    font-size: 13px;
    padding: 0 16px;
  }
}