@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");
:root {
    --primary-color: #a8ff00;
    --primary-color-rgb: 168, 255, 0;
    --secondary-color: #79e7b4;
    --dark-color: #06172b;
    --dark-soft-color: #0b2038;
    --card-color: #12243d;
    --card-soft-color: #1a2d47;
    --text-color: #f7f9fc;
    --muted-color: #8594a8;
    --soft-color: #c5cfda;
    --border-color: rgba(255, 255, 255, .12);
    --primary-border-color: rgba(var(--primary-color-rgb), .34);
    --white-color: #ffffff;
    --light-card-color: #aebcca;
    --light-soft-color: #9fb0bd;
    --black-color: #050708;
    --body-font: "Manrope", sans-serif;
    --title-font: "Sora", sans-serif;
    --section-title-size: 25px;
    --section-desc-size: 18px;
    --slider-title-size: 30px;
    --slider-desc-size: 20px;
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 35px;
    --shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    min-width: 320px;
    margin: 0;
    background-color: var(--dark-color);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}
body.nav-open {
    overflow: hidden;
}
::selection {
    background-color: var(--primary-color);
    color: var(--dark-color);
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
button,
input,
select,
textarea {
    font: inherit;
}
.container-fluid {
    width: min(100% - 40px, 1380px);
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (max-width: 768px) {
{
    width: min(100% - 28px, 1380px);
}
}
.border-top {
    border-top: 1px solid var(--dark-soft-color) !important;
}
.border-bottom {
    border-bottom: 1px solid var(--dark-soft-color) !important;
}
.form-group {
    margin-bottom: 30px;
}

/* Section Title */
.section-title {
    display: flex;
    margin-bottom: 70px;
    flex-direction: column;
    align-items: flex-start;
}
.section-title.start {
    margin-right: auto;
    text-align: left;
}
.section-title.center {
    margin-right: auto;
    margin-left: auto;
    align-items: center;
    text-align: center;
}
.section-title.end {
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
}
.section-title .label {
    display: inline-flex;
    align-items: center;
    min-height: 35px;
    padding: 0 25px;
    border: 1px solid var(--border-color);
    border-radius: 35px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, .05);
    color: var(--soft-color);
    font-size: 17px;
    font-weight: 800;
}
.section-title .label:hover {
    border-color: var(--primary-border-color);
    color: var(--primary-color);
}
.section-title .title {
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: var(--section-title-size);
    font-weight: 600;
    line-height: 1.35;
}
.section-title .title .accent {
    color: var(--primary-color);
}
.section-title .desc {
    margin-top: 20px;
    color: var(--muted-color);
    font-size: var(--section-desc-size);
    font-weight: 400;
    line-height: 1.7;
}
.section-title .desc p,
.desc p {
    margin: 0 0 15px;
}
.section-title .desc p:last-child,
.desc p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 5px 5px 5px 15px;
    border: 1px solid transparent;
    border-radius: 999px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    gap: 10px;
    transition: transform .22s ease, background-color .22s ease;
}
.primary-btn:hover {
    transform: translateY(-2px);
}
.primary-btn .primary-btn-text {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}
.primary-btn .primary-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background-color: var(--black-color);
    color: var(--primary-color);
    font-size: 13px;
}
.primary-btn-secondary {
    border-color: var(--border-color);
    background-color: rgba(255, 255, 255, .08);
    color: var(--text-color);
    backdrop-filter: blur(15px);
}
.primary-btn-secondary .primary-btn-text {
    color: var(--text-color);
}
.primary-btn-secondary .primary-btn-icon {
    background-color: var(--primary-color);
    color: var(--dark-color);
}
@media screen and (max-width: 768px) {
    .primary-btn {
        width: 100%;
    }
}

/* Loader */
.loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
}
.loader .loader-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader .loader-mark img {
    width: 64px;
    height: auto;
    object-fit: contain;
    animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: .65;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Site Header */
.site-header {
    position: fixed;
    z-index: 900;
    top: 0;
    right: 0;
    left: 0;
    padding: 10px 0;
    pointer-events: none;
    transition: padding .25s ease;
}
.site-header.is-sticky {
    padding: 10px 0;
}
.site-header .site-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    pointer-events: auto;
}
.site-header .site-header-nav .site-header-logo {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .05);
    gap: 10px;
    backdrop-filter: blur(14px);
}
.site-header.is-sticky .site-header-nav .site-header-logo,
.site-header.is-sticky .site-header-nav .site-header-menu,
.site-header.is-sticky .site-header-nav .site-header-actions .site-header-icon-link,
.site-header.is-sticky .site-header-nav .site-header-actions .site-header-toggle {
    border-color: rgba(255, 255, 255, .14);
    background-color: rgba(6, 23, 43, .78);
    backdrop-filter: blur(20px);
}
.site-header .site-header-nav .site-header-logo .site-header-logo-image {
    width: 64px;
    height: auto;
}
.site-header .site-header-nav .site-header-logo .site-header-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-transform: uppercase;
}
.site-header .site-header-nav .site-header-logo .site-header-logo-text .site-header-logo-title {
    color: var(--primary-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}
.site-header .site-header-nav .site-header-logo .site-header-logo-text .site-header-logo-subtitle {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}
.site-header .site-header-nav .site-header-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, .05);
    gap: 5px;
    backdrop-filter: blur(14px);
}
.site-header .site-header-nav .site-header-menu .site-header-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 15px;
    border-radius: 40px;
    color: var(--soft-color);
    font-size: 15px;
    font-weight: 600;
    transition: background-color .2s ease, color .2s ease;
}
.site-header .site-header-nav .site-header-menu .site-header-menu-link:hover,
.site-header .site-header-nav .site-header-menu .site-header-menu-link.is-active {
    background-color: rgba(255, 255, 255, .09);
    color: var(--text-color);
}
.site-header .site-header-nav .site-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.site-header .site-header-nav .site-header-actions .site-header-button {
    min-height: 50px;
    padding: 5px 5px 5px 20px;
}
.site-header .site-header-nav .site-header-actions .site-header-icon-link,
.site-header .site-header-nav .site-header-actions .site-header-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .06);
    color: var(--text-color);
    transition: transform .22s ease, color .22s ease;
}
.site-header .site-header-nav .site-header-actions .site-header-icon-link:hover,
.site-header .site-header-nav .site-header-actions .site-header-toggle:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}
.site-header .site-header-nav .site-header-actions .site-header-toggle {
    display: none;
}
@media screen and (max-width: 1200px) {
    .site-header .site-header-nav .site-header-menu {
        display: none;
    }
    .site-header .site-header-nav .site-header-actions .site-header-toggle {
        display: flex;
    }
}
@media screen and (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    .site-header .site-header-nav .site-header-logo {
        min-height: 40px;
        padding: 5px;
    }
    .site-header .site-header-nav .site-header-logo .site-header-logo-image {
        width: 30px;
        height: 30px;
    }
    .site-header .site-header-nav .site-header-logo .site-header-logo-text,
    .site-header .site-header-nav .site-header-actions .site-header-button {
        display: none;
    }
    .site-header .site-header-nav .site-header-actions .site-header-icon-link,
    .site-header .site-header-nav .site-header-actions .site-header-toggle {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    z-index: 890;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.nav-open .mobile-nav {
    pointer-events: auto;
}
.mobile-nav .mobile-nav-panel {
    display: flex;
    width: 100%;
    min-height: 100%;
    padding: 100px 30px 30px;
    border: 1px solid var(--border-color);
    background-color: rgba(6, 23, 43, .92);
    box-shadow: var(--shadow);
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .35s ease;
    backdrop-filter: blur(22px);
}
.nav-open .mobile-nav .mobile-nav-panel {
    transform: translateX(0);
}
.mobile-nav .mobile-nav-panel .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.mobile-nav .mobile-nav-panel .mobile-nav-head .mobile-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.mobile-nav .mobile-nav-panel .mobile-nav-head .mobile-nav-logo .mobile-nav-logo-image {
    width: 50px;
    height: 50px;
    border-radius: 999px;
}
.mobile-nav .mobile-nav-panel .mobile-nav-head .mobile-nav-logo .mobile-nav-logo-text {
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}
.mobile-nav .mobile-nav-panel .mobile-nav-head .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .06);
    color: var(--text-color);
}
.mobile-nav .mobile-nav-panel .mobile-nav-links {
    display: flex;
    flex-direction: column;
}
.mobile-nav .mobile-nav-panel .mobile-nav-links .mobile-nav-link {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--soft-color);
    font-family: var(--title-font);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}
.mobile-nav .mobile-nav-panel .mobile-nav-links .mobile-nav-link.is-active {
    color: var(--primary-color);
}
.mobile-nav .mobile-nav-panel .mobile-nav-contact {
    display: flex;
    margin-top: auto;
    padding-top: 30px;
    flex-direction: column;
    gap: 10px;
}
.mobile-nav .mobile-nav-panel .mobile-nav-contact .mobile-nav-contact-link {
    display: flex;
    align-items: center;
    color: var(--soft-color);
    gap: 10px;
}
.mobile-nav .mobile-nav-panel .mobile-nav-contact .mobile-nav-contact-link i {
    color: var(--primary-color);
}
.mobile-nav .mobile-nav-panel .mobile-nav-social {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}
.mobile-nav .mobile-nav-panel .mobile-nav-social .mobile-nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .06);
    color: var(--soft-color);
}

/* Home Slider */
.home-slider {
    position: relative;
    overflow: hidden;
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-item {
    position: relative;
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-image {
    position: relative;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    filter: saturate(.88) contrast(1.04);
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 7, 8, .88) 0%, rgba(5, 7, 8, .54) 45%, rgba(5, 7, 8, .82) 100%), linear-gradient(180deg, rgba(5, 7, 8, .18) 0%, rgba(6, 23, 43, .58) 100%);
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-box {
    position: absolute;
    z-index: 2;
    bottom: 150px;
    left: 0;
    width: 100%;
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-content {
    max-width: 50%;
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 15px;
    border: 1px solid var(--primary-border-color);
    border-radius: 30px;
    margin-bottom: 30px;
    background-color: rgba(var(--primary-color-rgb), .09);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-title {
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: var(--slider-title-size);
    font-weight: 600;
    line-height: 1.12;
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-desc {
    margin: 20px 0 0;
    color: var(--soft-color);
    font-size: var(--slider-desc-size);
    font-weight: 200;
    line-height: 1.65;
}
.home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 15px;
}
.home-slider .home-slider-carousel .owl-nav {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 35px;
    left: 35px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity .25s ease;
}
.home-slider:hover .home-slider-carousel .owl-nav {
    opacity: 1;
}
.home-slider .home-slider-carousel .owl-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-radius: 999px !important;
    background-color: rgba(255, 255, 255, .12) !important;
    color: var(--text-color) !important;
    pointer-events: auto;
    backdrop-filter: blur(14px);
}
.home-slider .home-slider-carousel .owl-dots {
    display: none;
}
@media screen and (max-width: 992px) {
    .home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-content {
        max-width: 80%;
    }
}
@media screen and (max-width: 768px) {
    .home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-image {
        height: 620px;
    }
    .home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-box {
        bottom: 140px;
    }
    .home-slider .home-slider-carousel .owl-stage-outer .owl-stage .owl-item .home-slider-content {
        max-width: 100%;
    }
    .home-slider .home-slider-carousel .owl-nav {
        display: none;
    }
}

/* Hero Grid */
.hero-grid {
    position: relative;
    z-index: 5;
    margin-top: -90px;
    padding-bottom: 70px;
}
.hero-grid .hero-grid-list .row [class*="col-"]  {
    display: flex;
    align-items: stretch;
}
.hero-grid .hero-grid-list .hero-grid-card {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 170px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
}
.hero-grid .hero-grid-list .showcase .hero-grid-card  {
    padding: 30px;
    background-color: var(--light-card-color);
    color: var(--black-color);
}
.hero-grid .hero-grid-list .hero-grid-card-glass {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .18);
    background-color: rgba(255, 255, 255, .13);
    backdrop-filter: blur(18px);
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-top .hero-grid-avatars {
    display: inline-flex;
    align-items: center;
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-top .hero-grid-avatars .hero-grid-avatar {
    width: auto;
    height: 48px;
    object-fit: cover;
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-top .hero-grid-avatars .hero-grid-avatar + .hero-grid-avatar {
    margin-left: -14px;
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-top .hero-grid-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 15px;
    border-radius: 999px;
    background-color: rgba(5, 7, 8, .08);
    color: var(--black-color);
    font-family: var(--title-font);
    font-size: 15px;
    font-weight: 800;
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-card-content {
    margin-top: auto;
    padding-top: 30px;
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-card-content .hero-grid-title {
    max-width: 360px;
    margin: 0;
    color: var(--black-color);
    font-family: var(--title-font);
    font-size: var(--section-title-size);
    font-weight: 800;
    line-height: 1.16;
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-card-content .hero-grid-text {
    margin: 15px 0 0;
    color: rgba(5, 7, 8, .68);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-floating-link {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-color: var(--black-color);
    color: var(--primary-color);
}
.hero-grid .hero-grid-list .hero-grid-card .hero-grid-comment-carousel {
    height: 100%;
}
.hero-grid .hero-grid-comment-item {
    display: flex;
    min-height: 120px;
    padding: 20px 0 30px;
    flex-direction: column;
    justify-content: center;
}
.hero-grid .hero-grid-comment-name {
    display: block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}
.hero-grid .hero-grid-quote {
    max-width: 430px;
    margin: 20px auto;
    color: var(--text-color);
    font-size: var(--section-desc-size);
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}
.hero-grid .hero-grid-meta {
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, .72);
    gap: 20px;
}
.hero-grid .hero-grid-comment-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.hero-grid .hero-grid-comment-carousel .owl-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 999px !important;
    background-color: rgba(255, 255, 255, .14) !important;
    color: var(--text-color) !important;
    pointer-events: auto;
}
.hero-grid .hero-grid-comment-carousel .owl-dots {
    position: absolute;
    right: 50%;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .08);
    gap: 6px;
    transform: translateX(50%);
}
.hero-grid .hero-grid-comment-carousel .owl-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .36) !important;
}
.hero-grid .hero-grid-comment-carousel .owl-dot.active {
    width: 16px;
    background-color: var(--primary-color) !important;
}

/* Home About */
.home-about {
    position: relative;
    padding-bottom: 70px;
}
.home-about .home-about-head .row {
    align-items: flex-start;
}
.home-about .home-about-cards {
    display: flex;
}
.home-about .home-about-cards .home-about-card {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    border: 3px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--light-soft-color);
    color: var(--black-color);
    margin-bottom: 30px;
}
.home-about .home-about-cards .home-about-card-cover {
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--card-color);
}
.home-about .home-about-cards .home-about-card-cover::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 23, 43, .04), rgba(6, 23, 43, .36));
    content: "";
}
.home-about .home-about-cards .home-about-card .home-about-card-icon,
.home-about .home-about-cards .home-about-card .home-about-card-stat {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}
.home-about .home-about-cards .home-about-card .home-about-card-icon img,
.home-about .home-about-cards .home-about-card .home-about-card-stat img {
    width: 48px;
    height: 64px;
    object-fit: contain;
}
.home-about .home-about-cards .home-about-card .home-about-card-content .home-about-card-title {
    margin: 0;
    color: var(--black-color);
    font-family: var(--title-font);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.25;
}
.home-about .home-about-cards .home-about-card .home-about-card-content .home-about-card-desc {
    margin-top: 20px;
    color: rgba(5, 7, 8, .68);
    font-size: 16px;
}
.home-about .home-about-cards .home-about-card .home-about-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-about .home-about-cards .home-about-card .home-about-card-btn {
    position: relative;
    z-index: 2;
}

/* Home Programs */
.home-programs {
    position: relative;
    padding: 100px 0 70px;
    background-color: var(--dark-soft-color);
}
.home-programs .home-programs-row {
    margin-bottom: 30px;
}
.home-programs .home-programs-row .home-programs-list {
    position: relative;
}
.home-programs .home-programs-row .home-programs-list .home-programs-card {
    position: relative;
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background-color: var(--card-color);
    margin-bottom: 30px;
}
.home-programs .home-programs-row .home-programs-list .home-programs-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 23, 43, .1), var(--dark-soft-color));
    content: "";
    border-radius: inherit;
    pointer-events: none;
}
.home-programs .home-programs-row .home-programs-list .home-programs-card .home-programs-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform .45s ease;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform;
}
.home-programs .home-programs-row .home-programs-list .home-programs-card:hover .home-programs-image {
    transform: scale(1.04);
}
.home-programs .home-programs-row .home-programs-list .home-programs-card .home-programs-content {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.home-programs .home-programs-row .home-programs-list .home-programs-card .home-programs-content .home-programs-title {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    margin: 0;
    background-color: rgba(6, 23, 43, .46);
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    backdrop-filter: blur(14px);
}
.home-programs .home-programs-row .home-programs-list .home-programs-card .home-programs-content .home-programs-desc {
    margin: 0;
    color: var(--soft-color);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
}

/* Home Why */
.home-why {
    position: relative;
    padding: 100px 0 70px;
}
.home-why .home-why-wrap .home-why-list {
    position: relative;
}
.home-why .home-why-wrap .home-why-list .home-why-column {
    display: flex;
    padding: 0 30px 30px;
    border: 1px solid rgba(121, 231, 180, .25);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(18, 36, 61, .96), rgba(12, 54, 78, .78));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}
.home-why .home-why-wrap .home-why-list .home-why-column .home-why-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin-top: -20px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 700;
}
.home-why .home-why-wrap .home-why-list .home-why-column .home-why-card .home-why-card-title {
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.28;
}
.home-why .home-why-wrap .home-why-list .home-why-column .home-why-card .home-why-card-desc {
    margin: 20px 0 0;
    color: var(--soft-color);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
}
.home-why .home-why-wrap .home-why-link {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Home Statistics */
.home-statistics {
    position: relative;
    padding: 100px 0 70px;
    background-color: var(--light-soft-color);
}
.home-statistics .home-statistics-title {
    margin: 0 0 70px;
    color: var(--dark-soft-color);
    font-family: var(--body-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}
.home-statistics .home-statistics-list {
    margin-bottom: 30px;
}
.home-statistics .home-statistics-list .home-statistics-item {
    text-align: center;
    margin-bottom: 30px;
}
.home-statistics .home-statistics-list .home-statistics-item .top {
    display: flex;
    color: var(--dark-color);
    font-family: var(--title-font);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.home-statistics .home-statistics-list .home-statistics-item .home-statistics-label {
    display: block;
    margin-top: 12px;
    color: var(--dark-soft-color);
    font-size: 15px;
    font-weight: 600;
}

/* Home Gallery */
.home-gallery {
    position: relative;
    padding: 100px 0;
}
.home-gallery .home-gallery-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    flex-direction: row;
}
.home-gallery .home-gallery-head .home-gallery-nav {
    display: flex;
    gap: 10px;
}
.home-gallery .home-gallery-head .home-gallery-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .06);
    color: var(--text-color);
}
.home-gallery .home-gallery-carousel .home-gallery-item {
    position: relative;
    display: block;
    height: 520px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--card-color);
}
.home-gallery .home-gallery-carousel .home-gallery-item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 23, 43, .08), rgba(6, 23, 43, .82));
    content: "";
}
.home-gallery .home-gallery-carousel .home-gallery-item .home-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.home-gallery .home-gallery-carousel .home-gallery-item:hover .home-gallery-image {
    transform: scale(1.04);
}
.home-gallery .home-gallery-carousel .home-gallery-item .home-gallery-content {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    left: 30px;
}
.home-gallery .home-gallery-carousel .home-gallery-item .home-gallery-content .home-gallery-title {
    display: block;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 800;
}
.home-gallery .home-gallery-carousel .home-gallery-item .home-gallery-content .home-gallery-desc {
    display: block;
    margin-top: 12px;
    color: var(--soft-color);
    font-size: 14px;
    font-weight: 600;
}

/* Home FAQ */
.home-faq {
    position: relative;
    padding: 100px 0;
}
.home-faq .home-faq-wrap .home-faq-list .home-faq-item {
    margin-bottom: 15px;
}
.home-faq .home-faq-wrap .home-faq-list .home-faq-item .home-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 60px;
    padding: 0 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, .06);
    color: var(--text-color);
    gap: 20px;
    text-align: left;
}
.home-faq .home-faq-wrap .home-faq-list .home-faq-item.active .home-faq-question {
    border-color: var(--primary-border-color);
    background-color: rgba(var(--primary-color-rgb), .12);
}
.home-faq .home-faq-wrap .home-faq-list .home-faq-item .home-faq-question span {
    font-size: 16px;
    font-weight: 800;
}
.home-faq .home-faq-wrap .home-faq-list .home-faq-item .home-faq-question i {
    color: var(--primary-color);
    transition: transform .22s ease;
}
.home-faq .home-faq-wrap .home-faq-list .home-faq-item.active .home-faq-question i {
    transform: rotate(45deg) translateX(1px);
}
.home-faq .home-faq-wrap .home-faq-list .home-faq-item .home-faq-answer {
    padding: 20px;
    border: 1px solid var(--primary-border-color);
    border-radius: var(--radius-sm);
    margin-top: 10px;
    color: var(--soft-color);
}
.home-faq .home-faq-wrap .home-faq-list .home-faq-item .home-faq-answer p {
    margin: 0;
    line-height: 1.7;
}
.home-faq .home-faq-wrap .home-faq-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Home Blog */
.home-blog {
    position: relative;
    padding: 100px 0;
}
.home-blog .home-blog-list {
    position: relative;
}
.home-blog .home-blog-link {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Blog Cards */
.home-blog .blog-card,
.blog-list-section .blog-card {
    width: 100%;
    margin-bottom: 30px;
}
.home-blog .blog-card .blog-card-cover,
.blog-list-section .blog-card .blog-card-cover {
    position: relative;
    display: flex;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--card-color);
}
.home-blog .blog-card .blog-card-cover::after,
.blog-list-section .blog-card .blog-card-cover::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 23, 43, .08), rgba(6, 23, 43, .72));
    content: "";
}
.home-blog .blog-card .blog-card-cover .blog-card-image,
.blog-list-section .blog-card .blog-card-cover .blog-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.home-blog .blog-card:hover .blog-card-cover .blog-card-image,
.blog-list-section .blog-card:hover .blog-card-cover .blog-card-image {
    transform: scale(1.04);
}
.home-blog .blog-card .blog-card-cover .blog-card-arrow,
.blog-list-section .blog-card .blog-card-cover .blog-card-arrow {
    position: absolute;
    z-index: 3;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .86);
    color: var(--dark-color);
    transition: transform .25s ease;
}
.home-blog .blog-card:hover .blog-card-cover .blog-card-arrow,
.blog-list-section .blog-card:hover .blog-card-cover .blog-card-arrow {
    transform: scale(1.08);
}
.home-blog .blog-card .blog-card-content,
.blog-list-section .blog-card .blog-card-content {
    padding: 20px 0 0;
}
.home-blog .blog-card .blog-card-content .blog-card-tags,
.blog-list-section .blog-card .blog-card-content .blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 15px;
}
.home-blog .blog-card .tag-item,
.blog-list-section .blog-card .tag-item,
.blog-sidebar .tag-item {
    display: inline-flex;
    align-items: center;
    color: var(--muted-color);
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}
.home-blog .blog-card .tag-item i,
.blog-list-section .blog-card .tag-item i,
.blog-sidebar .tag-item i {
    color: var(--primary-color);
}
.home-blog .blog-card .blog-card-content .blog-card-title,
.blog-list-section .blog-card .blog-card-content .blog-card-title {
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}
.home-blog .blog-card .blog-card-content .blog-card-desc,
.blog-list-section .blog-card .blog-card-content .blog-card-desc {
    margin: 12px 0 0;
    color: var(--muted-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

/* Footer CTA */
.footer-cta {
    position: relative;
    padding: 0 0 70px 0;
}
.footer-cta .footer-cta-box {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--card-color);
}
.footer-cta .footer-cta-box .footer-cta-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-cta .footer-cta-box .footer-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 23, 43, .86), rgba(6, 23, 43, .36));
}
.footer-cta .footer-cta-box .footer-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 720px;
    min-height: 420px;
    padding: 60px;
    flex-direction: column;
    justify-content: center;
}
.footer-cta .footer-cta-box .footer-cta-content .footer-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, .14);
    color: var(--primary-color);
}
.footer-cta .footer-cta-box .footer-cta-content .footer-cta-title {
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}
.footer-cta .footer-cta-box .footer-cta-content .footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 15px;
}

/* Site Footer */
.site-footer {
    position: relative;
    border-top: 1px solid var(--border-color);
    background-color: var(--dark-soft-color);
}
.site-footer .site-footer-social-row,
.site-footer .site-footer-main,
.site-footer .site-footer-bottom {
    border-bottom: 1px solid var(--border-color);
}
.site-footer .site-footer-social-row .site-footer-social-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0;
    gap: 30px;
}
.site-footer .site-footer-social-row .site-footer-social-box .site-footer-social-title {
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 800;
}
.site-footer .site-footer-social-row .site-footer-social-box .site-footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.site-footer .site-footer-social-row .site-footer-social-box .site-footer-social-links .site-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .05);
    color: var(--soft-color);
}
.site-footer .site-footer-main {
    padding: 60px 0 30px;
}
.site-footer .site-footer-main .site-footer-main-row .site-footer-column {
    margin-bottom: 30px;
}
.site-footer .site-footer-main .site-footer-main-row .site-footer-column .site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.site-footer .site-footer-logo-image {
    width: 100px;
    height: auto;
    object-fit: contain;
}
.site-footer .site-footer-logo-text {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}
.site-footer .site-footer-logo-title {
    color: var(--primary-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
}
.site-footer .site-footer-logo-subtitle {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 800;
}
.site-footer .site-footer-title {
    margin: 0 0 20px;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 800;
}
.site-footer .site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.site-footer .site-footer-link {
    color: var(--muted-color);
    font-size: 14px;
    font-weight: 700;
}
.site-footer .site-footer-link:hover {
    color: var(--primary-color);
}
.site-footer .site-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.site-footer .site-footer-contact-item {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--soft-color);
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}
.site-footer .site-footer-contact-item i {
    color: var(--primary-color);
}
.site-footer .site-footer-bottom {
    padding: 25px 0;
}
.site-footer .site-footer-bottom .site-footer-bottom-row .row {
    align-items: center;
}
.site-footer .site-footer-copyright {
    margin: 0;
    color: var(--muted-color);
    font-size: 13px;
    font-weight: 700;
}
.site-footer .site-footer-credit {
    display: block;
    color: var(--soft-color);
    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 150px 0 70px;
    background: linear-gradient(90deg, rgba(8,24,43,1), rgba(18,37,61,.1), rgba(168,255,0,.1));
}
.page-hero .title {
    font-size: 20px;
    margin: 0 0 25px;
}
.page-hero .links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.page-hero .links .item {
    position: relative;
    font-size: 15px;
    font-weight: 100;
    color: var(--light-soft-color);
    transition: all .3s;
}
.page-hero .links .item:hover,
.page-hero .links .item.active {
    color: var(--white-color);
    text-decoration: underline;
    transition: all .3s;
}
.page-hero .links .item:after {
    content: "|";
    position: absolute;
    top: 1px;
    right: -11px;
}
.page-hero .links .item:last-child:after {
    display: none;
}

/* Inner Section */
.inner-section {
    position: relative;
    padding: 70px 0;
}
.inner-section .inner-section-row .inner-sidebar {
    position: sticky;
    top: 110px;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--card-color);
}
.inner-sidebar .inner-sidebar-title {
    margin: 0 0 20px;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
}
.inner-sidebar .inner-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.inner-sidebar .inner-sidebar-links .inner-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--soft-color);
    font-size: 13px;
    font-weight: 800;
}
.content-detail .content-cover,
.blog-detail-content .blog-detail-cover {
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}
.content-detail .content-cover img,
.blog-detail-content .blog-detail-cover img {
    min-height: 420px;
    object-fit: cover;
}
.content-copy,
.blog-detail-body {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--card-color);
}
.content-copy .content-copy-title,
.blog-detail-body .blog-detail-title {
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: var(--section-title-size);
    font-weight: 600;
    line-height: 1.35;
}
.content-copy .content-copy-desc,
.blog-detail-body .blog-detail-desc {
    margin-top: 20px;
}

/* Reusable Gallery */
.reusable-gallery {
    position: relative;
    padding: 70px 0;
}
.reusable-gallery .reusable-gallery-list {
    margin-bottom: 30px;
}
.reusable-gallery .reusable-gallery-list .reusable-gallery-item {
    display: block;
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--card-color);
}
.reusable-gallery .reusable-gallery-list .reusable-gallery-item .reusable-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.reusable-gallery .reusable-gallery-list .reusable-gallery-item:hover .reusable-gallery-image {
    transform: scale(1.08);
}

/* Service Pages */
.services-list-section,
.other-services {
    position: relative;
    padding: 100px 0 70px;
    background-color: transparent;
}
.services-list-section .services-list-row {
    margin-bottom: 30px;
}
.service-list-card,
.other-service-card {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--card-color);
    flex-direction: column;
    justify-content: flex-end;
}
.service-list-card::after,
.other-service-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 23, 43, .08), rgba(6, 23, 43, .9));
    content: "";
}
.service-list-card .service-list-card-image,
.other-service-card .other-service-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-list-card .service-list-card-content,
.other-service-card .other-service-card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
}
.service-list-card .service-list-card-content .service-list-card-title,
.other-service-card .other-service-card-content .other-service-card-title {
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 800;
}
.service-list-card .service-list-card-content .service-list-card-desc,
.other-service-card .other-service-card-content .other-service-card-desc {
    margin: 12px 0 0;
    color: var(--soft-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}
.other-services .other-services-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}
.other-services .other-services-head .other-services-nav {
    display: flex;
    gap: 10px;
}
.other-services .other-services-head .other-services-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .06);
    color: var(--text-color);
}

/* Blog List And Detail */
.blog-list-section,
.blog-detail {
    position: relative;
    padding: 70px 0;
}
.blog-list-section .blog-list-row {
    margin-bottom: 30px;
}
.blog-detail .blog-detail-row .blog-sidebar {
    position: sticky;
    top: 110px;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--card-color);
}
.blog-sidebar .blog-sidebar-title {
    margin: 0 0 20px;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
}
.blog-sidebar .blog-sidebar-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 15px;
}
.blog-sidebar .blog-sidebar-item:last-child {
    border-bottom: 0;
}
.blog-sidebar .blog-sidebar-item .blog-sidebar-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex: 0 0 100px;
}
.blog-sidebar .blog-sidebar-item .blog-sidebar-content .blog-sidebar-item-title {
    display: block;
    margin: 0;
    color: var(--text-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}
.blog-sidebar .blog-sidebar-item .blog-sidebar-content .blog-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 8px;
}

/* Contact Page */
.contact-page {
    position: relative;
    padding: 100px 0;
}
.contact-page .contact-page-info-row {
    position: relative;
}
.contact-page .contact-page-info-row .contact-page-card {
    display: flex;
    width: 100%;
    min-height: 120px;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--card-color);
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.contact-page-card .contact-page-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background-color: rgba(var(--primary-color-rgb), .13);
    color: var(--primary-color);
    flex: 0 0 50px;
}
.contact-page-card .contact-page-card-content .contact-page-card-label {
    display: block;
    color: var(--muted-color);
    font-size: 13px;
    font-weight: 700;
}
.contact-page-card .contact-page-card-content .contact-page-card-value {
    display: block;
    margin-top: 6px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 800;
}
.contact-page .contact-map {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}
.contact-page .contact-map iframe {
    display: block;
    width: 100%;
    height: 450px;
}
.contact-page .contact-page-form-row {
    margin-top: 30px;
}
.contact-page .contact-page-form-row .contact-form {
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--card-color);
}
.contact-page .contact-page-form-row .contact-form {
    margin-bottom: 20px;
}
.contact-form-field,
.contact-form-message {
    width: 100%;
    min-height: 55px;
    padding: 0 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    background-color: rgba(255, 255, 255, .06);
    color: var(--text-color);
}
.contact-form-message {
    min-height: 160px;
    padding-top: 18px;
    resize: vertical;
}
.contact-form-field::placeholder,
.contact-form-message::placeholder {
    color: var(--muted-color);
}
.contact-form label {
    display: inline-block;
    font-size: 14px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 15px;
}
.form-error,
.form-error p {
    font-size: 14px;
    font-weight: 200;
    line-height: 1;
    color: var(--secondary-color);
    display: inline-block;
    margin-top: 5px;
}
#captcha_img {
    width: auto;
    height: 60px;
    object-fit: contain;
}
@media screen and (max-width: 992px) {
    .inner-section .inner-section-row .inner-sidebar,
    .blog-detail .blog-detail-row .blog-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 768px) {
    .home-gallery .home-gallery-head,
    .other-services .other-services-head,
    .site-footer .site-footer-social-row .site-footer-social-box {
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-cta .footer-cta-box .footer-cta-content {
        padding: 30px;
    }
    .footer-cta .footer-cta-box .footer-cta-content .footer-cta-title {
        font-size: 28px;
    }
    .site-footer .site-footer-credit {
        margin-top: 15px;
        text-align: left;
    }
}

.error-page {
    position: relative;
    padding: 100px 0;
}
.error-page .code {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 50px;
}
.error-page .title {
    font-size: var(--section-title-size);
    line-height: 1;
    margin-bottom: 15px;
}
.error-page .desc {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 50px;
}