@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");
::-webkit-scrollbar {
  width: 6px;
}

@media only screen and (max-width: 1199.98px) {
  ::-webkit-scrollbar {
    width: 0;
  }
}

::-webkit-scrollbar-thumb {
  background: #575757;
  border-radius: 3rem;
}

:root {
  --font-poppins: 'Barlow', sans-serif;
  --text-color-white: #fff;
  --text-color-black: #121212;
  --color-green: rgb(0, 124, 27);
  --color-blue: #007bff;
  --color-yellow: #FFC50C;
  --gradient-main-color: linear-gradient(
    216deg,
    rgba(0, 255, 25, 1) 0%,
    rgb(231, 231, 0) 35%,
    rgba(16, 0, 255, 1) 100%
  );
  --title-gradient: linear-gradient(
    216deg,
    rgba(0, 255, 25, 1) 0%,
    #00ff40 35%,
    rgb(17, 0, 255) 100%
  );
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100vw;
  overflow: hidden;
  background: url("./images/wallpaper.png");
  background-color: #000;
  background-size: cover;
  background-attachment: fixed;
  font-family: var(--font-poppins);
}

@media only screen and (max-width: 767.98px) {
  body {
    background: url("./images/wallpaper.png");
    background-color: #000;
    background-size: cover;
    background-attachment: fixed;
  }
}

body .loading {
  position: fixed;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(216deg, #b9b9b9 0%, #adadad 35%, white 100%);
  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;
}

body .loading .title {
  font-weight: bold;
  font-size: 5rem;
  letter-spacing: 25px;
  background: var(--title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body .loading.active {
  top: 0;
}

body header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 4rem;
  background: none;
  -webkit-transition: background 0.3s, dackdrop-filter 0.1s;
  transition: background 0.3s, dackdrop-filter 0.1s;
}

body header.active {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}

@media only screen and (min-width: 1440.98px) {
  body header {
    height: 4rem;
  }
}

@media only screen and (max-width: 1199.98px) {
  body header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3rem;
    z-index: 99;
  }
}

body header .mobile-button {
  display: none;
}

body header .mobile-button.active .stick.first-stick {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

body header .mobile-button.active .stick.second-stick {
  opacity: 0;
}

body header .mobile-button.active .stick.third-stick {
  width: 100%;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

@media only screen and (max-width: 1199.98px) {
  body header .mobile-button {
    display: block;
    position: relative;
    width: 50px;
    height: 2.5rem;
    z-index: 99;
  }
  body header .mobile-button .stick {
    position: absolute;
    right: 1rem;
    height: 7px;
    border-radius: 3rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: var(--text-color-white);
    pointer-events: none;
  }
  body header .mobile-button .stick.first-stick {
    width: 100%;
    top: 0;
  }
  body header .mobile-button .stick.second-stick {
    width: 50%;
    top: 50%;
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  body header .mobile-button .stick.third-stick {
    width: 25%;
    bottom: 0;
  }
}

body header nav {
  width: 90%;
  margin: 0 auto;
  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;
  height: inherit;
}

@media only screen and (max-width: 1199.98px) {
  body header nav {
    position: absolute;
    width: 100%;
    height: 100vh;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
  }
  body header nav ul {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateY(-16.6rem);
            transform: translateY(-16.6rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }
  body header nav.active {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 50;
    opacity: 1;
    pointer-events: auto;
  }
  body header nav.active ul {
    top: 0;
    left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background: rgba(40,40,40,0.6);
    -webkit-transform: translateY(0);
            transform: translateY(0);
    overflow: hidden;
    height: 16.6rem;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body header nav ul {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 1199.98px) {
  body header nav ul {
    padding: 4rem 0 3rem 0;
  }
}

body header nav ul a {
  font-size: 1rem;
  line-height: 1.9rem;
  font-weight: 500;
  color: var(--text-color-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 1199.98px) {
  body header nav ul a {
    font-size: 1.5rem;
    line-height: 2.4rem;
    margin-left: 1rem;
    font-weight: bold;
  }
}

body header nav ul a + a {
  margin-left: 2rem;
}

@media only screen and (max-width: 1199.98px) {
  body header nav ul a + a {
    margin-left: 1rem;
    font-weight: bold;
  }
}

body header nav ul a:hover {
  color: var(--color-blue);
}

@media only screen and (min-width: 1440.98px) {
  body header nav ul a {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

/* Login buttons */
body nav ul.buttons {
  position: fixed;
  top: .3rem;
  right: 30px;
  z-index: 999;
}

body nav .buttons a {
  font-size: 1rem;
  color: var(--text-white);
  padding: 0.4rem 1.3rem;
  border-radius: 3rem;
  width: 100%;
  border: none;
  width: 100%;
  text-align: center;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

body nav .buttons a.cadastrar {
  color: #fff;
  background: var(--color-blue);
}

body nav .buttons a.login {
  color: #fff;
  background: linear-gradient(to right, #0065e8 0%, #11a2f1 100%);
  margin-left: 10px;
}

body nav .buttons a:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

@media only screen and (max-width: 1199.98px) {
  body nav ul.buttons {
    top: -5px;
    left: -10px;
  }
}

body section {
  position: relative;
}

body section .container {
  max-width: 1120px;
  width: 100%;
}

@media only screen and (min-width: 1440.98px) {
  body section .container {
    max-width: 1440px;
  }
}

@media only screen and (max-width: 1199.98px) {
  body section .container {
    max-width: 100%;
  }
}

body section .container .info {
  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;
}

body section .container .info .content {
  width: 60%;
}

@media only screen and (max-width: 1199.98px) {
  body section .container .info .content {
    width: 95%;
  }
}

body section:nth-of-type(1) {
  padding: 5rem 0;
  height: 150vh;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) {
    height: 120vh;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(1) {
    height: auto;
    padding: 3rem 0;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(1) {
    height: auto;
    margin-bottom: 35vh;
  }
}

body section:nth-of-type(1) .presentation-wave {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 200%;
}

@media only screen and (max-width: 1199.98px) {
  body section:nth-of-type(1) .presentation-wave {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    width: 2000px;
  }
}

body section:nth-of-type(1) .presentation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50vw 50vw;
      grid-template-columns: 50vw 50vw;
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(1) .presentation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) .presentation .info {
    margin-top: 8rem;
  }
}

body section:nth-of-type(1) .presentation .info .content {
  color: var(--text-color-white);
}

body section:nth-of-type(1) .presentation .info .content .title {
  font-size: 2rem;
  color: var(--text-color-white);
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) .presentation .info .content .title {
    font-size: 3rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(1) .presentation .info .content .title {
    font-size: 2.4rem;
  }
}

body section:nth-of-type(1) .presentation .info .content .description {
  font-weight: 400;
}

.presentation .info .content .description {
  color: var(--text-color-white);
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) .presentation .info .content .description {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(1) .presentation .info .content .description {
    font-size: 1.5rem;
  }
}

body section:nth-of-type(1) .presentation .info .content .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(1) .presentation .info .content .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body section:nth-of-type(1) .presentation .info .content .buttons a {
  color: var(--text-white);
  padding: 0.7rem 0;
  border-radius: 3rem;
  width: 100%;
  border: none;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) .presentation .info .content .buttons a {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(1) .presentation .info .content .buttons a {
    width: 85%;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(1) .presentation .info .content .buttons a {
    width: 80%;
    font-size: 1.2rem;
  }
}

body section:nth-of-type(1) .presentation .info .content .buttons a:nth-of-type(1) {
  background: linear-gradient(to right, #0065e8 0%, #11a2f1 100%);
}

body section:nth-of-type(1) .presentation .info .content .buttons a:nth-of-type(2) {
  background: linear-gradient(to right, #ff0000 0%, #541f1f 100%);
}

body section:nth-of-type(1) .presentation .presentation-image {
  position: relative;
  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;
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(1) .presentation .presentation-image {
    margin-top: 5rem;
  }
}

body section:nth-of-type(1) .presentation .presentation-image .circle {
  position: absolute;
  z-index: -1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) .presentation .presentation-image .circle {
    width: 300px;
    height: 300px;
  }
}

body section:nth-of-type(1) .presentation .presentation-image .circle.first-circle {
  top: 5%;
  left: 15%;
  background: #181818;
  -webkit-box-shadow: 0 0 50px 5px #181818;
          box-shadow: 0 0 50px 5px #181818;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) .presentation .presentation-image .circle.first-circle {
    top: 10%;
    left: 20%;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(1) .presentation .presentation-image .circle.first-circle {
    top: 10%;
    left: -15%;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(1) .presentation .presentation-image .circle.first-circle {
    top: 10%;
    left: 5%;
  }
}

body section:nth-of-type(1) .presentation .presentation-image .circle.second-circle {
  bottom: 0;
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
  right: 15%;
  background: red;
  -webkit-box-shadow: 0 0 50px 5px red;
          box-shadow: 0 0 50px 5px red;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) .presentation .presentation-image .circle.second-circle {
    bottom: 5%;
    right: 20%;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(1) .presentation .presentation-image .circle.second-circle {
    bottom: 5%;
    right: -15%;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(1) .presentation .presentation-image .circle.second-circle {
    bottom: 5%;
    right: 5%;
  }
}

body section:nth-of-type(1) .presentation .presentation-image .image-container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(1) .presentation .presentation-image .image-container {
    width: 500px;
    height: 500px;
  }
}

body section:nth-of-type(1) .presentation .presentation-image .image-container img {
  width: 80%;
}

body section:nth-of-type(2) {
  position: relative;
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(2) {
    height: auto;
    margin-top: 20rem;
  }
}

body section:nth-of-type(2) .circle {
  position: absolute;
  z-index: -99;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

body section:nth-of-type(2) .circle.first-circle {
  top: -5%;
  left: 0;
  background: var(--color-yellow);
  -webkit-box-shadow: 0 0 50px 5px var(--color-yellow);
          box-shadow: 0 0 50px 5px var(--color-yellow);
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(2) .circle.first-circle {
    left: 450px;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(2) .circle.first-circle {
    top: -10%;
    left: -5%;
  }
}

body section:nth-of-type(2) .circle.second-circle {
  bottom: -10%;
  right: -3%;
  background: #0065e8;
  -webkit-box-shadow: 0 0 50px 5px #0065e8;
          box-shadow: 0 0 50px 5px #0065e8;
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(2) .circle.second-circle {
    right: 450px;
  }
}

body section:nth-of-type(2) .about-us {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95%;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 2rem;
  background-color: rgba(40,40,40,0.6);
  -webkit-backdrop-filter: blur(3rem);
          backdrop-filter: blur(3rem);
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(2) .about-us {
    padding: 1rem;
    width: 95%;
  }
}

body section:nth-of-type(2) .about-us .title {
  font-size: 5rem;
  margin: 0;
  padding: 0;
  background: var(--text-color-white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(2) .about-us .title {
    font-size: 5rem;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(2) .about-us .title {
    font-size: 3.3rem;
  }
}

body section:nth-of-type(2) .about-us .description {
  color: #ada2c3;
  font-weight: 400;
  font-size: 1.2rem;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(2) .about-us .description {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(2) .about-us .description {
    font-size: 2rem;
  }
}

body section:nth-of-type(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10rem 0;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(3) {
    padding: 20rem 0;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(3) {
    padding: 20rem 0;
  }
}

body section:nth-of-type(3) .background-logo {
  position: absolute;
  top: 20vh;
  right: -25vw;
  width: 700px;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(3) .background-logo {
    width: 900px;
    top: 250px;
    right: -25vh;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(3) .background-logo {
    display: none;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(3) .background-logo {
    top: 50vh;
    right: -35vw;
    width: 700px;
    z-index: -1;
    -webkit-filter: blur(0.5rem);
            filter: blur(0.5rem);
  }
}

body section:nth-of-type(3) .content {
  padding: 0 10rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(3) .content {
    padding: 0;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(3) .content {
    padding: 0 2rem;
  }
}

body section:nth-of-type(3) .content .title {
  font-size: 3rem;
  margin: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  background: var(--text-color-white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(3) .content .title {
    font-size: 5rem;
  }
}

body section:nth-of-type(3) .content .modals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  margin-top: 5rem;
  gap: 2rem;
}

body section:nth-of-type(3) .content .modals .modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  width: 700px;
  background: rgba(40,40,40,0.6);
  padding-left: 1rem;
  border-radius: 1rem;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(3) .content .modals .modal {
    width: 1400px;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(3) .content .modals .modal {
    gap: 1rem;
    margin: 0 auto;
    width: 95%;
    padding-left: 0;
    padding: 0.5rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(3) .content .modals .modal {
    gap: 1rem;
    width: 100%;
    padding: 0.5rem;
  }
}

body section:nth-of-type(3) .content .modals .modal .header {
  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;
  max-width: 150px;
  width: 100%;
  padding: 1rem 0;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(3) .content .modals .modal .header {
    max-width: 300px;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(3) .content .modals .modal .header {
    max-width: auto;
    width: 550px;
    padding: 0;
  }
}

body section:nth-of-type(3) .content .modals .modal .header span {
  display: block;
  font-weight: bold;
  background: var(--text-color-white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body section:nth-of-type(3) .content .modals .modal .header span.first-word {
  font-size: 2rem;
  line-height: 2.9rem;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(3) .content .modals .modal .header span.first-word {
    font-size: 3rem;
    line-height: 3.9rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(3) .content .modals .modal .header span.first-word {
    font-size: 2.5rem;
    line-height: 3.4rem;
  }
}

body section:nth-of-type(3) .content .modals .modal .header span.second-word {
  font-size: 1rem;
  line-height: 1rem;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(3) .content .modals .modal .header span.second-word {
    font-size: 2rem;
    line-height: 2rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(3) .content .modals .modal .header span.second-word {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

body section:nth-of-type(3) .content .modals .modal p {
  font-weight: 500;
  color: #ada2c3;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(3) .content .modals .modal p {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(3) .content .modals .modal p {
    font-size: 1.5rem;
  }
}

body section:nth-of-type(4) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50vw 50vw;
      grid-template-columns: 50vw 50vw;
  padding-bottom: 20vh;
}

@media only screen and (max-width: 1199.98px) {
  body section:nth-of-type(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body section:nth-of-type(4) .missions-container {
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body section:nth-of-type(4) .missions-container .mobile-title {
  display: none;
}

@media only screen and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .mobile-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    background: var(--text-color-white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media only screen and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body section:nth-of-type(4) .missions-container .icons img {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

body section:nth-of-type(4) .missions-container .icons .insta {
  width: 190px;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .missions-container .icons .insta {
    width: 290px;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(4) .missions-container .icons .insta {
    width: 150px;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .icons .insta {
    width: 250px;
  }
}

body section:nth-of-type(4) .missions-container .icons .twitter {
  width: 180px;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .missions-container .icons .twitter {
    width: 280px;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(4) .missions-container .icons .twitter {
    width: 50px;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .icons .twitter {
    width: 150px;
  }
}

body section:nth-of-type(4) .missions-container .icons .telegram {
  width: 240px;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .missions-container .icons .telegram {
    width: 340px;
  }
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(4) .missions-container .icons .telegram {
    width: 110px;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .icons .telegram {
    width: 250px;
  }
}

body section:nth-of-type(4) .missions-container .mission-modal {
  width: 75%;
  margin-top: 2rem;
  border-radius: 1rem;
  background: #fff;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal {
    width: 95%;
    margin: 0 auto;
    margin-top: 2rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal {
    width: 70%;
    margin: 0 auto;
    margin-top: 2rem;
  }
}

body section:nth-of-type(4) .missions-container .mission-modal .header .title {
  text-align: center;
  font-size: 1rem;
  margin: 0;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal .header .title {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal .header .title {
    font-size: 1.3rem;
  }
}

body section:nth-of-type(4) .missions-container .mission-modal .body {
  text-align: center;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal .body {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal .body {
    font-size: 1.3rem;
  }
}

body section:nth-of-type(4) .missions-container .mission-modal .body a {
  border: none;
  background-color: var(--color-green);
  border-radius: 0.25rem;
  padding: 0.5rem 2rem;
  color: #fff;
  -webkit-transition: 0.3s -webkit-filter;
  transition: 0.3s -webkit-filter;
  transition: 0.3s filter;
  transition: 0.3s filter, 0.3s -webkit-filter;
}

body section:nth-of-type(4) .missions-container .mission-modal .body a:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal .body a {
    font-size: 1.2rem;
  }
}

body section:nth-of-type(4) .missions-container .mission-modal .body .checking {
  display: none;
  opacity: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

body section:nth-of-type(4) .missions-container .mission-modal .body .checking.active {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body section:nth-of-type(4) .missions-container .mission-modal .body .checking span {
  font-weight: 800;
}

body section:nth-of-type(4) .missions-container .mission-modal .body .checking .checking-loading {
  width: 20px;
  height: 20px;
  margin-left: 1rem;
  border-radius: 50%;
  border: 5px solid var(--color-green);
  border-left: 5px solid transparent;
  -webkit-animation: checking-loading 1s linear infinite forwards;
          animation: checking-loading 1s linear infinite forwards;
}

@-webkit-keyframes checking-loading {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes checking-loading {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

body section:nth-of-type(4) .missions-container .mission-modal .body .progress {
  position: relative;
  width: calc(100% / 1.5);
  height: 10px;
  background: #ccc;
  border-radius: 3rem;
  margin: 2rem auto;
  overflow: hidden;
}

body section:nth-of-type(4) .missions-container .mission-modal .body .progress .progress-bar {
  position: absolute;
  height: inherit;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  width: 0;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  background-color: var(--color-blue);
}

body section:nth-of-type(4) .missions-container .mission-modal .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body section:nth-of-type(4) .missions-container .mission-modal .footer button {
  width: 50%;
  margin: 0 auto;
  border: none;
  padding: 1rem 0;
  border-radius: 0.25rem;
  color: var(--text-color-white);
  background: var(--color-blue);
  -webkit-filter: opacity(0.4);
          filter: opacity(0.4);
  cursor: default;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

body section:nth-of-type(4) .missions-container .mission-modal .footer button.next-button.active {
  pointer-events: auto;
  cursor: pointer;
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

body section:nth-of-type(4) .missions-container .mission-modal .footer button.next-button.active:hover {
  -webkit-filter: opacity(1) brightness(1.2);
          filter: opacity(1) brightness(1.2);
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal .footer button.next-button.active {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body section:nth-of-type(4) .missions-container .mission-modal .footer button.next-button.active {
    font-size: 1.2rem;
  }
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container .input-container {
  margin-bottom: 1rem;
  width: 80%;
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container .input-container label {
  font-size: 0.9rem;
  display: block;
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container .input-container input {
  width: 100%;
  padding: 0.5rem 0.5rem;
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container a {
  width: 80%;
  border: none;
  padding: 1rem 0;
  border-radius: 0.25rem;
  color: #fff;
  text-align: center;
  background-color: var(--color-green);
  -webkit-transition: 0.3s -webkit-filter;
  transition: 0.3s -webkit-filter;
  transition: 0.3s filter;
  transition: 0.3s filter, 0.3s -webkit-filter;
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container button:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container button.disabled {
  pointer-events: none;
  opacity: 0.3;
}

body section:nth-of-type(4) .missions-container .mission-modal form.form-container .error-message {
  text-align: start;
  color: red;
}

body section:nth-of-type(4) .missions-container .mission-modal .successful {
  display: none;
}

body section:nth-of-type(4) .missions-container .mission-modal .successful.active {
  display: block;
  text-align: center;
  color: #00bd2fbb;
}

div#blur.activePopUp{
  filter: blur(20px);
  pointer-events: none;
  user-select: none;
}

body .pop-up{
  position: fixed;
  left: 50%;
  top: 30%;
  transform: translate(-50%,-50%);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: .5s;
}

body .pop-up a.close-card{
  position: absolute;
  top: 20px;
  right: 30px;
}

body .pop-up a.close-card img{
  width: 40px;
  height: auto;
}

body .card{
  width: 40%;
  border-radius: 1rem;
  background: #fff;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 768px){
  body .card{
    width: 90%;
  }
}

body .pop-up form.form-wallet .column{
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body .pop-up form.form-wallet .w50 {
  display: flex;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body .pop-up form.form-wallet input[type="submit"]{
  width: 80%;
  border: none;
  padding: 1rem 0;
  border-radius: 0.25rem;
  color: #fff;
  background-color: var(--color-green);
  -webkit-transition: 0.3s -webkit-filter;
  transition: 0.3s -webkit-filter;
  transition: 0.3s filter;
  transition: 0.3s filter, 0.3s -webkit-filter;
}

body .pop-up form.form-wallet input[type="submit"]:hover{
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

body .pop-up form.form-wallet .input-container{
  margin-bottom: 1rem;
  width: 80%;
}

body .pop-up form.form-wallet .input-container-name {
  margin-bottom: 1rem;
  width: 39%;
}

body .pop-up form.form-wallet .input-container-name.left {
  margin-right: 2%;
}

body .pop-up form.form-wallet .input-container-name label,
body .pop-up form.form-wallet .input-container label {
  font-size: 0.9rem;
  display: block;
}

body .pop-up form.form-wallet .input-container-name input,
body .pop-up form.form-wallet .input-container input{
  width: 100%;
  padding: 0.5rem 0.5rem;
}

body .pop-up form.form-wallet .warning{
  text-align: center;
}

/* Message Success/Error */
.success,
.error{
  width: 80%;
  border: none;
  padding: 1rem 0;
  border-radius: 0.25rem;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.3s -webkit-filter;
  transition: 0.3s -webkit-filter;
  transition: 0.3s filter;
  transition: 0.3s filter, 0.3s -webkit-filter;
}

.success{
  background-color: #00bd2fbb;
}

.error{
  background-color: red;
}

/* Active Pop Up */
#popup.activePopUp{
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition: .5s;
}

body section:nth-of-type(4) .content {
  position: relative;
}

body section:nth-of-type(4) .content .title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  background: var(--text-color-white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199.98px) {
  body section:nth-of-type(4) .content .title {
    display: none;
  }
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .content .title {
    font-size: 4rem;
  }
}

body section:nth-of-type(4) .content .mission-image {
  position: relative;
  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;
}

@media only screen and (max-width: 767.98px) {
  body section:nth-of-type(4) .content .mission-image {
    margin-top: 5rem;
  }
}

body section:nth-of-type(4) .content .mission-image .circle-container {
  z-index: -1;
  position: absolute;
  -webkit-animation: circleAnime 10s ease-in-out infinite forwards;
          animation: circleAnime 10s ease-in-out infinite forwards;
}

@-webkit-keyframes circleAnime {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circleAnime {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

body section:nth-of-type(4) .content .mission-image .circle-container .circle {
  position: absolute;
  z-index: -99;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .content .mission-image .circle-container .circle {
    width: 300px;
    height: 300px;
  }
}

body section:nth-of-type(4) .content .mission-image .circle-container .circle.first-circle {
  top: -200px;
  left: 0;
  background: #181818;
  -webkit-box-shadow: 0 0 50px 5px #181818;
          box-shadow: 0 0 50px 5px #181818;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .content .mission-image .circle-container .circle.first-circle {
    top: 10%;
    left: 20%;
  }
}

body section:nth-of-type(4) .content .mission-image .circle-container .circle.second-circle {
  bottom: -200px;
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
  right: 0;
  background: red;
  -webkit-box-shadow: 0 0 50px 5px red;
          box-shadow: 0 0 50px 5px red;
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .content .mission-image .circle-container .circle.second-circle {
    bottom: 5%;
    right: 20%;
  }
}

body section:nth-of-type(4) .content .mission-image .mission-container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
    
    
}

@media only screen and (min-width: 1440.98px) {
  body section:nth-of-type(4) .content .mission-image .mission-container {
    width: 500px;
    height: 500px;
  }
}

body section:nth-of-type(4) .content .mission-image .mission-container img {
  width: 80%;
}

body footer {
  width: 100%;
  text-align: center;
  background: rgba(78, 78, 78, 0.6);
  -webkit-backdrop-filter: blur(3rem);
          backdrop-filter: blur(3rem);
  padding: 2rem 1rem;
}

body footer p {
  color: #ada2c3;
  margin: 0;
  font-size: 0.8rem;
  padding: 1rem 0;
}

@media only screen and (min-width: 767.99px) and (max-width: 1199.98px) {
  body footer p {
    font-size: 1rem;
  }
}

body footer p span {
  font-weight: bold;
  background: var(--text-color-white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  body section:nth-of-type(4) .pop-up{
    min-width: 90%;
  }
}
/*# sourceMappingURL=styles.css.map */