<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fonts */
:root {
  --default-font: 'Noto Sans',  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Red Hat Text", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: 'Red Hat Text',  sans-serif;
  --nav-font: "Inter",  sans-serif;
  --text-titleMain-font: 'Prata', "Noto Sans", sans-serif;
  --text-montserrat-font:  "Montserrat", "Noto Sans", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0A2240; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #976C43; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --background-nightBlue: #0A2240; 
  --background-nightBlue-rgb: rgb(151, 108, 64); 
  --blue-primary: #0A2240; 
  --blue-primary-rgb: (10, 34, 64); 
  --text-primary: #23262A;
  --text-secondary: #666669;
  --text-primaryHover: #666669;
  --text-titleMain: #0A2240;
  --gold-primary: #976C43;
  --gold-primary-rgp: rgb(151, 108, 67); 
  --gold-second: #a0926e;   
  --button-primary: #976C43;
  --background-lightGold: #FBF8F5;
  --border-main: #E5E5E8;
  --text-highlight: #976C43;
  --button-primaryLabel:#ffffff;
  --button-primary: #976C43;
  --border-lightGrey: #C3C3C6;
  --background-greyBlue: #E5E8ED;
  --button-tertiaryHover: #7F5427;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #313336;  /* The default color of the main navmenu links */
  --nav-hover-color: #77b6ca; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #77b6ca; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Global Space */
:root { 
  --spacing-0: 0px;
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-9: 9px;
  --spacing-10: 10px;
  --spacing-11: 11px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-32: 32px;  
  --spacing-48: 48px;
  --spacing-80: 80px;

  --radius-MD:8px;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling &amp; Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--text-primary);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
p {
  margin-bottom: 0px;
}
a {
  color: var(--accent-color);
  text-decoration: none !important;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--text-titleMain-font);
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: calc(var(--spacing-32)* .5);
  padding-left: calc(var(--spacing-32)* .5);
}
.mb-0 {
  margin-bottom: var(--spacing-0);
}
.mb--spacing-48 {
  margin-bottom: var(--spacing-48);
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1536px;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 16px 0;
  /* transition: all 0.5s; */
  z-index: 999 !important;
  /* position: sticky;
  top: 0; */
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 48px;
  max-height: 48px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 48px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-lan {
    order: 2;
  }  
  /* .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  } */

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  background-color: var(--blue-primary);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

.main{
  padding-top: 0px;
  padding-bottom: 120px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover&gt;a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover&gt;a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover&gt;ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover&gt;ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover&gt;a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover&gt;ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown&gt;.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu&gt;ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  font-size: 12px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  border-top: 1px solid var(--gold-primary);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  padding-bottom: 48px;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links a {
  color: color-mix(in srgb, var(--text-primary), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links a:hover {
  color: var(--text-primary);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--text-primary), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--text-primary);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
}

.footer .copyright p {
  margin-bottom: 0;
}
.footer .footer-links__line {
  height: 8px;
  width: 1px;
  background-color: var(--text-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--blue-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top img {
  width: 26px;
  height: 26px;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--gold-second), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Botton
--------------------------------------------------------------*/
.btn {
  display: flex;
  height: 48px;
  min-width: 88px;
  padding: var(--spacing-4) var(--spacing-24);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 999px;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.btn:hover {
  background-color: color-mix(in srgb, var(--button-primary), transparent 20%);
  color: var(--button-primary);
}
.btn:active {
	position:relative;
	top:1px;
}
.btn-primary {
  color: var(--button-primaryLabel);
  background: var(--button-primary);
  border: var(--button-primary) 1px solid;
}
.btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary.show, .btn-primary:first-child:active, :not(.btn-check)+.btn-primary:active {
  color: var(--button-primaryLabel);
  background: var(--button-primary);
  border: var(--button-primary) 1px solid;
}
.btn-primary:hover {
  background-color: color-mix(in srgb, var(--gold-primary), transparent 20%);
  color: var(--button-primaryLabel);
  border: color-mix(in srgb, var(--button-primary), transparent 20%) 1px solid;
}
.btn-primary:active {
}
.btn-secondary {
  color: #0A2240;
  border: 1px solid #0A2240;
  background-color: rgba(255, 255, 255, 0)  
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);  
  color: #0A2240;
}
.btn-check:checked+.btn-secondary, .btn-secondary.active, .btn-secondary.show, .btn-secondary:first-child:active, :not(.btn-check)+.btn-secondary:active {
  color: #0A2240;
  border: 1px solid #0A2240;
  background-color: rgba(255, 255, 255, 0)  
}
.btn-secondary:active {
}
/*--------------------------------------------------------------
# .btn-secondary:hover {
--------------------------------------------------------------*/


.back-button{
  color: var(--text-primary);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.4px;
  display: flex;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-24);
  padding: 12px 0px;
  width: fit-content;  
}
.back-button img{
width: 20px;
height: 20px;
}

/*--------------------------------------------------------------
# Global Page Titles &amp; Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 0px;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-top {
  padding-top: 80px;
}
.section-bottom {
  padding-bottom: 80px;
}
@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section{
  margin-bottom: var(--spacing-80);
}
.hero {
  width: 100%;
  /* min-height: 70vh; */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 346px 0px 0px 0px;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# Tab page Section
--------------------------------------------------------------*/
.tabPage-section{
  padding: 0;
  z-index: 999;
  background-color: #ffffff;
  margin-top: var(--spacing-48);
}
.tabPage-container{
  background-image: url(../img/tab-page-bg.png);
  background-position: bottom;
  background-repeat: repeat-x;
  width: fit-content;
}
.tabPage {
}
.tabPage .swiper-wrapper{
}
.tabPage .swiper-slide {
  width: auto;
  margin-right: 48px;
}
.tabPage .swiper-slide:last-child {
  margin-right: 0px;
}
.tabPage .swiper-slide a {
  display: block;
  padding-top: 3px;
  padding-bottom: 16px;
}
.tabPage .swiper-slide a span {
  font-family: var(--text-montserrat-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: var(--text-primary);
}
.tabPage .swiper-slide a:hover span {
  color: var(--text-primaryHover);
}
.tabPage .swiper-button-next {
  color: #23262A;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
.tabPage .swiper-button-prev {
  color: #23262A;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 0px);
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 0px);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.tabPage .swiper-button-prev:after, .tabPage .swiper-button-next:after {
  font-size: 20px;
  font-weight: 600;
}


/*--------------------------------------------------------------
# Tab page Section
--------------------------------------------------------------*/
.tabluli-tab-section{
  padding: 0;
  z-index: 999;
  background-color: #ffffff;
  margin-top: var(--spacing-48);
}
.tabluli-tab-container{
  background-image: url(../img/tab-page-bg.png);
  background-position: bottom;
  background-repeat: repeat-x;
  width: fit-content;
}
.tabluli-tab {
}
.tabluli-tab .swiper-wrapper{
  padding: 0px;
}
.tabluli-tab .swiper-slide {
  width: auto;
  margin-right: 48px;
}
.tabluli-tab .swiper-slide:last-child {
  margin-right: 0px;
}
.tabluli-tab .swiper-slide a {
  display: block;
  padding-top: 3px;
  padding-bottom: 16px;
}
.tabluli-tab .active  a {
  border-bottom: 1px solid var(--gold-primary);
  color: var(--text-primary);
}

.tabluli-tab .swiper-slide a span {
  font-family: var(--text-montserrat-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: var(--text-primary);
}
.tabluli-tab .swiper-slide a:hover span {
  color: var(--text-primaryHover);
}
.tabluli-tab .active a span {
  font-weight: 600;
  color: #000000 !important;
}
.tabluli-tab .swiper-button-next {
  color: #23262A;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
.tabluli-tab .swiper-button-prev {
  color: #23262A;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 0px);
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 0px);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.tabluli-tab .swiper-button-prev:after, .tabluli-tab .swiper-button-next:after {
  font-size: 20px;
  font-weight: 600;
}


/*--------------------------------------------------------------
# tabSort Section
--------------------------------------------------------------*/
.tabSort-section{
  padding: 0;
}
.tabSort-container{
  margin-top: var(--spacing-24);
}
.tabSort {
margin-bottom: 0px;
}
.tabSort .swiper-wrapper{
}
.tabSort .swiper-slide {
  width: auto;
  margin-right: 16px;
}
.tabSort .swiper-slide:last-child {
  margin-right: 80px;
}
.tabSort .swiper-slide a {
  display: flex;
  gap: 8px;
  border-radius: 100px;
  background-color: #ffffff;
  border: 1px solid #C3C3C6;
  box-sizing: border-box;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  height: 48px;
}
.tabSort .swiper-slide a img{
  width: 20px;
  height: 20px;
}
/* .tabSort .swiper-slide .active {
  font-weight: 600;
  border: 2px solid var(--gold-primary);
  background-color: #F6F0EA;
  box-sizing: border-box;
} */
.tabSort .swiper-slide a span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
  padding: 0px;
  color: #23262A;
}
.tabSort .swiper-button-next {
  color: #23262A;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
.tabSort .swiper-button-prev {
  color: #23262A;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
.tabSort .swiper-button-prev:after, .tabSort .swiper-button-next:after {
  font-size: 20px;
  font-weight: 600;
}
.tabSort .swiper-slide .iconSports {
  background-image: url(../img/iconSports.png);
}
.tabSort .swiper-slide .iconGames {
  background-image: url(../img/iconGames.png);
}
.tabSort .swiper-slide .iconKidsCorner {
  background-image: url(../img/iconKidsCorner.png);
}
.tabSort .swiper-slide .iconRestArea {
  background-image: url(../img/iconRestArea.png);
}
.tabSort .swiper-slide .iconRestaurant {
  background-image: url(../img/iconRestaurant.png);
}
.tabSort .swiper-slide .iconSpaandSauna {
  background-image: url(../img/iconSpaandSauna.png);
}

/*--------------------------------------------------------------
# tabContent Section
--------------------------------------------------------------*/
.tabContent-section{
  margin-top: var(--spacing-80);
}
.tabContent-container{
  display: flex;
  gap: 25px;
}
.tabContent-container ul {
  margin-bottom: 0px;
}
.tabContent-ai {
  flex: 0 0 400px;
  padding-left: 0px;
  list-style-type: none;
  display: block;
}
.tabContent-ai li{
  /* padding-top: var(--spacing-32);
  padding-bottom: var(--spacing-32); */
  border-bottom: 1px solid var(--border-main);
  flex: 100%;
}
.tabContent-ai li:first-child a {
  padding-top: 0px;
}
.tabContent-ai a {
 color: var(--text-primary);
 font-family: Montserrat;
 font-size: 18px;
 font-style: normal;
 font-weight: 500;
 line-height: 28px; /* 155.556% */
 letter-spacing: 0.4px;
 padding-top: var(--spacing-32);
 padding-bottom: var(--spacing-32);
 display: block;
 }
 .tabContent-ai .active a {
  color: var(--text-highlight);
  font-weight: 600;
}
 .tabContent-ai .ui-tabs-active a {
  color: var(--text-highlight);
  font-weight: 600;
}
.tabContent-main{
  flex: 1 1 auto;
}
.tabContent-main h3{
  color: var(--text-titleMain);
  /* desktop/header/XS */
  font-family: Prata;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 120% */
  padding-bottom: var(--spacing-20);
  margin-bottom: 5px;
  }

/*--------------------------------------------------------------
# accordion
--------------------------------------------------------------*/
.accordion{}
.accordion h3{
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 28px; /* 155.556% */
letter-spacing: 0.072px;
color: var(--text-highlight);
cursor: pointer;
padding-bottom: var(--spacing-16);
margin-bottom: 0px;
}
.title-s1{
display: flex;
align-items: center;
gap: 8px;
padding-bottom: var(--spacing-20);
}
.title-s1 span{
  font-family: Prata;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1; /* 120% */
  color: var(--text-titleMain);
  margin-bottom: -6px;
}
.tabContent-main ul li {
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: 0px solid var(--border-main);
}
.accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: var(--spacing-32);
}

.accordion-header {
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  letter-spacing: 0.072px;
  color: var(--text-primary);
  cursor: pointer;
  padding-top: var(--spacing-32);
  padding-bottom: var(--spacing-32);
  margin-bottom: 0px;
}

.border-bottom {
  border-bottom: 1px solid var(--border-main) !important;
} 
.accordion li .active{
  color: var(--text-highlight);
} 
.accordion-header:after {
  content: url(../img/icon-accordion-active.png);
    float: right;
}

.accordion-header.active:after {
    content: url(../img/icon-accordion.png);
}
.accordion-body{
  padding: 0px;
}
.accordion-body {
  display: none;
}
.img-dress-code-sports {
  padding-bottom: var(--spacing-16);
}
.img-dress-code-sports img {
  max-width: 548px;
  width: 100%;
}
.accordion-body h3 {
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
letter-spacing: 0.4px;
color: #000000;
padding-bottom: var(--spacing-16);
}
.accordion-body ul {
  padding-left: 20px;
  padding-bottom: var(--spacing-32);
  }
.accordion-body ul li{
color: var(--text-primary, #23262A);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.2px;
list-style-type: disc;
}

/*--------------------------------------------------------------
# Trending section
--------------------------------------------------------------*/

.trending-section {
  margin-top: var(--spacing-80);
}
.trendingItem{
  margin-top: var(--spacing-24);
}
.trendingItem .swiper-slide {
  width: auto;
}
.trendingItem a {
 display: flex;
 gap: 16px;
 flex-direction: column;
 width: fit-content;
}
a .img-container {
  overflow: hidden;
  border-radius: 8px;
}
a .img-container img {
  transition-property: transform;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
 }
a:hover .img-container img {
  transform: scale(1.05,1.05);
  transition-property: transform;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
 }
.trendingItem img {
  max-width: 280px;
 }
.trendingItem a p {
  color: var(--text-primary);
  /* desktop/subtitle/MDB */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  letter-spacing: 0.4px;
}
.trendingItem a:hover p {
  color: var(--text-primaryHover );
}
.trendingItem .swiper-button-next {
  color: #23262A;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
.trendingItem .swiper-button-prev {
  color: #23262A;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}
.trendingItem .swiper-button-prev:after, .trendingItem .swiper-button-next:after {
  font-size: 20px;
  font-weight: 600;
}
/*--------------------------------------------------------------
# RBD-container
--------------------------------------------------------------*/
.RBD-tabContent-section{
  margin-top: var(--spacing-32);
}
.RBD-tabContent-section .tabContent-container{
  display: block;
}

.RBD-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 36px;
 }

.RBD-container a {
  width: 100%;
  display: flex;
  gap: 16px;
  flex-direction: column;
 }
 .RBD-container img {
   border-radius: 8px;
   width: 100%;
  }
.RBD-container a p {
  color: var(--text-primary);
  text-overflow: ellipsis;
  /* desktop/subtitle/MDB */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  letter-spacing: 0.072px;
}
.RBD-container a:hover p {
  color: var(--text-primaryHover );
}


/*--------------------------------------------------------------
# index RBD tab
--------------------------------------------------------------*/
.rbd-tab {
  width: fit-content;
}

.rbd-tab a {
  display: block;
  padding-top: 3px;
  padding-bottom: 16px;
}
.rbd-tab a span {
  font-family: var(--text-montserrat-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: var(--text-primary);
}
.rbd-tab li {
  width: auto;
  margin-right: 48px;
}
.rbd-tab li:last-child {
  margin-right: 0px;
}
.rbd-tab .active {
  border-bottom: 1px solid var(--gold-primary);
}
.tabluli-tab{
  display: flex;
  flex-wrap: nowrap;
}
/*--------------------------------------------------------------
# select ai
--------------------------------------------------------------*/
.select-ai-section{
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--background-lightGold);
  margin-top: var(--spacing-24);
  margin-bottom:  var(--spacing-20);
}
ul.zg-ul-select {
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
  margin-top: -1px;
  padding: 0;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--text-primary);
}
ul.zg-ul-select li {
  border-radius: 8px;
  display: none;
  padding: 16px;
  background-color: var(--background-color);
}
ul.zg-ul-select li img {
width: 20px;
height: 20px;
}
ul.zg-ul-select li .left-icon {
margin-right: 16px;
}
ul.zg-ul-select li.active {
  align-items: center;
  border: 1px solid var(--border-lightGrey);
  display: flex;
  justify-content: flex-start;
}
ul.zg-ul-select.active {
  border: 1px solid var(--border-lightGrey);
}
ul.zg-ul-select.active li {
  border: none;
  box-shadow: none;
  display: flex;
}
ul.zg-ul-select li.active .icon-right {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}
ul.zg-ul-select.active li:hover {
  background: var(--background-lightGold);
}
ul.zg-ul-select.active li.active {
  background: var(--background-lightGold);
}
ul.zg-ul-select.active li.active:hover {
  background: var(--background-lightGold);
}


#selected--zg-ul-select {
  align-items: center;
  box-sizing: border-box;
  color: #111;
  display: flex;
  justify-content: space-between;
  width: auto;
}
#selected--zg-ul-select.active {
  border: 1px solid var(--border-lightGrey);  
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
  padding: 16px;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--text-primary);
  background-color: var(--background-color);
}

/*--------------------------------------------------------------
# select ai 2
--------------------------------------------------------------*/
.select_wrap{
  width: 100%;
  margin: 15px auto;
  position: relative;
  user-select: none;

  border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 0;
    margin-top: -1px;
    padding: 0;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.2px;
    color: var(--text-primary);
    border: 1px solid var(--border-lightGrey);
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background-color: #ffffff;
}
.select_wrap p{
margin-bottom: 0px;
}

.select_wrap .default_option{
  position: relative;
  cursor: pointer;
  width: 100%;
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.select_wrap .default_option li{
  padding: 0px 32px 0px 16px;
}

.select_wrap .default_option:before{
  content: "";
  position: absolute;
  top: 17px;
  right: 18px;
  width: 12px;
  height: 12px;
  border: 2px solid;
    border-color: transparent transparent #23262A #23262A;
    transform: rotate(-45deg);
}

.select_wrap .select_ul{
    width: 100%;
    display: none;
    background: #ffffff;
    border-radius: 5px;
    display: none;
    list-style-type: none;
    border: 1px solid var(--border-lightGrey);
    padding-left: 0px;
    margin-bottom: 0px;
}

.select_wrap .select_ul li{
  padding: 10px 20px;
  cursor: pointer;
}
.select_wrap .default_option li a{
  display: flex;
  padding: 16px 0px;
}
.select_wrap .select_ul li a{
  display: flex;
}
.select_wrap .select_ul li .left-icon {
  margin-right: 16px;
}
.select_wrap .select_ul li img {
  width: 20px;
  height: 20px;
}
.select_wrap .default_option li .left-icon {
  margin-right: 16px;
}
.select_wrap .default_option li img {
  width: 20px;
  height: 20px;
}
.select_wrap .select_ul li:first-child:hover{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select_wrap .select_ul li:last-child:hover{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select_wrap .select_ul li:hover{
  background: var(--background-lightGold);
}

.select_wrap .option{
  display: flex;
  align-items: center;
}

.select_wrap .option .icon{
  background: url('https://i.imgur.com/oEZu0sK.png') no-repeat 0 0;
	width: 32px;
	height: 32px;
  margin-right: 15px;
}

.select_wrap .option.pizza .icon{
  background-position: 0 0;
}

.select_wrap .option.burger .icon{
  background-position:  0 -35px;
}

.select_wrap .option.ice .icon{
  background-position: 0 -72px;
}

.select_wrap .option.fries .icon{
 background-position: 0 -111px;
  width: 25px;
}

.select_wrap.active .select_ul{
  display: block;
}

.select_wrap.active .default_option:before{
  top: 25px;
  transform: rotate(-225deg);
}

/*--------------------------------------------------------------
# popup ai 
--------------------------------------------------------------*/
  .ui-popup-container {
    max-width: 100% !important;
    left: 0 !important;
    width: 100%;
    top: auto !important;    
bottom: 0px !important;     
position: fixed !important; 
}
.ui-popup.ui-content, .ui-popup .ui-content {
  border-radius:10px 10px 0px 0px;
}
.ui-popup&gt;.ui-btn-right {
  right: 16px;
}
.ui-popup&gt;.ui-btn-left, .ui-popup&gt;.ui-btn-right {
  top: 13px;
}
.ui-icon-delete:after {
  background-image: url(../img/icon-close-x.png);
  background-size: contain;
}
.ui-btn-icon-notext:after {
  background-color: rgba(0, 0, 0, 0);
  width: 24px;
  height: 24px;
}
.popup-content{
padding: 0;
}
.popup-content h3 {
  color: var(--text-titleMain);
text-align: center;

font-family: Prata;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
margin: 0 !important;
border-bottom: var(--border-main) solid 1px;
padding: 16px 0px;
}
.radio-contrainer{
  padding: 0px;
}
.popup-mobile-ai-option-container{
  display: flex;
  flex-direction: column;
  align-items: stretch ;
  min-height: 85vh;
}
.popup-mobile-ai-option-container .ui-corner-all{
  flex: 1 1 auto;
}
.popup-mobile-ai-option-container .popup-mobile-ai-option-button-container{
  flex: 0 0 81px;
}
.ui-page-theme-a .ui-btn, html .ui-bar-a .ui-btn, html .ui-body-a .ui-btn, html body .ui-group-theme-a .ui-btn, html head+body .ui-btn.ui-btn-a, .ui-page-theme-a .ui-btn:visited, html .ui-bar-a .ui-btn:visited, html .ui-body-a .ui-btn:visited, html body .ui-group-theme-a .ui-btn:visited, html head+body .ui-btn.ui-btn-a:visited {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--text-primary);
  text-shadow: 0 0px 0 #f3f3f3;
  font-weight: 300;
  font-size: 14px;
font-style: normal;
line-height: 20px; /* 142.857% */
letter-spacing: 0.2px;
}
.ui-controlgroup-controls .ui-radio .ui-radio-on{
  font-weight: 600;
}
.ui-radio .ui-btn.ui-radio-on:after {
  background-image: none;
  background-color: #976C43;
  width: 8px;
  height: 8px;
  border-width: 5px;
  border-style: solid;
}
.ui-page-theme-a .ui-radio-on:after, html .ui-bar-a .ui-radio-on:after, html .ui-body-a .ui-radio-on:after, html body .ui-group-theme-a .ui-radio-on:after, .ui-btn.ui-radio-on.ui-btn-a:after {
  border-color: #976C43;
}
.ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper {
  background-color: #ffffff;
}

.final_question_submit{

}
.ui-page-theme-a .ui-btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #333;
  text-shadow: 0 0px 0 #f3f3f3;
}
.popup-mobile-ai-option-button-container {
  border-top: #E5E5E8 1px solid;
  padding: 16px 16px 16px 16px;
}
.popup-mobile-ai-option-button-container .btn {
  display: flex;
  height: 48px;
  min-width: 88px;
  padding: var(--spacing-4) var(--spacing-24);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 999px;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.popup-mobile-ai-option-button-container .btn:hover {
  background-color: color-mix(in srgb, var(--button-primary), transparent 20%);
  color: var(--button-primary);
}
.popup-mobile-ai-option-button-container .btn:active {
	position:relative;
	top:1px;
}
.popup-mobile-ai-option-button-container .btn-primary {
  color: var(--button-primaryLabel);
  background: var(--button-primary);
  border: var(--button-primary) 1px solid;
}
.popup-mobile-ai-option-button-container .btn-check:checked+.btn-primary, 
.popup-mobile-ai-option-button-container .btn-primary.active, 
.popup-mobile-ai-option-button-container .btn-primary.show, 
.popup-mobile-ai-option-button-container .btn-primary:first-child:active, :not(.btn-check)+.btn-primary:active {
  color: var(--button-primaryLabel);
  background: var(--button-primary);
  border: var(--button-primary) 1px solid;
}
.popup-mobile-ai-option-button-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--gold-primary), transparent 20%);
  color: var(--button-primaryLabel);
  border: color-mix(in srgb, var(--button-primary), transparent 20%) 1px solid;
}
.popup-mobile-ai-option-button-container .btn-primary:active {
}
.popup-mobile-ai-option-button-container .btn-secondary {
  color: #0A2240;
  border: 1px solid #0A2240;
  background-color: rgba(255, 255, 255, 0)  
}
.popup-mobile-ai-option-button-container .btn-secondary:hover {
  background-color: rgba(10, 34, 64, 0);  
  border: 1px solid rgba(10, 34, 64, 0.6);  
  color: rgba(10, 34, 64, 0.6); 
}
.btn-check:checked+.btn-secondary, .btn-secondary.active, .btn-secondary.show, .btn-secondary:first-child:active, :not(.btn-check)+.btn-secondary:active {
  color: #0A2240;
  border: 1px solid #0A2240;
  background-color: rgba(255, 255, 255, 0)  
}
.btn-secondary:active {
}
.ui-controlgroup, fieldset.ui-controlgroup {
  margin: 24px 2px;
}
.ui-btn.ui-checkbox-off:after, .ui-btn.ui-checkbox-on:after, .ui-btn.ui-radio-off:after, .ui-btn.ui-radio-on:after {
  margin: -9px 10px 0 2px;
}
.ui-btn {
  margin: 0 0;
}
.ui-page-theme-a .ui-btn:focus, html .ui-bar-a .ui-btn:focus, html .ui-body-a .ui-btn:focus, html body .ui-group-theme-a .ui-btn:focus, html head+body .ui-btn.ui-btn-a:focus, .ui-page-theme-a .ui-focus, html .ui-bar-a .ui-focus, html .ui-body-a .ui-focus, html body .ui-group-theme-a .ui-focus, html head+body .ui-btn-a.ui-focus, html head+body .ui-body-a.ui-focus {
  -webkit-box-shadow: 0 0 0px #38c;
  -moz-box-shadow: 0 0 0px #38c;
  box-shadow: 0 0 0px #38c;
}
/*--------------------------------------------------------------

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# actionSupportCard
--------------------------------------------------------------*/
.actionSupportCard{
  background-color: var(--background-greyBlue);
  padding: 28px 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  gap: 15px;
}
.actionSupportCard-mt-80{
  margin-top: 80px;
}
.icon-container{
  display: flex;
  gap: var(--spacing-24);
  align-items: center;
  flex: 1 1 40%;
}
.content-container{

}
.content-container h3{
  color: var(--text-primary);
  /* desktop/title/SM */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
  margin-bottom: 0px;
  padding-bottom: var(--spacing-4);
}
.content-container p{
  margin-bottom: 0px;
}
.icon-actionSupportCard-map {
  width: 72px;
  height: 72px;
}
.button-container{
  display: flex;
  gap: var(--spacing-12);
  flex: 1 1 auto;
}
.contact-container{
  display: flex;
  gap: var(--spacing-48);
  flex: 1 1 auto;
  justify-content: end;
}
.contact-container a{
display: flex;
gap: var(--spacing-8);
  }
.contact-container a img{
width: 24px;
height: 24px;
}
.contact-container a span{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.2px;
  text-decoration-line: underline;
  color: var(--text-primary);
 }
 .contact-container a:hover img{
  opacity: 0.7;
  }
  .contact-container a:hover span{
    color: var(--text-primaryHover);
   }
   .ui-radio .ui-btn.ui-radio-on:after {
    background-color: #ffffff;
    width: 20px;
    height: 20px;
    border-width: 0px;
    background-image: url(../img/Option-Selected.png);
    background-size: contain;
} 
.ui-btn.ui-checkbox-off:after, .ui-btn.ui-checkbox-on:after, .ui-btn.ui-radio-off:after, .ui-btn.ui-radio-on:after {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px #C3C3C6 solid;
  background-color: #ffffff;
}
.ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper {
  text-shadow: 0 0px 0 #f3f3f3;
}

/*--------------------------------------------------------------
# Useful information Section
--------------------------------------------------------------*/
.useful-information{
margin-top: var(--spacing-80);
}
.index .useful-information{
  margin-top: var(--spacing-48);
  }
.useful-information h3{
padding-bottom: var(--spacing-32);
margin-bottom: 0px;
color: var(--text-titleMain);
/* desktop/header/XS */
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 28px; /* 120% */;
}
.useful-card-container{
  /* display: flex;
  gap: 24px; */
}
.UsefulCard .swiper-slide {
  width: auto;
}
.useful-card-container .card {
  display: flex;
  min-height: 201px;
  padding: var(--spacing-32) var(--spacing-32) var(--spacing-24) var(--spacing-32);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  border-radius: var(--radius-MD);
  background: var(--background-lightGold);
  max-width: 294px;
  border: 0px;
}

.useful-card-container .card .icon{
  height: 32px;
  width: 32px;
}
.useful-card-container .card .icon img{
width: 100%;
}
.useful-card-container .card .card-body {
padding: 0px;
flex: 0 1 auto;
}

.useful-card-container .card h3 {
  color: var(--text-primary);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  padding-bottom: var(--spacing-0);
}
.useful-card-container .card .LearnMore {
  color: var(--button-primary);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.4px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-top: 20px;
}
.useful-card-container .card:hover h3 {
  color: var(--text-primaryHover);
  text-decoration: none;
}
.useful-card-container .card:hover .icon img{
  opacity: 0.7;
  }
.useful-card-container .card:hover .LearnMore {
  color: var(--button-tertiaryHover);
}
.useful-card-container a {
  /* font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.4px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font; */
}

/*--------------------------------------------------------------
# Global Page other
--------------------------------------------------------------*/

.btn-lan span {
  color: #ffffff;
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
  letter-spacing: 0.2px;  
}
.btn-lan span:hover {
  color: #ffffff;
  opacity: 0.8;
}
.stickyOnTop {
  position: sticky;
  top: 0;
}
.stickyOnTop-tabPage {
  position: sticky;
  top: -68px;
}

.is-pinned {
  height: 193px;
  padding-top: 145px !important;
  box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.25);
} 
.container-padding-0{
  padding: 0px;
}
.stickyOnTop-jq{
  margin-top: 0px;
  z-index: 999 !important;
}
.is-sticky .stickyOnTop-jq {
  padding-bottom: 5px;
  padding-top: 5px;
  box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.25);
}
.p-container{
  margin-bottom: var(--spacing-32);
}
/*--------------------------------------------------------------
# topIntroduction Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 0px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: var(--spacing-24);
  line-height: 44px;
}
.about .content h4 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: var(--spacing-32);
  line-height: 36px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}
/*--------------------------------------------------------------
table
--------------------------------------------------------------*/
.table-gold .table{
margin-bottom: 0px;
min-width: 600px;
}
.table .thead-gold th {
  color: var(--text-primary);
  background-color: var(--background-lightGold);
  border-color: var(--border-main);
  font-family: Montserrat;

  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.4px;
}
.txt-strong{
  font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
letter-spacing: 0.4px;
}
.table&gt;:not(caption)&gt;*&gt;* {
  padding: 16px;
}
.rounded {
  border-radius: 8px;
}
.caption{
color: var(--text-secondary);
/* mobile/other/caption */
margin-top: 20px;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 133.333% */
letter-spacing: 0.2px;
}
/*--------------------------------------------------------------
responsive
--------------------------------------------------------------*/
.lg-display-none{
  display: none;
}
.lg-display-show {

}  

@media (max-width: 1535px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1280px;
  }
}
/* LG */
@media (max-width: 1056px) {
  .hero-section {
    margin-bottom: var(--spacing-48);
} 
.trending-section {
  margin-top: var(--spacing-48);
} 
.trendingItem {
  margin-top: var(--spacing-20);
}
.about .content h4 {
  margin-bottom: var(--spacing-24);
}
.tabPage-section {

}
.tabContent-section {
  padding-bottom: var(--spacing-20);
}
.RBD-container {
  row-gap: 24px;
}
.useful-information{
  margin-top: var(--spacing-48);
  }
  .index .useful-information{
    margin-top: var(--spacing-32);
    }
  .main{
    padding-bottom: 80px;
  }





  .lg-container{
    max-width: 736px;
  }
  .index .lg-container{
    max-width: 100%;
  }
  .lg-display-show {
    display: none;
  }  
  .lg-display-none{
    display: block;
  }
  .actionSupportCard {
    flex-direction: column;
}
  .icon-container {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
}
.button-container {
  width: 100%;
}
.content-container {
  flex: auto;
  padding-bottom: var(--spacing-16);
}
.icon-container {
  gap: var(--spacing-8);
}
.actionSupportCard {
  margin-top: 32px;
}
.useful-card-container .card {
  max-width: 203px;
  min-height: 252px;
}
.btn {
  max-width: 210px;
}
.popup-mobile-ai-option-button-container .btn {
  max-width: 100%;
}
.RBD-container {
  grid-template-columns: repeat(2, 1fr);
 }
 .contact-container{
  justify-content: start;
}
}

/* Mobile */
@media (max-width: 440px) {
  .RBD-container {
    grid-template-columns: repeat(1, 1fr);
   }
   .contact-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-24);
}
}</pre></body></html>