@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap");
* {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  list-style: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
}

.btn {
  background: #03989E;
  color: #fff;
  font-size: 1.7rem;
  padding: 1.5rem 3rem;
  border-radius: 1.3rem;
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}
.header .flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .flex .logo img {
  width: 25rem;
}
.header .flex .info-bar {
  display: flex;
  align-items: center;
}
.header .flex .info-bar .info-list {
  display: flex;
}
.header .flex .info-bar .info-list .info {
  padding-left: 13rem;
  text-align: right;
}
.header .flex .info-bar .info-list .info h3 {
  font-size: 1.8rem;
  color: #000;
  padding-bottom: 1rem;
}
.header .flex .info-bar .info-list .info a {
  color: #03989E;
  font-size: 1.6rem;
  border-bottom: 0.1rem dashed #03989E;
}
.header .flex .info-bar .info-list .info a:hover {
  border-bottom: 0.1rem solid #03989E;
}
.header .flex .info-bar .social {
  padding-left: 15rem;
}
.header .flex .info-bar .social .social-page a {
  padding-left: 2rem;
}
.header .flex .info-bar .languages {
  display: none;
}
.header .flex .info-bar .media {
  display: none;
}
.header .flex .info-bar .navbar {
  margin-top: 5rem;
}
.header .flex .info-bar .navbar ul li a {
  font-size: 1.8rem;
  color: #000;
  font-weight: 800;
  padding: 2rem;
  border-radius: 1rem;
}
.header .flex .info-bar .navbar ul li a:hover {
  background: #03989E;
  border-radius: 1rem;
}
.header .flex #menu {
  font-size: 4rem;
  cursor: pointer;
  display: none;
}
.header .flex .language {
  padding-left: 3rem;
}
.header .flex .language .lang-list {
  position: relative;
}
.header .flex .language .lang-list a {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #000;
  font-weight: 800;
  padding-bottom: 0.2rem;
}
.header .flex .language .lang-list a:hover {
  color: #03989E;
}
.header .flex .language .lang-list a.active {
  color: #03989E;
}
.header .flex .language .lang-list:hover > .lang-next {
  display: block;
}
.header .flex .language .lang-list .lang-next {
  display: none;
  position: absolute;
}

.banner {
  background-image: url("../img/banner.png");
  background-size: cover;
  min-height: 60rem;
  align-items: center;
  text-align: center;
}
.banner .content .navbar {
  margin-top: 5rem;
}
.banner .content .navbar ul {
  display: flex;
  justify-content: space-between;
}
.banner .content .navbar ul li a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 800;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
}
.banner .content .navbar ul li a:hover {
  background: #03989E;
  border-radius: 1rem;
}
.banner .content h3 {
  margin-top: 10rem;
  font-size: 3rem;
  color: #fff;
  padding-bottom: 3rem;
  font-weight: 800;
}
.banner .content p {
  font-size: 1.8rem;
  color: #eee;
  padding-bottom: 7rem;
}

.register {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url("../img/blur-bg.png");
  background-size: cover;
  transform: translateY(-150%);
}
.register.active {
  transform: translateY(0%);
}
.register .content h3 {
  font-size: 3rem;
  color: #fff;
  padding-bottom: 1rem;
}
.register .content p {
  font-size: 1.8rem;
  color: #eee;
  padding-bottom: 2rem;
}
.register .content form input {
  display: block;
  padding: 2rem 3rem;
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.register .content form button {
  width: 100%;
}
.register #close {
  font-size: 5rem;
  color: #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 5%;
  right: 5%;
  cursor: pointer;
}

.footer {
  background: #333;
  padding-top: 5rem;
}
.footer .row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .row .box h3 {
  font-size: 2rem;
  padding-bottom: 1rem;
  color: #fff;
  border-bottom: 0.1rem solid #03989E;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
}
.footer .row .box p {
  font-size: 1.5rem;
  line-height: 3.1rem;
  color: #eee;
}
.footer .row .box h2 {
  color: #eee;
  padding-bottom: 1rem;
  font-size: 1.8rem;
}
.footer .row .box a {
  font-size: 1.5rem;
  color: #fff;
  display: block;
  padding-bottom: 2rem;
}
.footer .row .box a:hover {
  color: #03989E;
}
.footer .credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 0.3rem solid #000;
}
.footer .credit .box form {
  background: #fff;
  padding: 1.5rem 3rem;
  position: relative;
  border-radius: 5rem;
  width: 30rem;
}
.footer .credit .box form button {
  background: transparent;
  float: right;
  color: #000;
  font-size: 1.8rem;
  cursor: pointer;
}
.footer .credit .box p {
  font-size: 1.7rem;
  color: #fff;
}
.footer .credit .box a {
  color: #eee;
}
.footer .credit .box a:hover {
  color: #03989E;
}
.footer .credit .box a img {
  padding-left: 2rem;
}

@media (max-width: 1500px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 48%;
  }
}
@media (max-width: 999px) {
  html {
    font-size: 45%;
  }
  .none {
    display: none;
  }
  .header .flex .logo img {
    width: 20rem;
  }
  .header .flex .info-bar {
    position: absolute;
    top: 99%;
    right: 0;
    left: 0;
    top: -500%;
    background: #fff;
    opacity: 0;
    display: block;
  }
  .header .flex .info-bar.active {
    top: 99%;
    opacity: 1;
  }
  .header .flex .info-bar .media {
    display: block;
  }
  .header .flex .info-bar .info-list {
    flex-flow: column;
    margin: 2rem;
  }
  .header .flex .info-bar .info-list .info {
    display: block;
    padding: 2rem;
    text-align: left;
  }
  .header .flex .info-bar .social {
    padding-left: 2rem;
  }
  .header .flex .info-bar .navbar ul {
    flex-flow: column;
    margin: 0 2rem;
  }
  .header .flex .info-bar .navbar ul li a {
    display: block;
    padding: 1rem;
  }
  .header .flex #menu {
    display: block;
  }
  .header .flex #menu.bx-plus {
    transform: rotate(135deg);
  }
  .header .flex .language {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}/*# sourceMappingURL=style.css.map */