:root {
  --nutra-1: #fbfbfb;
  --neutral-black: #020e20;
  --neutral-dark: #152742;
  --black-2: #4b4b4b;
  --neutral-green-1: #041954;
  --neutral-green-2: #041954;
  --neutral-green-3: #e7f1f1;
  --green-4: #eff8f7;
  --dark-100: #191919;
  --dark-40: #a0a0a0;
  --light-10: #d3d3d3;
  --dark-20: #b6b6b6;
  --dark-80: #4c4c4c;
}

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

a {
  text-decoration: none;
}

.bg-green-1 {
  background-color: var(--neutral-green-1);
}

.bg-green-2 {
  background-color: var(--neutral-green-2);
}

.bg-green-3 {
  background-color: var(--neutral-green-3);
}

.border-green-1 {
  border-color: var(--neutral-green-1) !important;
}

.border-green-2 {
  border-color: var(--neutral-green-2) !important;
}

.border-green-3 {
  border-color: var(--neutral-green-3) !important;
}

.container {
  width: 100%;
  max-width: 1314px;
  margin: auto;
}

.body-1-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.body-2-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.body-3-text {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 139.687%;
}

.body-4-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 151.688%;
}

.section-subtitle {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 767px) {
  .section-subtitle {
    font-size: 18px;
  }
}

.section-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
}

.nutra-1 {
  color: var(--nutra-1);
}

.white-line {
  border-top: 1px solid #fff;
  opacity: 1;
}

.green-2 {
  color: var(--neutral-green-2) !important;
}

.neu-black {
  color: var(--neutral-black);
}

.dark-40 {
  color: var(--dark-40);
}

.dark-80 {
  color: var(--dark-40);
}

.black-2 {
  color: var(--black-2);
}

.outlined-btn {
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 52px;
  color: #000;
  transition: 0.2s all ease-in-out;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.outlined-btn:visited {
  color: #000;
  border-color: #000;
}

.outlined-btn:hover {
  background-color: var(--neutral-green-2);
  border-color: var(--neutral-green-2);
  color: white !important;
}

#page>header {
  z-index: 10;
  position: relative;
}

header .top-header {
  background: #041954;
  padding: 10px 0px;
}

header .top-header .contact {
  padding: 2px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

header .top-header .contact .contact-item {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

header .top-header .contact .contact-item span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 139.3%;
  letter-spacing: -0.32px;
}

header .top-header .search {
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

header .main-header {
  padding: 10px 0px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  background: #fff;
  box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.25);
}

.main-header-wrapper.has-sticky {
  position: sticky !important;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  header .main-header {
    display: none;
  }
}

header .main-header .header-logo {
  width: 175px;
  height: 58px;
}

header .main-header .main-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

@media (max-width: 910px) and (min-width: 767px) {
  header .main-header .main-menu {
    gap: 18px;
  }
}

header .main-header .main-menu a {
  text-decoration: none;
  color: var(--neutral-black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.2s all ease-in-out;
}

header .main-header .main-menu a.active,
header .main-header .main-menu a:hover {
  color: var(--neutral-green-1);
}

header .mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: max-content;
  padding: 9px 16px;
  background-color: var(--green-4);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  header .mobile-header {
    display: none;
  }
}

header .mobile-header .header-logo {
  width: 97px;
  height: 32px;
}

header .mobile-header .toggle-btn {
  cursor: pointer;
}

header .mobile-header .mobile-menu {
  display: flex;
  flex-direction: column;
  width: 210px;
  height: max-content;
}

header .mobile-header .mobile-menu a {
  padding: 15px;
  text-decoration: none;
  color: var(--dark-100);
  font-weight: 400;
}

header .mobile-header .mobile-menu a:hover {
  color: #007478;
}

header .mobile-header .mobile-menu a:not(:last-child) {
  border-bottom: 1px solid var(--light-10);
}

@media (max-width: 767px) {
  main {
    margin-top: 50px;
  }
}

footer .main-footer {
  padding: 80px 0;
  background-color: var(--neutral-green-1);
  color: #fff;
}

@media (max-width: 767px) {
  footer .main-footer {
    padding: 12px 0;
  }
}

footer .main-footer .main-row {
  row-gap: 35px;
}

footer .main-footer .footer-logo {
  width: 175px;
  height: 58px;
  margin-bottom: 15px;
}

footer .main-footer .social-icons {
  display: flex;
  flex-direction: row;
  gap: 9px;
  margin-top: 15px;
}

footer .main-footer .social-icons img {
  width: 36px;
  height: 36px;
}

footer .main-footer .footer-item .footer-title {
  color: #fff;
  margin-bottom: 24px;
}

footer .main-footer .footer-item .footer-item-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .main-footer .footer-item .footer-item-list a {
  text-decoration: none;
  color: #fff;
  line-height: 14px;
}

footer .main-footer .foot-contact h4 {
  margin-bottom: 16px;
}

footer .main-footer .foot-contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .main-footer .foot-contact .contact-content .contact-phone {
  display: flex;
  flex-direction: row;
  gap: 13px;
  height: 29.59px;
  width: max-content;
  padding: 0px 7.328px;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

footer .main-footer .foot-contact .contact-content .contact-phone span {
  color: var(--neutral-green-1);
  font-size: 17.586px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

footer .main-footer .foot-contact .contact-content .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-decoration: none;
}

footer .main-footer .white-line {
  margin: 80px 0;
}

@media (max-width: 991px) {
  footer .main-footer .white-line {
    margin: 20px 0;
  }
}

footer .main-footer .showroom-title {
  font-size: 20px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  footer .main-footer .showroom-title {
    margin-bottom: 25px;
  }
}

footer .main-footer .showroom-list {
  row-gap: 20px;
}

footer .main-footer .showroom-list .showroom-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .main-footer .showroom-list .showroom-item .address {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer .copy-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  background-color: var(--black-2);
}

footer .copy-right span {
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

.swiper {
  display: flex;
  flex-direction: column;
}

.swiper .swiper-pagination {
  margin-top: 22px;
  position: relative;
  top: 0;
  height: max-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 500px) {
  .swiper .swiper-pagination {
    margin-top: 32px;
  }
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  border-radius: 8px;
  background: var(--dark-20);
  width: 21px;
  height: 6px;
  opacity: 1;
  transition: 0.2s ease-in-out;
}

.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-radius: 8px;
  background: var(--neutral-green-1);
  width: 52px;
}

.description .desc .content p {
  color: var(--neutral-black, #020e20);
  text-align: justify;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.description .desc .content ul,
.description .desc .content ol {
  list-style-type: disc;
  padding-left: 1.8rem;
}

.description .desc .content ol {
  list-style-type: decimal;
}

.content tbody,
.content td,
.content tfoot,
.content th,
.content thead,
.content tr {
  border-width: 1px;
}