@import url("https://fonts.googleapis.com/css2?family=Alice&family=Geologica:wght,CRSV@100..900,0&family=Inter:wght@100..900&family=Prata&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  list-style: none;
  border: none;
  outline: none;
  color: #000;
  transition: all 0.3s ease;
}

body {
  overflow-x: hidden;
}
body.mobile-menu-open {
  overflow: hidden;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 3vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
header nav ul .header-social-item {
  font-size: 20px;
  color: #fff;
  background: #0DA2E6;
  background: linear-gradient(45deg, rgb(13, 162, 230) 0%, rgb(78, 199, 242) 100%);
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
header nav ul .header-social-item:hover {
  background: #0DA2E6;
  background: linear-gradient(45deg, rgba(13, 162, 230, 0.8) 0%, rgba(78, 199, 242, 0.8) 100%);
}
header nav ul .header-social-item i {
  background: transparent;
  color: #fff;
}
header nav ul img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  object-position: center;
  transition: all 0.3s ease;
}
header nav ul img:hover {
  opacity: 0.8;
}
header nav .header-number {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}
header nav .header-number:hover {
  color: #0DA2E6;
}
header .header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease;
}
header .header-burger:hover {
  color: #0DA2E6;
  background: rgba(255, 255, 255, 0.08);
}
header .header-burger i {
  color: inherit;
}
header .header-burger [data-burger-close] {
  display: none;
}
header .header-burger.is-active [data-burger-icon] {
  display: none;
}
header .header-burger.is-active [data-burger-close] {
  display: block;
}
@media (max-width: 992px) {
  header .header-burger {
    display: flex;
  }
}
@media (max-width: 992px) {
  header .header-nav {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 100vw - 40px);
  background: linear-gradient(180deg, #0c3d52 0%, #0a2d3d 100%);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 32px;
  overflow-y: auto;
}
.mobile-menu__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.mobile-menu__social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(13, 162, 230, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}
.mobile-menu__social-item:hover {
  background: rgba(13, 162, 230, 0.4);
  color: #fff;
}
.mobile-menu__social-item i {
  font-size: 22px;
  color: #0DA2E6;
}
.mobile-menu__number {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.3s ease;
}
.mobile-menu__number:hover {
  color: #0DA2E6;
}
.mobile-menu__languages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__languages-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.mobile-menu__lang-list {
  display: flex;
  gap: 10px;
  list-style: none;
}
.mobile-menu__lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}
.mobile-menu__lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.mobile-menu__lang-item img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none;
  }
}

main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100svh;
  background-image: url("/assets/images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-bg-doc, .hero-bg-medal {
  position: absolute;
  width: 100vw;
  height: 100svh;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-bg-doc {
  max-width: 870px;
  max-height: 970px;
  right: -140px;
  bottom: 0;
  background-image: url("/assets/images/doc.png");
  background-size: contain;
}
@media (max-width: 1530px) {
  .hero-bg-doc {
    right: -215px;
  }
}
@media (max-width: 1330px) {
  .hero-bg-doc {
    max-width: 790px;
    max-height: 880px;
  }
}
@media screen and (max-width: 1130px) {
  .hero-bg-doc {
    right: -180px;
    max-width: 700px;
    max-height: 700px;
  }
}
@media screen and (max-width: 870px) {
  .hero-bg-doc {
    right: -140px;
    max-width: 500px;
    max-height: 500px;
  }
}
@media screen and (max-width: 600px) {
  .hero-bg-doc {
    display: none;
  }
}
.hero-bg-medal {
  background-image: url("/assets/images/medal.png");
  max-width: 300px;
  max-height: 300px;
  right: 520px;
  top: 5vh;
}
@media screen and (min-width: 2000px) {
  .hero-bg-medal {
    top: 30vh;
  }
}
@media (max-width: 1530px) {
  .hero-bg-medal {
    right: 420px;
  }
}
@media (max-width: 1366px) {
  .hero-bg-medal {
    width: 250px;
    height: 250px;
    right: 370px;
    top: 4vh;
  }
}
@media screen and (max-width: 1130px) {
  .hero-bg-medal {
    right: 352px;
    top: 3vh;
  }
}
@media screen and (max-width: 1000px) {
  .hero-bg-medal {
    display: none;
  }
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 50%;
  padding: 25svh 3vw 5svh;
}
@media screen and (max-width: 900px) {
  .hero .hero-content {
    max-width: 60%;
    padding: 20svh 3vw 5svh;
  }
}
@media screen and (max-width: 760px) {
  .hero .hero-content {
    max-width: 70%;
    padding: 20svh 3vw 5svh;
  }
}
@media screen and (max-width: 600px) {
  .hero .hero-content {
    max-width: 100%;
    padding: 20svh 3vw 5svh;
  }
}
.hero .hero-content .hero-text {
  display: flex;
  flex-direction: column;
}
.hero .hero-content .hero-text * {
  font-family: "Times New Roman", serif;
}
.hero .hero-content .hero-text .hero-mark {
  font-size: 100px;
  font-weight: 500;
  color: #0DA2E6;
}
@media (max-width: 1300px) {
  .hero .hero-content .hero-text .hero-mark {
    font-size: 80px;
  }
}
@media (max-width: 760px) {
  .hero .hero-content .hero-text .hero-mark {
    font-size: 60px;
  }
}
.hero .hero-content .hero-text .hero-title {
  font-size: 60px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1300px) {
  .hero .hero-content .hero-text .hero-title {
    font-size: 40px;
  }
}
@media (max-width: 760px) {
  .hero .hero-content .hero-text .hero-title {
    font-size: 28px;
  }
}
.hero .hero-content .hero-text .hero-description {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  padding: 20px 0 10px;
  position: relative;
}
@media (max-width: 1300px) {
  .hero .hero-content .hero-text .hero-description {
    font-size: 24px;
  }
}
@media (max-width: 760px) {
  .hero .hero-content .hero-text .hero-description {
    font-size: 20px;
  }
}
.hero .hero-content .hero-text .hero-description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  background: #F4E1B1;
  background: radial-gradient(circle, rgb(244, 225, 177) 0%, rgba(78, 199, 242, 0) 100%);
}
.hero .hero-content .hero-text .hero-description::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  background: #F4E1B1;
  background: radial-gradient(circle, rgb(244, 225, 177) 0%, rgba(78, 199, 242, 0) 100%);
}
.hero .hero-content .hero-text .hero-description-mark {
  position: absolute;
  left: 40%;
  transform: translateX(-50%) translateY(50%);
  bottom: 0;
  width: 100px;
  height: 3px;
  background: #F4E1B1;
  background: radial-gradient(circle, rgb(255, 185, 8) 0%, rgba(78, 199, 242, 0) 100%);
  filter: blur(4px);
}
.hero .hero-content .hero-text .hero-description-mark::before, .hero .hero-content .hero-text .hero-description-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 100%;
  background: #fff3d4;
}
.hero .hero-content .hero-text .hero-description-mark::after {
  background: #ffffff;
  width: 10px;
}
.hero .hero-content .hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 7vh;
}
@media screen and (max-width: 1200px) {
  .hero .hero-content .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero .hero-content .hero-buttons .glow-btn {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid rgba(255, 200, 0, 0.7);
  border-color: #E6D190;
  border-width: 2px;
  background: linear-gradient(180deg, #f7b733 0%, #f5a623 50%, #d48806 100%);
  background: #E49A15;
  background: linear-gradient(175deg, rgb(228, 154, 21) 0%, rgb(115, 70, 10) 100%);
  box-shadow: 0 0 15px rgba(255, 180, 0, 0.5), inset 0 0 8px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
@media (max-width: 1300px) {
  .hero .hero-content .hero-buttons .glow-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.hero .hero-content .hero-buttons .glow-btn:hover {
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4);
}
.hero .hero-content .hero-buttons .glow-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(255, 200, 0, 0.8) 0%, rgba(255, 200, 0, 0.4) 40%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.hero .hero-content .hero-buttons .glow-btn::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(255, 200, 0, 0.8) 0%, rgba(255, 200, 0, 0.4) 40%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
.hero .hero-content .hero-buttons .glow-btn span {
  position: relative;
  z-index: 2;
}
.hero .hero-content .hero-buttons .glow-btn .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}
.hero .hero-content .hero-buttons .btn-secondary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  background: #fff;
}
@media (max-width: 1300px) {
  .hero .hero-content .hero-buttons .btn-secondary {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.hero .hero-content .hero-buttons .btn-secondary img {
  width: 40px;
  margin-right: 10px;
}
.hero .hero-content .hero-buttons .btn-secondary span {
  color: #2F5B9E;
  font-weight: 600;
}
.hero .hero-content .hero-buttons .btn-secondary span.red {
  color: #AF1E27;
}
.hero .hero-content .hero-buttons .btn {
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-content .hero-prem {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5vh;
  position: relative;
  padding: 10px 0 0;
}
@media screen and (max-width: 1500px) {
  .hero .hero-content .hero-prem {
    display: none;
  }
}
.hero .hero-content .hero-prem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  background: #F4E1B1;
  background: radial-gradient(circle, rgb(244, 225, 177) 0%, rgba(78, 199, 242, 0) 100%);
}
.hero .hero-content .hero-prem::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  background: #F4E1B1;
  background: radial-gradient(circle, rgb(244, 225, 177) 0%, rgba(78, 199, 242, 0) 100%);
}
.hero .hero-content .hero-prem-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 1;
  height: 90px;
  color: #fff;
}
.hero .hero-content .hero-prem-item:nth-child(1) {
  align-items: flex-start;
  justify-content: flex-end;
}
.hero .hero-content .hero-prem-item:nth-child(1) img {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 90px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1800px) {
  .hero .hero-content .hero-prem-item:nth-child(1) img {
    width: 100%;
  }
}
.hero .hero-content .hero-prem-item:nth-child(2) p {
  padding-right: 10%;
  padding-left: 0;
}
.hero .hero-content .hero-prem-item p {
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 500;
  color: #fff;
  padding-right: clamp(10%, 2vw, 30%);
  padding-top: 10px;
  padding-left: 120px;
}
@media (max-width: 1800px) {
  .hero .hero-content .hero-prem-item p {
    padding-right: 0;
  }
}
.hero .hero-content .hero-prem-item img {
  width: 175px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}/*# sourceMappingURL=app.css.map */