/* start css header */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --blue-100: #395eef;
  --white-100: white;
  --white-200: #e4e6e7;
  --white-300: #c9cccf;
  --white-400: #a1a6aa;
  --white-500: #798086;
  --black-100: #0a0d0f;
  --black-200: #080a0c;
  --black-300: #060809;
  --black-400: #040506;
  --black-500: #020303;
  --brown-100: #d0c8c9;
  --brown-200: #b8adae;
  --brown-300: #a09293;
  --brown-400: #887778;
  --brown-500: #6d5f60;
  --text-xs: clamp(0.82rem, calc(0.8rem + 0.14vw), 0.9rem);
  --text-sm: clamp(0.91rem, calc(0.88rem + 0.14vw), 1rem);
  --text-md: clamp(1rem, calc(0.97rem + 0.14vw), 1.08rem);
  --text-lg: clamp(1.09rem, calc(1.06rem + 0.14vw), 1.18rem);
  --text-xl: clamp(1.19rem, calc(1.16rem + 0.14vw), 1.27rem);
  --text-xxl: clamp(1.28rem, calc(1.25rem + 0.14vw), 1.38rem);
  --display-xs: clamp(1.56rem, calc(1.44rem + 0.55vw), 1.94rem);
  --display-sm: clamp(1.95rem, calc(1.75rem + 0.92vw), 2.57rem);
  --display-md: clamp(2.44rem, calc(2.11rem + 1.45vw), 3.42rem);
  --display-lg: clamp(3.05rem, calc(2.55rem + 2.22vw), 4.55rem);
  --display-xl: clamp(3.82rem, calc(3.07rem + 3.32vw), 6.05rem);
  --display-xxl: clamp(4.77rem, calc(3.67rem + 4.86vw), 8.05rem);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Inter", system-ui, ui-sans-serif, sans-serif;
  font-size: var(--text-md);
  font-weight: normal;
  line-height: 1.5;
  color: var(--black-500);
  background-color: var(--white-100);
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  /* padding: 0 1.25rem; */
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.text-xs {
  font-size: var(--text-xs);
  line-height: inherit;
}

.text-sm {
  font-size: var(--text-sm);
  line-height: inherit;
}

.text-md {
  font-size: var(--text-md);
  line-height: inherit;
}

.text-lg {
  font-size: var(--text-lg);
  line-height: inherit;
}

.text-xl {
  font-size: var(--text-xl);
  line-height: inherit;
}

.text-xxl {
  font-size: var(--text-xxl);
  line-height: inherit;
}

.heading-xs {
  font-size: var(--display-xs);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-sm {
  font-size: var(--display-sm);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-md {
  font-size: var(--display-md);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-lg {
  font-size: var(--display-lg);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-xl {
  font-size: var(--display-xl);
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-xxl {
  font-size: var(--display-xxl);
  line-height: 1.15;
  letter-spacing: -1px;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semi {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-bolder {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.badge {
  font-family: inherit;
  font-size: var(--text-xs);
  font-weight: normal;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 1rem;
  text-transform: unset;
}

.badge-primary {
  padding: 0.2rem 0.65rem;
  color: var(--white-100);
  background-color: var(--brown-500);
}

.badge-darken {
  padding: 0.2rem 0.65rem;
  color: var(--white-100);
  background-color: var(--black-500);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: normal;
  line-height: inherit;
  text-align: center;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.btn-primary {
  padding: 0.65rem 1.75rem;
  color: var(--white-100);
  background-color: var(--brown-500);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  padding: 0.65rem 1.75rem;
  color: var(--white-100);
  background-color: var(--black-500);
  box-shadow: var(--shadow-medium);
}

.btn-neutral {
  padding: 0.65rem 1.75rem;
  color: var(--black-300);
  background-color: var(--white-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 16px;
  background: linear-gradient(
    270deg,
    rgba(57, 94, 239, 0.6) 0%,
    rgba(96, 206, 147, 0.6) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: auto;
  margin: 0 auto;
  /* background-color: var(--white-100); */
  /* box-shadow: var(--shadow-medium); */
  padding: 0 16px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-500);
  text-transform: uppercase;
}

.carousel-indicators .active {
  background: linear-gradient(90deg, #60ce93 0%, #395eef 100%);
}

.carousel-indicators [data-bs-target] {
  width: 62px;
  height: 4px;
  border-radius: 10px;
  border-top: none;
  border-bottom: none;
}

.menu {
  z-index: 1000001;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* background-color: var(--white-100); */
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}

.menu.is-active {
  left: 0;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  margin-top: 8rem;
}

.menu-link {
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.5;
  /* color: var(--black-500); */
  color: white;
  /* text-transform: uppercase; */
  transition: all 0.3s ease;
}

.menu-link-in-box {
  position: fixed;
  display: none;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media only screen and (max-width: 768px) {
  .menu-link-in-box {
    /* visibility: hidden; */
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .menu-link-in-box-mobile {
    /* visibility: hidden; */
    display: none !important;
  }
}

.menu-link-icon {
  margin-right: 24.89px;
}

@media only screen and (min-width: 768px) {
  .menu-link-icon:hover .menu-link-in-box {
    display: block;
  }
}

.menu-link-in {
  /* position: fixed; */
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.99) 100%
  );
  padding: 0px 30px 15px 30px;
  border-radius: 20px;
  top: 52px;
}

.menu-link-in-mobile {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 10px;
  top: 52px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-out;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-backdrop-filter: blur(10px)) {
    .menu-link-in {
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 100%
      );
    }
  }
}

.menu-link-in {
  visibility: hidden;
}

@media only screen and (min-width: 768px) {
  .menu-link-icon:hover .menu-link-in {
    visibility: visible;
  }
}

.bxs-chevron-down {
  color: white;
  padding: 4px;
}

.bxs-chevron-up {
  color: white;
  padding: 4px;
}

.icon-active {
  color: #96e8bc !important;
}

@media only screen and (max-width: 767px) {
  .icon-active {
    color: black;
  }
  .bxs-chevron-down {
    color: black;
  }
}

@media only screen and (min-width: 768px) {
  .menu-link-in:hover {
    visibility: visible;
  }

  .menu-link-in-i:hover {
    color: #163cce;
  }
}

.menu-link-in-i {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: #020202;
  margin-top: 1.3rem;
}

@media only screen and (min-width: 768px) {
  .menu-item:hover .menu-link,
  .menu-item:hover .bx {
    color: #96e8bc !important;
  }
}

.menu-active {
  color: #96e8bc !important;
}

@media only screen and (max-width: 767px) {
  .menu-item:hover .menu-link,
  .menu-item:hover .bx {
    color: #37ac6d !important;
  }

  .menu-active {
    color: #37ac6d !important;
  }

  .icon-active {
    color: #37ac6d !important;
  }
}

.sub-menu-active {
  color: #163cce;
}

.menu-block {
  font-size: 1.5rem;
  text-align: center;
  /* color: var(--black-500); */
  color: white;
  display: none;
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    left: 0;
    width: auto;
    height: auto;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 1.75rem;
    margin: 0 auto;
  }
}

.burger {
  z-index: 1000002;
  position: relative;
  display: block;
  order: -1;
  cursor: pointer;
  user-select: none;
  rotate: 0deg;
  border: none;
  outline: none;
  visibility: visible;
  background: none;
  transition: 0.35s ease;
}

@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  rotate: 0deg;
  border: none;
  outline: none;
  border-radius: 1rem;
  /* background-color: var(--black-100); */
  background-color: white;
  /* transition: 0.25s ease-in-out; */
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  /* width: 70%; */
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger > .logo {
  left: -220px;
  width: 99px;
  position: absolute;
  margin-left: 16px;
  top: 13px;
  transition: 0.35s ease;
  transition: all 0.4s ease-in-out;
}

.burger > .burget-menu {
  width: 1.65rem;
  height: 1.15rem;
  z-index: 1000002;
  position: relative;
  display: block;
  order: -1;
  cursor: pointer;
  user-select: none;
  rotate: 0deg;
  border: none;
  outline: none;
  visibility: visible;
  background: none;
  top: 0px;
  left: 0px;
}

.burger.is-active > .logo {
  left: 0;
}

@keyframes move {
  0% {
    transform: translateX(-50vw);
  }
  100% {
    transform: translateX(45vw);
  }
}

.burger.is-active > .burget-menu {
  top: 30px;
  animation: move 0.4s ease-out forwards;
}

.burger.is-active > .burget-menu > .burger-line {
  background-color: var(--black-100);
}

.burger.is-active > .burget-menu > .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}

.burger.is-active > .burget-menu > .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active > .burget-menu > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media only screen and (max-width: 767px) {
  .menu-block {
    display: block;
    opacity: 0;
  }
  .menu {
    width: 65%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 1) 100%
    );
  }
  .menu-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    text-align: center;
    color: #020202;
  }
  .menu-inner {
    align-items: inherit;
    margin-left: 30px;
  }
  .menu-link-in {
    /* visibility: hidden; */
    top: 250px;
  }
}

a {
  text-decoration: none;
  /* Bỏ gạch dưới cho tất cả các liên kết */
}

.carousel-item-content {
  position: absolute;
  width: 500px;
  height: 196px;
  bottom: 200px;
  left: 120px;
}

.carousel-item-content h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  color: #ffffff;
}

.carousel-item-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.icon-btn {
  /* display: inline-block; */
  width: 20px;
  height: 20px;
  background-image: url("../images/icon/headset.png");
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  padding: 10px;
  margin-right: 15px;
}

.carousel-control-prev-icon {
  background-image: url(../images/icon/arrow-white.svg);
}

.carousel-control-next-icon {
  background-image: url(../images/icon/arrow3.svg);
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
  bottom: 100px;
  top: unset;
}

.btn-carousel {
  padding: 10px;
  width: 207px;
  border: none;
  background: linear-gradient(90deg, #60ce93 0%, #395eef 100%);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
}

/* footer */

.bg-footer {
  background: linear-gradient(262.68deg, #cbd5ff 0%, #cdf0e4 100%);
}

.footer-container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 66.667% 33.334%;
}

.footer-form {
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, #37ac6d 0%, #163cce 100%);
}

input {
  display: block;
  margin: 20px auto;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: aliceblue;
  font-family: "Inter";
}

.caption {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height, or 150% */
  color: #ffffff;
}

.footer-bt {
  background: linear-gradient(90deg, #60ce93 0%, #395eef 100%);
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.5s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .footer-bt:hover {
    background: linear-gradient(90deg, #37ac6d 0%, #163cce 100%);
  }
}

.footer-inf {
  padding: 50px 0px;
}

.footer-inf-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
}

.footer-inf-content-adr {
  padding-right: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

@media only screen and (min-width: 768px) {
  .footer-item a:hover {
    color: blue !important;
  }
}

.footer-item img {
  height: 100%;
  margin-right: 10px;
}

.footer-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1f1f1f;
  margin: 0;
}

.footer-item a {
  text-decoration: none;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 24px;
  margin-right: 30px;
}

.footer-item-logo {
  margin-top: 20px;
}

.footer-item-logo h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #020202;
}

.footer-item-img-logo {
  display: flex;
  margin-top: 12px;
}

.footer-item-img-logo img {
  margin-right: 10px;
}

@media only screen and (max-width: 800px) {
  .footer-container {
    grid-template-columns: 100%;
  }
  .footer-form {
    order: 1;
  }
  .footer-inf {
    order: 2;
    padding: 20px 30px;
  }
  .footer-inf-content {
    grid-template-columns: 100%;
  }
  .footer-item {
    margin-top: 20px;
  }
}

/*end css header */

/*start css footer */

.bg-footer {
  background: linear-gradient(262.68deg, #cbd5ff 0%, #cdf0e4 100%);
}

.footer-container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 66.667% 33.334%;
}

.footer-form {
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, #37ac6d 0%, #163cce 100%);
}

input {
  display: block;
  margin: 20px auto;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: aliceblue;
}

.caption {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height, or 150% */
  color: #ffffff;
}

.footer-inf {
  padding: 50px 0px;
}

.footer-inf-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
}

.footer-inf-content-adr {
  padding-right: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.footer-item img {
  height: 100%;
  margin-right: 10px;
}

.footer-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1f1f1f;
  margin: 0;
}

.footer-item-img-logo {
  display: flex;
}

.footer-item-img-logo img {
  margin-right: 10px;
}

.footer-item-img-logo img {
  filter: grayscale(100%);
  /* đổi màu sang màu xám */
  transition: filter 0.5s ease-in-out;
  /* hiệu ứng chuyển đổi màu */
}

@media only screen and (min-width: 768px) {
  .footer-item-img-logo img:hover {
    filter: grayscale(0%);
    /* đổi màu trở lại bình thường */
  }
}

@media only screen and (max-width: 800px) {
  .footer-container {
    grid-template-columns: 100%;
  }
  .footer-form {
    order: 1;
    padding: 30px 16px;
  }
  .footer-inf {
    order: 2;
    padding: 20px 16px;
  }
  .footer-inf-content {
    grid-template-columns: 100%;
  }
  .footer-item {
    margin-top: 20px;
  }
  .footer-item-img-logo img {
    filter: grayscale(0%);
  }
}

/*end css footer */

/* Áp dụng CSS cho màn hình có độ rộng lớn hơn 800 và bé hơn 1200 */

@media only screen and (min-width: 800px) and (max-width: 1200px) {
  .header {
    padding: 0 30px;
  }
  .footer-container {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 800px) {
  .top-services img {
    height: 40px;
  }
}

/* Ghost Koenig editor - required content classes */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 42.5vw);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  min-width: 100%;
  margin: auto calc(50% - 50vw);
}
.kg-width-wide img,
.kg-width-full img {
  max-width: 100%;
  height: auto;
}
.kg-image-card,
.kg-gallery-card {
  margin: 1.5em 0;
}
.kg-image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.kg-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kg-gallery-row {
  display: flex;
  gap: 8px;
  width: 100%;
}
.kg-gallery-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.kg-bookmark-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5em 0;
}
.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}
.kg-bookmark-content {
  flex: 1;
  padding: 16px;
}
.kg-bookmark-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}
.kg-bookmark-description {
  font-size: 14px;
  color: #6c757d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kg-bookmark-thumbnail img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}
