@font-face {
  font-family: 'Inter';
  src: url("../assets/fonts/Inter/Inter-Bold.woff") format("woff"), url("../assets/fonts/Inter/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url("../assets/fonts/Inter/Inter-Regular.woff") format("woff"), url("../assets/fonts/Inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Inter;
  color: #ffffff;
}

html {
  overflow-x: hidden;
}

body {
  background-image: url("../assets/background.jpg");
  background-repeat: repeat;
  background-size: cover;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 1rem;
  }
}

.title {
  font-size: 2.5rem;
  text-align: center;
  margin: 5rem 0;
}

@media (max-width: 650px) {
  .title {
    font-size: 2rem;
  }
}

.btn {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  border: none;
  outline: none;
  width: 200px;
  cursor: pointer;
}

.btn--green {
  background-color: #07eaae;
}

.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;
  padding: 1rem 0;
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem;
    z-index: 99;
    position: relative;
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }
}

.nav--link {
  color: #ffffff;
  margin-right: 2rem;
  font-weight: 700;
}

.menu-btn {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  position: relative;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 28px;
  height: 28px;
}

@media (max-width: 1024px) {
  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.menu-btn--line {
  height: 3px;
  width: 28px;
  background-color: #07eaae;
  border-radius: 10px;
  margin: 3px 0;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.menu-btn--line:last-child {
  width: 14px;
}

.menu-btn--active .menu-btn--line:nth-child(1) {
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-btn--active .menu-btn--line:nth-child(2) {
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-btn--active .menu-btn--line:nth-child(3) {
  position: absolute;
  opacity: 0;
}

.menu {
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: absolute;
  top: -100vh;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 3;
  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;
}

.menu--show {
  top: 0;
}

.menu--link {
  text-decoration: none;
  font-weight: 700;
  color: white;
  font-size: 1.5rem;
  margin: 1rem 0;
}

.menu-overflow {
  overflow: hidden;
}

.footer {
  width: 100%;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
}

.footer--fixed {
  position: fixed;
  bottom: 0;
}

@media (max-height: 1000px) {
  .footer {
    position: relative;
  }
}

.footer p {
  color: #c4c4c4;
}

.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home img {
  width: 100%;
  max-width: 423px;
}

.home--text {
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin-top: 6rem;
}

@media (max-height: 1000px) {
  .home {
    margin-bottom: 4rem;
  }
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about img {
  width: 100%;
  max-width: 700px;
}

.about--text {
  max-width: 800px;
  width: 100%;
  margin-top: 2rem;
  line-height: 24px;
}

.about--graph {
  margin: 5rem 0 10rem 0;
}

.register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 650px) {
  .register {
    padding-bottom: 4rem;
  }
}

@media (max-height: 1000px) {
  .register {
    padding-bottom: 4rem;
  }
}

.register--form {
  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;
  width: 100%;
}

@media (max-width: 650px) {
  .register--form {
    padding-bottom: 3rem;
  }
}

.register--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin-bottom: 4rem;
}

@media (max-width: 650px) {
  .register--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0rem;
  }
}

.register--column {
  width: 48%;
}

@media (max-width: 650px) {
  .register--column {
    width: 100%;
  }
}

.register label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
}

.register select {
  border-right: 0.75rem solid transparent;
}

.register select option {
  font-family: 'Inter';
}

.register--input {
  margin-top: 1rem;
  border: none;
  outline: none;
  width: 100%;
  padding: 1rem;
  color: #000000;
  background-color: #b9b9b9;
  font-size: 1.15rem;
}

.register--disabled {
  opacity: 0.7;
}

.register--custom-checkbox {
  width: 20px;
  height: 20px;
  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;
  background-color: #b9b9b9;
  margin-right: 0.7rem;
}

.register--checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
}

.register--checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}

.register--checkboxes input:checked + .register--custom-checkbox {
  background-color: #07eaae;
}

.register--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  margin-left: 3rem;
}

.register--checkbox:nth-child(1) {
  margin-left: 0;
}

.register--checkbox input {
  display: none;
}

.register--checkbox label {
  margin: 0;
}

.register--error {
  color: #ff5c5c;
}
/*# sourceMappingURL=style.css.map */