/* Fonts */
// <weight>: Use a value from 100 to 900
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
:root {
  --default-font: "Montserrat",  sans-serif;
  --nav-font: "Montserrat",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0D0D0D; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0D0D0D; /* 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. */
}

/* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0D0D0D; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0D0D0D; /* 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: #F7F7F7;
  --surface-color: #ffffff;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

p{
  font-size: 14px;
}
a {
  color: #F0B91C;
  text-decoration: none;
  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(--default-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #FFFFFF;
  background-color: #0A2640;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  position: sticky;
  width: 100%;
  padding: 10px;
  margin: auto;
  left: 0;
  right: 0;
}
.header {
}

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

.navbar .logo img {
  max-height: 55px;
  margin-right: 10px;
}

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

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

.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-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);
  position: fixed;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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: #FFFFFF;
    padding: 18px 15px;
    font-size: 14px;
    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>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>a {
    color: var(--nav-dropdown-hover-color);
  }

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

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

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

/* Navmenu - Mobile */
@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);
    text-align: center;
    height: 60%;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #FFFFFF;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    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 li:hover{
    background-color: #DDDDDD;
  }
  .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%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

  .navmenu .dropdown>.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>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #FFFFFF;
  background-color: #0A2640;
  font-size: 14px;
  position: relative;
  border-radius: 0 100px 0 0;
}

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

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

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

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

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 26px;
  color:#F0B91C;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  opacity: 0.8;
}

.footer .social-links a img:hover {
  opacity: 50%;
}

.footer h4 {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #F0B91C;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.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 ul a {
  color: #FFFFFF;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #F0B91C;
}

.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: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

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

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-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: 14px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

.footer .copyright {
  padding: 25px 3px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), 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;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

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

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

.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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 70px;
  overflow: clip;
}

@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: 28px;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 68vh;
  position: relative;
  padding: 60px 0 0 0;
  display: flex;
  align-items: center;
}

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

.hero p {
  color: #FFFFFF;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 400;
}

.hero ul {
  list-style: none;
  padding: 0;
}

.hero ul li {
  display: flex;
  align-items: center;
  padding-bottom: 6px;
}

.hero ul i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 6px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  padding: 10px 28px 12px 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);
}

@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;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
  padding-bottom: 20px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: 500;
  font-size: 14px;
  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 .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.vision-mission{
  margin-top: 70px;
}
.vision-mission .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.2s;
  height: 100%;
  position: relative;
  border-radius: 20px;
}

.vision-mission .card-item span {
  color: #0A2640;
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.vision-mission .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 2px 0 20px 0;
}

.vision-mission .card-item h4 a {
  color: var(--heading-color);
}

.vision-mission .card-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.vision-mission .card-item:hover {
  background: #0A2640;
  padding: 30px 30px 70px 30px;
}

.vision-mission .card-item:hover span,
.vision-mission .card-item:hover h4 a,
.vision-mission .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.gambit-custody .service-item .icon img{
  margin: 0 auto 20px auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background-color: #F0B91C;
  border-radius: 50%;
  padding: 10px;
}

.gambit-reserve .service-item .icon img{
  margin: 0 auto 20px auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  border-radius: 50%;
  padding: 10px;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.gambit-custody .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 18px;
  color: #FFFFFF;
}

.gambit-custody .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #FFFFFF;
}



.gambit-reserve .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 18px;
  color: #000000;
}

.gambit-reserve .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #000000;
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-black i {
  color: #0D0D0D;
}

.services .service-item.item-black:hover .icon i {
  color: #fff;
}

.services .service-item.item-black:hover .icon path {
  fill: #0D0D0D;
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 14px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 15px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--default-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--default-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.img-responsive{
  width: 100%;
}
.rounded-img{
  border-radius: 15px;
}

.py-3{
  padding-right: 30px;
  padding-left: 30px;
}

.gambit-custody{
  background-color: #0A2640;
  border-radius: 200px 0 200px 0;
  padding: 80px 0;
}
.gambit-custody .section-title, .gambit-custody .section-title h2{
  color: #FFFFFF;
  text-shadow: 2px 2px 2px #000000ad;
}

.gambit-reserve{

}

.gambit-reserve .service-item{
  background-color: #F7F7F7;
  border-radius: 10px;
  color: #000000;
}
.vision-mission .card-item:hover h4{
  color: #FFFFFF;
}

.footer-contact .text-1{
  font-size: 14px;
  font-weight: 700;
}

.footer-contact .text-2{
  font-size: 12px;
}
@media (max-width:480px){
  .xs-none{
    display: none;
  }
}
.parallax h2:after{
  background: white;
}

.swiper-container {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Stretch slides to equal heights */

}

.swiper-slide img {
  max-width: 100%;
  margin-bottom: 10px;
}


.swiper-button-next,
.swiper-button-prev {
  color: #000;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next:after, .swiper-button-prev:after{
 font-size: 20px!important;
 font-weight: 700;
}

.team-member {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%; /* Ensure the container takes full height */
}
.member-info {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-align text horizontally */
  text-align: center;
  width: 100%;
  flex-grow: 1; /* Allows content to stretch */
  justify-content: flex-start; /* Align text to the top */
}
.member-info h4 {
  margin: 0;
  font-size: 14px;
  color: #333;
  min-height: 50px; /* Ensures consistent height for headings */
  line-height: 1.3;
}
@media (max-width: 767px){
  .banner-bg{
    margin: auto;
    padding: 0 20px;
  }
  .hero-text{
    padding: 2rem !important;

  }
  .header .logo img{
    max-height: 42px;
  }
  .gambit-custody{
  border-radius: 100px 0 100px 0;
}
.navbar {
    border-radius: 0 0 50px 0;
  }
  #mc_embed_signup{
  background:#fff; false;clear:left; font: 14px "Montserrat", sans-serif;
  margin-top: 20px;
}
}

#mc_embed_signup{
  background:#fff; false;clear:left; font: 14px "Montserrat", sans-serif;
  margin: auto;
  padding: 10px 20px;
  width: auto;
}

/*----------------------- gambit custody css -----------------------*/
.hero-innerpage{
  min-height: unset;
  padding: 0;
}
.video-container {
  position: relative;
  width: 100%;
  height: 600px;
  background: url('../images/gambit-custody-hero.jpg') center center / cover no-repeat;
  cursor: pointer;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: white;
  padding: 20px;
  border-radius: 50%;
  cursor: pointer;
}
.directors{
  text-align: center;
  margin-top: 80px!important;
  margin-bottom: 50px!important;
}


.video-container.past-events {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('../images/gambit-custody-hero.jpg') center center / cover no-repeat;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}

.event-info{
  margin-top: 15px;
}

.event-date{
  font-size: 12px;
}

.event-info .text{
  font-size: 14px;
}

.btn-white{
  color: #000;
  background-color: #fff;
  border-radius: 50px;
  width: auto;
  padding: 8px 30px;
  margin: auto;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
}
.btn-white:hover{
  background-color: #fff;
  opacity: 0.9;
}

/* medias css*/
/* Style for the tabs */
.tabs {
  display: flex;
  justify-content: start;
  margin-bottom: 20px;
}

.tablink {
  background-color: #f1f1f1;
  color: #0a2640;
  border: none;
  padding: 14px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 5px;
  border-radius: 50px;
}

.tablink.active {
  background-color: #0a2640; /* Highlight the active tab */
  color: #FFFFFF;
}

.tablink:hover, .tablink:visited {
  background-color: #0a2640;
  color: #FFFFFF;
}

/* Hide content sections by default */
.tabcontent {
  display: none;
}

/* Make sure the active tab's content is shown */
.tabcontent.active {
  display: block;
}
.hero-bg-medias{
  background-image: url(../images/medias-hero.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 500px;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center; /* Horizontally center the text */
  align-items: center; /* Vertically center the text */
}
@media (max-width:767px){
  .hero-bg-medias{
    width: 100%;
    height: 300px;
  }
}
.mid-title{
 color: white; /* Adjust text color */
 font-size: 2rem; /* Adjust text size */
 text-align: center;
 font-weight: 600;
}

.medias .content{
  margin-top: 40px;
  margin-bottom: 40px;
}

.content-container{
  padding: 0;
}


/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #F0B91C;
}

/* Style the collapsible content. Note: hidden by default */
.gallery-img{
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

.leader-img{
  width: 100%;
  border-radius: 2px;
  border: 1px solid #dee2e6;
}

.accordion-body{
  text-align: left;
  
}

.accordion-button:not(.collapsed){
  background-color: transparent; 
  box-shadow: none;

}

.leader-name{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.leaders-div{
  position: relative;
  text-align: left;
  margin-bottom: 20px;
}

.leader-title{
  font-weight: 400;
  font-size: 14px;
  color: #212529;
  min-height: 50px;
}
.modal-lg .leader-title{
  min-height: unset;
}
.intro-1{
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
}
.intro-2{
  font-size: 15px;
}


.btn-get-started:hover, .btn-white:hover {
  transform: scale(1.02);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.team-member:hover,{
  transform: scale(1.02);
}
.service-item:hover {
  transform: scale(1.02);
}

.header:hover, .leader-img:hover {
  transform: scale(1.01);
}
.accordion-button:hover {
  transform: scale(1.01);
}

.post-header{
  width: 100%;
  border-radius: 5px;
}

.btn-view-details {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 150px;
  position: absolute;
}

.view-more-section{
  padding-top: 10px;
  margin-bottom: 30px;
}

.btn-white.btn-view-details{
  color: #FFFFFF;
  background: #F0B91C;
  font-weight: 700;
  font-size: 13px;
}
.hero-bg-color{
  height: 80px;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center; /* Horizontally center the text */
  align-items: center; /* Vertically center the text */
}

.legal-content .font-semibold{
  font-size: 20px;
  font-weight: 600;
}
.legal-content h1{
  font-size: 26px;
}

.legal-content section{
  padding: 20px 0;
}
#terms_table td{
  border: 1px solid black;
}

/* Custom Styles for Curved Image */
.curved-image {
  border-radius: 0 100px 100px 0; /* Adjust values for the curve effect */
  overflow: hidden;
}
.section-content {
  background-color: #0A2640; /* Background color */
  color: white;
  padding: 0;
}
.btn-custom {
  background-color: #F0B91C; /* Custom button color */
  border-radius: 50px;
  color: #0d2438;
  width: 160px;
  font-size: 13px;
  padding: 10px 0;
}
.hero-text{
  color: #FFFFFF;
  padding: 40px 10%!important;
  z-index: 2;
}

.hero-text.get-main-bg{
   padding: 30px 2%!important;
}

.hero-title{
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 30px;
}

.hero-small-text{
  font-size: 17px;
}

/* Show dropdown on hover */
.navbar{
  background-color: #0a2640;
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 0;
  z-index: 99;
}
.navbar .navbar-nav .nav-link{
  color: #FFFFFF;
  padding: 10px 20px;
}
.navbar .navbar-nav .nav-link:hover{
  color: #F0B91C;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: contents!important;
  }
}
.active, .collapsible:hover{
  background-color: transparent;
  color: #F0B91C;
}
.navbar-toggler {
  line-height: 1;
  color: #FFFFFF;
  background-color: transparent;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url(../images/toggle.png);
  background-repeat: no-repeat;
}
.shape-background{
  position: relative;
  right: 0;
  bottom: 0;
}
.shape-background img{
  width: 450px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

@media (max-width:450px){
  .shape-background img{
  width: 250px;
}
.navbar {
    border-radius: 0 0 50px 0;
  }
}
.section-content.bg-text{
  padding-top: 82px;
}
.dropdown-menu.show{
  background-color: #F0B91C;
  border: transparent;
}
.dropdown-item{
  color: #0A2640;
  font-weight: 600;
  font-size: 14px;
}
.dropdown-item.active, .dropdown-item:active{
  background-color: transparent!important;
}
.btn-dark {
  background-color: #0A2640;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: 13px;
}
.navbar-toggler{
  margin-right: 20px;
}
.sub-title{
  text-align: center;
  font-size: 16px;
  width: 100%;
  font-weight: 600;
  padding-bottom: 20px;
}
.sub-title#white-txt{
  color: #FFFFFF;
}
.gold-txt{
  color: #F0B91C;
}
.center{
  text-align: center;
}
.ggc-title{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #FFFFFF;
}
.ggc-text{
  font-size: 14px;
  text-align: center;
  color: #FFFFFF;
}
.solution1-bg{
  background-image: url(../images/individual-bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution2-bg{
  background-image: url(../images/business-bg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.get-bg{
  background-image: url(../images/get-bg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text.solution-bg{
  color: #FFFFFF;
  padding: 30px 5%!important;
  z-index: 2;
}

.solution-bg-text{
  color: #FFFFFF;
  font-size: 16px;
}

.get-bg-text{
  color: #FFFFFF;
  font-size: 16px;
}
.hero-text.solution-bg h1{
  color: #FFFFFF;
  font-size: 33px;
}

.hero-text.get-main-bg h1{
  color: #FFFFFF;
  font-size: 33px;
}
.indi-icon .icon img{
  margin: 0 auto 20px auto;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background-color: #0a2640;
  border-radius: 50%;
  padding: 10px;
}

.indi-icon .stretched-link h3{
  font-size: 18px;
  min-height: 45px;
}

.step-card {
  background-color: #F0B91C;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  height: 100%; /* Ensures equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.step-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}
.step-card img {
  width: 120px;
  margin: 10px auto;
}
.circle-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: white;
  color: #F0B91C;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto 15px auto;
  border: 1px solid #F0B91C;
}
.even .circle-number{
  background-color: #F0B91C;;
  color: white;
  border: 1px solid #F0B91C;
}
.step-card.even{
  background-color: white;
  color: #F0B91C;
}
.step-card.even h4 {
  color: #F0B91C;
}
.trust-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: white;
  overflow: hidden;
  padding: 80px 0 0 0;
}
.trust-intro{
  color: #F0B91C;
  font-weight: 700;
  font-size: 16px;
}
.trust-image {
  flex: 1;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  max-width: 700px;
  border-radius: 0 25px 25px 0;
}

.story-image{
   flex: 1;
  width: 100%;
  object-fit: cover;
  max-width: 700px;
  border-radius: 0 10px 10px 0;
}
@media (max-width:991px){
.story-image{
  max-height: 400px;
  border-radius: 10px;
  background-position: center;
  width: 100%;
}

.our-story-mobile
{
  text-align: center;
}
}

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

@media (max-width:767px){
.gambit-story{
  padding-bottom: 0; 
  padding-top:10px;
}

}
.trust-content {
  flex: 1;
  padding: 30px 50px 30px 100px;
}

.trust-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #F0B91C;
  padding-bottom: 20px;
}

.trust-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* Full-width settings */
.container-fluid {
  padding: 0;
}

@media (max-width:900px){
  .trust-section {
   display: inline-block;
   padding: 40px 0;
 }
 .trust-content {
  width: 100%;
  padding: 20px 25px;
}
}

@media (min-width: 1600px){
  .trust-content {
    flex: 1;
    padding: 30px 50px 30px 150px;
  }
}
.trust-image2 {
  flex: 1;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  max-width: 700px;
  border-radius: 25px 0 0 25px;
}
.icon {
  font-size: 2.5rem;
}
.section-title {
  font-weight: bold;
}
.section-text {
  color: #333;
}
.blue-txt{
  color: #0a2640;
  display: inline-block;
}

.modal-lg .modal-body{
  text-align: left;
}
.modal-header{
  border-bottom: transparent!important;
}

.modal-btn, .modal-btn:hover, .modal-btn:active{
  background-color: #0a2640;
  color: #FFFFFF;
  font-size: 12px;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
}

.modal-btn:hover, .modal-btn:active{
  background-color: #F0B91C;
  color:#0a2640;
}
.leader-logo{
width: 100%;
position: relative;
min-height: 55px;
}
.leader-logo-img{
  width: 95px;
  display: inline-block;
}
.contact-address{
  background-color: #ffffff;
    border-radius: 20px;
    padding: 25px 30px;
}
.contact-address .text-1{
  font-weight: 700;
}

@media (max-width: 767px){
 .contact-address{
 margin-bottom: 25px;
} 
}
.about-info {
    font-size: 13px;
    font-weight: 500;
    margin-top: 15px;
}

.chat-container{
  position: fixed;
    bottom: 20px;
    right: 20px;
    animation: borderBlink 1.5s infinite, buttonJump 1s infinite ease-in-out;
     background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-size: 16px;
    border: 2px solid #25D366;
    box-shadow: 0 0 5px #25D366;
    z-index: 9999;
}

.chat-container img{
  width: 70px;
}

@media (max-width: 767px){
.chat-container img{
  width: 80px;
}
}

@keyframes borderBlink {
    0%, 100% { border-color: #25D366; box-shadow: 0 0 10px #25D366; }
    50% { border-color: transparent; box-shadow: 0 0 20px #25D366; }
}

@keyframes buttonJump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); } /* 轻微跳动 */
}


 .language-switcher {
      position: fixed;
      top: 90px;
      right: 30px;
      z-index: 1000;
    }
    .language-switcher .btn {
      border: 1px solid #F0B91C;
      border-radius: 0.375rem;
      margin-left: 2px;
      font-size: 13px;
    }
 
    .language-switcher .btn.active {
      border: 1px solid #F0B91C;
      background-color: #F0B91C;
    }

    .text-yellow{
      color: #F0B91C;
    }

    .about-line{
      width: 80%;
      color: #F0B91C;
      text-align: center;
      margin: auto;
      left: 0;
      right: 0;
      border: 2px solid;
    }

    .faq-accordion{
      padding-top:120px;
      padding-bottom:50px;
    }

    .accordion-button{
      font-weight: 600;
      font-size: 16px;
    }
    

    .accordion-button:focus{
      box-shadow: none!important;
    }
     .accordion-button:focus{
     font-weight: 600;
     font-size: 15px;
    }

    .acc-title{
      margin-top: 40px;
      margin-bottom: 20px;
      font-weight: 600;
      font-size: 15px;
      color: #F0B91C;
    }

    .accordion-header{
  padding: 10px;
}