/*! formalize.css | MIT License | github.com/interacthings/formalize */
*, *:before, *:after {
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  text-rendering: optimizeLegibility; }

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

a:active, a:focus, a:hover {
  outline: none;
  color: currentColor;
  text-decoration: none; }

button:active, button:focus, button:hover {
  outline: none;
  color: currentColor;
  text-decoration: none; }

img {
  vertical-align: middle; }

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, figure, p, pre, fieldset, ul, ol, menu, form {
  margin: 0; }

button, fieldset, iframe {
  border: 0; }

fieldset, ul, ol, button, menu {
  padding: 0; }

ol, ul {
  list-style: none; }

textarea {
  resize: vertical; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

td {
  padding: 0; }

input:focus, textarea:focus {
  outline: none;
  box-shadow: none; }

body {
  font-family: "Work Sans", sans-serif; }

.container {
  max-width: 1600px;
  padding-left: 45px;
  padding-right: 45px;
  margin: 0 auto; }
  .container-left {
    padding-left: calc((100vw - 1725px) / 2); }
  .container-right {
    padding-right: calc((100vw - 1725px) / 2); }

.Header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color: #0D1020;
  padding: 30px 0;
  z-index: 99;
  transition: all 300ms; }
  .Header.scroll {
    background-color: #0D1020; }
  .Header.active {
    background-color: #0D1020; }
    .Header.active .Header-menu {
      opacity: 1;
      visibility: visible; }
  .Header-in {
    display: flex;
    align-items: center; }
  .Header-home {
    background-color: transparent; }
  .Header-logo {
    display: flex;
    margin-right: clamp(20px, 2.1vw, 40px); }
    .Header-logo img {
      width: 100%; }
  .Header-menu {
    width: 100%;
    display: flex;
    align-items: center;
    transition: all 300ms; }
    .Header-menu-item {
      font-size: clamp(12px, 1vw, 14px);
      font-weight: 500;
      color: #b9bdd3;
      margin-right: clamp(12px, 1.5vw, 24px);
      transition: all 300ms; }
      .Header-menu-item:hover, .Header-menu-item.active {
        color: #ff594f; }
    .Header-menu-buttons {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto; }
      .Header-menu-buttons a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 16px;
        border-radius: 56px;
        font-size: 13px;
        font-weight: 500;
        transition: all 300ms; }
      .Header-menu-buttons .Login {
        border: solid 1px #b9bdd3;
        color: #b9bdd3; }
        .Header-menu-buttons .Login:hover {
          background-color: #b9bdd3;
          color: #0D1020; }
      .Header-menu-buttons .Register {
        background-image: linear-gradient(70deg, #ff594f 3%, #e8671e 100%);
        color: #fff; }
        .Header-menu-buttons .Register:hover {
          transform: scale(0.98); }
  .Header-button {
    display: none;
    background-color: transparent; }

.Main {
  padding-top: 60px; }
  .Main-home {
    padding-top: 0; }

.Banner {
  height: 100vh;
  background-size: cover;
  background-position: top left; }
  .Banner .container {
    width: 100%;
    height: 100%; }
  .Banner-in {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .Banner-text {
    display: flex;
    flex-direction: column; }
    .Banner-text h1 {
      font-size: clamp(24px, 2.7vw, 52px);
      font-weight: 500;
      letter-spacing: -1.04px;
      color: #fff;
      margin-bottom: clamp(12px, 1.5vw, 24px); }
      .Banner-text h1 span {
        display: block;
        background-image: linear-gradient(85deg, #ff594f 2%, #e8671e 100%);
        font-weight: bold;
        letter-spacing: -1.04px;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent; }
    .Banner-text p {
      max-width: clamp(550px, 45.7vw, 875px);
      font-size: clamp(11px, 0.8vw, 13px);
      line-height: 1.62;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: clamp(16px, 2.4vw, 46px); }
    .Banner-text-links {
      display: flex;
      align-items: center;
      gap: 10px; }
      .Banner-text-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: -moz-max-content;
        width: max-content;
        padding: 16px 20px;
        border-radius: 10px;
        font-size: clamp(12px, 0.8vw, 14px);
        font-weight: 500;
        letter-spacing: -0.28px;
        text-align: center;
        transition: all 300ms; }
        .Banner-text-links a.orange {
          background-image: linear-gradient(74deg, #ff594f 3%, #e8671e 100%);
          color: #fff;
          transform: scale(0.98); }
        .Banner-text-links a.white {
          color: rgba(255, 255, 255, 0.5);
          border: solid 1px rgba(255, 255, 255, 0.5); }
          .Banner-text-links a.white:hover {
            background-color: rgba(255, 255, 255, 0.5);
            color: #0D1020; }
  .Banner-slider {
    width: clamp(400px, 27vw, 500px);
    overflow: hidden;
    position: relative;
    margin-top: auto;
    margin-bottom: 60px; }
    .Banner-slider-item {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 12px 12px 20px;
      border-radius: 20px;
      border: solid 1px #1e2549;
      background-color: #03081f;
      position: relative; }
      .Banner-slider-item img {
        width: 100%;
        border-radius: 12px; }
      .Banner-slider-item-img {
        position: relative; }
        .Banner-slider-item-img:before {
          content: "";
          display: inline-block;
          width: 100%;
          height: 100%;
          position: absolute;
          left: 0;
          right: 0;
          border-radius: 12px;
          background-image: linear-gradient(to bottom, rgba(35, 43, 84, 0) 40%, #232b54); }
      .Banner-slider-item-text {
        width: 100%;
        position: absolute;
        padding-left: 34px;
        padding-right: 34px;
        left: 0;
        bottom: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 2; }
        .Banner-slider-item-text-in {
          display: flex;
          flex-direction: column; }
          .Banner-slider-item-text-in span {
            width: -moz-max-content;
            width: max-content;
            font-size: 11px;
            font-weight: 500;
            color: #fff;
            padding: 8px;
            border-radius: 6px;
            background-image: linear-gradient(74deg, #ff594f 3%, #e8671e 100%);
            margin-bottom: 10px; }
          .Banner-slider-item-text-in b {
            font-size: clamp(16px, 1.5vw, 24px);
            font-weight: 500;
            letter-spacing: -0.96px;
            color: #fff;
            max-width: clamp(200px, 15.7vw, 300px); }
        .Banner-slider-item-text-icon {
          position: absolute;
          right: 34px;
          bottom: 70px;
          z-index: 2;
          width: clamp(36px, 3vw, 57px);
          height: clamp(36px, 3vw, 57px);
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 8px;
          border: solid 1px #fff;
          margin-top: auto;
          color: #fff;
          transition: all 300ms; }
          .Banner-slider-item-text-icon svg {
            width: clamp(16px, 1.5vw, 25px);
            height: clamp(16px, 1.5vw, 25px); }
      .Banner-slider-item:hover .Banner-slider-item-text-icon {
        background-color: #fff;
        color: #ff594f; }
    .Banner-slider .swiper-pagination {
      position: static;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px; }
      .Banner-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #434c7a; }
        .Banner-slider .swiper-pagination-bullet-active {
          background-color: #eb6624; }

.Members-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 5.2vw, 100px) 0; }

.Members-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(16px, 2.4vw, 46px); }
  .Members-head-left {
    display: flex;
    flex-direction: column;
    gap: 12px; }
    .Members-head-left h2, .Members-head-left h1 {
      font-size: clamp(24px, 2.1vw, 40px);
      font-weight: 300;
      letter-spacing: -2.4px;
      color: #0d1332; }
      .Members-head-left h2 b, .Members-head-left h1 b {
        font-weight: bold; }
    .Members-head-left span {
      font-size: clamp(11px, 0.8vw, 13px);
      font-weight: normal;
      letter-spacing: -0.52px;
      color: #c24000;
      padding: clamp(10px, 0.8vw, 12px) clamp(10px, 1vw, 16px);
      border-radius: 6px;
      border: solid 1px rgba(235, 102, 36, 0.2);
      background-color: #ffdedb; }
  .Members-head-right p {
    max-width: clamp(350px, 22.2vw, 425px);
    font-size: clamp(14px, 1vw, 16px);
    font-weight: normal;
    letter-spacing: -0.64px;
    color: #43454a; }

.Members-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; }
  .Members-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #e3ebef; }
    .Members-list-item-img {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      width: 100%;
      background-color: #f9fbfc;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px; }
      .Members-list-item-img img {
        width: 100%;
        max-width: 160px;
        max-height: 55px;
        -o-object-fit: contain;
           object-fit: contain; }
    .Members-list-item span {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: -0.48px;
      text-align: center;
      color: #8a8a8a;
      padding: 20px; }

.Members-more {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 40px;
  background-color: #eb6624;
  border: 1px solid #eb6624;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.48px;
  color: #fff;
  margin-top: 40px; }

.Notice {
  background-color: #e3ebef;
  padding-top: clamp(40px, 3.65vw, 70px);
  padding-bottom: clamp(60px, 6vw, 110px);
  position: relative; }
  .Notice-in {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .Notice-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(24px, 2.3vw, 44px);
    width: 100%;
    max-width: 1255px; }
    .Notice-head h3 {
      font-size: clamp(20px, 1.9vw, 36px);
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -1.44px;
      text-align: center;
      color: #02061b; }
    .Notice-head a {
      padding: 12px 20px;
      border-radius: 44px;
      background-color: #fff;
      border: 1px solid #fff;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -0.52px;
      color: #000;
      transition: all 300ms; }
      .Notice-head a:hover {
        background-color: #000;
        color: #fff; }
  .Notice-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    width: 100%; }
    .Notice-slider .swiper {
      width: 100%;
      max-width: 1255px;
      overflow: hidden; }
    .Notice-slider .swiper-button-next, .Notice-slider .swiper-button-prev {
      position: static;
      width: clamp(40px, 3.125vw, 60px);
      height: clamp(40px, 3.125vw, 60px);
      background-color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000; }
      .Notice-slider .swiper-button-next:hover, .Notice-slider .swiper-button-prev:hover {
        background-color: #fff;
        color: #000; }
      .Notice-slider .swiper-button-next:before, .Notice-slider .swiper-button-next:after, .Notice-slider .swiper-button-prev:before, .Notice-slider .swiper-button-prev:after {
        display: none; }
    .Notice-slider .swiper-pagination {
      position: static;
      align-items: center;
      justify-content: center;
      gap: 6px;
      display: none; }
      .Notice-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #434c7a; }
        .Notice-slider .swiper-pagination-bullet-active {
          background-color: #eb6624; }
  .Notice-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: 30px;
    border: solid 1px #e3ebef;
    background-color: #f1f6f9; }
    .Notice-item img {
      width: 100%;
      border-radius: 18px;
      margin-bottom: 8px; }
    .Notice-item-in {
      display: flex;
      flex-direction: column;
      padding: 20px 22px;
      border-radius: 12px;
      background-color: #fff;
      gap: 12px; }
    .Notice-item-date {
      display: flex;
      align-items: center;
      gap: 10px; }
      .Notice-item-date p {
        font-size: 14px;
        font-weight: normal;
        letter-spacing: -0.56px;
        color: #02061b; }
    .Notice-item-title {
      font-size: clamp(16px, 1.1vw, 20px);
      font-weight: normal;
      letter-spacing: -0.8px;
      color: #02061b; }
    .Notice-item-text {
      opacity: 0.5;
      font-size: 14px;
      font-weight: normal;
      line-height: 1.4;
      letter-spacing: -0.56px;
      color: #0b0c17; }

.Info {
  background-image: radial-gradient(circle at 15% 259%, #9b3400, #02061b 46%);
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.1vw, 22px); }
  .Info-item {
    padding: 34px clamp(40px, 3.2vw, 60px);
    border-radius: 30px;
    background-color: #e3ebef;
    position: relative; }
    .Info-item-title {
      display: flex;
      align-items: center;
      gap: 20px; }
      .Info-item-title b {
        font-size: clamp(48px, 3.9vw, 74px);
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: -2.96px;
        color: #000;
        font-family: "Inter", sans-serif; }
      .Info-item-title h5 {
        font-size: clamp(14px, 1.1vw, 20px);
        font-weight: 500;
        letter-spacing: -0.8px;
        color: #000;
        font-family: "Inter", sans-serif; }
    .Info-item p {
      max-width: 270px;
      opacity: 0.5;
      font-size: 14px;
      line-height: 1.4;
      letter-spacing: -0.56px;
      color: #0b0c17; }
    .Info-item svg {
      position: absolute;
      right: 0;
      bottom: 0; }

.Footer {
  padding: 80px 0; }
  .Footer-in {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .Footer-left {
    display: flex;
    flex-direction: column; }
    .Footer-left-logo {
      max-width: 360px;
      margin-bottom: 30px; }
      .Footer-left-logo img {
        width: 100%; }
    .Footer-left-copyright {
      font-size: 13px;
      font-weight: normal;
      letter-spacing: -0.52px;
      color: #000; }

.Social {
  display: flex;
  align-items: center;
  gap: 12px; }
  .Social-item {
    width: clamp(36px, 2.7vw, 52px);
    height: clamp(36px, 2.7vw, 52px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    border: solid 1px #dde0ea;
    color: #717276;
    transition: all 300ms; }
    .Social-item svg {
      width: clamp(14px, 1.1vw, 20px);
      height: clamp(14px, 1.1vw, 20px); }
    .Social-item:hover {
      background-color: #717276;
      color: #fff; }

.N_Banner {
  padding: 120px 0; }
  .N_Banner .swiper-slide {
    opacity: 0.3; }
    .N_Banner .swiper-slide-active {
      opacity: 1; }
  .N_Banner .swiper-button-next, .N_Banner .swiper-button-prev {
    width: clamp(40px, 3.125vw, 60px);
    height: clamp(40px, 3.125vw, 60px);
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin: 0;
    top: 40%;
    transform: translateY(-50%); }
    .N_Banner .swiper-button-next:hover, .N_Banner .swiper-button-prev:hover {
      background-color: #fff;
      color: #000; }
    .N_Banner .swiper-button-next:before, .N_Banner .swiper-button-next:after, .N_Banner .swiper-button-prev:before, .N_Banner .swiper-button-prev:after {
      display: none; }
  .N_Banner .swiper-button-prev {
    left: 12%; }
  .N_Banner .swiper-button-next {
    right: 12%;
    left: unset; }
  .N_Banner-item {
    display: flex;
    align-items: center;
    padding: 0 20px; }
    .N_Banner-item-img {
      width: 100%;
      max-width: 865px;
      flex-shrink: 0; }
      .N_Banner-item-img img {
        width: 100%;
        border-radius: 18px; }
    .N_Banner-item-text {
      position: absolute;
      display: flex;
      flex-direction: column;
      padding: clamp(24px, 2.5vw, 48px) clamp(24px, 3.2vw, 60px);
      border-radius: 30px;
      background-color: #fff;
      left: 55%; }
      .N_Banner-item-text-head {
        font-size: clamp(16px, 1.1vw, 20px);
        font-weight: bold;
        letter-spacing: -0.8px;
        color: #eb6624;
        margin-bottom: clamp(20px, 1.78vw, 34px); }
      .N_Banner-item-text-date {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px; }
        .N_Banner-item-text-date p {
          font-size: clamp(12px, 0.8vw, 14px);
          font-weight: normal;
          letter-spacing: -0.56px;
          color: #000; }
      .N_Banner-item-text-title {
        font-size: clamp(16px, 1.1vw, 20px);
        font-weight: normal;
        color: #000;
        margin-bottom: 16px; }
      .N_Banner-item-text-text {
        max-width: 400px;
        opacity: 0.5;
        font-size: clamp(12px, 0.8vw, 14px);
        font-weight: normal;
        line-height: 1.4;
        letter-spacing: -0.56px;
        color: #000;
        margin-bottom: clamp(20px, 2.1vw, 40px); }
      .N_Banner-item-text a {
        width: -moz-max-content;
        width: max-content;
        padding: 12px 20px;
        border-radius: 44px;
        background-color: #eb6624;
        border: 1px solid #eb6624;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.1;
        letter-spacing: -0.52px;
        color: #fff;
        transition: all 300ms; }
        .N_Banner-item-text a:hover {
          background-color: #fff;
          color: #eb6624; }

.News {
  width: 100%;
  padding: 84px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .News-in {
    max-width: 1255px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 64px; }

.Pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; }
  .Pagination .dots {
    margin: 0 8px;
    text-align: center;
    color: #e4e9eb;
    font-size: 20px;
    margin-bottom: 12px; }
  .Pagination a {
    width: clamp(44px, 2.82vw, 54px);
    height: clamp(44px, 2.82vw, 54px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: solid 1px #e4e9eb;
    background-color: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #02061b;
    transition: all 300ms; }
    .Pagination a svg {
      transition: all 300ms;
      color: #9EB0B7; }
    .Pagination a:hover, .Pagination a.active {
      background-color: #eb6624;
      color: #fff; }
      .Pagination a:hover svg, .Pagination a.active svg {
        color: #fff; }

.Detail {
  position: relative; }
  .Detail:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 402px;
    background-color: #0d1020;
    position: absolute;
    left: 0;
    top: -65px; }
  .Detail .container {
    max-width: 865px; }
  .Detail-in {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 100px;
    padding-bottom: 20%; }
  .Detail-img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: clamp(20px, 3.2vw, 60px); }
  .Detail-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px; }
    .Detail-date p {
      font-size: 14px;
      font-weight: normal;
      font-stretch: normal;
      font-style: normal;
      line-height: normal;
      letter-spacing: -0.56px;
      text-align: left;
      color: #02061b; }
  .Detail-title {
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 500;
    letter-spacing: -0.96px;
    color: #02061b;
    margin-bottom: 12px; }
  .Detail-content {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.5vw, 24px);
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.56px;
    color: #0b0c17; }
    .Detail-content p {
      font-size: 14px;
      font-weight: normal;
      line-height: 1.4;
      letter-spacing: -0.56px;
      color: #0b0c17;
      opacity: 0.5; }
  .Detail-docs {
    display: flex;
    flex-direction: column;
    padding: clamp(16px, 1.57vw, 30px);
    border-radius: 20px;
    border: dashed 1px #e0e7ec;
    margin: clamp(20px, 2.09vw, 40px) 0; }
    .Detail-docs h2 {
      font-size: clamp(14px, 1vw, 16px);
      font-weight: 500;
      letter-spacing: -0.64px;
      color: #02061b;
      margin-bottom: clamp(14px, 1vw, 16px); }
    .Detail-docs-item {
      padding: clamp(14px, 1.1vw, 22px);
      border-radius: 17px;
      background-color: #f1f6f9;
      display: flex;
      align-items: center;
      gap: clamp(12px, 1vw, 18px);
      margin-bottom: 6px; }
      .Detail-docs-item p {
        font-size: clamp(14px, 1vw, 16px);
        font-weight: 500;
        letter-spacing: -0.64px;
        color: #02061b; }
  .Detail-gallery {
    width: 100%;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px; }
    .Detail-gallery-item {
      display: flex;
      border-radius: 10px; }
      .Detail-gallery-item img {
        width: 100%;
        border-radius: 10px; }

.Contact {
  background-color: #0d1020;
  min-height: 100dvh;
  position: relative; }
  .Contact:before {
    content: "";
    display: inline-block;
    width: 60%;
    height: 100%;
    background-image: url(../images/contact.webp);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0; }
  .Contact .container {
    max-width: 914px; }
  .Contact-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 1.78vw, 34px);
    padding-top: 180px; }
  .Contact-left {
    height: -moz-max-content;
    height: max-content;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    -webkit-backdrop-filter: blur(34px);
    backdrop-filter: blur(34px);
    border: solid 1px #212123;
    background-image: linear-gradient(to bottom, #060813 0%, rgba(28, 28, 28, 0) 100%);
    padding: clamp(24px, 2.6vw, 50px); }
    .Contact-left h1 {
      font-size: clamp(24px, 1.46vw, 28px);
      font-weight: 500;
      color: #fff;
      margin-bottom: clamp(20px, 2.6vw, 50px); }
    .Contact-left p {
      max-width: 188px;
      font-size: 13px;
      font-weight: 500;
      color: #fff;
      margin-bottom: clamp(14px, 1vw, 18px); }
    .Contact-left a {
      font-size: 13px;
      font-weight: 500;
      color: #fff;
      transition: all 300ms; }
      .Contact-left a.phone {
        font-size: clamp(14px, 1vw, 18px);
        font-weight: bold; }
      .Contact-left a:hover {
        color: #eb6624; }
    .Contact-left .Social {
      margin-top: clamp(16px, 2.6vw, 50px); }
      .Contact-left .Social-item {
        color: #717276;
        border-color: #717276; }
  .Contact-form {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    -webkit-backdrop-filter: blur(34px);
    backdrop-filter: blur(34px);
    border: solid 1px #212123;
    background-image: linear-gradient(to bottom, #060813 0%, rgba(28, 28, 28, 0));
    padding: 30px; }
    .Contact-form h2 {
      font-size: clamp(24px, 1.46vw, 28px);
      font-weight: 500;
      color: #fff;
      margin-bottom: 14px; }
    .Contact-form p {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: clamp(16px, 1.67vw, 32px); }
    .Contact-form-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px; }
      .Contact-form-item span {
        font-size: 13px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: rgba(255, 255, 255, 0.4);
        padding-left: clamp(14px, 1.2vw, 22px); }
      .Contact-form-item input, .Contact-form-item textarea {
        border-radius: 8px;
        border: solid 1px #212123;
        background-color: #000;
        padding: clamp(14px, 1.2vw, 22px);
        font-size: 13px;
        font-weight: 500;
        color: white; }
        .Contact-form-item input::-moz-placeholder, .Contact-form-item textarea::-moz-placeholder {
          font-size: 13px;
          font-weight: 500;
          color: rgba(255, 255, 255, 0.4); }
        .Contact-form-item input::placeholder, .Contact-form-item textarea::placeholder {
          font-size: 13px;
          font-weight: 500;
          color: rgba(255, 255, 255, 0.4); }
    .Contact-form button {
      width: -moz-max-content;
      width: max-content;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 500;
      color: #d2caff;
      padding: 16px 34px;
      border-radius: 4px;
      background-color: #eb6624;
      border: 1px solid #eb6624;
      margin-left: auto;
      margin-top: 14px;
      transition: all 300ms; }
      .Contact-form button:hover {
        background-color: transparent;
        color: #eb6624; }
  .Contact-copyright {
    position: fixed;
    left: 0;
    bottom: clamp(24px, 2.35vw, 45px); }
    .Contact-copyright p {
      font-size: 13px;
      font-weight: normal;
      letter-spacing: -0.52px;
      color: #fff; }

@media (max-width: 1400px) {
  .Notice-head {
    max-width: calc(100% - 100px); }
  .Notice-slider .swiper {
    width: 100%;
    max-width: calc(100% - 100px); } }

@media (max-width: 1100px) {
  .Members-list {
    grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 991px) {
  .Header {
    padding: 16px 0; }
    .Header-in {
      justify-content: space-between; }
    .Header-logo {
      max-width: 100px; }
    .Header-menu {
      width: 100vw;
      height: calc(100dvh - 65px);
      position: absolute;
      left: 0;
      right: 0;
      top: 65px;
      background-color: #0D1020;
      flex-direction: column-reverse;
      align-items: center;
      justify-content: flex-end;
      padding: 40px 0;
      gap: 24px;
      opacity: 0;
      visibility: hidden; }
      .Header-menu-buttons {
        margin-right: auto;
        margin-bottom: 20px; }
    .Header-button {
      display: flex; }
  .Banner {
    height: auto;
    padding: 20% 0; }
    .Banner-text p {
      font-size: 12px; }
    .Banner-slider {
      display: none; }
  .N_Banner {
    padding: 80px 0;
    overflow: hidden; }
    .N_Banner .swiper-button-next, .N_Banner .swiper-button-prev {
      display: none; }
  .News-in {
    grid-template-columns: 1fr 1fr; }
  .Detail:before {
    height: 300px; }
  .Detail .container {
    max-width: 865px; }
  .Detail-in {
    padding-top: 50px; }
  .Contact-in {
    padding-top: 100px; } }

@media (max-width: 768px) {
  .Members-head {
    width: 100%;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column; }
  .Members-list {
    grid-template-columns: repeat(2, 1fr); }
  .Info {
    padding: 40px 16px;
    flex-direction: column; }
    .Info-item {
      width: 100%;
      padding: 34px clamp(40px, 3.2vw, 60px);
      border-radius: 30px;
      background-color: #e3ebef;
      position: relative; }
      .Info-item-title {
        display: flex;
        align-items: center;
        gap: 20px; }
        .Info-item-title b {
          font-size: clamp(48px, 3.9vw, 74px);
          font-weight: 500;
          line-height: 1.2;
          letter-spacing: -2.96px;
          color: #000;
          font-family: "Inter", sans-serif; }
        .Info-item-title h5 {
          font-size: clamp(14px, 1.1vw, 20px);
          font-weight: 500;
          letter-spacing: -0.8px;
          color: #000;
          font-family: "Inter", sans-serif; }
      .Info-item p {
        max-width: 270px;
        opacity: 0.5;
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: -0.56px;
        color: #0b0c17; }
      .Info-item svg {
        position: absolute;
        right: 0;
        bottom: 0; }
  .Footer {
    padding: 30px 0; }
    .Footer-in {
      flex-direction: column;
      justify-content: center;
      gap: 20px; }
    .Footer-left {
      align-items: center; }
      .Footer-left-logo {
        max-width: 300px; }
  .Detail-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; }
    .Detail-gallery-item {
      border-radius: 6px; }
      .Detail-gallery-item img {
        border-radius: 6px; }
  .Contact:before {
    width: 100%; }
  .Contact-in {
    grid-template-columns: 1fr;
    padding-bottom: 60px; }
  .Contact-copyright {
    position: static;
    background-color: #0d1020;
    padding: 20px 0; } }

@media (max-width: 650px) {
  .Notice-head {
    width: 100%;
    max-width: 100%; }
  .Notice-slider {
    display: flex;
    flex-direction: column; }
    .Notice-slider .swiper {
      max-width: 100%; }
    .Notice-slider .swiper-button-next, .Notice-slider .swiper-button-prev {
      display: none; }
    .Notice-slider .swiper-pagination {
      display: flex;
      margin-top: 16px; }
  .N_Banner {
    padding: 80px 20px; }
    .N_Banner-item {
      flex-direction: column;
      padding: 0; }
      .N_Banner-item-text {
        box-sizing: border-box;
        width: 100%;
        position: static;
        margin-top: -40px; }
  .News-in {
    grid-template-columns: 1fr; } }

@media (min-width: 991px) and (max-width: 1800px) {
  .container-left {
    padding-left: 45px; }
  .container-right {
    padding-right: 45px; } }

@media (max-width: 991px) {
  .container {
    padding-left: 20px;
    padding-right: 20px; }
    .container-left {
      padding-left: 20px; }
    .container-right {
      padding-right: 20px; } }
