@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-emiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin-bottom: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
}
button:focus {
  outline: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

picture {
  height: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
}

::-webkit-scrollbar {
  width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 0px;
}

.s-icon {
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.container {
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 100%;
}

.heading-45-bold {
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 133%;
}

.heading-30 {
  font-size: 1.8755rem;
  line-height: 122%;
  letter-spacing: -1px;
}

.b-text-20 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 140%;
}

.b-text-16 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 150%;
}

.n-text-16 {
  font-size: 1rem;
  line-height: 150%;
}

.uppercase {
  text-transform: uppercase;
}

.flex-column-gap-96 {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.flex-column-gap-80 {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.flex-column-gap-40 {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.flex-column-gap-48 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.flex-column-gap-32 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flex-column-gap-24 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flex-column-gap-20 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.flex-column-gap-16 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flex-column-gap-12 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.animate__animated {
  visibility: hidden;
}

.animate__animated.animate__visible {
  visibility: visible;
}

@media screen and (max-width: 1023px) {
  .heading-45-bold {
    font-size: 2rem;
    line-height: 128%;
    letter-spacing: -1px;
  }
  .container {
    padding: 0 1.5rem;
  }
}
.header {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  top: 0;
  left: 0;
  z-index: 999;
}
.header .header-wrap {
  border-radius: 71px;
  background: rgba(227, 244, 255, 0.5);
  backdrop-filter: blur(38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.header .header-wrap .nav {
  width: 45%;
}
.header .header-wrap .nav .nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header-wrap .nav .nav-list .nav-link {
  padding: 10px;
  font-size: 0.9375rem;
  color: #3f3f3f;
  line-height: 150%;
  letter-spacing: 0.15px;
  font-weight: 600;
  transition: all 0.3s;
}
.header .header-wrap .nav .nav-list .nav-link.active, .header .header-wrap .nav .nav-list .nav-link:hover {
  color: #0070B9;
}
.header .header-wrap .logo-box {
  width: 126px;
}
.header .header-wrap .logo-box img {
  width: 100%;
}
.header .header-wrap .header-desk-right {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.625rem;
}
.header .header-wrap .header-desk-right .mail-link {
  padding: 10px;
  font-size: 0.9375rem;
  color: #3f3f3f;
  line-height: 150%;
  letter-spacing: 0.15px;
  font-weight: 600;
  transition: all 0.3s;
}
.header .header-wrap .header-desk-right .book-button {
  padding: 10px 38px 10px 16px;
  border-radius: 50px;
  background: url("./images/white-right-arrow.svg") no-repeat right 8px center, linear-gradient(90deg, #0070B9 0%, #A6DBFE 100%);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 150%;
  font-weight: 700;
  font-size: 0.9375rem;
}
.header .header-wrap .header-desk-right .languages {
  position: relative;
  cursor: pointer;
}
.header .header-wrap .header-desk-right .languages .list-language {
  position: absolute;
  top: 120%;
  right: 0;
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  /* ---- hiệu ứng fade + slide ---- */
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.25s ease;
  /* -------------------------------- */
}
.header .header-wrap .header-desk-right .languages .list-language img {
  width: 24px;
  cursor: pointer;
}
.header .header-wrap .header-desk-right .languages.open .list-language {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header .header-wrap .menu-mobile {
  display: none;
}
.header .header-wrap .menu-button {
  display: none;
}

@media screen and (max-width: 1023px) {
  .header {
    position: fixed;
    padding: 0;
  }
  .header .container {
    padding: 0;
  }
  .header .header-wrap {
    border-radius: 0;
    padding: 16px 24px;
  }
  .header .header-wrap .nav {
    display: none;
  }
  .header .header-wrap .header-desk-right {
    display: none;
  }
  .header .header-wrap .menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(80, 80, 80, 0.5);
    z-index: 9999;
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
    background-color: #0070B9;
    height: 100%;
    color: #ffffff;
    font-size: 1.125rem;
    margin-left: auto;
    /* ---- Thêm đoạn này ---- */
    transform: translateX(100%);
    transition: transform 0.35s ease;
    /* ------------------------ */
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner.active {
    transform: translateX(0);
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner .top .mobile-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner .top .mobile-header .white-logo {
    width: 120px;
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner .top .mobile-header .close-button {
    width: 1.5rem;
    height: 1.5rem;
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner .top .group-link a {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner .top .group-link a:hover {
    background-color: #ED9B33;
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner .bottom a {
    padding: 2rem 1.5rem;
    text-align: center;
    display: block;
  }
  .header .header-wrap .menu-mobile .menu-mobile-inner .bottom a.current-lang {
    color: rgba(255, 255, 255, 0.5);
  }
  .header .header-wrap .menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .header .header-wrap .menu-button span {
    width: 24px;
    height: 2px;
    background: #0070B9;
    transition: all 0.5s;
    border-radius: 8px;
  }
}
.footer {
  background: #0070B9;
  color: #fff;
}
.footer .footer-wrap {
  padding: 6.5625rem 3rem;
  display: flex;
  justify-content: space-between;
}
.footer .footer-wrap .footer-left {
  width: 100%;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer .footer-wrap .footer-left .footer-logo {
  width: 163px;
}
.footer .footer-wrap .footer-left .list-social {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer .footer-wrap .footer-left .list-social .s-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.footer .footer-wrap .footer-left .list-social .s-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer .footer-wrap .footer-right {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}
.footer .footer-wrap .footer-right > div {
  font-weight: 700;
}
.footer .footer-wrap .footer-right p.n-text-16 {
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 1.25rem;
  color: #000;
}
.footer .footer-wrap .footer-right .link-web {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #ED9B33;
}
.footer .second {
  border-top: 1px solid rgba(196, 232, 255, 0.5);
}
.footer .second .footer-bottom {
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #B9E3FF;
}
.footer .second .footer-bottom .list-policy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}

.back-to-top {
  position: fixed;
  right: 38px;
  bottom: 30px;
  width: 3.75rem;
  height: 3.75rem;
  display: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(90deg, #0070B9 0%, #A6DBFE 100%);
  z-index: 55;
  transition: opacity 0.4s ease;
}
.back-to-top.show {
  display: flex;
}
.back-to-top.visible {
  opacity: 1;
}
.back-to-top img {
  width: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .footer .footer-wrap {
    padding: 3.75rem 0;
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer .footer-wrap .footer-left {
    gap: 20px;
  }
  .footer .footer-wrap .footer-left .list-social {
    gap: 20px;
  }
  .footer .footer-wrap .footer-left .list-social .s-item {
    gap: 1rem;
  }
  .footer .footer-wrap .footer-left .list-social .s-item img {
    width: 17px;
    height: 17px;
  }
  .footer .footer-wrap .footer-right {
    margin-top: 0;
    gap: 1rem;
    width: 100%;
  }
  .footer .footer-wrap .footer-right p.n-text-16 {
    padding: 15px;
  }
  .footer .footer-wrap .footer-right .link-web {
    gap: 8px;
  }
  .footer .second .footer-bottom {
    text-align: center;
    justify-content: center;
  }
  .footer .second .footer-bottom > .n-text-16 {
    font-size: 0.875rem;
  }
  .footer .second .footer-bottom .list-policy {
    display: none;
  }
  .back-to-top {
    position: fixed;
    right: 24px;
    bottom: 30px;
    width: 3rem;
    height: 3rem;
  }
  .back-to-top img {
    width: 1.5rem;
  }
}
.book-button {
  padding: 10px 38px 10px 16px;
  border-radius: 50px;
  background: url("./images/white-right-arrow.svg") no-repeat right 10px center, linear-gradient(90deg, #0070B9 0%, #A6DBFE 100%);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 150%;
  font-weight: 700;
  font-size: 0.9375rem;
}
.book-button:hover {
  color: #ffffff;
}
/*# sourceMappingURL=style.css.map */
