/*--------------------------------------------------------------
### Font & Color Variables ###
--------------------------------------------------------------*/
/*---------- Fonts ----------*/
:root {
    --default-font: "Google Sans", sans-serif;
    --header-font: "Niramit", sans-serif;
    --navbar-font: "Noto Sans Thai", sans-serif;
}

/*---------- Global Colors ----------*/
:root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #242b52; /* Default color used for the majority of the text content across the entire website */
    --header-color: #30396e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ff4a17; /* 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. */
}

/*---------- Navbar Menu Colors ----------*/
:root {
    --navbar-color: #161a32;  /* The default color of the main navmenu links */
    --navbar-hover-color: #ff4a17; /* Applied to main navmenu links when they are hovered over or active */
    --navbar-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --navbar-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --navbar-dropdown-color: #242b52; /* Used for navigation links of the dropdown items in the navigation menu. */
    --navbar-dropdown-hover-color: #ff4a17; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/*---------- Color Presets ----------*/
.light-background {
    --background-color: #f1f4fa;
    --surface-color: #ffffff;
}

.blue-background {
    --background-color: #30396e;
    --default-color: #ffffff;
    --header-color: #ffffff;
    --surface-color: #28323a;
    --contrast-color: #ffffff;
}

/*---------- Smooth scroll ----------*/
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
### General Style & 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(--header-color);
    font-family: var(--header-font);
}

/*--------------------------------------------------------------
### Global Header ###
--------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 58px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--header-color);
}

.header .cta-btn,
.header .cta-btn:focus {
    color: #161a32;
    font-size: 13px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    border: 2px solid #30396e;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*---------- Global Header on Scroll----------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.85);
}

/*--------------------------------------------------------------
### Navbar Menu ###
--------------------------------------------------------------*/
/*---------- Desktop Navbar----------*/
@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>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--navbar-color);
        font-size: 13px;
        padding: 0 2px;
        font-family: var(--navbar-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--navbar-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, var(--navbar-color) 90%, white 15%);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--navbar-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(--navbar-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(--navbar-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;
    }
}

/*---------- Mobile Navbar----------*/
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--navbar-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(--navbar-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--navbar-dropdown-color);
        padding: 10px 20px;
        font-family: var(--navbar-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(--navbar-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--navbar-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
### Global Footer ###
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--header-font);
    color: var(--header-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--header-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 3px;
    font-size: 13px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-map {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--background-color);
    transition: 0.3s;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
### Preloader ###
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
### Scroll Top Button ###
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 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 Sections ###
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
### Hero Section ###
--------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, #f1f4fa, transparent 75%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    margin-top: 630px;
}

.hero h2 {
    /*--color: #30396e;--*/
    color: #f1f4fa;
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero p {
    /*--color: color-mix(in srgb, #242b52, transparent 20%);--*/
    color: color-mix(in srgb, #fff, transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}

.hero .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 400;
    color: var(--default-color);
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 1199px) {
    .hero {
        height: auto; 
        min-height: unset;
        padding: 0;
        display: block;
    }

    .hero img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero:before {
        display: none;
        background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
    }

    .hero .container {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
        margin-top: 5px;
    }

    .hero h2 {
        font-size: 18px;
        font-weight: 400;
    }

    .hero p {
        font-size: 14px;
    }

    .hero .btn-get-started {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hero .btn-watch-video {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto; 
        min-height: unset;
        padding: 0;
        display: block;
    }

    .hero img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero:before {
        display: none;
        background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
    }

    .hero .container {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
        margin-top: 5px;
    }

    .hero h2 {
        font-size: 14px;
        font-weight: 400;
    }

    .hero p {
        font-size: 10px;
    }

    .hero .btn-get-started {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero .btn-watch-video {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 10px;
    }

    .hero p {
        font-size: 6px;
    }

    .hero .btn-get-started {
        font-size: 6px;
        letter-spacing: 1px;
    }

    .hero .btn-watch-video {
        font-size: 6px;
    }
}

/*--------------------------------------------------------------
### About Section ###
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.about .about-item {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: 0.3s;
}

.about .about-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: var(--accent-color);
}

.about .about-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.about .about-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0;
}

.about .about-item:hover {
    border-color: var(--accent-color);
}

.about .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    padding: 50px 30px;
    margin: 30px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    position: relative;
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
}

.about .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
}

.about .details h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.about .details p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.about .details:hover {
    border-color: var(--accent-color);
}

.about .about-item-2:hover .details h3 {
    color: var(--accent-color);
}

.about .about-item-2:hover .details .icon {
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
}

.about .about-item-2:hover .details .icon i {
  color: var(--accent-color);
}

.about .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
}

.about .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
### Global Section Titles ###
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--header-font);
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 8px;
    }

    .section-title p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
### Serices Section ###
--------------------------------------------------------------*/
.services h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.services .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.services .content ul {
  list-style: none;
  padding: 0;
}

.services .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.services .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.services .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
### Our Capability Section ###
--------------------------------------------------------------*/
.capability h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.capability .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.capability .content ul {
  list-style: none;
  padding: 0;
}

.capability .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.capability .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.capability .content p:last-child {
  margin-bottom: 0;
}

.capability .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    padding: 50px 30px;
    margin: 10px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    position: relative;
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
}

.capability .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
}

.capability .details h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.capability .details p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.capability .details:hover {
    border-color: var(--accent-color);
}

.capability .capability-item:hover .details h5 {
    color: var(--accent-color);
}

.capability .capability-item:hover .details .icon {
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
}

.capability .capability-item:hover .details .icon i {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
### Global Footprint Section ###
--------------------------------------------------------------*/
.global-footprint h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.global-footprint .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.global-footprint ul {
  list-style: none;
  padding: 0;
}

.global-footprint ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.global-footprint ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.global-footprint p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
### Sustainability Section ###
--------------------------------------------------------------*/
.sustainability h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.sustainability .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.sustainability .content ul {
  list-style: none;
  padding: 0;
}

.sustainability .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.sustainability .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.sustainability .content p:last-child {
  margin-bottom: 0;
}

.sustainability .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    padding: 50px 30px;
    margin: 10px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    position: relative;
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
}

.sustainability .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
}

.sustainability .details h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.sustainability .details p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.sustainability .details:hover {
    border-color: var(--accent-color);
}

.sustainability .sustainability-item:hover .details h5 {
    color: var(--accent-color);
}

.sustainability .sustainability-item:hover .details .icon {
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
}

.sustainability .sustainability-item:hover .details .icon i {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
### Certification Section ###
--------------------------------------------------------------*/
.certifications {
    padding: 60px 0;
}

.certifications .content h2 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--header-color);
    line-height: 1.2;
}

.certifications .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}

.certifications .badge-highlight {
    display: flex;
    align-items: center;
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.certifications .badge-highlight img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.certifications .badge-highlight .badge-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.certifications .badge-highlight .badge-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.certifications .certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.certifications .certification-grid .cert-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.certifications .certification-grid .cert-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.certifications .certification-grid .cert-card:hover {
    transform: translateY(-8px);
}

.certifications .certification-grid .cert-card:hover::before {
    transform: scaleY(1);
}

.certifications .certification-grid .cert-card:hover .cert-icon img {
    transform: scale(1.1);
}

.certifications .certification-grid .cert-card .cert-icon {
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.8rem;
}

.certifications .certification-grid .cert-card .cert-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.certifications .certification-grid .cert-card .cert-details {
    flex: 1;
}

.certifications .certification-grid .cert-card .cert-details h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--header-color);
    margin-bottom: 0.3rem;
}

.certifications .certification-grid .cert-card .cert-details .cert-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.certifications .certification-grid .cert-card .cert-details p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin-bottom: 0;
}

.certifications .certifications-item {
    position: relative;
}

.certifications .certifications-item .pic {
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.certifications .certifications-item .certifications-info {
    background-color: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    padding: 20px 15px;
    overflow: hidden;
    transition: 0.5s;
}

.certifications .certifications-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
}

.certifications .certifications-item h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    margin-right: 50px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    bottom: 0;
    left: 0;
}

.certifications .certifications-item span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

@media (max-width: 992px) {
    .certifications .certification-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certifications .certification-grid .cert-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .certifications .certification-grid .cert-card .cert-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .certifications {
        padding: 80px 0;
    }

    .certifications .badge-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .certifications .badge-highlight img {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .certifications .cert-card {
        flex-direction: column;
        text-align: center;
    }

    .certifications .cert-card .cert-icon {
        margin: 0 auto;
    }

    .certifications .achievements-banner {
        padding: 2rem 1rem;
    }

    .certifications .achievements-banner .achievement-item {
        margin-bottom: 2rem;
    }

    .certifications .achievements-banner .achievement-item:last-child {
        margin-bottom: 0;
    }

    .certifications .achievements-banner .achievement-item h3 {
        font-size: 2.2rem;
    }

    .certifications .row {
        display: flex;
        flex-wrap: nowrap; /* บังคับให้อยู่แถวเดียว */
        gap: 12px;
    }

    .certifications .row > [class*="col-"] {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .certifications .certifications-item .pic {
        margin-bottom: 0;
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .certifications .certifications-item img {
        width: auto;
        object-fit: contain;
    }
}

/*--------------------------------------------------------------
### CTA Section ###
--------------------------------------------------------------*/
.cta {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.cta .cta-about {
    padding: 50px 0;
}

.cta .cta-about h4 {
    font-size: 26px;
}

.cta .cta-about p {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.cta .cta-about .cta-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
    .cta .cta-about .cta-btns {
        flex-direction: column;
    }
}

.cta .cta-about .cta-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta .cta-about .cta-btns .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.cta .cta-about .cta-btns .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

/*--------------------------------------------------------------
### Global Page Titles & Breadcrumbs ###
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background: color-mix(in srgb, #f1f4fa, transparent 20%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    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 50%);
}

/*--------------------------------------------------------------
### Contact Section ###
--------------------------------------------------------------*/
.contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

/*--------------------------------------------------------------
### Smart Eyewear ###
--------------------------------------------------------------*/
.aabv-hero {
    padding: 60px 0 80px;
}

.aabv-hero .aabv-hero-wrapper {
    position: relative;
    height: 620px;
    border-radius: 8px;
    overflow: hidden;
}

.aabv-hero .aabv-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.aabv-hero-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
}

.aabv-hero-content h1 {
    color: var(--contrast-color);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.aabv-hero-content p {
    color: var(--contrast-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
}

.aabv-hero .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    align-items: start;
}

.aabv-hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 991px) {
    .aabv-hero .aabv-hero-wrapper {
        height: 460px;
    }

    .aabv-hero-content h1 {
        font-size: 34px;
    }

    .aabv-hero-content-wrapper {
        justify-content: center;
        text-align: center;
    }

    .aabv-hero-content p {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .aabv-hero {
        padding: 40px 0 60px;
    }

    .aabv-hero .aabv-hero-wrapper {
        height: 420px;
    }

    .aabv-hero-content-wrapper {
        padding: 24px;
    }

    .aabv-hero-content h1 {
        font-size: 28px;
    }
}

.aavb-details .aavb-img {
    margin-bottom: 20px;
    border-radius: 8px;
}

.aavb-details h2 {
    font-size: 48px;
    font-weight: 700;
}

.aavb-details h3 {
    font-size: 48px;
    font-weight: 700;
}

.aavb-details p {
    font-size: 18px;
}

.aavb-details .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    align-items: start;
}

.aavb-details .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.aavb-brand h3 {
    font-size: 48px;
    font-weight: 700;
}

.aavb-brand p {
    font-size: 18px;
}

.aavb-brand .aavb-item {
    position: relative;
}

.aavb-brand .aavb-item .pic {
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 8px;
}

.aavb-brand .aavb-item .aavb-info {
    background-color: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    padding: 20px 15px;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 8px;
}

.aavb-brand .aavb-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
    align-items: center;
    justify-content: center;
}

.aavb-brand i {
    font-size: 40px;
    color: #242b52;
}

.aavb-slide .aavb-details-slider img {
    width: 100%;
    border-radius: 8px;
}

.aavb-slide .aavb-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.aavb-slide .aavb-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.aavb-slide .aavb-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.aavb-slide .aavb-slide-description {
    padding-top: 30px;
}

.aavb-slide .aavb-slide-description h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.aavb-slide .aavb-slide-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.aavb-slide .aavb-slide-description ul {
  list-style: none;
  padding: 0;
}

.aavb-slide .aavb-slide-description ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.aavb-slide .aavb-slide-description ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.aavb-slide .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    align-items: start;
}

.aavb-slide .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.aabv-cta {
    padding: 80px 0 80px;
}

.aabv-cta-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 640px;
}

.aabv-cta-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aabv-cta-content {
    position: relative;
    z-index: 2;
    padding: 80px;
    padding-top: 180px;
    max-width: 680px;
}

.aabv-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--contrast-color);
}

.aabv-cta .aabv-cta-content .aabv-btns-1 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    margin-top: 50px;
}

.aabv-cta .aabv-cta-content .aabv-btns-2 {
    display: flex;
    gap: 1rem;
    margin-top: -18px;
}

@media (max-width: 576px) {
    .aabv-cta .aabv-cta-content .aabv-btns-1 {
        flex-direction: column;
    }

    .aabv-cta .aabv-cta-content .aabv-btns-2 {
        flex-direction: column;
    }
}

.aabv-cta .aabv-cta-content .aabv-btns-1 .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.aabv-cta .aabv-cta-content .aabv-btns-2 .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.aabv-cta .aabv-cta-content .aabv-btns-1 .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.aabv-cta .aabv-cta-content .aabv-btns-1 .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.aabv-cta .aabv-cta-content .aabv-btns-2 .btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--contrast-color);
}

.aabv-cta .aabv-cta-content .aabv-btns-2 .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .aabv-cta-content {
        padding: 48px 32px;
        margin-top: 180px;
    }

    .aabv-cta-content h2 {
        font-size: 30px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .aabv-cta-content {
        padding: 48px 32px;
        margin-top: 380px;
    }

    .aabv-cta-content h2 {
        font-size: 24px;
        text-align: left;
    }
}

/*--------------------------------------------------------------
### History ###
--------------------------------------------------------------*/
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    height: 4px;
    background: color-mix(in srgb, #f1f4fa, transparent 20%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    text-align: center;
    width: 14%;
    z-index: 2;
}

.timeline-item .year {
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    color: #555;
}

.timeline-item .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.dot.purple { background: #7c83fd; }
.dot.yellow { background: #facc15; }
.dot.orange { background: #fb923c; }
.dot.blue   { background: #60a5fa; }
.dot.green  { background: #4ade80; }

.timeline-item .content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .timeline {
        flex-direction: column;
    }

    .timeline::before {
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
    }

    .timeline-item {
        width: 100%;
        padding-left: 40px;
        margin-bottom: 40px;
        text-align: left;
    }

    .timeline-item .content h5 {
        font-size: 14px;
    }

    .timeline-item .dot {
        position: absolute;
        left: calc(50% - 9px);
        top: 0;
    }
}

.timeline-item.highlight h5 {
    color: #c2410c;
}

.timeline-item.highlight .content {
    font-weight: 500;
}

.dot.red {
    background: #ef4444;
}

.cta-history .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    align-items: start;
}

.cta-history .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.history-timeline-item .history-item {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: 0.3s;
}

.history-timeline-item .history-item .year {
    font-size: 22px;
    line-height: 0;
    margin-right: 30px;
    margin-top: 10px;
    color: var(--accent-color);
}

.history-timeline-item .history-item .company-name {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--header-color);
}

.history-timeline-item .history-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0;
}

.history-timeline-item .history-item:hover {
    border-color: var(--accent-color);
}

.history-timeline-item .history-item:hover .company-name {
    color: var(--accent-color);
}