:root {
 --color-text: #505b73;
 --color-main: #a50064;
}
a.menu-link:hover {
 text-decoration: none
}
h2 {
 color: var(--color-text)
}
h4 {
 font-weight: 600;
 font-size: 1rem;
}
body {
 padding-top: 0;
}
hr.main {
 border-color: var(--color-main)
}
section:not(.slick-slider) {
 padding-top: 3em;
 padding-bottom: 3em;
}
strong, b {
 font-weight: bold;
}

.header-container {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 background-color: transparent;
 transition: all 0.3s ease;
 /**max-height: 86.5px; **/
}

/* Header hover state */
.header-container:hover {
 background-color: white;
 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Expanded state with dropdown */
.header-container.expanded {
 max-height: 300px;
 /* Expanded height with dropdown */
 background-color: white;
 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Scrolled state */
.header-container.scrolled {
 background-color: white;
 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Header bar (top part) */
.header-bar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 24px 32px;
 transition: all 0.3s ease;
}

.header-container.scrolled .header-bar,
.header-container.expanded .header-bar {
 padding: 24px 32px;
}

/* Color changes on hover/scroll */
.header-container:hover .logo,
.header-container.scrolled .logo,
.header-container.expanded .logo {
 color: #111827;
}

.header-container:hover .menu-link,
.header-container.scrolled .menu-link,
.header-container.expanded .menu-link {
 color: #111827;
}

.header-container:hover .mobile-menu-btn,
.header-container.scrolled .mobile-menu-btn,
.header-container.expanded .mobile-menu-btn {
 color: #111827;
}

/* Logo styles */
.logo {
 display: flex;
 align-items: center;
 text-decoration: none;
 color: white;
 font-weight: 600;
 font-size: 20px;
 transition: all 0.3s ease;
 z-index: 1002;
 position: relative;
}

.logo:hover {
 transform: scale(1.02);
}

.logo img {
 height: 48px;
 margin-right: 12px;
 transition: all 0.3s ease;
 z-index: 1;
}
.logo img.logo-white {
 filter: brightness(0) invert(1);
}
.logo img.logo-ori {
 position: absolute;
 top: 0;
 left: 0;
 z-index: 0;
 opacity: 0;
}

.header-container:hover .logo img.logo-white, .header-container.scrolled .logo img.logo-white {
 filter: brightness(1) invert(0);
 z-index: 0
}
.header-container:hover .logo img.logo-ori, .header-container.scrolled .logo img.logo-ori {
 z-index: 1;
 opacity: 1
}

/* Navigation */
.nav-container {
 display: flex;
 align-items: center;
}

nav ul {
 display: flex;
 list-style: none;
 margin: 0;
 padding: 0;
}

nav ul li {
 position: relative;
}

nav.header_desktop--view>ul>li:not(:first-child) {
 margin-left: 32px;
}

.menu-link {
 text-decoration: none;
 color: white;
 font-weight: 500;
 font-size: 17px;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 padding: 8px 0;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 cursor: pointer;
}

/* Chevron icon styles */
.menu-link svg {
 width: 21px;
 height: 21px;
 transition: transform 0.3s ease;
}

.menu-link.active svg {
 transform: rotate(180deg);
}

/* Dropdown container */
.dropdown-content {
 padding: 20px 0;
 background-color: white;
 display: none;
}

.dropdown-content.show {
 display: block;
 animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
 from {
  opacity: 0;
  transform: translateY(-10px);
 }
 to {
  opacity: 1;
  transform: translateY(0);
 }
}


.subMenu-list a {
 color: var(--color-text);
 padding: 5px 0;
 line-height: 1.28;
 display: block;
}

.subMenu-list a:hover {
 color: var(--color-main);
 text-decoration: none;
}

/* Hover effect */
.menu-link::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background-color: currentColor;
 transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item.show .menu-link::before,
.menu-link.active::before {
 width: 100%;
}

/* Active state */
.menu-link.active {
 font-weight: 500;
}

/* Mobile menu button */
.mobile-menu-btn {
 display: none;
 background: none;
 border: none;
 font-size: 24px;
 cursor: pointer;
 color: white;
 padding: 8px;
 transition: all 0.3s ease;
 z-index: 1002;
}

.mobile-menu-btn:hover {
 transform: scale(1.1);
}

/* Mobile menu */
.mobile-menu {
 position: fixed;
 top: 0;
 right: -100%;
 width: 80%;
 max-width: 320px;
 height: 100vh;
 background-color: white;
 box-shadow: -2px 0 8px rgba(0, 0, 0, 0.08);
 transition: right 0.3s ease;
 z-index: 1001;
 padding: 24px;
 display: flex;
 flex-direction: column;
}

.mobile-menu.active {
 right: 0;
}

.mobile-menu-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 32px;
}

.close-menu-btn {
 background: none;
 border: none;
 font-size: 24px;
 cursor: pointer;
 padding: 8px;
 color: #111827;
 transition: transform 0.2s ease;
}

.close-menu-btn:hover {
 transform: scale(1.1);
}

.mobile-nav ul {
 list-style: none;
 padding: 0;
 flex-direction: column;
}

.mobile-nav ul li a {
 text-decoration: none;
 color: var(--color-text);
 font-size: 19px;
 font-weight: 500;
 display: inline-block;
 position: relative;
}
.mobile-nav ul li+li {
 margin-top: 10px;
}
.mobile-nav ul ul li+li {
 margin-top: 6px;
}
.mobile-nav .menu-link {
 color: var(--color-text);
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.mobile-nav .subMenu-list {
 display: none;
 padding-left: 15px;
}
.mobile-nav .active .subMenu-list {
 display: block;
}
.mobile-nav ul li li a {
 font-size: 15px;
 padding: 3px 0
}

/* Mobile dropdown */

.overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.5);
 z-index: 1000;
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.3s, visibility 0.3s;
}

.overlay.active {
 opacity: 1;
 visibility: visible;
}

/* Responsive styles */
@media (max-width: 768px) {
 .header-bar {
  padding: 20px 24px;
 }

 .header-container.scrolled .header-bar,
 .header-container.expanded .header-bar {
  padding: 12px 24px;
 }

 .nav-container nav {
  display: none;
 }

 .mobile-menu-btn {
  display: block;
 }
}
.video-carousel {
 width: 100%;
 height: 100vh;
 position: relative;
 overflow: hidden;
 margin-bottom: 0 !important;
}

.slide {
 width: 100%;
 height: 100vh;
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
}

.slide-bg {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
}

.video-container {
 position: relative;
 width: 100%;
 height: 0;
 padding-bottom: 56.25%;
 /* 16:9 aspect ratio */
 background: #000;
}

.video-container iframe {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}

@media (max-width: 911px) {
    .video-container {padding-bottom: 0; width: 385%;}
    .video-container iframe {height: 100vh;margin-left: -50%;}
}

.image-bg {
 background-size: cover;
 background-position: center;
}

.slick-slider .caption {
 position: relative;
 z-index: 3;
 color: white;
 text-align: center;
 opacity: 0;
 transform: translateX(-50%) translateY(-0%);
 transition: all 0.5s ease;
 top: 50%;
 left: 50%;
 max-width: 860px;
}

.slick-slider .caption.show {
 opacity: 1;
 transform: translateX(-50%) translateY(-50%)
}

.slick-slider .caption h2 {
 font-size: 2.1em;
 color: #fff;
 font-weight: 600;
 max-width: 70%;
 margin: auto;
}

.slick-dots {
 bottom: 30px;
 right: 8%;
 display: flex;
 justify-content: center;
 left: 0;
 right: 0;
}

.slick-dots li button:before {
 color: white;
 font-family: none;
}
.slick-slide:after {
 background-color: rgba(0, 0, 0, 0.28);
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 2
}
.slick-next {
 right: 20px;
}
.slick-prev {
 left: 20px
}
.slick-prev, .slick-next {
 border: 1.5px solid #fff;
 padding: 8px;
 width: auto;
 height: auto;
 z-index: 1;
 opacity: 0.7
}
.slick-prev:before, .slick-next:before {
 font-family: none;
 opacity: 1
}
.slick-prev:before {
 content: '';
 background-image: url(images/arrow-prev.svg);
 width: 29px;
 height: 29px;
 background-size: contain;
 display: block;
 filter: invert(1);
}
.slick-next:before {
 content: '';
 background-image: url(images/arrow-next.svg);
 width: 29px;
 height: 29px;
 background-size: contain;
 display: block;
 filter: invert(1);
}
.slick-prev:hover, .slick-next:hover {
 opacity: 1;
 transition: opacity 300ms linear;
}
.btn {
 border: 1px solid var(--color-text);
 padding: 8px 30px 8px 12px;
 font-weight: 500;
 display: inline-flex;
 align-items: center;
}
.btn:after {
 background-image: url('images/arrow-btn.svg');
 width: 36px;
 height: 16px;
 position: relative;
 margin-top: 0;
 margin-left: 12px;
}
.btn:hover {
 background-color: var(--color-main);
 color: #fff;
 border-color: var(--color-main)
}
.btn:hover:after {
 filter: brightness(100)
}
section img {
 max-width: 100%;
}
.map-wrapper {
 position: relative;
 overflow: hidden;
}
.map-wrapper .legend {
 background-color: #e5e6ea;
 padding: 1em 2em;
 display: flex;
 flex-direction: column;
 border-radius: 25px;
 position: absolute;
 bottom: 8%;
 right: 8%;
 z-index: 1;
 box-shadow: 0 3px 45px rgba(0, 0, 0, 0.14);
 border: 0.5px solid rgba(0, 0, 0, 0.15);
}
.map-wrapper .legend img {
 max-width: 24px;
 margin-right: 0.8em;
}
.map-wrapper .legend .item {
 display: flex;
 flex-wrap: nowrap;
 color: var(--color-text);
 font-weight: 500;
}
.map-wrapper .legend .item.item {
 margin-top: 1em;
}
.list-counter .counter-info {
 display: flex;
 font-size: 2.6em;
 color: #a8adb9
}
.list-counter .counter-info>div {
 font-weight: 700;
}
.list-counter .counter-info-caption {
 position: relative;
 min-height: 75px;
}
.list-counter .counter-info-caption p {
 margin-bottom: 0;
}
.list-counter .counter-info-caption:after {
 content: '';
 width: 100%;
 height: 2px;
 background-color: #505b73;
 bottom: 0;
 display: block;
 position: absolute;
}
.list-counter .item-counter:hover .counter-info>div {
 color: var(--color-main);
 transition: color 200ms linear;
}
.list-counter .item-counter:hover .counter-info-caption:after {
 background-color: var(--color-main);
 transition: all 200ms linear;
 height: 8px;
}
#asiaGateway {
 background-color: #e5e6ea;
 background-image: url(images/bg-pattern-intro.webp);
 background-position: top left;
 background-size: contain;
 background-repeat: no-repeat;
}
#asiaGateway .row {
 align-items: center;
}
#companyAMC {
 background-color: var(--color-main)
}
#companyAMC h4 {
 color: #fff;
}
#companyAMC hr {
 border-color: #fff;
}
#companyAMC .list-companies {
 display: flex;
 flex-wrap: wrap;
 gap: 2em;
 margin-top: 2em;
}
#companyAMC .list-companies h2 {
 color: #fff;
}
#companyAMC .list-companies .item {
 flex: 1 1 calc((100% / 3) - (2em * 2 / 3));
 min-height: 210px;
 background-color: #fff;
 padding: 1.5em;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 overflow: hidden;
 border-radius: 20px;
}
#companyAMC .list-companies .item:first-child {
 padding: 0;
 background: none;
}
#companyAMC .list-companies img {
 max-width: atuo;
 max-height: 35px;
 width: auto;
}
#companyAMC .list-companies .item>a {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 flex-direction: column;
 align-items: center;
 width: 100%;
 height: 100%;
}
#companyAMC .list-companies .item>a:hover {
 text-decoration: none;
}
#companyAMC .list-companies p {
 margin-bottom: 0;
 text-align: center;
 transform: translateY(0em);
 color: var(--color-text);
 text-decoration: none;
 max-width: 85%;
 font-size: 0.9em;
 line-height: 1.25;
 margin-top: 1em;
}
#companyAMC .list-companies .item>a:before {
 width: 96%;
 height: 91%;
 position: absolute;
 top: 4%;
 left: 2%;
 content: '';
 border: 2px solid #fff;
 border-radius: 20px;
}
#companyAMC .list-companies .item a:after {
 content: '';
 background-image: url(images/arrow-btn.svg);
 position: absolute;
 display: block;
 width: 30px;
 height: 30px;
 bottom: 13px;
 right: 22px;
}
#newsInsights .list-post {
 margin-top: 2em;
}
#newsInsights .list-post .caption .badge {
 border-radius: 25px;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 8px 15px;
 text-transform: uppercase;
}
#newsInsights .list-post .caption .post-info {
 display: flex;
 gap: 0.5em;
}
#newsInsights .list-post .caption .post-info div+div:before {
 content: "|";
 padding-right: 0.5em;
}
#newsInsights .list-post .caption .post-info div+div {
 padding-left: 0.5em;
}
#newsInsights .list-post.is-insights .caption .badge {
 background-color: #fff;
 color: var(--color-text);
}
#newsInsights .list-post.is-insights a {
 display: block;
 border-radius: 25px;
 min-height: 480px;
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
}
#newsInsights .list-post.is-insights .caption {
 position: absolute;
 bottom: 0;
 padding: 2em;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 1em;
}
#newsInsights .list-post.is-insights .caption .post-info, #newsInsights .list-post.is-insights .caption .post-title {
 color: #fff;
}
#newsInsights .list-post.is-news {
 gap: 2.2em;
 display: flex;
 flex-direction: column;
}
#newsInsights .list-post.is-news a {
 text-decoration: none;
}
#newsInsights .list-post.is-news .caption {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 flex-wrap: wrap;
 gap: 1em;
}
#newsInsights .list-post.is-news .caption .post-title {
 flex-grow: 1
}
#newsInsights .list-post.is-news .caption .badge {
 background-color: var(--color-main);
 color: #fff
}
#newsInsights .list-post.is-news .post-title {
 color: var(--color-text);
 font-weight: 400;
 font-size: 1.15em;
 max-width: 85%;
 line-height: 1.35
}
#newsInsights .list-post.is-news a:hover .post-title {
 color: var(--color-main);
 transition: color 200ms linear;
}
#newsInsights .list-post.is-news a:hover .post-info {
 color: var(--color-main);
}
#newsInsights .list-post.is-news .item+.item {
 border-top: 2px solid var(--color-main);
 padding-top: 2.2em;
}
@media (min-width:1025px) {
 .slick-slider .caption h2 {
  font-size: 4.375em;
 }
 .list-counter .counter-info {
  font-size: 3.6em;
 }
 #companyAMC .list-companies .item {}
 #companyAMC .list-companies p {
  opacity: 0;
  height: 0;
  margin-top: 0;
 }
 #companyAMC .list-companies img {
  max-height: 42px;
 }
 #companyAMC .list-companies .item:hover p {
  transition: all 200ms linear;
  opacity: 1;
  transform: translateY(-1em);
  font-size: 0.9em;
  line-height: 1.25;
  max-width: 85%;
 }
 #companyAMC .list-companies .item:hover img {
  transition: transform 200ms linear;
  transform: translateY(-1.5em);
 }
 #companyAMC .list-companies .item:hover a:before {
  border-color: var(--color-main);
  transition: border-color 200ms linear;
 }
 #companyAMC .list-companies .item:hover p {
  transition: all 200ms linear;
  opacity: 1;
  transform: translateY(-1em);
 }
 #companyAMC .list-companies .item a:after {
  opacity: 0;
  transform: translateX(-1em)
 }
 #companyAMC .list-companies .item:hover a:after {
  opacity: 1;
  transition: all 200ms linear;
  transform: translateX(0);
 }

}
@media (max-width:992px) {
 #companyAMC .list-companies .item {
  flex: 1 1 calc((100% / 2) - (2em * 1 / 2));
 }
}
@media (max-width:767px) {
 .map-wrapper .legend {
  transform: scale(0.35);
  transform-origin: bottom right
 }
 .slick-prev {
  left: 12px;
 }
 .slick-next {
  right: 12px;
 }
 .slick-prev, .slick-next {
  transform: scale(0.8);
 }
 #companyAMC .list-companies {
  flex-direction: column;
 }
 #companyAMC .list-companies .item:first-child {
  min-height: auto;
 }
 footer #sitemap, footer #footnote {
  margin-top: 2em;
  padding-top: 2em;
 }
 #footnote>.row {
  flex-direction: column-reverse;
  gap: 1em;
 }
 #footnote>.row>.d-flex {
  flex-direction: column;
 }
 #footnote>.row>.d-flex p {
  margin-bottom: 5px;
 }
 footer #footnote .footnote-links li:first-child {
  padding-left: 0;
 }
 footer #footnote .footnote-links li:first-child:before {
  content: '';
  padding: 0;
 }
}
.header_desktop--view .subMenu-list {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 position: absolute;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 -webkit-box-align: start;
 -ms-flex-align: start;
 align-items: flex-start;
 opacity: 0;
 -webkit-transition: all .2s ease 0s;
 transition: all .2s ease 0s;
 visibility: hidden;
 pointer-events: none;
 top: 30px;
 width: 200px;
}
.header_desktop--view .show .subMenu-list {
 opacity: 1;
 visibility: visible;
 pointer-events: auto;
 -webkit-transition: all .35s ease .15s;
 transition: all .35s ease .15s;
 top: 50px;
}
.mega-menu-cover {
 position: absolute;
 left: 0;
 background-color: #fff;
 width: 100%;
 height: 0;
 -webkit-transition: all .2s ease;
 transition: all .2s ease;
 opacity: 1;
 visibility: hidden;
 z-index: -1;
 top: 86.5px;
}
.header-bar.show+.mega-menu-cover {
 visibility: visible;
}
footer {
 background-color: #505b73;
 background-image: url(images/bg-enquiry.webp);
 background-position: center -30%;
 background-repeat: no-repeat;
 background-size: contain;
 min-height: 600px;
}
#enquiryCTA h3, #enquiryCTA p {
 color: #fff;
}
#enquiryCTA input, #enquiryCTA textarea {
 background-color: transparent;
 border-width: 0 0 1px 0px;
 height: 60px;
 color: #fff;
}

#enquiryCTA input::placeholder, #enquiryCTA textarea::placeholder {
 color: #fff;
 opacity: 1;
}
#enquiryCTA button[type="submit"] {
 background-color: transparent;
 border-color: #fff;
 color: #fff;
 filter: brightness(0) invert(1);
}
#enquiryCTA button[type="submit"]:hover {
 background-color: var(--color-main);
 border-color: var(--color-main);
 color: #fff;
 filter: brightness(1) invert(0);
}
#enquiryCTA button[type="submit"]:hover:after {
 filter: brightness(0) invert(1);
}
footer #sitemap, footer #footnote {
 padding-top: 2em;
}
footer #sitemap img.footer-logo {
 max-width: 240px;
 margin-bottom: 2em;
}
footer #sitemap ul, footer #footnote ul {
 border-left: none;
 padding-left: 0;
}
footer #sitemap ul li:before {
 content: '•';
 font-weight: 300;
 font-size: 0.85em;
 position: absolute;
 top: 5px;
 left: 0;
}
footer #sitemap li a, footer #footnote li a, footer #footnote p {
 font-size: 0.85em;
}
footer #sitemap li {
 padding: 2px 0 2px 10px
}
footer #sitemap a, footer #footnote a {
 color: #eee;
 line-height: 1.25
}
footer #sitemap a:hover, footer #footnote a:hover {
 text-decoration: none;
 color: #fff
}
footer #footnote li {
 padding: 0
}
footer #footnote .footnote-links {}
footer #footnote .footnote-links li:before {
 content: '|';
 padding: 0 6px;
 font-size: 0.85em;
 line-height: 1.3
}
footer .hr-row {
 padding-bottom: 3em;
}
.page-banner {
 display: flex;
 align-items: flex-end;
}
.page-banner .wrap {
 position: relative;
}
.page-banner .wrap:after {
 display: none;
}
@media (min-width: 992px) {
 .page-banner .wrap {
  padding: 1em 0 0 8%
 }
}
#carouselSolutions {
 background: white;
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
 margin: 40px auto;
}

#carouselSolutions .carousel {
 display: flex;
 flex-wrap: wrap;
}

#carouselSolutions .image-column {
 flex: 1;
 min-width: 300px;
 min-height: 400px;
 background-size: cover;
 background-position: center;
 transition: background-image 0.5s ease;
}

#carouselSolutions .content-column {
 flex: 1;
 min-width: 300px;
 padding: 40px;
 display: flex;
 flex-direction: row;
 justify-content: center;
 flex-wrap: wrap;
}

#carouselSolutions .toggle-buttons {
 display: flex;
 gap: 15px;
 flex-basis: 70%;
}

#carouselSolutions .toggle-btn {
 padding: 8px 25px 8px 25px;
 background: #f8f9fa;
 border: 2px solid #222;
 border-radius: 8px;
 font-weight: 500;
 font-size: 1rem;
 cursor: pointer;
 transition: all 0.3s ease;
 align-self: center;
 color: var(--color-main);
}

#carouselSolutions .toggle-btn.active, #carouselSolutions .toggle-btn:hover {
 background: var(--color-main);
 color: white;
 border-color: var(--color-main);
 box-shadow: 0 5px 15px rgba(166, 3, 100, 0.3);
}


#carouselSolutions .nav-controls {
 display: flex;
 align-items: center;
 justify-content: flex-end;
 flex-basis: 30%;
 position: relative;
 gap: 15px;
}

#carouselSolutions .nav-controls button {
 border-color: var(--color-text);
 left: inherit;
 right: inherit;
 opacity: 1;
 position: relative;
}
#carouselSolutions .slick-prev:before {
 background-image: url(images/arrow-prev-main.svg);
 filter: none;
 width: 24px;
 height: 24px;
 opacity: 2px;
 position: relative;
}
#carouselSolutions .slick-next:before {
 background-image: url(images/arrow-next-main.svg);
 filter: none;
 width: 24px;
 height: 24px;
}
#carouselSolutions .nav-controls button:hover {
 background-color: var(--color-main);
 border-color: var(--color-main);
 transition: all 200ms linear
}
#carouselSolutions .nav-controls button:hover:before, #carouselSolutions .nav-controls button:hover:after {
 filter: brightness(100);
}


#carouselSolutions .content-area {
 margin-bottom: 40px;
 position: relative;
 flex-basis: 100%;
 flex-grow: 1;
 margin-top: 1.5em;
 padding-top: 1.5em;
 border-top: 2px solid var(--color-main);
 min-height: 460px;
}


#carouselSolutions .slide-content {
 display: none;
}

#carouselSolutions .slide-content.active {
 display: block;
}



#carouselSolutions .slide h2 {
    margin-bottom: 20px;
    color: var(--color-main);
}

#carouselSolutions .slide p {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
}

#carouselSolutions .slide ul {padding-left: 1.2em;}
#carouselSolutions .slide ul>li {font-size: 18px; font-weight: 500}
#carouselSolutions .slide ul>li+li {padding-top: 0.45em;}
#carouselSolutions .slide ul ul {position: relative; list-style: none; padding-left: 0.8em; padding-top: 0.65em;}
#carouselSolutions .slide ul ul>li {font-size: 0.8em;}
#carouselSolutions .slide ul ul>li+li {padding-top: 0.4em;}
#carouselSolutions .slide ul ul>li:before {content: '-'; padding-right: 4px;}

#carouselSolutions .dot-indicators {
 display: flex;
 gap: 12px;
 flex-basis: 100%;
 flex-grow: 1;
 justify-content: center;
}

#carouselSolutions .dot {
 width: 12px;
 height: 12px;
 border-radius: 50%;
 background: #dee2e6;
 cursor: pointer;
 transition: all 0.3s ease;
}

#carouselSolutions .dot.active {
    background: var(--color-main);
    transform: scale(1.3);
}

#carouselSolutions .tab-content {
        display: none;
    }

    #carouselSolutions .tab-content.active {
        display: block;
    }

    #carouselSolutions .slide {
        display: none;
        height: auto;
    }

    #carouselSolutions .slide.active {
        display: block;
    }

@media (max-width: 768px) {
    #carouselSolutions .image-column {
        min-height: 300px;

    }
    #carouselSolutions .content-area {margin-top: 2.5em;}

    #carouselSolutions .slide h2 {
        font-size: 28px;
    }

    #carouselSolutions .slide p {
        font-size: 16px;
    }
    
    #carouselSolutions .toggle-buttons,
    #carouselSolutions .nav-controls {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

.video-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;   /* crops while filling */
}


.video-carousel a.btn {border-color: white; color: #fff; margin-top: 1.5em;}
.video-carousel a.btn:hover {border-color: var(--color-main);}
