.header {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    z-index: 999;
}

.header:hover {
    background: var(--white) !important;
}

.header-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header .top-bar .nav-left {
    display: flex;
    gap: 48px;
}

.header .top-bar .nav-right {
    display: flex;
    gap: 8px;
}

.header .top-bar .logo {
    display: flex;
    align-items: center;
    color: var(--black);
}

.header.light .top-bar .logo {
    color: var(--white);
}

.header.light:hover .top-bar .logo {
    color: var(--black);
}

.header .top-bar .logo img {
    height: 32px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu .subheading-3 {
    display: flex;
    align-items: center;
    font-size: var(--paragraph-medium);
    line-height: 100%;
    font-style: medium;
    font-weight: 600;
    color: var(--black);
    padding: 10px 20px;
    border-radius: 99px;
    text-transform: capitalize;
}

.header.light .menu .subheading-3 {
    color: var(--white);
}

.menu .menu-link {
    display: flex;
    align-items: center;
    font-size: var(--paragraph-medium);
    line-height: 100%;
    font-style: medium;
    font-weight: 600;
    color: var(--black);
    padding: 10px 20px;
    border-radius: 99px;
    text-transform: capitalize;
}

.header.light .menu .menu-link {
    color: var(--white);
}

.header.light:hover .menu .menu-link {
    color: var(--black);
}

.header.light:hover .menu .subheading-3 {
    color: var(--black);
}


.header.light .button-transparent {
    color: var(--white);
}

.header.light:hover .button-transparent {
    color: var(--black);
}

.header.light:hover .button-light {
    background-color: var(--black);
    color: var(--white);
}


.menu .menu-link:hover {
    background-color: var(--gray-200);
}

.menu li:hover>.dropdown-content {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-content {
    display: flex;
    position: absolute;
    padding: 20px 0;
    padding-top: 40px;
    width: 100%;
    left: 0;
    top: calc(100% - 20px);
    background: var(--white);
    transition: all 0.4s;
    box-shadow: 0px 8px 8px 0px rgba(75, 75, 75, 0.05);
    z-index: 999;
    visibility: hidden;
    transform: translateY(0);
    opacity: 0;
}

.dropdown-menu-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.dropdown-menu-item h3 {
    padding: 10px 20px;
    text-transform: none;
    color: var(--black);
}

.dropdown-menu-item ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.dropdown-link {
    display: flex;
    color: var(--gray-800);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: var(--paragraph-small);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
}

.dropdown-link:hover {
    color: var(--gray-800);
    background-color: var(--gray-100);
}

.dark-mode .dropdown-link {
    color: #97989B;
}

.dark-mode .dropdown-link:hover {
    color: #97989B;
}

.menu-button {
    background-color: red;
}

/* Mobile header */
.mobile-nav-toggler i {
    font-size: 24px;
    color: var(--gray-100);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 900ms ease;
    background-color: var(--white);
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 50px 25px;
    text-align: left;
}

.mobile-menu .nav-logo a {
    display: flex;
    justify-content: center;
    width: 100%;
    color: var(--black);
}

.mobile-menu .nav-logo img {
    width: 190px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 900ms ease;
    background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.7;
    visibility: visible;
    right: 100%;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
}

.mobile-menu .menu-box {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--blue);
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all 900ms ease !important;
}

.mobile-menu .menu-box .title {
    display: none;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    background-color: var(--white);
}


.mobile-menu .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .menu-box .menu {
    padding-left: 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .menu-box .menu li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .menu-box .menu li>a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .menu-box .menu li>h3 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .menu-box .menu li.current>a:before {
    height: 100%;
}

.mobile-menu .menu-box .menu li>a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .menu-box .menu .drop .mobile-menu .nav-logo {
    display: none;
}

.mobile-menu .menu-box .menu .drop.open .mobile-menu .nav-logo {
    display: block;
}

.mobile-menu .drop .dropdown-content {
    display: none;
    position: relative;
}

.mobile-menu .drop .dropdown-menu-list {
    display: flex;
}

.mobile-menu .drop .dropdown-menu-list .dropdown-menu-item {
    width: 100%;
}

.mobile-menu .drop.open .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu .navigation .mobile-menu .nav-logo {
    padding: 8px 0;
}

.mobile-menu .navigation .mobile-menu .nav-logo ul {
    display: none;
    padding-left: 0;
}

.mobile-menu .navigation .mobile-menu .nav-logo .row {
    margin: 0;
}

.mobile-menu .navigation .mobile-menu .nav-logo .col-md-6 {
    padding: 0;
}

.mobile-menu .navigation .mobile-menu .nav-logo .col-md-6 {
    padding: 0;
}

.mobile-menu .menu-box .menu .drop .mobile-menu .nav-logo p {
    padding: 6px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: small;
    text-wrap: nowrap;
}

.mobile-menu .menu-box .menu .drop .mobile-menu .nav-logo a {
    color: #fff;
}

.mobile-menu .menu-box .menu .drop .mobile-menu .nav-logo .col-md-3 {
    width: 100%;
}

.mobile-menu .menu-box .menu .drop .mobile-menu .nav-logo .col-md-9 {
    width: 100%;
}

.mobile-menu .navigation li ul li>a {
    margin-left: 20px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 12px;
    line-height: 34px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    color: #ffffff;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .social-links {
    position: relative;
    padding: 0px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .contact-info {
    position: relative;
    padding: 120px 30px 20px 30px;
    color: var(--gray-600);
}

.mobile-menu .contact-info ul {
    padding-left: 0;
}

.mobile-menu .contact-info h5 {
    position: relative;
    color: var(--black);
    margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
    position: relative;
    display: block;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.mobile-menu .contact-info ul li a {
    color: var(--gray-900);
}

.dark-mode .mobile-menu .contact-info ul li {
    color: #d6d6d6;
}

.dark-mode .mobile-menu .contact-info ul li a {
    color: #fff;
}

.mobile-menu .contact-info ul li a:hover {
    text-decoration: underline;
}

.mobile-menu .contact-info ul li:last-child {
    margin-bottom: 0px;
}

.mobile-nav-toggler {
    padding: 12px;
    background-color: transparent;
    border: none;
    justify-content: flex-end;
    color: var(--black);
    display: none;
}

.header:hover .mobile-nav-toggler {
    color: var(--black)
}

.mobile-menu .drop .dropdown-content {
    padding: 12px 0;
    display: block;
    opacity: 1;
    visibility: visible;
}


.mobile-menu .dropdown-menu-item p a {
    display: none;
}

.mobile-menu .dropdown-menu-list {
    flex-direction: column;
}

.mobile-menu .dropdown-menu-item p a.m-b {
    display: block;
    font-weight: 500;
    font-size: 14px;
}

.mobile-menu .menu-box .menu li>a {
    background-color: var(--gray-200);
}

.button-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    padding: 10px 24px;
    gap: 8px;
    border: none;
    border-radius: 999px;
    font-size: var(--paragraph-medium);
    color: var(--white);
    line-height: 100%;
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    width: auto;
    transition: 0.3s ease all;
}

.button-dark:hover {
    background-color: var(--gray-1000);
    color: var(--white);
    padding: 10px 34px;
    gap: 20px;
}

.dark-mode .button-dark:hover {
    background-color: #E5E6E7;
}

.button-light {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--white);
    padding: 10px 24px;
    border: 1px solid var(--black);
    border-radius: 999px;
    font-size: var(--paragraph-medium);
    color: var(--black);
    line-height: 100%;
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    transition: 0.3s ease all;
}

.button-light:hover {
    background-color: var(--gray-100);
    color: var(--black);
    padding: 10px 34px;
    gap: 20px;
}

.mobile-menu .menu-box .menu li>a {
    border-radius: 0;
}

.button-light.active {
    background-color: var(--black);
    color: var(--white);
}

.button-light.active:hover {
    color: var(--white);
}

.button-light.button-light-style-2 {
    border-color: var(--white);
}

.button-light.button-light-style-3 {
    color: var(--white);
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.24);
}

.dark-mode .button-light.button-light-style-3 {
    /* background-color: rgba(0, 0, 0, 0.24); */
    color: #fff;
    border-color: #fff;
}

.button-light.button-light-style-3.active {
    color: var(--black);
    background-color: var(--white);
}

.button-transparent {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: var(--paragraph-medium);
    color: var(--black);
    line-height: 100%;
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
}

.button-transparent:hover {
    background-color: var(--gray-100);
    color: var(--black);
}

.slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.slider-section.product {
    height: 80vh;
}

.slider-section.product .slider-owl-item {
    height: 80vh;
}

.slider-section.product .slider-content-4 {
    top: 180px;
}

.slider-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 920px;
    gap: 20px;
    color: var(--black);
    text-align: center;
    z-index: 1;
}

.slider-content-2 {
    position: absolute;
    top: 180px;
    left: 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 20px;
    color: var(--black);
    z-index: 1;
}

.slider-content-2 span {
    opacity: 0.8;
}

.slider-content-2 p {
    max-width: 510px;
}

.slider-content-3 {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 20px;
    color: var(--black);
    z-index: 1;
}

.slider-content-3 span {
    opacity: 0.8;
}

.slider-content-3 p {
    max-width: 510px;
}

.slider-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    max-width: 720px;
    gap: 20px;
}

.slider-content-container .title h6 {
    opacity: 0.7;
}

.slider-content-4 .slider-content-container {
    max-width: 780px;
}

.slider-content-4 .slider-content-container h1 {
    color: #fff;
}

.slider-content-4 .slider-content-container p {
    color: #fff;
}

.slider-content-4 .slider-content-container .title {
    color: #fff;
}

.slider-content-4 .slider-content-container .title h6 {
    color: #fff;
    opacity: 0.7;
}



.slider-content-4 {
    position: absolute;
    top: 280px;
    left: 0%;
    transform: translate(0%, 0%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 20px;
    color: var(--black);
    z-index: 1;
}

.slider-content-4 span {
    opacity: 0.8;
}

.slider-content-4 p {
    max-width: 600px;
}

.slider-section .owl-carousel {
    position: relative;
}

.slider-section .owl-dots {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0 auto;
}

.slider-section .owl-dot span {
    background: var(--black) !important;
    opacity: 0.32;
    width: 8px !important;
    height: 8px !important;
}

.slider-section .owl-dot.active span {
    opacity: 1;
    width: 10px !important;
    height: 10px !important;
}

.slider-owl-item {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slider-owl-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content .description {
    max-width: 620px;
    z-index: 1;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 56px;
    color: var(--black);
}

.page-title.light {
    color: #fff;
}

.page-title p {
    max-width: 640px;
}

.services-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.services-section .page-title h6 {
    font-size: calc(20px * var(--scaleFactor));
    opacity: 0.6;
}

.services-section .owl-carousel {
    margin: 100px 0 !important;
}

.services-section table td {
    border: none !important;
    border-bottom: 1px solid var(--gray-200) !important;
    padding: 20px 0 !important;
    font-size: var(--paragraph-large) !important;
    font-style: medium !important;
    font-weight: 500 !important;
    line-height: 140% !important;
}

.services-section .owl-stage-outer {
    overflow: unset;
}

.services-section .owl-dots {
    margin-top: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.services-section .owl-dots .active span {
    background-color: var(--gray-1000) !important;
    transform: scale(1.4);
    transition: 0.4s ease all;
}

.services-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.service-item {
    position: relative;
    display: flex;
    align-items: end;
    border-radius: 16px;
    width: 270px;
    height: 376px;
    transition: 0.4s ease all;
}

.service-item.active {
    width: 316px;
    height: 432px;
}

.owl-carousel .service-item {
    width: unset;
    height: unset;
    aspect-ratio: 75/100;
}

.owl-carousel .center .service-item {
    scale: calc(1.1);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    inset: 1;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.service-detail-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.service-detail-top {
    position: absolute;
    top: 24px;
    left: 24px;
    max-width: 140px;
}

.service-detail-top span {
    color: #fff;
    font-size: calc(26px * var(--scaleFactor));
    line-height: 120%;
    font-weight: 500;
}

.service-detail-center h4 {
    font-size: calc(32px * var(--scaleFactor));
    font-weight: 600;
}

.service-item.active .service-detail-center h4 {
    font-size: calc(40px * var(--scaleFactor));
}

.service-wrapper {
    padding: 0 40px;
}

.service-detail {
    position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 12px 16px;
    background-color: #fff;
    border-radius: 16px;
}

.service-detail-2 {
    position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, .2);
}

.service-detail-title {
    position: absolute;
    top: 34px;
    left: 34px;
}

.service-detail-title h4 {
    font-size: 24px;
    font-weight: 500;
    text-transform: unset;
}

.service-detail-2 h4 {
    color: #fff;
    font-size: 18px;
}

.service-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: black;
    width: 100%;
}

.service-title h3 {
    text-transform: none;
}

.service-detail-2 {
    position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
    display: flex;
    justify-content: space-around;
    gap: 12px;
    padding: 12px 12px 12px 16px;
    background-color: var(--white);
    border-radius: 16px;
}

.service-title-2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
    width: 100%;
}

.service-amount {
    display: flex;
    height: 100%;
    color: var(--black);
}

.card-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--gray-200);
    overflow-x: hidden;
}

.card-section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 180px;
    padding: 70px;
    color: var(--black);
}

.card-section-image {
    position: relative;
    width: 100%;
}

.card-section-image .background {
    width: 480px;
    height: 270px;
    background: linear-gradient(to top right,
            rgba(168, 230, 163, 1) 0%,
            rgba(36, 139, 69, 1) 50%,
            rgba(17, 51, 85, 0.87) 100%);
    border-radius: 16px;
}

.card-section-image img {
    position: absolute;

    transform-origin: center center;
    display: block;
    margin: auto;
    /* box-shadow: 0 30px 20px -20px rgba(0, 0, 0, 0.5); */
    border-radius: 20px;
}

.card-style-1 {
    width: 320px;
    top: 50%;
    left: 40%;
    transform: translate(-40%, -50%);
    animation: bounceUpDown1 2s infinite alternate ease-in-out;
}

.card-style-2 {
    width: 320px;
    top: 50%;
    left: 40%;
    transform: translate(-40%, -50%);
    animation: bounceUpDown2 2.2s infinite alternate ease-in-out;
}

.card-style-3 {
    width: 383px;
    top: -20px;
    left: 50%;
    transform: translate(-50%, 0);
    animation: bounceUpDown3 3s infinite alternate ease-in-out;
}

@keyframes bounceUpDown1 {
    0% {
        transform: translate(-40%, -50%) rotate(25deg) translateY(-15px);
    }

    100% {
        transform: translate(-40%, -50%) rotate(25deg) translateY(15px);
    }
}


@keyframes bounceUpDown2 {
    0% {
        transform: translate(-40%, -50%) rotate(-25deg) translateY(-15px);
    }

    100% {
        transform: translate(-40%, -50%) rotate(-25deg) translateY(15px);
    }
}

@keyframes bounceUpDown3 {
    0% {
        transform: translate(-50%, 0) translateY(-10px);
    }

    100% {
        transform: translate(-50%, 0) translateY(10px);
    }
}

.card-section-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.card-section-content-buttons {
    display: flex;
    gap: 12px;
}

.app-section {
    width: 100%;
    background-color: var(--black);
}

.dark-mode .app-section {
    background-color: #1E1E1F;
}

.app-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 70px;
    width: 100%;
    height: 400px;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    max-width: 580px;
    z-index: 2;
}



.app-content-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

#download-type-2 .app-content-buttons {
    justify-content: center;
}

#download-type-2 .app-content {
    max-width: unset;
}

.app-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 140px 0;
    border-top: 1px solid var(--gray-200);
}

.content-section .page-title h6 {
    opacity: 0.6;
}

.content-section-list {
    display: flex;
    gap: 40px;
}

.content-section-card {
    position: relative;

    border-radius: 16px;
    overflow: hidden;
}

.content-section-card img {
    width: 100%;
    aspect-ratio: 100/70;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.content-section-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
    width: 100%;
    height: 168px;
    /* position: absolute;
    bottom: 0;
    left: 0; */
    background-color: var(--gray-100);
    color: var(--black);
    transition: all 0.3s ease;
}

.content-section-detail h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-section-card.active .content-section-detail {
    background-color: transparent;
    color: var(--white);
}

.dark-mode .content-section-card.active .content-section-detail {
    color: var(--black);
}

.content-section-card:hover .content-section-detail {
    /* background-color: transparent;
    color: var(--white);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.9) 100%); */
}

.dark-mode .content-section-card:hover .content-section-detail {
    /* color: var(--black); */
}

.content-section-list .owl-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 56px;
}

.content-section-list .owl-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black) !important;
    background-color: var(--white) !important;
    color: var(--black) !important;
    width: 42px;
    height: 42px;
    border-radius: 999px;
}

.content-section-list .owl-nav button span {
    font-size: 26px;
    margin-top: -4px;
}

.content-section-list .owl-nav button:hover {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

footer {
    padding: 40px 0;
    background-color: #1E1E1F;
}

.footer-liner {
    background: linear-gradient(to bottom,
            #161616 0%,
            #313131 100%);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-container .line {
    width: 100%;
    height: 1px;
    background-color: #323334;
}

.footer-top-bar {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-top-bar-menu {
    display: flex;
    gap: 40px;
}

.footer-top-bar-menu a {
    color: white;
    font-family: var(--main-font);
    font-size: var(--subheading-3);
    font-style: demibold;
    font-weight: 600;
    line-height: 120%;
}

.footer-middle-bar h3 {
    color: white;
    margin-bottom: 16px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.footer-menu a {
    color: #B1B2B5;
    font-size: var(--paragraph-xsmall);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
}

.footer-menu a:hover {
    color: #CBCCCD;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: white;
}

.footer-contact span {
    color: #B1B2B5;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-bar p {
    color: #B1B2B5;
}

.organization-service-section {
    padding: 160px 0;
}

.organization-service-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 180px;
    padding: 70px;
    color: var(--black);
}

.organization-service-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.organization-service-image {
    width: 100%;
}

.organization-service-image img {
    max-width: 450px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.card-service-section {
    background: linear-gradient(to bottom,
            rgba(22, 22, 22) 0%,
            rgba(49, 49, 49) 100%);
}

.card-service-section .page-title {
    z-index: 99;
}

.card-service-section .saving-section-title h6 {
    opacity: 0.6;
}

.card-service-section-container {
    position: relative;
}

.card-service-section-container .buttons {
    position: absolute;
    bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
}

.card-service-section-container .video {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.card-service-section-container video {
    display: none;
}

.card-service-section-container video.active {
    display: block;
}

.card-service-section-container-2 {
    padding-top: 140px;
    padding-bottom: 60px;
}



.card-service-section-container-2 .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin-top: 60px;
}

.card-service-section-container-2 img {
    display: none;
}

.card-service-section-container-2 img.active {
    display: block;
}

.card-service-section-container-2 video {
    display: none;
}

.card-service-section-container-2 video.active {
    display: block;
}

.card-service-section-container-2 .saving-section-title span {
    opacity: 0.8;
}

.card-service-section-title {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 56px;
    color: #fff;
}

.card-service-section-title p {
    max-width: 640px;
}

.saving-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 1;
}

.saving-section-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
    height: 100%;
}

.saving-section img {
    display: none;
}

.saving-section img.active {
    display: block;
}

.saving-section-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 336px;
    height: 426px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.32) 100%);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 24px;
    color: #fff;
}

.saving-section-card h6 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.saving-section-card span {
    opacity: 0.8;
}

.saving-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.saving-section-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 56px;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.saving-section video {
    display: none;
}

.saving-section video.active {
    display: block;
}

.saving-section-title p {
    max-width: 640px;
}

#saving-results b {
    font-weight: bold;
}

.modal-calculator-result {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
}

.modal-calculator-result .result {
    flex: 1;
}

.modal-calculator-result .modal-calculator-chart {
    width: 200px;
}

.modal-calculator-result b {
    font-weight: bold;
}

.modal-calculator-result p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid var(--gray-200);
}


/* Track - Chrome */
.form-range::-webkit-slider-runnable-track {
    height: 8px;
    background: var(--gray-200);
    border-radius: 5px;
}

/* Thumb - Chrome */
.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

/* Firefox Track */
.form-range::-moz-range-track {
    height: 8px;
    background: var(--gray-200);
    border-radius: 5px;
}

/* Firefox Thumb */
.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.insure-section {
    /* padding: 160px 0; */
    padding: 160px 0;
    overflow: hidden;
}

.insure-section-container {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    gap: 150px;
    padding: 0 70px;
    color: var(--black);
}

.insure-section-container video {
    border-radius: 32px;
    overflow: hidden;
}

.insure-section-container img {
    border-radius: 32px;
    overflow: hidden;
    max-width: 100%;
}

.insure-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    max-width: 510px;
}

.insure-section-content h6 {
    font-family: var(--main-font);
    font-size: var(--subheading-2);
    font-weight: 600;
    line-height: 120%;
    text-transform: none;
    opacity: 0.7;
}

.account-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #000;
}

.account-section .page-title span {
    opacity: 0.8;
}

.account-section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    justify-self: unset;
}

.account-section-video {
    display: flex;
    justify-content: center;
}

.account-section-video video {
    display: none;
    margin-bottom: 80px;
}

.account-section-video video.active {
    display: block;
}

.account-section-video img {
    display: none;
}

.account-section-video img.active {
    display: block;
}

.account-section-style-2 {
    background-color: #fff;
}

.account-section-style-2 .page-title {
    margin-bottom: 24px !important;
}

.account-section-style-2 .account-section-video {
    width: 80%;
}

.account-section-video video {
    margin-bottom: 32px;
}

.buttons-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
}

.faq-section {
    padding: 160px 0;
    margin-bottom: 60px;
}

.accordion-button {
    padding: 32px 0;
    color: var(--black);
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-900);
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
}

.accordion-body {
    color: var(--gray-600);
    padding: 24px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--black);
}

.about-section {
    padding: 160px 0;
}

.about-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    border-radius: 16px;
    background-color: var(--gray-100);
    height: 100%;
    transition: 0.3s ease all;
    cursor: pointer;
}

.about-card:hover {
    transform: translateY(-20px);
}

.dark-mode .about-card {
    background-color: var(--gray-50);
}

.about-card img {
    width: 60px;
}

.about-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--black);
}

.about-card-content span {
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
}

.about-card p {
    color: var(--gray-700);
}

.about-card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    margin-top: 40px;
}

.about-card-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--black);
    width: 240px;
    height: 240px;
    padding: 32px;
    background: linear-gradient(to bottom,
            var(--white) 0%,
            var(--gray-100) 100%);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: 0.3s ease all;
}

.about-card-2:hover {
    transform: translateY(-20px);
}

.dark-mode .about-card-2 {
    background: linear-gradient(to bottom,
            var(--white) 0%,
            var(--gray-100) 100%);
    border: 1px solid var(--gray-100);
}

.about-card-2 span {
    font-size: 48px;
    line-height: 120%;
    font-weight: bold;
}

.about-card-2 p {
    color: var(--gray-700);
}

.investor-section {
    padding: 160px 0;
}

.investor-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    border-radius: 16px;
    background-color: var(--gray-100);
    color: var(--black);
    /* margin-bottom: 24px; */
    transition: 0.3s ease all;
    height: 100%;
}

.investor-card:hover {
    transform: translateY(-20px);
}

.investor-card h1 {
    text-transform: none;
}

#investor-item-content table {
    margin-bottom: 0 !important;
}

.investor-toggle-btn {
    width: 100%;
    padding: 0;
    border: 1px solid var(--gray-200);
    background-color: transparent;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: all 0.3s ease;
}

.investor-toggle-btn span {
    font-family: var(--main-font);
    font-size: var(--caption-3);
    font-style: demibold;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}

.investor-toggle-btn:hover {
    background-color: var(--gray-100);
    transform: translateY(-4px);
}

.table-animate {
    transition: opacity 0.3s ease;
}

.table-hidden {
    opacity: 0;
}

.card-detail-content .investor-card {
    border: 1px solid var(--gray-100);
    padding: 28px;
}

.dark-mode .card-detail-content .investor-card {
    background-color: var(--gray-50);
}

.card-detail-content .investor-card:hover {
    border-color: var(--gray-200);
}

.dark-mode .card-detail-content .investor-card {
    border-color: var(--gray-100);
}

.dark-mode .card-detail-content .investor-card span {
    color: var(--gray-400);
}

.dark-mode .card-detail-content .investor-card h1 {
    color: #E5E6E7;
}

.card-detail-content .investor-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    /* background-color: var(--gray-600); */
    background-color: var(--gray-700);
    color: #fff;
}

/* .investor-content table tr:nth-child(even) {
    background-color: unset
} */

.card-detail-content img {
    max-width: 100%;
}

.rating-section {
    padding: 160px 0;
}

.rating-section .page-title {
    margin-bottom: 80px;
}

table {
    width: 100%;
    margin-bottom: 24px;
    border-collapse: separate;
    overflow-x: scroll;
    border-spacing: 0;
}


table tr:nth-child(even) {
    /* background-color: #f2f2f2; */
}

.dark-mode table tr:nth-child(even) {
    /* background-color: var(--gray-50); */
    /* color: #fff; */
}

table tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

table tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

tbody tr:first-child td[rowspan]:first-child,
tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

table tbody tr:last-child>*:last-child {
    border-bottom-right-radius: 12px;
}

table tr th {
    color: var(--black) !important;
}

table thead {
    background-color: var(--gray-100) !important;
}

table th {
    padding: 8px 12px !important;
    font-size: var(--paragraph-medium);
    font-weight: 600;
    line-height: 140%;
    color: var(--gray-900) !important;
    border: 1px solid rgb(204, 204, 204, 0.5) !important;
    background-color: var(--gray-100) !important;
    vertical-align: middle;
    text-align: center;
}

.dark-mode table th {
    background-color: var(--gray-50) !important;
}

table th font {
    color: var(--gray-1000) !important;
}

table td {
    padding: 8px 12px !important;
    font-size: var(--paragraph-small);
    font-style: medium !important;
    font-weight: 500;
    line-height: 140% !important;
    color: var(--gray-800);
    border: 1px solid rgb(204, 204, 204, 0.5) !important;
    vertical-align: top;
}

td:not(:first-child),
th:not(:first-child) {
    color: var(--gray-1000) !important;
}

table tr:first-child {
    /* background-color: var(--gray-100); */
}

em {
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
}

font {
    font-size: var(--paragraph-medium);
    font-weight: 500;
    line-height: 140%;
    margin: 0;
}

table tr th font {
    font-weight: unset;
}

.submenu {
    background-color: var(--gray-100);
}

.dark-mode .submenu {
    background-color: var(--gray-50);
}

.submenu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.submenu-container .sudheading-4 {
    color: var(--black);
}

.submenu-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 40px;
    justify-content: end;
}

.submenu-menu a {
    padding: 16px 0;
    font-size: var(--paragraph-small);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    color: var(--gray-600);

    transition: 0.3s ease all;
    /* opacity: 0.8; */
}

.submenu-menu a:hover {
    color: var(--black);
}

.submenu-menu a.active {
    color: var(--black);
    border-bottom: 2px solid var(--green);
    /* opacity: 1 !important; */
}

.page-title-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    height: 400px;
    background: linear-gradient(to bottom,
            #161616 0%,
            #313131 100%);
}

.breadcrumb-content {
    position: relative;
    gap: 8px;
    color: #fff;
    z-index: 1;
}

.breadcrumb-image-style-1 {
    position: absolute;
    top: 20px;
    right: 15%;
    width: 920px;
    z-index: 0;
}

.breadcrumb-image-style-2 {
    position: absolute;
    top: -0;
    right: 24%;
    width: 524px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #fff;
    margin-bottom: 24px;
}

.breadcrumb li {
    font-family: var(--main-font);
    font-size: var(--caption-3);
    font-style: demibold;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumb li a {
    color: #fff;
}

.savings {
    padding: 100px 0;
}

.card-buttons-list {
    padding: 100px 0;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--gray-100);
    border-radius: 16px;
    border: none;
    /* padding: 28px; */
    margin-top: 100px;
    height: calc(100% - 100px);
}

.card .card-content-inner {
    padding: 0 28px;
}

.card .card-buttons {
    padding: 28px;
    padding-top: 0;
}

.dark-mode .card {
    background-color: var(--gray-50);
}

.card-2 {
    margin-top: 0;
}

.card img {
    /* width: 80%;
    margin-top: -120px;
    margin-left: auto;
    margin-right: auto; */
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    aspect-ratio: 100 / 60;
    object-fit: cover;
    object-position: right;
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 24px;
    color: var(--black);
    justify-content: space-between;
}

.card-content-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 24px;
    color: var(--black);
    max-height: 400px;
    overflow: hidden;
}

.savings .card {
    height: 100%;
}

.card-description {
    color: var(--gray-600);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features p {
    font-size: var(--paragraph-small);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    display: flex;
    align-items: start;
    gap: 8px;
}


.card-features-2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features-2 p {
    font-size: var(--paragraph-large);
    font-style: medium;
    font-weight: 500;
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 0 !important;
}

.card-features-2 .sudheading-3 {
    margin-bottom: 20px;
}

.card-features-2 p::before {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    content: url('../images/check.svg');
}

.card-features-2 ul li {
    font-size: var(--paragraph-large);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    display: flex;
    align-items: start;
    gap: 8px;
}

.card-features ul li {
    font-size: var(--paragraph-small);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 8px;
}

.card-features-2 ul li::before {
    width: 20px;
    height: 20px;
    content: url('../images/check.svg');
}

.card-features ul li::before {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    content: url('../images/check.svg');
}

.card-features p::before {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    content: url('../images/check.svg');
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.mb-100 {
    margin-bottom: 100px;
}

.card-img-style-1 {
    width: 90%;
    margin-top: -100px !important;
}

.content-page-title {
    padding-top: 100px;
    padding-bottom: 40px;
}

.content-page-title h4 {
    margin-bottom: 24px;
}

.contents {
    margin-bottom: 100px;
}

.category-buttons-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.content-card {
    width: 100%;
    margin-bottom: 24px;
    transition: 0.3s ease all;
}

.content-card:hover {
    transform: translateY(-20px)
}

.card-detail {
    border-bottom: 1px solid var(--gray-200);
    overflow-x: hidden;
}

.card-detail-content {
    display: flex;
    padding: 60px 0;
}

.card-detail-content .detail {
    text-align: justify;
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    color: var(--gray-800);
}

.card-detail-content table p {
    margin: 0;
}

.card-detail-content h5 {
    color: var(--gray-1000);
}

.card-detail-content .sudheading-3 {
    color: var(--gray-1000);
}


.card-detail-content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 10;
    min-width: 0;
    width: 100%;
    padding-right: 40px;
    border-right: 1px solid var(--gray-200);
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.card-detail-content-left img {
    /* padding: 40px; */
    /* max-width: 480px; */
}


.card-detail-content-left .detail img {
    max-width: 100%;
}

.card-detail-content-right {
    flex: 3;
    width: 100%;
    overflow-y: hidden;
}

.registration_materials p {
    font-size: var(--paragraph-large);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
}

.registration_materials ul {
    margin-bottom: 20px;
}

.card-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.card-detail-image img {
    max-width: 480px;
}

.line {
    height: 1px;
    width: 100%;
    background-color: var(--gray-200);
}

.card-detail-content p {
    margin-bottom: 20px;
}

.dark-mode .card-detail-content p {
    color: #97989B;
}

.card-detail-content .card-features {
    gap: 16px;
}

.card-detail-content .card-features p {
    margin-bottom: 0px;
}

.card-detail-content table tr {
    border-color: var(--gray-200);
}

.dark-mode .card-detail-content table tr {
    border-color: var(--gray-100);
}

.dark-mode .card-detail-content table td {
    color: #B1B2B5;
}

.dark-mode .card-detail-content table th {
    border-color: var(--gray-200) !important;
}

.card-detail-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: disc;
    padding-inline-start: 24px;
    color: var(--gray-800);
    font-size: 16px;
    line-height: 150%;
}

.card-detail-content ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: decimal;
    padding-inline-start: 24px;
    color: var(--gray-800);
    font-size: 16px;
    line-height: 150%;
}

.card-features-2 ul {
    padding-left: 0;
}

.card-features ul {
    padding-left: 0;
}


.card-detail-content .accordion-button {
    padding: 20px 0;
    border-color: var(--gray-200);
    font-size: var(--paragraph-large);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
}

.card-detail-content .accordion-button::after {
    background-image: url('../images/plus.svg')
}

.faq-section .accordion-button::after {
    background-image: url('../images/plus.svg');
}


.dark-mode .accordion-button::after {
    color: var(--white);
    background-image: url('../images/img-64.png');
    background-size: 20px;
    background-position: center;
}


.card-detail-content-right {
    width: 100%;
    margin-left: 40px;
}

.card-detail-submenu {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-200);
}

.card-detail-submenu a {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    color: var(--gray-600);
    transition: 0.3s ease all;
}

.card-detail-submenu a:hover {
    color: var(--black);
}

.card-detail-submenu a::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--gray-300);
    border-radius: 99px;
    flex-shrink: 0;
}

.card-detail-submenu a.active {
    color: var(--black);
}

.card-detail-submenu a.active::before {
    background-color: var(--green);
}

.similar-cards {
    margin: 100px 0;
}

.similar-cards .card {
    height: unset;
}

.similar-cards h5 {
    color: var(--gray-1000);
}

.dark-mode .similar-cards .button-dark {
    background-color: var(--gray-800);
    color: #ffffff;
}

.dark-mode .similar-cards .sudheading-3 {
    color: #E5E6E7;
}

.height-100 {
    height: 100% !important;
}

.content-detail-img {
    width: 100%;
    margin-bottom: 80px;
    border-radius: 24px;
}

.content-title h1 {
    margin-bottom: 24px;
    text-align: start;
}

.content-detail-date {
    display: flex;
    align-items: center;
    color: var(--gray-600);
    gap: 12px;
}

.content-detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: justify;
}

.content {
    margin-top: 40px;
}

.content-detail img {
    width: 100%;
}

.detail-image {
    width: 380px;
    border-radius: 24px;
    padding: 0;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 60%,
            black 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.8) 30%,
            /* rgba(0, 0, 0, 1) 50%, */
            black 100%);
    margin-left: -40px;
}

.content-detail p {
    font-size: var(--paragraph-large);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    color: var(--gray-800);

}

.content-detail h4 {
    font-family: var(--main-font);
    font-size: var(--sudheading-4);
    font-style: demibold;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 18px;
    text-transform: unset;
}

.content-detail b {
    font-weight: bold;
}

.content-detail ul {
    padding-left: 24px;
}

.content-detail ul li {
    list-style: disc;
    font-size: var(--paragraph-large);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.content-detail .description {
    color: var(--gray-800);
    font-size: calc(20px * var(--scaleFactor));
    line-height: 150%;
}

.statistics-section {
    padding: 120px 0;
}

.statistic-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 16px;
    width: 100%;
    background-color: var(--gray-100);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: 0.4s ease all;
    cursor: pointer;
}

.statistic-card:hover {
    transform: translateY(-20px);
}

.statistic-card img {
    width: 30px;
}

.statistic-card i {
    font-size: 24px;
    color: var(--gray-1000);
}

.statistic-card h1 {
    color: var(--gray-1000);
}

.direction-section {
    padding-top: 120px;
    padding-bottom: 200px;

    background-color: var(--gray-100);
    overflow: hidden;
}

.direction-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    width: 100%;
    margin-top: 100px;
    position: relative;
}

.direction-card {
    width: 316px;
    max-width: 100%;
    aspect-ratio: 74/100;
    transition: 0.3s ease all;
}

.direction-card .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: absolute;
    padding: 24px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    background:
        linear-gradient(to bottom,
            rgba(000, 000, 000, 0) 58%,
            rgba(000, 000, 000, 0.80) 96%);
    border-radius: 16px;
    text-align: start;
}

.direction-card .title a:hover {
    color: #fff;
}

.direction-card .sudheading-4 {
    width: 100%;
    text-align: center;
}

.direction-more-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 999px;
    color: #000;
}

.direction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.direction-card:nth-child(1) {
    transform: translateY(100px) rotate(-12deg);
}

.direction-card:nth-child(2) {
    transform: translateY(20px) rotate(-6deg);
}

.direction-card:nth-child(3) {
    transform: translateY(0px);
}

.direction-card:nth-child(4) {
    transform: translateY(20px) rotate(6deg);
}

.direction-card:nth-child(5) {
    transform: translateY(100px) rotate(12deg);
}


.direction-card:hover {
    transform: translateY(-10px);
}


.content-section-card-2 {
    position: relative;
    width: 800px;
    height: 421px;
}

.content-section-card-2 img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section-detail-2 {
    display: flex;
    align-items: end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 58%,
            rgba(255, 255, 255, 0.80) 96%);
    border-radius: 16px;
}

.content-section-card-2 a {
    color: #fff;
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(244, 245, 245, 0), var(--gray-50));
}

#product_conditions_container {
    width: 100%;
    position: relative;
    max-height: 220px;
    overflow: hidden;
    overflow-x: auto;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product_conditions_container {
    width: 100%;
    position: relative;
    max-height: 220px;
    overflow: hidden;
    overflow-x: auto;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product_conditions_container {
    color: var(--gray-1000);
}

.product_conditions_container.expanded {
    max-height: unset;
}

#product_conditions_container.expanded {
    max-height: unset;
}

.product_conditions_container .card-features ul li {
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
    margin-bottom: 8px;
}

.dark-mode .product_conditions_container::-webkit-scrollbar {
    height: 10px;
}

.dark-mode .product_conditions_container::-webkit-scrollbar-track {
    background: #535557;
}

.dark-mode .product_conditions_container::-webkit-scrollbar-thumb {
    background: #262729;
    border-radius: 6px;
}

.dark-mode .product_conditions_container::-webkit-scrollbar-thumb:hover {
    background: #E5E6E7;
}

.dark-mode .compare::-webkit-scrollbar {
    height: 10px;
}

.dark-mode .compare::-webkit-scrollbar-track {
    background: #535557;
}

.dark-mode .compare::-webkit-scrollbar-thumb {
    background: #262729;
    border-radius: 6px;
}

.dark-mode .compare::-webkit-scrollbar-thumb:hover {
    background: #E5E6E7;
}

#fade_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
    display: none;
}

#toggle_button {
    display: none;
    margin-top: 10px;
    cursor: pointer;
}

.fade_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
    display: none;
}

.toggle_button {
    display: none;
    margin-top: 10px;
    cursor: pointer;
}


.toggle-more-button {
    background-color: transparent;
    border: none;
    padding: 0;
}

.card-detail-content-left table img {
    padding: 0 12px;
    width: 100%;
    /* max-width: 180px; */
    max-width: 100%;
    min-width: 200px;
}


.overlay {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(var(--black-rgb), .3);
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    max-width: 680px;
    width: 90%;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    z-index: 9999;
    text-align: center;
    color: var(--black) !important;
}

.popup header {
    font-weight: 700;
    margin-bottom: 8px;
}

.popup .actions {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.report-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.report-box {
    display: flex;
    gap: 12px;
    flex-direction: column;
    position: relative;
    padding: 20px 34px;
    background-color: var(--gray-100);
    border-radius: 20px;
    width: 100%;
    color: var(--black);
}

.report-box::after {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 24px;
    content: url('../images/arrow-right.svg');
    width: 20px;
    height: 20px;
}

.report-box:hover {
    background-color: var(--gray-200);
    color: var(--black);
}

.report-year-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.report-year-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.report-year-box .year-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.report-year-box .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease all;
    visibility: hidden;
    opacity: 0;
}

.report-year-box .bg i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.report-year-box:hover .bg {
    visibility: visible;
    opacity: 1;
}

.report-year-box img {
    width: 100%;
    /* aspect-ratio: 80/100; */
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: 0.4s ease all;
}

/* .report-year-box:hover img {

    border: 1px solid var(--gray-200);
    box-shadow: rgba(149, 157, 165, 0.65) 0px 8px 24px;
} */

.report-year-box h6 {
    color: var(--gray-1000);
}

.report-year-box p {
    color: var(--gray-600);
}


.text-color-black {
    color: #000 !important;
}

.text-color-black h1,
.text-color-black h2,
.text-color-black h3,
.text-color-black h4,
.text-color-black h5,
.text-color-black h6,
.text-color-black p,
.text-color-black span,
.text-color-black a {
    color: #000 !important;
}

.text-color-white {
    color: #fff !important;
}

.text-color-white h1,
.text-color-white h2,
.text-color-white h3,
.text-color-white h4,
.text-color-white h5,
.text-color-white h6,
.text-color-white p,
.text-color-white span,
.text-color-white a {
    color: #fff !important;
}

.overflow-x-auto {
    overflow-x: auto;
    overflow-y: clip;
}

.address {
    width: 100%;
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.address .address-image {
    width: 280px;
    padding: 0;
}

.address .address-detail h4 {
    font-size: 24px;
    margin-bottom: 40px;
}

.address .address-detail ul {
    padding-inline-start: 0;
}

.address .address-detail ul li {
    list-style: none;
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    display: flex;
}

.address .address-detail ul li img {
    width: 20px;
    padding: 0;
    margin-right: 12px;
}

.exchange h5 {
    font-size: 24px;
    margin-bottom: 24px;
}

.exchange h6 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.exchange-item {
    display: flex;
    margin-bottom: 20px;
}

.exchange select {
    width: 80px;
}

.calculator-group {
    margin-bottom: 32px;
}

.calculator-group label {
    display: flex;
    justify-content: space-between;
}

.dark-mode .calculator-group label {
    color: #CBCCCD;
}

.calculator-group label,
.calculator-group span {
    font-family: var(--main-font);
    font-size: var(--subheading-3);
    font-weight: 600;
    line-height: 120%;
}

.calculator-group #startDate {
    width: 140px;
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
}

.dark-mode .calculator-group #startDate {
    background-color: var(--gray-200);
    /* color: #ffffff; */
    border-color: var(--gray-200);
}

.card-detail-content-right #startDate {
    width: 45px;
}


.calculator-group.date {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calculator {
    background-color: var(--gray-50);
    border-radius: 16px;
    border: none;
    padding: 28px;
}

.calculator h6 {
    font-size: 14px;
    margin-bottom: 24px;
}

/* .calculator span {
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
} */

.calculator-result {
    overflow-x: auto;
}

.calculator-result h6 {
    font-size: 18px;
    margin-bottom: 24px;
}

.num-input {
    display: flex;
    align-items: center;

}

.num-input input {
    padding: 0;
    border: none;
    text-align: end;
    background-color: transparent;
    font-family: var(--main-font);
    font-size: var(--subheading-3);
    font-weight: 600;
    line-height: 120%;
}

.dark-mode .num-input input {
    color: #B1B2B5;
}

.exchange-item .form-control:disabled,
.exchange-item .form-control[readonly] {
    background-color: var(--gray-100);
}

.exchange-item input {
    border-radius: 0;
    font-family: var(--main-font);
    font-size: var(--subheading-3);
    font-weight: 600;
    line-height: 120%;
}

.exchange-item select {
    border-radius: 0;
    border-right: none;
}

.order-card-form {
    margin: 40px 0;
}

.order-card-form label {
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 8px;
}

.helpbox {
    position: fixed;
    right: 0;
    top: 30%;
    transform: translate(0%, 50%);
    display: flex;
    flex-direction: column;
    box-shadow: rgba(149, 157, 165, 0.2) 8px 8px 24px;
    z-index: 99;
}

.helpbox li {
    position: relative;
}

.helpbox li a {
    background-color: var(--gray-100);
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-1000);
    border: 1px solid var(--gray-200);
}

.helpbox li a:hover {
    background-color: var(--gray-200);
}

.helpbox li span {
    font-family: var(--main-font);
    font-size: var(--caption-3);
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    text-wrap: nowrap;
    background-color: var(--gray-100);
    color: var(--black);
    padding: 8px 14px;
    border-radius: 6px;
    position: absolute;
    top: 10px;
    right: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
}

.helpbox li:hover span {
    opacity: 1;
    visibility: visible;
    right: calc(8px - -100%);
}

.helpbox li img {
    width: 24px;
    opacity: 0.4;
}

.c-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
}

#report-session-list table {
    width: 100% !important;
}

.section-title {
    font-family: var(--main-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.32px;
    margin: 0;
    text-transform: uppercase;
}

.team-item {
    width: 100%;
}

.team-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    padding: 0;
    border-radius: 20px;
}

.team-item:hover img {
    transform: scale(1.05);
    transition: all 0.6s ease-in-out;
}

.team-item .team-title {
    margin-top: 16px;
    text-align: center;
}

.team-item .team-title h6 {
    font-size: var(--subheading-2);
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 8px;
}

.team-item .team-title p {
    opacity: 0.7;
}

.team-item {
    color: var(--black);
}

.team-image {
    width: 100%;
    height: auto;
    padding: 0 !important;
    margin-bottom: 32px;
}

.team-position {
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.about-content {
    margin: 40px 0;
}

.about-title {
    margin-bottom: 20px;
}

.screen-boxes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 20000;
    overflow-x: hidden !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.spinner {
    width: 200px;
    height: 200px;
}

.spinner.spinner3 {
    border-top: 5px solid var(--green);
    border-left: 5px solid var(--green);
    border-right: 5px solid transparent;
    border-radius: 50%;
    -webkit-animation: rotation 1.5s linear infinite;
    animation: rotation 1.5s linear infinite;
    /* opacity: 0.6; */
}

.loading-logo {
    position: absolute;
    width: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}


@-webkit-keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


@keyframes slides2 {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(100%);
    }
}

.exchange_slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
    display: flex;
    text-decoration: none;
    color: var(--black);
}

.exchange_slider:before,
.exchange_slider:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.exchange_slider:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.exchange_slider:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.exchange_items {
    /* flex: 1; */
    display: flex;
    gap: 20px;
    animation: 30s slides infinite linear;
    padding-right: 20px;
}

.exchange_slider:hover {
    color: var(--black);
}

.exchange_slider:hover .exchange_items {
    animation-play-state: paused;
}

.exchange_items img {
    height: 40px;
}

.exchange_items .exchange-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    margin: 0;
}

.exchange-currency {
    display: flex;
    gap: 10px;
    align-items: center;
}

.exchange-currency span {
    font-weight: bold;
}

.exchange-rate p {
    margin: 0;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.exchange-rate b {
    font-weight: 600;
}

.logo_slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
    display: flex;
    text-decoration: none;
    color: var(--black);
    margin-bottom: 80px;
}

.logo_slider:before,
.logo_slider:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logo_slider:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logo_slider:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logo_items {
    /* flex: 1; */
    display: flex;
    gap: 80px;
    animation: 90s slides infinite linear;
    padding-right: 20px;
}

.logo_items.animate2 {
    animation: 45s slides2 infinite linear;
}

.logo_slider:hover {
    color: var(--black);
}

.logo_slider:hover .logo_items {
    animation-play-state: paused;
}

.slider-logo-item img {
    height: 80px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-button:hover {
    background-color: #4B4C4F
}

.social-button img {
    width: 20px;
}

.download-logo {
    display: flex;
    margin-top: 20px;
    width: 100%;
    color: #fff;
    font-weight: bold;
}

.download-logo:hover {
    color: #dbdbdb;
}

.messenger-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 10;
}

.messenger-button img {
    width: 40px;
}

.address-section {
    margin: 40px 0;
    padding-bottom: 40px;
}

.address-item {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
}

.address-item:hover {
    background-color: var(--gray-50);
}

.address-item-image {
    width: 140px;
    border-radius: 12px;
    object-fit: cover;
}

.address-item-detail {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 12px;
    width: 100%;
}

.address-item-detail .open {
    width: 12px;
    height: 12px;
    background-color: var(--green);
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 0;
    animation: pulse 1.5s infinite;
    /* box-shadow: 0 0 0 0 var(--red); */
    box-shadow: 0 0 0 0 #079a0d;
}

.address-item-detail .closed {
    width: 12px;
    height: 12px;
    background-color: rgb(196, 51, 51);
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.address-item-detail h6 {
    font-size: 20px;
}

.address-item-detail p {
    font-size: var(--paragraph-small);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
}

.address-item-detail ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address-item-detail ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--sudheading-6);
    line-height: 120%;
}

.address-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-items {
    border: 1px solid var(--gray-100);
    max-height: 600px;
    min-height: 600px;
    overflow-y: scroll;
}

.address-list ::-webkit-scrollbar {
    width: 10px;
}

.address-list ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.address-list ::-webkit-scrollbar-thumb {
    background: #888;
}

.address-list ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.address-category {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.address-category label {
    font-size: var(--subheading-3);
    font-weight: 600;
    line-height: 120%;
    display: flex;
    gap: 8px;
}

.google-map {
    width: 100%;
    height: 100%;
}

.vector img {
    width: 100%;
    aspect-ratio: 100/70;
    object-fit: cover;
    padding-top: 12px;
    border-radius: 12px;
}

.gm-style-iw-chr {
    position: absolute;
    right: 8px;
    top: 0;
}

.vector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vector h6 {
    font-size: 18px;
}

.vector p {
    font-size: 12px;
}

.vector ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
}

.vector ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vector ul img {
    width: 20px;
    aspect-ratio: unset;
    padding: 0;
}

.vector a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 6px 14px;
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 999px;
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    line-height: 140%;
}

.about-page .insure-section {
    padding: 120px 0;
}

.about-page .investor-section {
    padding: 120px;
}

.modal-body-content {
    overflow: auto;
}

.modal-body-content table {
    width: 100%;
    overflow-x: auto;
}

.modal-body-content p {
    margin-bottom: 12px;
}

.openPageModal {
    cursor: pointer;
}

.openTeamModal {
    cursor: pointer;
}

#teamModal .modal-image {
    width: 280px;
    border-radius: 12px;
    margin-bottom: 18px;
    /* max-height: 720px; */
    object-fit: cover;
}

#teamModal .modal-name,
#teamModal .modal-position {
    text-align: center;
}

#teamModal .modal-body {
    display: flex;
    gap: 24px
}

#teamModal .modal-lg {
    max-width: 900px;
}

.modal-body {
    overflow: auto;
}

#teamModal .team-info p {
    font-size: var(--paragraph-medium);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 12px;
}

#teamModal .modal-body-about a {
    color: var(--green);
}

#teamModal .modal-body-about {
    overflow-x: hidden;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
}

.dark-mode .modal-content {
    border: 1px solid #7D7F83;
}

.dark-mode .modal-content .sudheading-3 {
    color: #CBCCCD;
}

.dark-mode .modal-content p {
    color: #CBCCCD;
}

.modal-content .modal-title {
    color: var(--black);
}

.modal-body-content {
    color: var(--black);
}

#teamModal .modal-body-about img {
    max-width: 100%;
}

input[type=range]::-webkit-slider-runnable-track,
input[type=range]::-moz-range-track {
    background: var(--green) !important;
}

.right-calcultor {
    /* padding: 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px; */
    margin-top: 40px;
}

.right-calcultor .calculator-group label,
.right-calcultor .calculator-group span {
    font-weight: 500;
}

.right-calcultor .calculator-group.date label {
    font-weight: 600;
}

.dark-mode .right-calcultor .calculator-group.date label {
    color: #CBCCCD;
}

.right-calcultor .button-light {
    border-color: var(--gray-600);
}

.exchange-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
}

.exchange-section .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-title {
    color: var(--black);
}

.team-report-toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background-color: var(--white);
    width: 100%;
    transition: 0.6s ease all;
    font-size: var(--caption-3);
    font-weight: 600;
    text-transform: uppercase;
}

.team-report-toggle-button:hover {
    background-color: var(--gray-100);
    gap: 20px;
}

.team-report-toggle-button img {
    width: 20px;
}

.team-report-toggle-button i {
    font-weight: bold;
    font-size: 14px;
}

.compare {
    overflow-x: scroll;
    overflow-y: hidden;
}

.compare-table {
    align-items: stretch;
    /* default */
}

.compare-table img {
    width: 240px !important;
    max-width: 240px !important;
    height: 160px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    padding: 0 !important;
    object-position: right !important;
}

.compare-table-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 240px !important;
}

.compare-table td {
    border: none !important;
    border-bottom: 1px solid var(--gray-200) !important;
    border-right: 1px solid var(--gray-200) !important;
}

.compare-table td:last-child {
    border-right: none !important;
}

.compare-table tr:last-child td {
    /* border-bottom: none !important; */
}

.compare-table tr:first-child td {
    padding-top: 0 !important;
}


.compare-table td {
    width: 240px !important;
    font-size: var(--paragraph-medium) !important;
    font-weight: 500 !important;
    line-height: 140% !important;
    margin: 0 !important;
    color: var(--gray-800) !important;
    padding: 20px 10px !important;
    vertical-align: middle !important;
}

.dark-mode .compare-table td {
    color: #B1B2B5 !important;
}

.dark-mode .card-detail-content ul {
    color: #B1B2B5 !important;
}

.dark-mode .card-detail-content .button-light {
    border-color: var(--gray-400);
}

.compare-table select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    background-color: var(--gray-100);
    color: var(--gray-80);
    border-radius: 8px;
    font-size: var(--paragraph-medium);
    font-weight: 500;
    line-height: 140%;
    /* color: var(--gray-800); */
}

.toc-section {
    padding: 80px 60px;
    background-color: #000;
    position: relative;
    /* overflow-x: hidden; */
}

.toc-title {
    position: absolute;
    top: 100px;
    left: 100px;
    max-width: 500px;
    font-size: 46px;
    color: #fff;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

/* card base */
.toc-story-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    background: #6be39a;
    cursor: pointer;
}

.toc-story-card img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    z-index: 0;
}

.toc-story-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.toc-story-card-header p {
    color: #000;
    padding: 8px 20px;
    border-radius: 24px;
    background-color: rgba(0, 0, 0, 0.32);
    font-size: var(--paragraph-small);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
}

.toc-grid .toc-story-card-header p {
    background-color: rgba(255, 255, 255, 0.32);
}

.toc-grid .toc-story-card-header span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .5);
    color: #000;
    border-radius: 50%;
    font-weight: 600;
}

.toc-story-card-header i {
    color: #000;
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
}

.toc-story-card.image {
    background-color: unset;
}

/* 1-р card → left middle */
.toc-grid .toc-story-card:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 80/100;
    background-color: #45cf71;
}

.toc-grid .toc-story-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 80/100;
}

.toc-grid .toc-story-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    width: 100%;
    max-width: 316px;
    aspect-ratio: 80/100;
}

.toc-grid .toc-story-card:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    max-width: 316px;
    aspect-ratio: 80/100;
}

.toc-grid .toc-story-card:nth-child(4) {
    grid-column: 3;
    grid-row: 2 / span 2;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 80/100;
}

.toc-sotry-card-description {
    z-index: 1;
}

.toc-sotry-card-description p {
    max-height: 7.5em;
    overflow: hidden;
    color: #000;
    line-height: 1.5em;
    transition: 1s ease all;

    font-size: 20px;
    font-weight: 500;
}

.toc-story-card.image .toc-sotry-card-description p {
    max-height: 4.8em;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.toc-sotry-card-description h1 {
    color: #000;
}

.toc-story-card:hover .toc-sotry-card-description p {
    max-height: 280px;
    /* хангалттай их утга */
}

.toc-story-card.image .toc-sotry-card-description h1 {
    font-size: 72px;
    color: #fff;
}

.toc-story-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 39%,
            rgba(0, 0, 0, 0.8) 80%);
}

.toc-report-section {
    padding-top: 120px;
    padding-bottom: 40px;
}

.toc-report-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


.toc-report-card-content h6 {
    text-align: center;
    font-size: 18px;
}

.toc-report-card.image .toc-report-card-content {
    color: #fff;
}

.toc-report-card.image .toc-story-card-header p {
    color: #fff;
}

.toc-report-card img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    z-index: 0;
}

.toc-report-card-content {
    color: #000;
    z-index: 1;
}

.toc-report-card:hover {
    transform: translateY(-10px);
    transition: 0.3s ease all;
    background-color: #91fcbc;
}

.toc-report-card ul {
    list-style-type: disc;
    padding-inline-start: 20px;
}

.toc-report-card ul li {
    margin-bottom: 4px;
    font-size: var(--paragraph-small);
    font-weight: 500;
    line-height: 140%;
}

.toc-product-section {
    padding: 140px 0;
    /* padding-top: 80px; */
    border-top: 1px solid var(--gray-200);
}

.toc-product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 16px;
    width: 316px;
    height: 460px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.toc-product-card:hover {
    transform: translateY(-10px);
    transition: 0.3s ease all;
    box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 39px 0px;
}


.toc-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.toc-product-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.toc-product-card-2 {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 16px;
    width: 316px;
    min-height: 428px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.toc-product-card-2:hover {
    transform: translateY(-10px);
    transition: 0.3s ease all;
    box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 39px 0px;
}

.toc-product-card-2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.toc-product-card-2-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    flex: 1
}

.toc-product-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.toc-report-card {
    position: relative;
    width: 280px;
    height: 380px;
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    background: #85f1b0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.toc-standard-section {
    padding: 100px 0;
}

.toc-standard-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.toc-standard-list img {
    height: 68px;
    max-width: 100%;
}

.mobile-version {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.team-report-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.team-report-card {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--gray-100);
    border-radius: 12px;
    gap: 12px;
    color: var(--black);
    transition: 0.4s ease all;
}

.team-report-card:hover {
    color: var(--black);
    background-color: var(--gray-200);
}

.team-report-card p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}

.team-report-card span {
    opacity: 0.6;
    font-size: var(--caption-3);
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}


.team-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    margin-bottom: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.4s ease all;
}

.team-card:hover {
    transform: translateY(-20px)
}

.team-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: -1;
}

.team-card .title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    color: #fff;
    z-index: 99;
    text-align: center;
}

.team-card .title p {
    margin: 0;
    font-size: var(--caption-1);
    font-style: demibold;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}

.team-card .title span {
    opacity: 0.7;
}

.team-card-overlay {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 80%);
    border-radius: 14px;
    transition: 0.4s ease all;
}

.about-report-section {
    padding: 120px 0;
}

.about-report-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-report-card {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    background: #85f1b0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: #E5E6E7;
    transition: 0.4s ease all;
}

.card-detail .about-report-card {
    width: 100%;
    height: unset;
    aspect-ratio: 4/5;
}

.about-report-card:hover {
    color: #fff;
    transform: translateY(-20px);
}

.about-report-card span {
    font-size: 18px;
}

.about-report-card h2 {
    text-align: center;
}

.about-report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.about-report-card-header p {
    color: #000;
    padding: 8px 20px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.32);
    font-size: var(--paragraph-small);
    font-style: medium;
    font-weight: 500;
    line-height: 140%;
}

.toc-grid .about-report-card-header p {
    background-color: rgba(255, 255, 255, 0.32);
}

.about-report-card-header i {
    color: #000;
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
}

.timeline-content {
    display: flex;
    justify-content: center;
    margin-left: 114px;
    margin-bottom: 20px;
}

.timeline {
    border-left: 2px solid var(--green);
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    letter-spacing: 0.5px;
    position: relative;
    line-height: 1.4em;
    font-size: 1.03em;
    padding: 20px;
    padding-left: 50px;
    list-style: none;
    text-align: left;
    font-weight: 100;
    width: 100%;
}

.timeline .event {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 22px;
    position: relative;
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    left: -200px;
    font-size: var(--caption-2);
    font-weight: 500;
    line-height: 100%;
    /* text-transform: uppercase; */
    color: var(--gray-700);
    content: attr(data-date);
    text-align: right;
    min-width: 120px;
}

.timeline .event:after {
    box-shadow: 0 0 0 2px var(--green);
    left: -57px;
    background: #fff;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
    top: 5px;
}

.timeline .event p {
    font-family: var(--main-font);
    font-size: var(--caption-2);
    font-weight: 500;
    line-height: 120%;
}

.timeline-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    /* color: #17582c; */
    width: 100%;
    border-top: 4px solid var(--green);
    padding-top: 20px;
}

.modal-hourly-content {
    width: 100%;
}

.modal-hourly-content img {
    width: 100%;
    border-radius: 24px;
}

.modal-hourly-content .modal-content {
    border: none;
    border-radius: 24px;
}

.modal-header-close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 999;
}

.modal-header-close button {
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 99px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-header-close button:hover {
    opacity: 1;
}

.apexcharts-legend-series span {
    color: var(--gray-1000) !important;
}

.apexcharts-yaxis-texts-g text {
    fill: var(--gray-1000) !important;
}

.product-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.product-banner .container {
    z-index: 99;
}

.product-banner .banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-banner .banner-content {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    gap: 24px;
    margin-top: -80px;
}

.product-banner .banner-content {
    color: var(--black);
}

.product-banner .banner-content .description {
    opacity: 0.8;
}


.currency-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.currency-btn {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.currency-btn:hover {
    transform: skewX(20px);
    transform: scaleY(20px);
}

.currency-btn .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-btn img {
    width: 28px;
    border-radius: 4px;
}

.amount-input {
    margin-top: 10px;
    border-radius: 14px;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.currency-dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    display: none;
    z-index: 99;
}

.currency-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    cursor: pointer;
    font-family: var(--main-font);
    font-size: var(--paragraph-medium);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.32px;
    margin: 0;
    text-transform: uppercase;
}

.currency-item:hover {
    background: #f5f5f5;
}

.currency-item img {
    width: 28px;
    border-radius: 4px;
}

.exchange-section .exchange-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.exchange-card {
    padding: 42px;
    border-radius: 24px;
    background-color: rgba(0, 0, 0, 0.3);
    /* backdrop-filter: blur(8px); */
    z-index: 1;
    min-width: 600px;
    max-width: 800px;
}

.exchange-type-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.exchange-type-wrapper button {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--gray-200);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 100%;
    color: #fff;
    transition: 0.3s ease all;
}

.exchange-type-wrapper button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.exchange-type-wrapper button.active {
    color: #000;
    background-color: #fff;
}

.exchange-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.exchange-arrow i {
    color: #fff;
    font-size: 24px;
}

.exchange-table img {
    min-width: unset !important;
    width: 80px !important;
}

.currency-info {
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, .3);
    backdrop-filter: blur(6px);
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease all;
}

.currency-info:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.currency-info .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: #fff;
    width: 100%;
}

.currency-info .item b {
    font-size: var(--caption-2);
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}

.human-resource-section {
    overflow-x: hidden;
}

.human-resource-section .investor-card ul {
    list-style-type: disc;
    padding-inline-start: 20px;
}

.human-resource-section .investor-card ul li {
    margin-bottom: 4px;
    font-size: var(--paragraph-small);
    font-weight: 500;
    line-height: 140%;
}

.human-resource-section .investor-card {
    padding: 20px;
    height: 100%;
    margin-bottom: 0;
}

.human-resource-section .investor-card h1 {
    text-align: center;
}

.human-resource-section .human-resource-content {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.human-resource-section .line {
    width: 100%;
    height: 1px;
    background-color: var(--gray-200);
}