/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Roboto", sans-serif;
    --nav-font: "Lato", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ff0058;
    --accent-color-rgb: 255 0 88;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

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

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

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

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

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

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;

    background-color: rgba(255, 255, 255, 0.25);
    position: absolute;
    margin: 0 auto;
    width: 100%;
    transform: translate(0, 0);
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.25), 0px 0px 12px rgba(255, 255, 255, 0.5), 0px 0px 16px rgba(255, 255, 255, 0.75);
}

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

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

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

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    position: sticky;
    background-color: rgba(255, 255, 255, 1);
    transform: translate(0, 0);
}

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

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

    .navmenu li {
        position: relative;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .navmenu .dropdown ul a {
        color: var(--nav-dropdown-color);
    }

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

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

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

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

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

    .mobile-nav-active .navmenu>ul {
        display: block;
        height: max-content;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--background-color);
    color: var(--default-color);
    padding: 60px 0;
    font-size: 14px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer a {
    color: var(--default-color) !important;
}

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

.footer .copyright {
    margin-top: 50px;
    position: relative;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .copyright p,
.footer .copyright .credits {
    margin: 2px 0;
    font-size: 0.85rem;
}

.footer .copyright .credits {
    color: #888888;
    font-size: 0.65rem;
}
.footer .copyright .credits .code {
    color: #000000;
}
.footer .copyright .credits .heart {
    color: #df1529;
}

.footer .copyright .credits a {
    color: #888888 !important;
    text-decoration: dotted underline 1px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer .copyright .credits a:hover {
    color: #222222 !important;
}

.footer .btn-learn-more {
    background-color: var(--accent-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
    color: var(--contrast-color) !important;
}

.footer .btn-learn-more:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color) !important;
}

.footer .widget .widget-heading {
    font-size: 15px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.footer .widget ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer .widget ul li a {
    color: color-mix(in srgb, var(--heading-color), transparent 50%);
}

.footer .widget ul li a:hover {
    text-decoration: none;
    color: var(--heading-color);
}

.footer .widget .footer-blog-entry .date {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 12px;
}

.footer .social-icons li {
    display: inline-block;
}

.footer .social-icons li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .social-icons li a span {
    color: color-mix(in srgb, var(--heading-color), transparent 0%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all ease-in-out;
}

.footer .social-icons li a:hover {
    background: var(--accent-color);
}

.footer .social-icons li a:hover span {
    color: var(--contrast-color);
}

.footer .social-icons li:first-child a {
    padding-left: 0;
}

.footer .footer-subscribe form {
    position: relative;
}

.footer .footer-subscribe .form-control {
    font-size: 14px;
    height: 42px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 40%);
    background: none;
    color: var(--heading-color);
    padding-right: 40px;
}

.footer .footer-subscribe .form-control:focus {
    border-color: color-mix(in srgb, var(--default-color), transparent 10%);
    box-shadow: none;
}

.footer .footer-subscribe .form-control::placeholder {
    color: color-mix(in srgb, var(--heading-color), transparent 60%);
}

.footer .footer-subscribe .btn-link {
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
    background-color: none;
    border-color: none;
    position: absolute;
    line-height: 0;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    top: 20px;
    right: 10px;
    transform: translateY(-50%) rotate(0deg);
}

.footer .footer-subscribe .btn-link:hover,
.footer .footer-subscribe .btn-link:focus,
.footer .footer-subscribe .btn-link:active {
    text-decoration: none;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

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

.page-title h1 {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 5px 0;
}

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
}

.section-title p {
    font-size: 15px;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    padding-top: 180px;
}

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

.hero .swiper.heroBG {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    max-height: 100%;
    width: 100%;
    filter: blur(200px);
}

.hero .welcome-message {
    position: relative;
}

.hero .welcome-message::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: rgba(255, 255, 255, 0.7);
    filter: blur(80px);
}

.hero .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
}

.hero .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
}

.hero h1 {
    color: var(--heading-color);
    font-size: 30px;
}

.hero p {
    line-height: 1.7;
    color: var(--default-color);
}

.hero .swiper {
    max-height: 29em;
}

.hero .swiper-pagination {
    position: absolute;
    bottom: 16px;
}

.hero .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    background: #ffffff;
    opacity: 0.5;
}

.hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.hero .section-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
}

.hero .section-subtitle img {
    width: 100%;
    max-width: 222px;
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about .content {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../img/LSD_H.png) no-repeat center top, var(--surface-color) url(../img/LSD_H.png) no-repeat center bottom;
    background-size: contain;
}

@media only screen and (min-width: 768px) {
    .about .content {
        background: var(--surface-color) url(../img/LSD_V.png) no-repeat left center;
        background-size: contain;
    }
}

.about .content-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
}

.about .content-title {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 30px;
}

.about p {
    line-height: 1.7;
    color: var(--default-color);
}

.about .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
}

.about .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
}

.about .lead {
    line-height: 1.6;
    font-size: 18px;
    font-weight: normal;
    color: var(--default-color);
}

.about .img-wrap .img {
    overflow: hidden;
    max-height: 540px;
}

.about .img-wrap .img video {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Statements Section
--------------------------------------------------------------*/
.statements {
    padding-top: 60px;
    padding-bottom: 60px;
}

.statements .statements-item .statements-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.statements .statements-item .statements-icon i {
    font-size: 48px;
}

.statements .statements-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding-top: 60px;
}

.stats .content-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
}

.stats .lead {
    line-height: 1.6;
    font-size: 18px;
    font-weight: normal;
    color: var(--default-color);
}

.stats .content-title {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 30px;
}

.stats p {
    line-height: 1.7;
    color: var(--default-color);
}

.stats .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
}

.stats .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
}

.stats .count-numbers .number {
    font-size: 1.8rem;
    color: var(--heading-color);
    position: relative;
    display: block;
    padding-bottom: 7px;
    margin-bottom: 10px;
}

.stats .count-numbers .number:after {
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
}

.stats .statsContent * {
    position: relative;
    z-index: 1;
}

.stats #statsBG {
    position: absolute;
    z-index: 0;
    top: -40px;
    left: -10px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners {
    padding: 0 0 60px;
}

.partners .logos-contianer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 4em;
}

.partners .logos-contianer img {
    height: 80px;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs h4 {
    color: var(--accent-color);
    text-transform: uppercase;
}

.tabs .gallery-link-col {
    min-height: 400px;
}

.tabs .gallery-link-col .gallery-links {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 400px;
}

.tabs .gallery-link-col .gallery-links::-webkit-scrollbar {
    width: .3em;
}
.tabs .gallery-link-col .gallery-links::-webkit-scrollbar,
.tabs .gallery-link-col .gallery-links::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 6px;
}
.tabs .gallery-link-col .gallery-links::-webkit-scrollbar-thumb {
    background: rgba(var(--accent-color-rgb) / 40%);
}

.tabs .gallery-item .gallery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 4px;
    position: relative;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    margin-right: 20px;
    font-size: 16px;
}

.tabs .gallery-item .gallery-contents h3 {
    font-size: 16px;
    color: var(--heading-color);
}

.tabs .gallery-item.link {
    padding: 20px;
    border-radius: 7px;
    max-width: calc(100vw - 1.5rem);
    margin: 0 auto 10px;
}

.tabs .gallery-item.link .gallery-contents {
    color: var(--default-color);
}

.tabs .gallery-item.link .gallery-contents *:last-child {
    margin-bottom: 0;
}

.tabs .gallery-item.link:hover {
    background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.tabs .gallery-item.link:hover .gallery-icon {
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
}

.tabs .gallery-item.link.active {
    background: var(--surface-color);
}

.tabs .gallery-item.link.active .gallery-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Media Section
--------------------------------------------------------------*/
.media .cutting img {
    width: 100%;
}
.media .cutting {
    position: relative;
    outline: 2px solid var(--accent-color);
}

.media .cutting::before {
    content: '\f62c';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    transition: 0.3s all ease-in-out;
    pointer-events: none;
    color: #ffffff;
    display: flex;
    font-family: "bootstrap-icons" !important;
    font-size: 0;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.media .cutting:hover:before {
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.35);
}

.media .content {
    max-height: 350px;
    overflow: hidden;
    position: relative;
    z-index: 99;
    transition: max-height 0.5s ease; /* Added transition */
}

.media .content.all {
    max-height: 9999px; /* Set to a large value to accommodate content */
    overflow: visible;  /* Ensure overflow is visible when expanded */
}

.media .show-more {
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
    margin-top: -2em;
    padding-top: 3em;
    padding-bottom: 1em;
    position: relative;
    z-index: 100;
}

.media .btn-show-more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8em;
    padding: 0.5em 2em;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 1.2em;
    font-weight: 700;
}
.media .btn-show-more:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team h3 {
    font-size: 20px;
}

.team .team h3 a {
    color: var(--heading-color);
}

.team .team .pic {
    margin-bottom: 30px;
}

.team .team .pic img {
    border-radius: 4px;
}

.team .team .position {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.team p {
    line-height: 1.7;
    color: var(--default-color);
}

.team .more {
    position: relative;
    padding-right: 30px;
    display: inline-block;
}

.team .more span {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    color: var(--contrast-color);
    line-height: 1.6;
    text-align: center;
    transition: 0.3s all ease;
}

.team .more span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.team .more:hover {
    color: var(--contrast-color);
}

.team .more:hover span {
    background: var(--accent-color);
}

.team .more.dark {
    color: var(--default-color);
}

.team .more.dark>span {
    color: var(--default-color);
}

.team .more.dark:hover {
    color: var(--accent-color);
}

.team .more.dark:hover span {
    color: var(--contrast-color);
    background: var(--accent-color);
}

.team .swiper-wrapper {
    height: auto;
}

.team .slider-nav a {
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--accent-color);
    border-radius: 4px;
    transition: 0.2s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .slider-nav a i {
    color: var(--contrast-color);
}

.team .slider-nav a:hover {
    background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.team .slider-nav a:first-child {
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Investor Relations Section
--------------------------------------------------------------*/
.investors .btn-get-details {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8em;
    padding: 0.5em 2em;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 1.2em;
    font-weight: 700;
}

.investors .btn-get-details:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
}

.investors .btn-get-details svg {
    width: 34px;
    margin-left: 10px;
    margin-right: -10px;
}

.investors .btn-get-details svg path {
    fill: #ffffff;
    transform: translateX(-4px);
    transition: 0.3s all ease-in-out;
}

.investors .btn-get-details:hover svg path {
    fill: var(--accent-color);
    transform: translateX(4px);
}

/* Investor Page */
body.investor-page .main {
    padding-top: 100px;
}

.investors h2.subheading {
    color: var(--accent-color);
}

.investors .files .card {
    border: transparent;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 6px 16px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: all 0.25s cubic-bezier(0.73, 0.05, 0.35, 0.97);
    transform: translate(0, 0) scale(0.99);
}

.investors .files .card:hover {
    border: transparent;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 32px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transform: translate(0, -2px) scale(1.01);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact .info h3 {
    font-weight: 600;
    font-size: 24px;
}

.contact .info p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact .info-item+.info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

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

.contact .php-email-form {
    width: 100%;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
    height: 48px;
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
    height: 290px;
}

.contact .php-email-form button[type="submit"] {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}