* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #0D0D0D;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 10%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

h1 {
  font-size: 80px;
  font-weight: 800;
  text-align: center;
}

h1 span {
  font-size: 40px;
  font-weight: 300;
  display: block;
}

.container {
  max-width: 1290px;
  margin: 0 auto;
  position: relative;
}

section {
  height: 100vh;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("./images/back-dark.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 100%;
  padding: 64px 0;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  text-align: center;
  gap: 8px;
}

.header__logo {
  width: 72px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header__name {
  font-size: 18px;
}

.active {
  position: absolute;
  bottom: 32px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.active .active__name {
  font-weight: 300;
  font-size: 14px;
  opacity: 0.4;
}

.active a {
  font-size: 16px;
  font-size: 300;
  padding: 12px 36px;
  gap: 24px;
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  background: #f44369;
  background: -webkit-gradient(linear, left top, right top, from(#f44369), to(#3e3b92));
  background: linear-gradient(90deg, #f44369 0%, #3e3b92 100%);
}

.active a span {
  font-size: 16px;
  font-weight: 300;
}

.active a .active__icon {
  width: 24px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 24px;
}

.active a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background: -webkit-gradient(linear, left top, right top, from(#6443f4), to(#ce2753));
  background: linear-gradient(90deg, #6443f4 0%, #ce2753 100%);
}

footer {
  background: url("./images/ukraine.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.foot {
  max-width: 1290px;
  width: 100%;
}

.foot_list {
  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;
  list-style: none;
}

.foot_list li {
  font-size: 14px;
  font-weight: 300;
}

.foot_list li a:hover {
  color: #f44369;
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 60px;
  }
  h1 span {
    font-size: 30px;
    max-width: 95%;
    margin: 0 auto;
  }
  footer {
    height: 180px;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 50px;
  }
  h1 span {
    font-size: 24px;
  }
  .active a span {
    font-size: 14px;
  }
  footer {
    height: 130px;
  }
  .foot_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
/*# sourceMappingURL=style.css.map */