:root {
    /* =========================
     BASE
  ========================= */
    --Base-base-1: #ffffff;
    --Base-base-2: #fcfcfd;
    --Base-base-3: #f5f5f6;
    --Base-base-4: #f0f0f1;
    --Base-base-5: #d9d9dc;
    --Base-base-6: #c0bfc4;
    --Base-base-7: #8d8c95;
    --Base-base-8: #5a5966;
    --Base-base-9: #464553;
    --Base-base-10: #272637;
    --Base-base-11: #1f1f30;
    --Base-base-12: #151427;
    --Base-base-13: #010014;
    /* =========================
     MAIN
  ========================= */
    --Main-main-50: #ecf6f3;
    --Main-main-100: #c4e3db;
    --Main-main-200: #a8d6c9;
    --Main-main-300: #80c3b1;
    --Main-main-400: #67b8a1;
    --Main-main-500: #41a68a;
    --Main-main-600: #3b977e;
    --Main-main-700: #2e7662;
    --Main-main-800: #245b4c;
    --Main-main-900: #1b463a;
    /* =========================
     GREEN
  ========================= */
    --Green-green-50: #e7eee9;
    --Green-green-100: #b5ccb9;
    --Green-green-200: #91b398;
    --Green-green-300: #5e9068;
    --Green-green-400: #3f7a4b;
    --Green-green-500: #0f591e;
    --Green-green-600: #0e511b;
    --Green-green-700: #0b3f15;
    --Green-green-800: #083111;
    --Green-green-900: #06250d;
    /* =========================
     RED
  ========================= */
    --Red-red-50: #f5e6e6;
    --Red-red-100: #deb0b1;
    --Red-red-200: #cf8a8b;
    --Red-red-300: #b95455;
    --Red-red-400: #ab3335;
    --Red-red-500: #960002;
    --Red-red-600: #890002;
    --Red-red-700: #6b0001;
    --Red-red-800: #530001;
    --Red-red-900: #3f0001;
    /* =========================
     BLUE
  ========================= */
    --Blue-blue-50: #e6e6f5;
    --Blue-blue-100: #b2b0de;
    --Blue-blue-200: #8c8acf;
    --Blue-blue-300: #5854b9;
    --Blue-blue-400: #3733ab;
    --Blue-blue-500: #050096;
    --Blue-blue-600: #050089;
    --Blue-blue-700: #04006b;
    --Blue-blue-800: #030053;
    --Blue-blue-900: #02003f;
    /* =========================
     SEMANTIC
  ========================= */
    --Color-primary: var(--Main-main-500);
    --Color-primary-hover: var(--Main-main-600);
    --Color-success: var(--Green-green-500);
    --Color-danger: var(--Red-red-500);
    --Color-info: var(--Blue-blue-500);
    --Color-text: var(--Base-base-10);
    --Color-text-light: var(--Base-base-7);
    --Color-border: var(--Base-base-5);
    --Color-background: var(--Base-base-1);
    --Color-surface: var(--Base-base-2);
}

/* =========================
   TEXT
========================= */
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-nowrap {
    white-space: nowrap;
}

/* =========================
   FLEX & ALIGN
========================= */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.d-inline-flex {
    display: inline-flex;
}

.d-grid {
    display: grid;
}

/* =========================
   GAP
========================= */
.gap-4px {
    gap: 4px;
}

.gap-8px {
    gap: 8px;
}

.gap-12px {
    gap: 12px;
}

.gap-16px {
    gap: 16px;
}

.gap-24px {
    gap: 24px;
}

.gap-32px {
    gap: 32px;
}

/* =========================
   WIDTH / HEIGHT
========================= */
.w-fit {
    width: fit-content;
}

.h-fit {
    height: fit-content;
}

.w-max {
    width: max-content;
}

.h-max {
    height: max-content;
}

.min-w-0 {
    min-width: 0;
}

.min-h-0 {
    min-height: 0;
}

.w-100vw {
    width: 100vw;
}

.h-100vh {
    height: 100vh;
}

/* =========================
   POSITION
========================= */
.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* =========================
   Z-INDEX
========================= */
.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.z-100 {
    z-index: 100;
}

.z-999 {
    z-index: 999;
}

.z-max {
    z-index: 9999;
}

/* =========================
   BORDER RADIUS
========================= */
.radius-4 {
    border-radius: 4px;
}

.radius-6 {
    border-radius: 6px;
}

.radius-8 {
    border-radius: 8px;
}

.radius-12 {
    border-radius: 12px;
}

.radius-16 {
    border-radius: 16px;
}

.radius-24 {
    border-radius: 24px;
}

.radius-full {
    border-radius: 9999px;
}

/* =========================
   OVERFLOW
========================= */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* =========================
   SCROLL
========================= */
.scroll-y {
    overflow-y: auto;
    scrollbar-width: thin;
}

.scroll-x {
    overflow-x: auto;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* =========================
   CURSOR
========================= */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* =========================
   GRID
========================= */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* =========================
   ASPECT RATIO
========================= */
.aspect-1-1 {
    aspect-ratio: 1/1;
}

.aspect-16-9 {
    aspect-ratio: 16/9;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
}

/* =========================
   SHADOW
========================= */
.shadow-sm {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* =========================
   TRANSITION
========================= */
.transition {
    transition: all 0.3s ease;
}

.transition-fast {
    transition: all 0.15s ease;
}

.transition-slow {
    transition: all 0.5s ease;
}

/* =========================
   LINE HEIGHT
========================= */
.lh-1 {
    line-height: 1;
}

.lh-sm {
    line-height: 1.2;
}

.lh-base {
    line-height: 1.5;
}

.lh-lg {
    line-height: 1.8;
}

.ui-tabs {
    display: flex;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}
.ui-tabs__item {
    flex: 0 0 auto;
}
.ui-tabs__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 15px;
    background: #f0f0f1;
    color: #010014;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.ui-tabs__link.is-active {
    background: #076307;
    color: #fff;
    font-weight: 700;
}
@media (max-width: 991.98px) {
    .ui-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .ui-tabs::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
}

.ui-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.ui-breadcrumb__link {
    color: #010014;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.ui-breadcrumb__link:hover {
    opacity: 0.7;
}
.ui-breadcrumb__separator {
    color: #010014;
    font-weight: 400;
    margin: 0 2px;
}
.ui-breadcrumb__current {
    color: #010014;
    font-weight: 700;
}
@media (max-width: 768px) {
    .ui-breadcrumb {
        font-size: 12px;
        line-height: 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .ui-breadcrumb::-webkit-scrollbar {
        display: none;
    }
}

.ui-page-title {
    width: 100%;
    margin: 0;
    color: #010014;
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.4px;
    word-wrap: break-word;
}
@media (max-width: 768px) {
    .ui-page-title {
        font-size: 20px;
        line-height: 24px;
    }
}

.ui-page-header {
    width: 100%;
    padding: 40px 0;
}
.ui-page-header__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ui-page-header__top {
    max-width: 607px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 768px) {
    .ui-page-header {
        padding: 24px 0;
    }
    .ui-page-header__inner {
        gap: 24px;
    }
    .ui-page-header__top {
        max-width: 100%;
        gap: 11px;
    }
}

.padding-top-0px {
    padding-top: 0px !important;
}

.padding-top-4px {
    padding-top: 4px !important;
}

.padding-top-8px {
    padding-top: 8px !important;
}

.padding-top-12px {
    padding-top: 12px !important;
}

.padding-top-16px {
    padding-top: 16px !important;
}

.padding-top-20px {
    padding-top: 20px !important;
}

.padding-top-24px {
    padding-top: 24px !important;
}

.padding-top-32px {
    padding-top: 32px !important;
}

.padding-top-40px {
    padding-top: 40px !important;
}

.padding-top-48px {
    padding-top: 48px !important;
}

.padding-top-56px {
    padding-top: 56px !important;
}

.padding-top-64px {
    padding-top: 64px !important;
}

.padding-top-72px {
    padding-top: 72px !important;
}

.padding-top-80px {
    padding-top: 80px !important;
}

.padding-top-88px {
    padding-top: 88px !important;
}

.padding-top-96px {
    padding-top: 96px !important;
}

.padding-top-100px {
    padding-top: 100px !important;
}

.padding-bottom-0px {
    padding-bottom: 0px !important;
}

.padding-bottom-4px {
    padding-bottom: 4px !important;
}

.padding-bottom-8px {
    padding-bottom: 8px !important;
}

.padding-bottom-12px {
    padding-bottom: 12px !important;
}

.padding-bottom-16px {
    padding-bottom: 16px !important;
}

.padding-bottom-20px {
    padding-bottom: 20px !important;
}

.padding-bottom-24px {
    padding-bottom: 24px !important;
}

.padding-bottom-32px {
    padding-bottom: 32px !important;
}

.padding-bottom-40px {
    padding-bottom: 40px !important;
}

.padding-bottom-48px {
    padding-bottom: 48px !important;
}

.padding-bottom-56px {
    padding-bottom: 56px !important;
}

.padding-bottom-64px {
    padding-bottom: 64px !important;
}

.padding-bottom-72px {
    padding-bottom: 72px !important;
}

.padding-bottom-80px {
    padding-bottom: 80px !important;
}

.padding-bottom-88px {
    padding-bottom: 88px !important;
}

.padding-bottom-96px {
    padding-bottom: 96px !important;
}

.padding-bottom-100px {
    padding-bottom: 100px !important;
}

.padding-left-0px {
    padding-left: 0px !important;
}

.padding-left-4px {
    padding-left: 4px !important;
}

.padding-left-8px {
    padding-left: 8px !important;
}

.padding-left-12px {
    padding-left: 12px !important;
}

.padding-left-16px {
    padding-left: 16px !important;
}

.padding-left-20px {
    padding-left: 20px !important;
}

.padding-left-24px {
    padding-left: 24px !important;
}

.padding-left-32px {
    padding-left: 32px !important;
}

.padding-left-40px {
    padding-left: 40px !important;
}

.padding-left-48px {
    padding-left: 48px !important;
}

.padding-left-56px {
    padding-left: 56px !important;
}

.padding-left-64px {
    padding-left: 64px !important;
}

.padding-left-72px {
    padding-left: 72px !important;
}

.padding-left-80px {
    padding-left: 80px !important;
}

.padding-left-88px {
    padding-left: 88px !important;
}

.padding-left-96px {
    padding-left: 96px !important;
}

.padding-left-100px {
    padding-left: 100px !important;
}

.padding-right-0px {
    padding-right: 0px !important;
}

.padding-right-4px {
    padding-right: 4px !important;
}

.padding-right-8px {
    padding-right: 8px !important;
}

.padding-right-12px {
    padding-right: 12px !important;
}

.padding-right-16px {
    padding-right: 16px !important;
}

.padding-right-20px {
    padding-right: 20px !important;
}

.padding-right-24px {
    padding-right: 24px !important;
}

.padding-right-32px {
    padding-right: 32px !important;
}

.padding-right-40px {
    padding-right: 40px !important;
}

.padding-right-48px {
    padding-right: 48px !important;
}

.padding-right-56px {
    padding-right: 56px !important;
}

.padding-right-64px {
    padding-right: 64px !important;
}

.padding-right-72px {
    padding-right: 72px !important;
}

.padding-right-80px {
    padding-right: 80px !important;
}

.padding-right-88px {
    padding-right: 88px !important;
}

.padding-right-96px {
    padding-right: 96px !important;
}

.padding-right-100px {
    padding-right: 100px !important;
}

.margin-top-0px {
    margin-top: 0px !important;
}

.margin-top-4px {
    margin-top: 4px !important;
}

.margin-top-8px {
    margin-top: 8px !important;
}

.margin-top-12px {
    margin-top: 12px !important;
}

.margin-top-16px {
    margin-top: 16px !important;
}

.margin-top-20px {
    margin-top: 20px !important;
}

.margin-top-24px {
    margin-top: 24px !important;
}

.margin-top-32px {
    margin-top: 32px !important;
}

.margin-top-40px {
    margin-top: 40px !important;
}

.margin-top-48px {
    margin-top: 48px !important;
}

.margin-top-56px {
    margin-top: 56px !important;
}

.margin-top-64px {
    margin-top: 64px !important;
}

.margin-top-72px {
    margin-top: 72px !important;
}

.margin-top-80px {
    margin-top: 80px !important;
}

.margin-top-88px {
    margin-top: 88px !important;
}

.margin-top-96px {
    margin-top: 96px !important;
}

.margin-top-100px {
    margin-top: 100px !important;
}

.margin-bottom-0px {
    margin-bottom: 0px !important;
}

.margin-bottom-4px {
    margin-bottom: 4px !important;
}

.margin-bottom-8px {
    margin-bottom: 8px !important;
}

.margin-bottom-12px {
    margin-bottom: 12px !important;
}

.margin-bottom-16px {
    margin-bottom: 16px !important;
}

.margin-bottom-20px {
    margin-bottom: 20px !important;
}

.margin-bottom-24px {
    margin-bottom: 24px !important;
}

.margin-bottom-32px {
    margin-bottom: 32px !important;
}

.margin-bottom-40px {
    margin-bottom: 40px !important;
}

.margin-bottom-48px {
    margin-bottom: 48px !important;
}

.margin-bottom-56px {
    margin-bottom: 56px !important;
}

.margin-bottom-64px {
    margin-bottom: 64px !important;
}

.margin-bottom-72px {
    margin-bottom: 72px !important;
}

.margin-bottom-80px {
    margin-bottom: 80px !important;
}

.margin-bottom-88px {
    margin-bottom: 88px !important;
}

.margin-bottom-96px {
    margin-bottom: 96px !important;
}

.margin-bottom-100px {
    margin-bottom: 100px !important;
}

.margin-left-0px {
    margin-left: 0px !important;
}

.margin-left-4px {
    margin-left: 4px !important;
}

.margin-left-8px {
    margin-left: 8px !important;
}

.margin-left-12px {
    margin-left: 12px !important;
}

.margin-left-16px {
    margin-left: 16px !important;
}

.margin-left-20px {
    margin-left: 20px !important;
}

.margin-left-24px {
    margin-left: 24px !important;
}

.margin-left-32px {
    margin-left: 32px !important;
}

.margin-left-40px {
    margin-left: 40px !important;
}

.margin-left-48px {
    margin-left: 48px !important;
}

.margin-left-56px {
    margin-left: 56px !important;
}

.margin-left-64px {
    margin-left: 64px !important;
}

.margin-left-72px {
    margin-left: 72px !important;
}

.margin-left-80px {
    margin-left: 80px !important;
}

.margin-left-88px {
    margin-left: 88px !important;
}

.margin-left-96px {
    margin-left: 96px !important;
}

.margin-left-100px {
    margin-left: 100px !important;
}

.margin-right-0px {
    margin-right: 0px !important;
}

.margin-right-4px {
    margin-right: 4px !important;
}

.margin-right-8px {
    margin-right: 8px !important;
}

.margin-right-12px {
    margin-right: 12px !important;
}

.margin-right-16px {
    margin-right: 16px !important;
}

.margin-right-20px {
    margin-right: 20px !important;
}

.margin-right-24px {
    margin-right: 24px !important;
}

.margin-right-32px {
    margin-right: 32px !important;
}

.margin-right-40px {
    margin-right: 40px !important;
}

.margin-right-48px {
    margin-right: 48px !important;
}

.margin-right-56px {
    margin-right: 56px !important;
}

.margin-right-64px {
    margin-right: 64px !important;
}

.margin-right-72px {
    margin-right: 72px !important;
}

.margin-right-80px {
    margin-right: 80px !important;
}

.margin-right-88px {
    margin-right: 88px !important;
}

.margin-right-96px {
    margin-right: 96px !important;
}

.margin-right-100px {
    margin-right: 100px !important;
}

.top-0px {
    top: 0px !important;
}

.top-4px {
    top: 4px !important;
}

.top-8px {
    top: 8px !important;
}

.top-12px {
    top: 12px !important;
}

.top-16px {
    top: 16px !important;
}

.top-20px {
    top: 20px !important;
}

.top-24px {
    top: 24px !important;
}

.top-32px {
    top: 32px !important;
}

.top-40px {
    top: 40px !important;
}

.top-48px {
    top: 48px !important;
}

.top-56px {
    top: 56px !important;
}

.top-64px {
    top: 64px !important;
}

.top-72px {
    top: 72px !important;
}

.top-80px {
    top: 80px !important;
}

.top-88px {
    top: 88px !important;
}

.top-96px {
    top: 96px !important;
}

.top-100px {
    top: 100px !important;
}

.bottom-0px {
    bottom: 0px !important;
}

.bottom-4px {
    bottom: 4px !important;
}

.bottom-8px {
    bottom: 8px !important;
}

.bottom-12px {
    bottom: 12px !important;
}

.bottom-16px {
    bottom: 16px !important;
}

.bottom-20px {
    bottom: 20px !important;
}

.bottom-24px {
    bottom: 24px !important;
}

.bottom-32px {
    bottom: 32px !important;
}

.bottom-40px {
    bottom: 40px !important;
}

.bottom-48px {
    bottom: 48px !important;
}

.bottom-56px {
    bottom: 56px !important;
}

.bottom-64px {
    bottom: 64px !important;
}

.bottom-72px {
    bottom: 72px !important;
}

.bottom-80px {
    bottom: 80px !important;
}

.bottom-88px {
    bottom: 88px !important;
}

.bottom-96px {
    bottom: 96px !important;
}

.bottom-100px {
    bottom: 100px !important;
}

.left-0px {
    left: 0px !important;
}

.left-4px {
    left: 4px !important;
}

.left-8px {
    left: 8px !important;
}

.left-12px {
    left: 12px !important;
}

.left-16px {
    left: 16px !important;
}

.left-20px {
    left: 20px !important;
}

.left-24px {
    left: 24px !important;
}

.left-32px {
    left: 32px !important;
}

.left-40px {
    left: 40px !important;
}

.left-48px {
    left: 48px !important;
}

.left-56px {
    left: 56px !important;
}

.left-64px {
    left: 64px !important;
}

.left-72px {
    left: 72px !important;
}

.left-80px {
    left: 80px !important;
}

.left-88px {
    left: 88px !important;
}

.left-96px {
    left: 96px !important;
}

.left-100px {
    left: 100px !important;
}

.right-0px {
    right: 0px !important;
}

.right-4px {
    right: 4px !important;
}

.right-8px {
    right: 8px !important;
}

.right-12px {
    right: 12px !important;
}

.right-16px {
    right: 16px !important;
}

.right-20px {
    right: 20px !important;
}

.right-24px {
    right: 24px !important;
}

.right-32px {
    right: 32px !important;
}

.right-40px {
    right: 40px !important;
}

.right-48px {
    right: 48px !important;
}

.right-56px {
    right: 56px !important;
}

.right-64px {
    right: 64px !important;
}

.right-72px {
    right: 72px !important;
}

.right-80px {
    right: 80px !important;
}

.right-88px {
    right: 88px !important;
}

.right-96px {
    right: 96px !important;
}

.right-100px {
    right: 100px !important;
}

.gap-0px {
    gap: 0px !important;
}

.gap-4px {
    gap: 4px !important;
}

.gap-8px {
    gap: 8px !important;
}

.gap-12px {
    gap: 12px !important;
}

.gap-16px {
    gap: 16px !important;
}

.gap-20px {
    gap: 20px !important;
}

.gap-24px {
    gap: 24px !important;
}

.gap-32px {
    gap: 32px !important;
}

.gap-40px {
    gap: 40px !important;
}

.gap-48px {
    gap: 48px !important;
}

.gap-56px {
    gap: 56px !important;
}

.gap-64px {
    gap: 64px !important;
}

.gap-72px {
    gap: 72px !important;
}

.gap-80px {
    gap: 80px !important;
}

.gap-88px {
    gap: 88px !important;
}

.gap-96px {
    gap: 96px !important;
}

.gap-100px {
    gap: 100px !important;
}

.row-gap-0px {
    row-gap: 0px !important;
}

.row-gap-4px {
    row-gap: 4px !important;
}

.row-gap-8px {
    row-gap: 8px !important;
}

.row-gap-12px {
    row-gap: 12px !important;
}

.row-gap-16px {
    row-gap: 16px !important;
}

.row-gap-20px {
    row-gap: 20px !important;
}

.row-gap-24px {
    row-gap: 24px !important;
}

.row-gap-32px {
    row-gap: 32px !important;
}

.row-gap-40px {
    row-gap: 40px !important;
}

.row-gap-48px {
    row-gap: 48px !important;
}

.row-gap-56px {
    row-gap: 56px !important;
}

.row-gap-64px {
    row-gap: 64px !important;
}

.row-gap-72px {
    row-gap: 72px !important;
}

.row-gap-80px {
    row-gap: 80px !important;
}

.row-gap-88px {
    row-gap: 88px !important;
}

.row-gap-96px {
    row-gap: 96px !important;
}

.row-gap-100px {
    row-gap: 100px !important;
}

.column-gap-0px {
    column-gap: 0px !important;
}

.column-gap-4px {
    column-gap: 4px !important;
}

.column-gap-8px {
    column-gap: 8px !important;
}

.column-gap-12px {
    column-gap: 12px !important;
}

.column-gap-16px {
    column-gap: 16px !important;
}

.column-gap-20px {
    column-gap: 20px !important;
}

.column-gap-24px {
    column-gap: 24px !important;
}

.column-gap-32px {
    column-gap: 32px !important;
}

.column-gap-40px {
    column-gap: 40px !important;
}

.column-gap-48px {
    column-gap: 48px !important;
}

.column-gap-56px {
    column-gap: 56px !important;
}

.column-gap-64px {
    column-gap: 64px !important;
}

.column-gap-72px {
    column-gap: 72px !important;
}

.column-gap-80px {
    column-gap: 80px !important;
}

.column-gap-88px {
    column-gap: 88px !important;
}

.column-gap-96px {
    column-gap: 96px !important;
}

.column-gap-100px {
    column-gap: 100px !important;
}

@media (min-width: 576px) {
    .padding-top-sm-0px {
        padding-top: 0px !important;
    }
    .padding-top-sm-4px {
        padding-top: 4px !important;
    }
    .padding-top-sm-8px {
        padding-top: 8px !important;
    }
    .padding-top-sm-12px {
        padding-top: 12px !important;
    }
    .padding-top-sm-16px {
        padding-top: 16px !important;
    }
    .padding-top-sm-20px {
        padding-top: 20px !important;
    }
    .padding-top-sm-24px {
        padding-top: 24px !important;
    }
    .padding-top-sm-32px {
        padding-top: 32px !important;
    }
    .padding-top-sm-40px {
        padding-top: 40px !important;
    }
    .padding-top-sm-48px {
        padding-top: 48px !important;
    }
    .padding-top-sm-56px {
        padding-top: 56px !important;
    }
    .padding-top-sm-64px {
        padding-top: 64px !important;
    }
    .padding-top-sm-72px {
        padding-top: 72px !important;
    }
    .padding-top-sm-80px {
        padding-top: 80px !important;
    }
    .padding-top-sm-88px {
        padding-top: 88px !important;
    }
    .padding-top-sm-96px {
        padding-top: 96px !important;
    }
    .padding-top-sm-100px {
        padding-top: 100px !important;
    }
    .padding-bottom-sm-0px {
        padding-bottom: 0px !important;
    }
    .padding-bottom-sm-4px {
        padding-bottom: 4px !important;
    }
    .padding-bottom-sm-8px {
        padding-bottom: 8px !important;
    }
    .padding-bottom-sm-12px {
        padding-bottom: 12px !important;
    }
    .padding-bottom-sm-16px {
        padding-bottom: 16px !important;
    }
    .padding-bottom-sm-20px {
        padding-bottom: 20px !important;
    }
    .padding-bottom-sm-24px {
        padding-bottom: 24px !important;
    }
    .padding-bottom-sm-32px {
        padding-bottom: 32px !important;
    }
    .padding-bottom-sm-40px {
        padding-bottom: 40px !important;
    }
    .padding-bottom-sm-48px {
        padding-bottom: 48px !important;
    }
    .padding-bottom-sm-56px {
        padding-bottom: 56px !important;
    }
    .padding-bottom-sm-64px {
        padding-bottom: 64px !important;
    }
    .padding-bottom-sm-72px {
        padding-bottom: 72px !important;
    }
    .padding-bottom-sm-80px {
        padding-bottom: 80px !important;
    }
    .padding-bottom-sm-88px {
        padding-bottom: 88px !important;
    }
    .padding-bottom-sm-96px {
        padding-bottom: 96px !important;
    }
    .padding-bottom-sm-100px {
        padding-bottom: 100px !important;
    }
    .padding-left-sm-0px {
        padding-left: 0px !important;
    }
    .padding-left-sm-4px {
        padding-left: 4px !important;
    }
    .padding-left-sm-8px {
        padding-left: 8px !important;
    }
    .padding-left-sm-12px {
        padding-left: 12px !important;
    }
    .padding-left-sm-16px {
        padding-left: 16px !important;
    }
    .padding-left-sm-20px {
        padding-left: 20px !important;
    }
    .padding-left-sm-24px {
        padding-left: 24px !important;
    }
    .padding-left-sm-32px {
        padding-left: 32px !important;
    }
    .padding-left-sm-40px {
        padding-left: 40px !important;
    }
    .padding-left-sm-48px {
        padding-left: 48px !important;
    }
    .padding-left-sm-56px {
        padding-left: 56px !important;
    }
    .padding-left-sm-64px {
        padding-left: 64px !important;
    }
    .padding-left-sm-72px {
        padding-left: 72px !important;
    }
    .padding-left-sm-80px {
        padding-left: 80px !important;
    }
    .padding-left-sm-88px {
        padding-left: 88px !important;
    }
    .padding-left-sm-96px {
        padding-left: 96px !important;
    }
    .padding-left-sm-100px {
        padding-left: 100px !important;
    }
    .padding-right-sm-0px {
        padding-right: 0px !important;
    }
    .padding-right-sm-4px {
        padding-right: 4px !important;
    }
    .padding-right-sm-8px {
        padding-right: 8px !important;
    }
    .padding-right-sm-12px {
        padding-right: 12px !important;
    }
    .padding-right-sm-16px {
        padding-right: 16px !important;
    }
    .padding-right-sm-20px {
        padding-right: 20px !important;
    }
    .padding-right-sm-24px {
        padding-right: 24px !important;
    }
    .padding-right-sm-32px {
        padding-right: 32px !important;
    }
    .padding-right-sm-40px {
        padding-right: 40px !important;
    }
    .padding-right-sm-48px {
        padding-right: 48px !important;
    }
    .padding-right-sm-56px {
        padding-right: 56px !important;
    }
    .padding-right-sm-64px {
        padding-right: 64px !important;
    }
    .padding-right-sm-72px {
        padding-right: 72px !important;
    }
    .padding-right-sm-80px {
        padding-right: 80px !important;
    }
    .padding-right-sm-88px {
        padding-right: 88px !important;
    }
    .padding-right-sm-96px {
        padding-right: 96px !important;
    }
    .padding-right-sm-100px {
        padding-right: 100px !important;
    }
    .margin-top-sm-0px {
        margin-top: 0px !important;
    }
    .margin-top-sm-4px {
        margin-top: 4px !important;
    }
    .margin-top-sm-8px {
        margin-top: 8px !important;
    }
    .margin-top-sm-12px {
        margin-top: 12px !important;
    }
    .margin-top-sm-16px {
        margin-top: 16px !important;
    }
    .margin-top-sm-20px {
        margin-top: 20px !important;
    }
    .margin-top-sm-24px {
        margin-top: 24px !important;
    }
    .margin-top-sm-32px {
        margin-top: 32px !important;
    }
    .margin-top-sm-40px {
        margin-top: 40px !important;
    }
    .margin-top-sm-48px {
        margin-top: 48px !important;
    }
    .margin-top-sm-56px {
        margin-top: 56px !important;
    }
    .margin-top-sm-64px {
        margin-top: 64px !important;
    }
    .margin-top-sm-72px {
        margin-top: 72px !important;
    }
    .margin-top-sm-80px {
        margin-top: 80px !important;
    }
    .margin-top-sm-88px {
        margin-top: 88px !important;
    }
    .margin-top-sm-96px {
        margin-top: 96px !important;
    }
    .margin-top-sm-100px {
        margin-top: 100px !important;
    }
    .margin-bottom-sm-0px {
        margin-bottom: 0px !important;
    }
    .margin-bottom-sm-4px {
        margin-bottom: 4px !important;
    }
    .margin-bottom-sm-8px {
        margin-bottom: 8px !important;
    }
    .margin-bottom-sm-12px {
        margin-bottom: 12px !important;
    }
    .margin-bottom-sm-16px {
        margin-bottom: 16px !important;
    }
    .margin-bottom-sm-20px {
        margin-bottom: 20px !important;
    }
    .margin-bottom-sm-24px {
        margin-bottom: 24px !important;
    }
    .margin-bottom-sm-32px {
        margin-bottom: 32px !important;
    }
    .margin-bottom-sm-40px {
        margin-bottom: 40px !important;
    }
    .margin-bottom-sm-48px {
        margin-bottom: 48px !important;
    }
    .margin-bottom-sm-56px {
        margin-bottom: 56px !important;
    }
    .margin-bottom-sm-64px {
        margin-bottom: 64px !important;
    }
    .margin-bottom-sm-72px {
        margin-bottom: 72px !important;
    }
    .margin-bottom-sm-80px {
        margin-bottom: 80px !important;
    }
    .margin-bottom-sm-88px {
        margin-bottom: 88px !important;
    }
    .margin-bottom-sm-96px {
        margin-bottom: 96px !important;
    }
    .margin-bottom-sm-100px {
        margin-bottom: 100px !important;
    }
    .margin-left-sm-0px {
        margin-left: 0px !important;
    }
    .margin-left-sm-4px {
        margin-left: 4px !important;
    }
    .margin-left-sm-8px {
        margin-left: 8px !important;
    }
    .margin-left-sm-12px {
        margin-left: 12px !important;
    }
    .margin-left-sm-16px {
        margin-left: 16px !important;
    }
    .margin-left-sm-20px {
        margin-left: 20px !important;
    }
    .margin-left-sm-24px {
        margin-left: 24px !important;
    }
    .margin-left-sm-32px {
        margin-left: 32px !important;
    }
    .margin-left-sm-40px {
        margin-left: 40px !important;
    }
    .margin-left-sm-48px {
        margin-left: 48px !important;
    }
    .margin-left-sm-56px {
        margin-left: 56px !important;
    }
    .margin-left-sm-64px {
        margin-left: 64px !important;
    }
    .margin-left-sm-72px {
        margin-left: 72px !important;
    }
    .margin-left-sm-80px {
        margin-left: 80px !important;
    }
    .margin-left-sm-88px {
        margin-left: 88px !important;
    }
    .margin-left-sm-96px {
        margin-left: 96px !important;
    }
    .margin-left-sm-100px {
        margin-left: 100px !important;
    }
    .margin-right-sm-0px {
        margin-right: 0px !important;
    }
    .margin-right-sm-4px {
        margin-right: 4px !important;
    }
    .margin-right-sm-8px {
        margin-right: 8px !important;
    }
    .margin-right-sm-12px {
        margin-right: 12px !important;
    }
    .margin-right-sm-16px {
        margin-right: 16px !important;
    }
    .margin-right-sm-20px {
        margin-right: 20px !important;
    }
    .margin-right-sm-24px {
        margin-right: 24px !important;
    }
    .margin-right-sm-32px {
        margin-right: 32px !important;
    }
    .margin-right-sm-40px {
        margin-right: 40px !important;
    }
    .margin-right-sm-48px {
        margin-right: 48px !important;
    }
    .margin-right-sm-56px {
        margin-right: 56px !important;
    }
    .margin-right-sm-64px {
        margin-right: 64px !important;
    }
    .margin-right-sm-72px {
        margin-right: 72px !important;
    }
    .margin-right-sm-80px {
        margin-right: 80px !important;
    }
    .margin-right-sm-88px {
        margin-right: 88px !important;
    }
    .margin-right-sm-96px {
        margin-right: 96px !important;
    }
    .margin-right-sm-100px {
        margin-right: 100px !important;
    }
    .top-sm-0px {
        top: 0px !important;
    }
    .top-sm-4px {
        top: 4px !important;
    }
    .top-sm-8px {
        top: 8px !important;
    }
    .top-sm-12px {
        top: 12px !important;
    }
    .top-sm-16px {
        top: 16px !important;
    }
    .top-sm-20px {
        top: 20px !important;
    }
    .top-sm-24px {
        top: 24px !important;
    }
    .top-sm-32px {
        top: 32px !important;
    }
    .top-sm-40px {
        top: 40px !important;
    }
    .top-sm-48px {
        top: 48px !important;
    }
    .top-sm-56px {
        top: 56px !important;
    }
    .top-sm-64px {
        top: 64px !important;
    }
    .top-sm-72px {
        top: 72px !important;
    }
    .top-sm-80px {
        top: 80px !important;
    }
    .top-sm-88px {
        top: 88px !important;
    }
    .top-sm-96px {
        top: 96px !important;
    }
    .top-sm-100px {
        top: 100px !important;
    }
    .bottom-sm-0px {
        bottom: 0px !important;
    }
    .bottom-sm-4px {
        bottom: 4px !important;
    }
    .bottom-sm-8px {
        bottom: 8px !important;
    }
    .bottom-sm-12px {
        bottom: 12px !important;
    }
    .bottom-sm-16px {
        bottom: 16px !important;
    }
    .bottom-sm-20px {
        bottom: 20px !important;
    }
    .bottom-sm-24px {
        bottom: 24px !important;
    }
    .bottom-sm-32px {
        bottom: 32px !important;
    }
    .bottom-sm-40px {
        bottom: 40px !important;
    }
    .bottom-sm-48px {
        bottom: 48px !important;
    }
    .bottom-sm-56px {
        bottom: 56px !important;
    }
    .bottom-sm-64px {
        bottom: 64px !important;
    }
    .bottom-sm-72px {
        bottom: 72px !important;
    }
    .bottom-sm-80px {
        bottom: 80px !important;
    }
    .bottom-sm-88px {
        bottom: 88px !important;
    }
    .bottom-sm-96px {
        bottom: 96px !important;
    }
    .bottom-sm-100px {
        bottom: 100px !important;
    }
    .left-sm-0px {
        left: 0px !important;
    }
    .left-sm-4px {
        left: 4px !important;
    }
    .left-sm-8px {
        left: 8px !important;
    }
    .left-sm-12px {
        left: 12px !important;
    }
    .left-sm-16px {
        left: 16px !important;
    }
    .left-sm-20px {
        left: 20px !important;
    }
    .left-sm-24px {
        left: 24px !important;
    }
    .left-sm-32px {
        left: 32px !important;
    }
    .left-sm-40px {
        left: 40px !important;
    }
    .left-sm-48px {
        left: 48px !important;
    }
    .left-sm-56px {
        left: 56px !important;
    }
    .left-sm-64px {
        left: 64px !important;
    }
    .left-sm-72px {
        left: 72px !important;
    }
    .left-sm-80px {
        left: 80px !important;
    }
    .left-sm-88px {
        left: 88px !important;
    }
    .left-sm-96px {
        left: 96px !important;
    }
    .left-sm-100px {
        left: 100px !important;
    }
    .right-sm-0px {
        right: 0px !important;
    }
    .right-sm-4px {
        right: 4px !important;
    }
    .right-sm-8px {
        right: 8px !important;
    }
    .right-sm-12px {
        right: 12px !important;
    }
    .right-sm-16px {
        right: 16px !important;
    }
    .right-sm-20px {
        right: 20px !important;
    }
    .right-sm-24px {
        right: 24px !important;
    }
    .right-sm-32px {
        right: 32px !important;
    }
    .right-sm-40px {
        right: 40px !important;
    }
    .right-sm-48px {
        right: 48px !important;
    }
    .right-sm-56px {
        right: 56px !important;
    }
    .right-sm-64px {
        right: 64px !important;
    }
    .right-sm-72px {
        right: 72px !important;
    }
    .right-sm-80px {
        right: 80px !important;
    }
    .right-sm-88px {
        right: 88px !important;
    }
    .right-sm-96px {
        right: 96px !important;
    }
    .right-sm-100px {
        right: 100px !important;
    }
    .gap-sm-0px {
        gap: 0px !important;
    }
    .gap-sm-4px {
        gap: 4px !important;
    }
    .gap-sm-8px {
        gap: 8px !important;
    }
    .gap-sm-12px {
        gap: 12px !important;
    }
    .gap-sm-16px {
        gap: 16px !important;
    }
    .gap-sm-20px {
        gap: 20px !important;
    }
    .gap-sm-24px {
        gap: 24px !important;
    }
    .gap-sm-32px {
        gap: 32px !important;
    }
    .gap-sm-40px {
        gap: 40px !important;
    }
    .gap-sm-48px {
        gap: 48px !important;
    }
    .gap-sm-56px {
        gap: 56px !important;
    }
    .gap-sm-64px {
        gap: 64px !important;
    }
    .gap-sm-72px {
        gap: 72px !important;
    }
    .gap-sm-80px {
        gap: 80px !important;
    }
    .gap-sm-88px {
        gap: 88px !important;
    }
    .gap-sm-96px {
        gap: 96px !important;
    }
    .gap-sm-100px {
        gap: 100px !important;
    }
    .row-gap-sm-0px {
        row-gap: 0px !important;
    }
    .row-gap-sm-4px {
        row-gap: 4px !important;
    }
    .row-gap-sm-8px {
        row-gap: 8px !important;
    }
    .row-gap-sm-12px {
        row-gap: 12px !important;
    }
    .row-gap-sm-16px {
        row-gap: 16px !important;
    }
    .row-gap-sm-20px {
        row-gap: 20px !important;
    }
    .row-gap-sm-24px {
        row-gap: 24px !important;
    }
    .row-gap-sm-32px {
        row-gap: 32px !important;
    }
    .row-gap-sm-40px {
        row-gap: 40px !important;
    }
    .row-gap-sm-48px {
        row-gap: 48px !important;
    }
    .row-gap-sm-56px {
        row-gap: 56px !important;
    }
    .row-gap-sm-64px {
        row-gap: 64px !important;
    }
    .row-gap-sm-72px {
        row-gap: 72px !important;
    }
    .row-gap-sm-80px {
        row-gap: 80px !important;
    }
    .row-gap-sm-88px {
        row-gap: 88px !important;
    }
    .row-gap-sm-96px {
        row-gap: 96px !important;
    }
    .row-gap-sm-100px {
        row-gap: 100px !important;
    }
    .column-gap-sm-0px {
        column-gap: 0px !important;
    }
    .column-gap-sm-4px {
        column-gap: 4px !important;
    }
    .column-gap-sm-8px {
        column-gap: 8px !important;
    }
    .column-gap-sm-12px {
        column-gap: 12px !important;
    }
    .column-gap-sm-16px {
        column-gap: 16px !important;
    }
    .column-gap-sm-20px {
        column-gap: 20px !important;
    }
    .column-gap-sm-24px {
        column-gap: 24px !important;
    }
    .column-gap-sm-32px {
        column-gap: 32px !important;
    }
    .column-gap-sm-40px {
        column-gap: 40px !important;
    }
    .column-gap-sm-48px {
        column-gap: 48px !important;
    }
    .column-gap-sm-56px {
        column-gap: 56px !important;
    }
    .column-gap-sm-64px {
        column-gap: 64px !important;
    }
    .column-gap-sm-72px {
        column-gap: 72px !important;
    }
    .column-gap-sm-80px {
        column-gap: 80px !important;
    }
    .column-gap-sm-88px {
        column-gap: 88px !important;
    }
    .column-gap-sm-96px {
        column-gap: 96px !important;
    }
    .column-gap-sm-100px {
        column-gap: 100px !important;
    }
}
@media (min-width: 768px) {
    .padding-top-md-0px {
        padding-top: 0px !important;
    }
    .padding-top-md-4px {
        padding-top: 4px !important;
    }
    .padding-top-md-8px {
        padding-top: 8px !important;
    }
    .padding-top-md-12px {
        padding-top: 12px !important;
    }
    .padding-top-md-16px {
        padding-top: 16px !important;
    }
    .padding-top-md-20px {
        padding-top: 20px !important;
    }
    .padding-top-md-24px {
        padding-top: 24px !important;
    }
    .padding-top-md-32px {
        padding-top: 32px !important;
    }
    .padding-top-md-40px {
        padding-top: 40px !important;
    }
    .padding-top-md-48px {
        padding-top: 48px !important;
    }
    .padding-top-md-56px {
        padding-top: 56px !important;
    }
    .padding-top-md-64px {
        padding-top: 64px !important;
    }
    .padding-top-md-72px {
        padding-top: 72px !important;
    }
    .padding-top-md-80px {
        padding-top: 80px !important;
    }
    .padding-top-md-88px {
        padding-top: 88px !important;
    }
    .padding-top-md-96px {
        padding-top: 96px !important;
    }
    .padding-top-md-100px {
        padding-top: 100px !important;
    }
    .padding-bottom-md-0px {
        padding-bottom: 0px !important;
    }
    .padding-bottom-md-4px {
        padding-bottom: 4px !important;
    }
    .padding-bottom-md-8px {
        padding-bottom: 8px !important;
    }
    .padding-bottom-md-12px {
        padding-bottom: 12px !important;
    }
    .padding-bottom-md-16px {
        padding-bottom: 16px !important;
    }
    .padding-bottom-md-20px {
        padding-bottom: 20px !important;
    }
    .padding-bottom-md-24px {
        padding-bottom: 24px !important;
    }
    .padding-bottom-md-32px {
        padding-bottom: 32px !important;
    }
    .padding-bottom-md-40px {
        padding-bottom: 40px !important;
    }
    .padding-bottom-md-48px {
        padding-bottom: 48px !important;
    }
    .padding-bottom-md-56px {
        padding-bottom: 56px !important;
    }
    .padding-bottom-md-64px {
        padding-bottom: 64px !important;
    }
    .padding-bottom-md-72px {
        padding-bottom: 72px !important;
    }
    .padding-bottom-md-80px {
        padding-bottom: 80px !important;
    }
    .padding-bottom-md-88px {
        padding-bottom: 88px !important;
    }
    .padding-bottom-md-96px {
        padding-bottom: 96px !important;
    }
    .padding-bottom-md-100px {
        padding-bottom: 100px !important;
    }
    .padding-left-md-0px {
        padding-left: 0px !important;
    }
    .padding-left-md-4px {
        padding-left: 4px !important;
    }
    .padding-left-md-8px {
        padding-left: 8px !important;
    }
    .padding-left-md-12px {
        padding-left: 12px !important;
    }
    .padding-left-md-16px {
        padding-left: 16px !important;
    }
    .padding-left-md-20px {
        padding-left: 20px !important;
    }
    .padding-left-md-24px {
        padding-left: 24px !important;
    }
    .padding-left-md-32px {
        padding-left: 32px !important;
    }
    .padding-left-md-40px {
        padding-left: 40px !important;
    }
    .padding-left-md-48px {
        padding-left: 48px !important;
    }
    .padding-left-md-56px {
        padding-left: 56px !important;
    }
    .padding-left-md-64px {
        padding-left: 64px !important;
    }
    .padding-left-md-72px {
        padding-left: 72px !important;
    }
    .padding-left-md-80px {
        padding-left: 80px !important;
    }
    .padding-left-md-88px {
        padding-left: 88px !important;
    }
    .padding-left-md-96px {
        padding-left: 96px !important;
    }
    .padding-left-md-100px {
        padding-left: 100px !important;
    }
    .padding-right-md-0px {
        padding-right: 0px !important;
    }
    .padding-right-md-4px {
        padding-right: 4px !important;
    }
    .padding-right-md-8px {
        padding-right: 8px !important;
    }
    .padding-right-md-12px {
        padding-right: 12px !important;
    }
    .padding-right-md-16px {
        padding-right: 16px !important;
    }
    .padding-right-md-20px {
        padding-right: 20px !important;
    }
    .padding-right-md-24px {
        padding-right: 24px !important;
    }
    .padding-right-md-32px {
        padding-right: 32px !important;
    }
    .padding-right-md-40px {
        padding-right: 40px !important;
    }
    .padding-right-md-48px {
        padding-right: 48px !important;
    }
    .padding-right-md-56px {
        padding-right: 56px !important;
    }
    .padding-right-md-64px {
        padding-right: 64px !important;
    }
    .padding-right-md-72px {
        padding-right: 72px !important;
    }
    .padding-right-md-80px {
        padding-right: 80px !important;
    }
    .padding-right-md-88px {
        padding-right: 88px !important;
    }
    .padding-right-md-96px {
        padding-right: 96px !important;
    }
    .padding-right-md-100px {
        padding-right: 100px !important;
    }
    .margin-top-md-0px {
        margin-top: 0px !important;
    }
    .margin-top-md-4px {
        margin-top: 4px !important;
    }
    .margin-top-md-8px {
        margin-top: 8px !important;
    }
    .margin-top-md-12px {
        margin-top: 12px !important;
    }
    .margin-top-md-16px {
        margin-top: 16px !important;
    }
    .margin-top-md-20px {
        margin-top: 20px !important;
    }
    .margin-top-md-24px {
        margin-top: 24px !important;
    }
    .margin-top-md-32px {
        margin-top: 32px !important;
    }
    .margin-top-md-40px {
        margin-top: 40px !important;
    }
    .margin-top-md-48px {
        margin-top: 48px !important;
    }
    .margin-top-md-56px {
        margin-top: 56px !important;
    }
    .margin-top-md-64px {
        margin-top: 64px !important;
    }
    .margin-top-md-72px {
        margin-top: 72px !important;
    }
    .margin-top-md-80px {
        margin-top: 80px !important;
    }
    .margin-top-md-88px {
        margin-top: 88px !important;
    }
    .margin-top-md-96px {
        margin-top: 96px !important;
    }
    .margin-top-md-100px {
        margin-top: 100px !important;
    }
    .margin-bottom-md-0px {
        margin-bottom: 0px !important;
    }
    .margin-bottom-md-4px {
        margin-bottom: 4px !important;
    }
    .margin-bottom-md-8px {
        margin-bottom: 8px !important;
    }
    .margin-bottom-md-12px {
        margin-bottom: 12px !important;
    }
    .margin-bottom-md-16px {
        margin-bottom: 16px !important;
    }
    .margin-bottom-md-20px {
        margin-bottom: 20px !important;
    }
    .margin-bottom-md-24px {
        margin-bottom: 24px !important;
    }
    .margin-bottom-md-32px {
        margin-bottom: 32px !important;
    }
    .margin-bottom-md-40px {
        margin-bottom: 40px !important;
    }
    .margin-bottom-md-48px {
        margin-bottom: 48px !important;
    }
    .margin-bottom-md-56px {
        margin-bottom: 56px !important;
    }
    .margin-bottom-md-64px {
        margin-bottom: 64px !important;
    }
    .margin-bottom-md-72px {
        margin-bottom: 72px !important;
    }
    .margin-bottom-md-80px {
        margin-bottom: 80px !important;
    }
    .margin-bottom-md-88px {
        margin-bottom: 88px !important;
    }
    .margin-bottom-md-96px {
        margin-bottom: 96px !important;
    }
    .margin-bottom-md-100px {
        margin-bottom: 100px !important;
    }
    .margin-left-md-0px {
        margin-left: 0px !important;
    }
    .margin-left-md-4px {
        margin-left: 4px !important;
    }
    .margin-left-md-8px {
        margin-left: 8px !important;
    }
    .margin-left-md-12px {
        margin-left: 12px !important;
    }
    .margin-left-md-16px {
        margin-left: 16px !important;
    }
    .margin-left-md-20px {
        margin-left: 20px !important;
    }
    .margin-left-md-24px {
        margin-left: 24px !important;
    }
    .margin-left-md-32px {
        margin-left: 32px !important;
    }
    .margin-left-md-40px {
        margin-left: 40px !important;
    }
    .margin-left-md-48px {
        margin-left: 48px !important;
    }
    .margin-left-md-56px {
        margin-left: 56px !important;
    }
    .margin-left-md-64px {
        margin-left: 64px !important;
    }
    .margin-left-md-72px {
        margin-left: 72px !important;
    }
    .margin-left-md-80px {
        margin-left: 80px !important;
    }
    .margin-left-md-88px {
        margin-left: 88px !important;
    }
    .margin-left-md-96px {
        margin-left: 96px !important;
    }
    .margin-left-md-100px {
        margin-left: 100px !important;
    }
    .margin-right-md-0px {
        margin-right: 0px !important;
    }
    .margin-right-md-4px {
        margin-right: 4px !important;
    }
    .margin-right-md-8px {
        margin-right: 8px !important;
    }
    .margin-right-md-12px {
        margin-right: 12px !important;
    }
    .margin-right-md-16px {
        margin-right: 16px !important;
    }
    .margin-right-md-20px {
        margin-right: 20px !important;
    }
    .margin-right-md-24px {
        margin-right: 24px !important;
    }
    .margin-right-md-32px {
        margin-right: 32px !important;
    }
    .margin-right-md-40px {
        margin-right: 40px !important;
    }
    .margin-right-md-48px {
        margin-right: 48px !important;
    }
    .margin-right-md-56px {
        margin-right: 56px !important;
    }
    .margin-right-md-64px {
        margin-right: 64px !important;
    }
    .margin-right-md-72px {
        margin-right: 72px !important;
    }
    .margin-right-md-80px {
        margin-right: 80px !important;
    }
    .margin-right-md-88px {
        margin-right: 88px !important;
    }
    .margin-right-md-96px {
        margin-right: 96px !important;
    }
    .margin-right-md-100px {
        margin-right: 100px !important;
    }
    .top-md-0px {
        top: 0px !important;
    }
    .top-md-4px {
        top: 4px !important;
    }
    .top-md-8px {
        top: 8px !important;
    }
    .top-md-12px {
        top: 12px !important;
    }
    .top-md-16px {
        top: 16px !important;
    }
    .top-md-20px {
        top: 20px !important;
    }
    .top-md-24px {
        top: 24px !important;
    }
    .top-md-32px {
        top: 32px !important;
    }
    .top-md-40px {
        top: 40px !important;
    }
    .top-md-48px {
        top: 48px !important;
    }
    .top-md-56px {
        top: 56px !important;
    }
    .top-md-64px {
        top: 64px !important;
    }
    .top-md-72px {
        top: 72px !important;
    }
    .top-md-80px {
        top: 80px !important;
    }
    .top-md-88px {
        top: 88px !important;
    }
    .top-md-96px {
        top: 96px !important;
    }
    .top-md-100px {
        top: 100px !important;
    }
    .bottom-md-0px {
        bottom: 0px !important;
    }
    .bottom-md-4px {
        bottom: 4px !important;
    }
    .bottom-md-8px {
        bottom: 8px !important;
    }
    .bottom-md-12px {
        bottom: 12px !important;
    }
    .bottom-md-16px {
        bottom: 16px !important;
    }
    .bottom-md-20px {
        bottom: 20px !important;
    }
    .bottom-md-24px {
        bottom: 24px !important;
    }
    .bottom-md-32px {
        bottom: 32px !important;
    }
    .bottom-md-40px {
        bottom: 40px !important;
    }
    .bottom-md-48px {
        bottom: 48px !important;
    }
    .bottom-md-56px {
        bottom: 56px !important;
    }
    .bottom-md-64px {
        bottom: 64px !important;
    }
    .bottom-md-72px {
        bottom: 72px !important;
    }
    .bottom-md-80px {
        bottom: 80px !important;
    }
    .bottom-md-88px {
        bottom: 88px !important;
    }
    .bottom-md-96px {
        bottom: 96px !important;
    }
    .bottom-md-100px {
        bottom: 100px !important;
    }
    .left-md-0px {
        left: 0px !important;
    }
    .left-md-4px {
        left: 4px !important;
    }
    .left-md-8px {
        left: 8px !important;
    }
    .left-md-12px {
        left: 12px !important;
    }
    .left-md-16px {
        left: 16px !important;
    }
    .left-md-20px {
        left: 20px !important;
    }
    .left-md-24px {
        left: 24px !important;
    }
    .left-md-32px {
        left: 32px !important;
    }
    .left-md-40px {
        left: 40px !important;
    }
    .left-md-48px {
        left: 48px !important;
    }
    .left-md-56px {
        left: 56px !important;
    }
    .left-md-64px {
        left: 64px !important;
    }
    .left-md-72px {
        left: 72px !important;
    }
    .left-md-80px {
        left: 80px !important;
    }
    .left-md-88px {
        left: 88px !important;
    }
    .left-md-96px {
        left: 96px !important;
    }
    .left-md-100px {
        left: 100px !important;
    }
    .right-md-0px {
        right: 0px !important;
    }
    .right-md-4px {
        right: 4px !important;
    }
    .right-md-8px {
        right: 8px !important;
    }
    .right-md-12px {
        right: 12px !important;
    }
    .right-md-16px {
        right: 16px !important;
    }
    .right-md-20px {
        right: 20px !important;
    }
    .right-md-24px {
        right: 24px !important;
    }
    .right-md-32px {
        right: 32px !important;
    }
    .right-md-40px {
        right: 40px !important;
    }
    .right-md-48px {
        right: 48px !important;
    }
    .right-md-56px {
        right: 56px !important;
    }
    .right-md-64px {
        right: 64px !important;
    }
    .right-md-72px {
        right: 72px !important;
    }
    .right-md-80px {
        right: 80px !important;
    }
    .right-md-88px {
        right: 88px !important;
    }
    .right-md-96px {
        right: 96px !important;
    }
    .right-md-100px {
        right: 100px !important;
    }
    .gap-md-0px {
        gap: 0px !important;
    }
    .gap-md-4px {
        gap: 4px !important;
    }
    .gap-md-8px {
        gap: 8px !important;
    }
    .gap-md-12px {
        gap: 12px !important;
    }
    .gap-md-16px {
        gap: 16px !important;
    }
    .gap-md-20px {
        gap: 20px !important;
    }
    .gap-md-24px {
        gap: 24px !important;
    }
    .gap-md-32px {
        gap: 32px !important;
    }
    .gap-md-40px {
        gap: 40px !important;
    }
    .gap-md-48px {
        gap: 48px !important;
    }
    .gap-md-56px {
        gap: 56px !important;
    }
    .gap-md-64px {
        gap: 64px !important;
    }
    .gap-md-72px {
        gap: 72px !important;
    }
    .gap-md-80px {
        gap: 80px !important;
    }
    .gap-md-88px {
        gap: 88px !important;
    }
    .gap-md-96px {
        gap: 96px !important;
    }
    .gap-md-100px {
        gap: 100px !important;
    }
    .row-gap-md-0px {
        row-gap: 0px !important;
    }
    .row-gap-md-4px {
        row-gap: 4px !important;
    }
    .row-gap-md-8px {
        row-gap: 8px !important;
    }
    .row-gap-md-12px {
        row-gap: 12px !important;
    }
    .row-gap-md-16px {
        row-gap: 16px !important;
    }
    .row-gap-md-20px {
        row-gap: 20px !important;
    }
    .row-gap-md-24px {
        row-gap: 24px !important;
    }
    .row-gap-md-32px {
        row-gap: 32px !important;
    }
    .row-gap-md-40px {
        row-gap: 40px !important;
    }
    .row-gap-md-48px {
        row-gap: 48px !important;
    }
    .row-gap-md-56px {
        row-gap: 56px !important;
    }
    .row-gap-md-64px {
        row-gap: 64px !important;
    }
    .row-gap-md-72px {
        row-gap: 72px !important;
    }
    .row-gap-md-80px {
        row-gap: 80px !important;
    }
    .row-gap-md-88px {
        row-gap: 88px !important;
    }
    .row-gap-md-96px {
        row-gap: 96px !important;
    }
    .row-gap-md-100px {
        row-gap: 100px !important;
    }
    .column-gap-md-0px {
        column-gap: 0px !important;
    }
    .column-gap-md-4px {
        column-gap: 4px !important;
    }
    .column-gap-md-8px {
        column-gap: 8px !important;
    }
    .column-gap-md-12px {
        column-gap: 12px !important;
    }
    .column-gap-md-16px {
        column-gap: 16px !important;
    }
    .column-gap-md-20px {
        column-gap: 20px !important;
    }
    .column-gap-md-24px {
        column-gap: 24px !important;
    }
    .column-gap-md-32px {
        column-gap: 32px !important;
    }
    .column-gap-md-40px {
        column-gap: 40px !important;
    }
    .column-gap-md-48px {
        column-gap: 48px !important;
    }
    .column-gap-md-56px {
        column-gap: 56px !important;
    }
    .column-gap-md-64px {
        column-gap: 64px !important;
    }
    .column-gap-md-72px {
        column-gap: 72px !important;
    }
    .column-gap-md-80px {
        column-gap: 80px !important;
    }
    .column-gap-md-88px {
        column-gap: 88px !important;
    }
    .column-gap-md-96px {
        column-gap: 96px !important;
    }
    .column-gap-md-100px {
        column-gap: 100px !important;
    }
}
@media (min-width: 992px) {
    .padding-top-lg-0px {
        padding-top: 0px !important;
    }
    .padding-top-lg-4px {
        padding-top: 4px !important;
    }
    .padding-top-lg-8px {
        padding-top: 8px !important;
    }
    .padding-top-lg-12px {
        padding-top: 12px !important;
    }
    .padding-top-lg-16px {
        padding-top: 16px !important;
    }
    .padding-top-lg-20px {
        padding-top: 20px !important;
    }
    .padding-top-lg-24px {
        padding-top: 24px !important;
    }
    .padding-top-lg-32px {
        padding-top: 32px !important;
    }
    .padding-top-lg-40px {
        padding-top: 40px !important;
    }
    .padding-top-lg-48px {
        padding-top: 48px !important;
    }
    .padding-top-lg-56px {
        padding-top: 56px !important;
    }
    .padding-top-lg-64px {
        padding-top: 64px !important;
    }
    .padding-top-lg-72px {
        padding-top: 72px !important;
    }
    .padding-top-lg-80px {
        padding-top: 80px !important;
    }
    .padding-top-lg-88px {
        padding-top: 88px !important;
    }
    .padding-top-lg-96px {
        padding-top: 96px !important;
    }
    .padding-top-lg-100px {
        padding-top: 100px !important;
    }
    .padding-bottom-lg-0px {
        padding-bottom: 0px !important;
    }
    .padding-bottom-lg-4px {
        padding-bottom: 4px !important;
    }
    .padding-bottom-lg-8px {
        padding-bottom: 8px !important;
    }
    .padding-bottom-lg-12px {
        padding-bottom: 12px !important;
    }
    .padding-bottom-lg-16px {
        padding-bottom: 16px !important;
    }
    .padding-bottom-lg-20px {
        padding-bottom: 20px !important;
    }
    .padding-bottom-lg-24px {
        padding-bottom: 24px !important;
    }
    .padding-bottom-lg-32px {
        padding-bottom: 32px !important;
    }
    .padding-bottom-lg-40px {
        padding-bottom: 40px !important;
    }
    .padding-bottom-lg-48px {
        padding-bottom: 48px !important;
    }
    .padding-bottom-lg-56px {
        padding-bottom: 56px !important;
    }
    .padding-bottom-lg-64px {
        padding-bottom: 64px !important;
    }
    .padding-bottom-lg-72px {
        padding-bottom: 72px !important;
    }
    .padding-bottom-lg-80px {
        padding-bottom: 80px !important;
    }
    .padding-bottom-lg-88px {
        padding-bottom: 88px !important;
    }
    .padding-bottom-lg-96px {
        padding-bottom: 96px !important;
    }
    .padding-bottom-lg-100px {
        padding-bottom: 100px !important;
    }
    .padding-left-lg-0px {
        padding-left: 0px !important;
    }
    .padding-left-lg-4px {
        padding-left: 4px !important;
    }
    .padding-left-lg-8px {
        padding-left: 8px !important;
    }
    .padding-left-lg-12px {
        padding-left: 12px !important;
    }
    .padding-left-lg-16px {
        padding-left: 16px !important;
    }
    .padding-left-lg-20px {
        padding-left: 20px !important;
    }
    .padding-left-lg-24px {
        padding-left: 24px !important;
    }
    .padding-left-lg-32px {
        padding-left: 32px !important;
    }
    .padding-left-lg-40px {
        padding-left: 40px !important;
    }
    .padding-left-lg-48px {
        padding-left: 48px !important;
    }
    .padding-left-lg-56px {
        padding-left: 56px !important;
    }
    .padding-left-lg-64px {
        padding-left: 64px !important;
    }
    .padding-left-lg-72px {
        padding-left: 72px !important;
    }
    .padding-left-lg-80px {
        padding-left: 80px !important;
    }
    .padding-left-lg-88px {
        padding-left: 88px !important;
    }
    .padding-left-lg-96px {
        padding-left: 96px !important;
    }
    .padding-left-lg-100px {
        padding-left: 100px !important;
    }
    .padding-right-lg-0px {
        padding-right: 0px !important;
    }
    .padding-right-lg-4px {
        padding-right: 4px !important;
    }
    .padding-right-lg-8px {
        padding-right: 8px !important;
    }
    .padding-right-lg-12px {
        padding-right: 12px !important;
    }
    .padding-right-lg-16px {
        padding-right: 16px !important;
    }
    .padding-right-lg-20px {
        padding-right: 20px !important;
    }
    .padding-right-lg-24px {
        padding-right: 24px !important;
    }
    .padding-right-lg-32px {
        padding-right: 32px !important;
    }
    .padding-right-lg-40px {
        padding-right: 40px !important;
    }
    .padding-right-lg-48px {
        padding-right: 48px !important;
    }
    .padding-right-lg-56px {
        padding-right: 56px !important;
    }
    .padding-right-lg-64px {
        padding-right: 64px !important;
    }
    .padding-right-lg-72px {
        padding-right: 72px !important;
    }
    .padding-right-lg-80px {
        padding-right: 80px !important;
    }
    .padding-right-lg-88px {
        padding-right: 88px !important;
    }
    .padding-right-lg-96px {
        padding-right: 96px !important;
    }
    .padding-right-lg-100px {
        padding-right: 100px !important;
    }
    .margin-top-lg-0px {
        margin-top: 0px !important;
    }
    .margin-top-lg-4px {
        margin-top: 4px !important;
    }
    .margin-top-lg-8px {
        margin-top: 8px !important;
    }
    .margin-top-lg-12px {
        margin-top: 12px !important;
    }
    .margin-top-lg-16px {
        margin-top: 16px !important;
    }
    .margin-top-lg-20px {
        margin-top: 20px !important;
    }
    .margin-top-lg-24px {
        margin-top: 24px !important;
    }
    .margin-top-lg-32px {
        margin-top: 32px !important;
    }
    .margin-top-lg-40px {
        margin-top: 40px !important;
    }
    .margin-top-lg-48px {
        margin-top: 48px !important;
    }
    .margin-top-lg-56px {
        margin-top: 56px !important;
    }
    .margin-top-lg-64px {
        margin-top: 64px !important;
    }
    .margin-top-lg-72px {
        margin-top: 72px !important;
    }
    .margin-top-lg-80px {
        margin-top: 80px !important;
    }
    .margin-top-lg-88px {
        margin-top: 88px !important;
    }
    .margin-top-lg-96px {
        margin-top: 96px !important;
    }
    .margin-top-lg-100px {
        margin-top: 100px !important;
    }
    .margin-bottom-lg-0px {
        margin-bottom: 0px !important;
    }
    .margin-bottom-lg-4px {
        margin-bottom: 4px !important;
    }
    .margin-bottom-lg-8px {
        margin-bottom: 8px !important;
    }
    .margin-bottom-lg-12px {
        margin-bottom: 12px !important;
    }
    .margin-bottom-lg-16px {
        margin-bottom: 16px !important;
    }
    .margin-bottom-lg-20px {
        margin-bottom: 20px !important;
    }
    .margin-bottom-lg-24px {
        margin-bottom: 24px !important;
    }
    .margin-bottom-lg-32px {
        margin-bottom: 32px !important;
    }
    .margin-bottom-lg-40px {
        margin-bottom: 40px !important;
    }
    .margin-bottom-lg-48px {
        margin-bottom: 48px !important;
    }
    .margin-bottom-lg-56px {
        margin-bottom: 56px !important;
    }
    .margin-bottom-lg-64px {
        margin-bottom: 64px !important;
    }
    .margin-bottom-lg-72px {
        margin-bottom: 72px !important;
    }
    .margin-bottom-lg-80px {
        margin-bottom: 80px !important;
    }
    .margin-bottom-lg-88px {
        margin-bottom: 88px !important;
    }
    .margin-bottom-lg-96px {
        margin-bottom: 96px !important;
    }
    .margin-bottom-lg-100px {
        margin-bottom: 100px !important;
    }
    .margin-left-lg-0px {
        margin-left: 0px !important;
    }
    .margin-left-lg-4px {
        margin-left: 4px !important;
    }
    .margin-left-lg-8px {
        margin-left: 8px !important;
    }
    .margin-left-lg-12px {
        margin-left: 12px !important;
    }
    .margin-left-lg-16px {
        margin-left: 16px !important;
    }
    .margin-left-lg-20px {
        margin-left: 20px !important;
    }
    .margin-left-lg-24px {
        margin-left: 24px !important;
    }
    .margin-left-lg-32px {
        margin-left: 32px !important;
    }
    .margin-left-lg-40px {
        margin-left: 40px !important;
    }
    .margin-left-lg-48px {
        margin-left: 48px !important;
    }
    .margin-left-lg-56px {
        margin-left: 56px !important;
    }
    .margin-left-lg-64px {
        margin-left: 64px !important;
    }
    .margin-left-lg-72px {
        margin-left: 72px !important;
    }
    .margin-left-lg-80px {
        margin-left: 80px !important;
    }
    .margin-left-lg-88px {
        margin-left: 88px !important;
    }
    .margin-left-lg-96px {
        margin-left: 96px !important;
    }
    .margin-left-lg-100px {
        margin-left: 100px !important;
    }
    .margin-right-lg-0px {
        margin-right: 0px !important;
    }
    .margin-right-lg-4px {
        margin-right: 4px !important;
    }
    .margin-right-lg-8px {
        margin-right: 8px !important;
    }
    .margin-right-lg-12px {
        margin-right: 12px !important;
    }
    .margin-right-lg-16px {
        margin-right: 16px !important;
    }
    .margin-right-lg-20px {
        margin-right: 20px !important;
    }
    .margin-right-lg-24px {
        margin-right: 24px !important;
    }
    .margin-right-lg-32px {
        margin-right: 32px !important;
    }
    .margin-right-lg-40px {
        margin-right: 40px !important;
    }
    .margin-right-lg-48px {
        margin-right: 48px !important;
    }
    .margin-right-lg-56px {
        margin-right: 56px !important;
    }
    .margin-right-lg-64px {
        margin-right: 64px !important;
    }
    .margin-right-lg-72px {
        margin-right: 72px !important;
    }
    .margin-right-lg-80px {
        margin-right: 80px !important;
    }
    .margin-right-lg-88px {
        margin-right: 88px !important;
    }
    .margin-right-lg-96px {
        margin-right: 96px !important;
    }
    .margin-right-lg-100px {
        margin-right: 100px !important;
    }
    .top-lg-0px {
        top: 0px !important;
    }
    .top-lg-4px {
        top: 4px !important;
    }
    .top-lg-8px {
        top: 8px !important;
    }
    .top-lg-12px {
        top: 12px !important;
    }
    .top-lg-16px {
        top: 16px !important;
    }
    .top-lg-20px {
        top: 20px !important;
    }
    .top-lg-24px {
        top: 24px !important;
    }
    .top-lg-32px {
        top: 32px !important;
    }
    .top-lg-40px {
        top: 40px !important;
    }
    .top-lg-48px {
        top: 48px !important;
    }
    .top-lg-56px {
        top: 56px !important;
    }
    .top-lg-64px {
        top: 64px !important;
    }
    .top-lg-72px {
        top: 72px !important;
    }
    .top-lg-80px {
        top: 80px !important;
    }
    .top-lg-88px {
        top: 88px !important;
    }
    .top-lg-96px {
        top: 96px !important;
    }
    .top-lg-100px {
        top: 100px !important;
    }
    .bottom-lg-0px {
        bottom: 0px !important;
    }
    .bottom-lg-4px {
        bottom: 4px !important;
    }
    .bottom-lg-8px {
        bottom: 8px !important;
    }
    .bottom-lg-12px {
        bottom: 12px !important;
    }
    .bottom-lg-16px {
        bottom: 16px !important;
    }
    .bottom-lg-20px {
        bottom: 20px !important;
    }
    .bottom-lg-24px {
        bottom: 24px !important;
    }
    .bottom-lg-32px {
        bottom: 32px !important;
    }
    .bottom-lg-40px {
        bottom: 40px !important;
    }
    .bottom-lg-48px {
        bottom: 48px !important;
    }
    .bottom-lg-56px {
        bottom: 56px !important;
    }
    .bottom-lg-64px {
        bottom: 64px !important;
    }
    .bottom-lg-72px {
        bottom: 72px !important;
    }
    .bottom-lg-80px {
        bottom: 80px !important;
    }
    .bottom-lg-88px {
        bottom: 88px !important;
    }
    .bottom-lg-96px {
        bottom: 96px !important;
    }
    .bottom-lg-100px {
        bottom: 100px !important;
    }
    .left-lg-0px {
        left: 0px !important;
    }
    .left-lg-4px {
        left: 4px !important;
    }
    .left-lg-8px {
        left: 8px !important;
    }
    .left-lg-12px {
        left: 12px !important;
    }
    .left-lg-16px {
        left: 16px !important;
    }
    .left-lg-20px {
        left: 20px !important;
    }
    .left-lg-24px {
        left: 24px !important;
    }
    .left-lg-32px {
        left: 32px !important;
    }
    .left-lg-40px {
        left: 40px !important;
    }
    .left-lg-48px {
        left: 48px !important;
    }
    .left-lg-56px {
        left: 56px !important;
    }
    .left-lg-64px {
        left: 64px !important;
    }
    .left-lg-72px {
        left: 72px !important;
    }
    .left-lg-80px {
        left: 80px !important;
    }
    .left-lg-88px {
        left: 88px !important;
    }
    .left-lg-96px {
        left: 96px !important;
    }
    .left-lg-100px {
        left: 100px !important;
    }
    .right-lg-0px {
        right: 0px !important;
    }
    .right-lg-4px {
        right: 4px !important;
    }
    .right-lg-8px {
        right: 8px !important;
    }
    .right-lg-12px {
        right: 12px !important;
    }
    .right-lg-16px {
        right: 16px !important;
    }
    .right-lg-20px {
        right: 20px !important;
    }
    .right-lg-24px {
        right: 24px !important;
    }
    .right-lg-32px {
        right: 32px !important;
    }
    .right-lg-40px {
        right: 40px !important;
    }
    .right-lg-48px {
        right: 48px !important;
    }
    .right-lg-56px {
        right: 56px !important;
    }
    .right-lg-64px {
        right: 64px !important;
    }
    .right-lg-72px {
        right: 72px !important;
    }
    .right-lg-80px {
        right: 80px !important;
    }
    .right-lg-88px {
        right: 88px !important;
    }
    .right-lg-96px {
        right: 96px !important;
    }
    .right-lg-100px {
        right: 100px !important;
    }
    .gap-lg-0px {
        gap: 0px !important;
    }
    .gap-lg-4px {
        gap: 4px !important;
    }
    .gap-lg-8px {
        gap: 8px !important;
    }
    .gap-lg-12px {
        gap: 12px !important;
    }
    .gap-lg-16px {
        gap: 16px !important;
    }
    .gap-lg-20px {
        gap: 20px !important;
    }
    .gap-lg-24px {
        gap: 24px !important;
    }
    .gap-lg-32px {
        gap: 32px !important;
    }
    .gap-lg-40px {
        gap: 40px !important;
    }
    .gap-lg-48px {
        gap: 48px !important;
    }
    .gap-lg-56px {
        gap: 56px !important;
    }
    .gap-lg-64px {
        gap: 64px !important;
    }
    .gap-lg-72px {
        gap: 72px !important;
    }
    .gap-lg-80px {
        gap: 80px !important;
    }
    .gap-lg-88px {
        gap: 88px !important;
    }
    .gap-lg-96px {
        gap: 96px !important;
    }
    .gap-lg-100px {
        gap: 100px !important;
    }
    .row-gap-lg-0px {
        row-gap: 0px !important;
    }
    .row-gap-lg-4px {
        row-gap: 4px !important;
    }
    .row-gap-lg-8px {
        row-gap: 8px !important;
    }
    .row-gap-lg-12px {
        row-gap: 12px !important;
    }
    .row-gap-lg-16px {
        row-gap: 16px !important;
    }
    .row-gap-lg-20px {
        row-gap: 20px !important;
    }
    .row-gap-lg-24px {
        row-gap: 24px !important;
    }
    .row-gap-lg-32px {
        row-gap: 32px !important;
    }
    .row-gap-lg-40px {
        row-gap: 40px !important;
    }
    .row-gap-lg-48px {
        row-gap: 48px !important;
    }
    .row-gap-lg-56px {
        row-gap: 56px !important;
    }
    .row-gap-lg-64px {
        row-gap: 64px !important;
    }
    .row-gap-lg-72px {
        row-gap: 72px !important;
    }
    .row-gap-lg-80px {
        row-gap: 80px !important;
    }
    .row-gap-lg-88px {
        row-gap: 88px !important;
    }
    .row-gap-lg-96px {
        row-gap: 96px !important;
    }
    .row-gap-lg-100px {
        row-gap: 100px !important;
    }
    .column-gap-lg-0px {
        column-gap: 0px !important;
    }
    .column-gap-lg-4px {
        column-gap: 4px !important;
    }
    .column-gap-lg-8px {
        column-gap: 8px !important;
    }
    .column-gap-lg-12px {
        column-gap: 12px !important;
    }
    .column-gap-lg-16px {
        column-gap: 16px !important;
    }
    .column-gap-lg-20px {
        column-gap: 20px !important;
    }
    .column-gap-lg-24px {
        column-gap: 24px !important;
    }
    .column-gap-lg-32px {
        column-gap: 32px !important;
    }
    .column-gap-lg-40px {
        column-gap: 40px !important;
    }
    .column-gap-lg-48px {
        column-gap: 48px !important;
    }
    .column-gap-lg-56px {
        column-gap: 56px !important;
    }
    .column-gap-lg-64px {
        column-gap: 64px !important;
    }
    .column-gap-lg-72px {
        column-gap: 72px !important;
    }
    .column-gap-lg-80px {
        column-gap: 80px !important;
    }
    .column-gap-lg-88px {
        column-gap: 88px !important;
    }
    .column-gap-lg-96px {
        column-gap: 96px !important;
    }
    .column-gap-lg-100px {
        column-gap: 100px !important;
    }
}
@media (min-width: 1200px) {
    .padding-top-xl-0px {
        padding-top: 0px !important;
    }
    .padding-top-xl-4px {
        padding-top: 4px !important;
    }
    .padding-top-xl-8px {
        padding-top: 8px !important;
    }
    .padding-top-xl-12px {
        padding-top: 12px !important;
    }
    .padding-top-xl-16px {
        padding-top: 16px !important;
    }
    .padding-top-xl-20px {
        padding-top: 20px !important;
    }
    .padding-top-xl-24px {
        padding-top: 24px !important;
    }
    .padding-top-xl-32px {
        padding-top: 32px !important;
    }
    .padding-top-xl-40px {
        padding-top: 40px !important;
    }
    .padding-top-xl-48px {
        padding-top: 48px !important;
    }
    .padding-top-xl-56px {
        padding-top: 56px !important;
    }
    .padding-top-xl-64px {
        padding-top: 64px !important;
    }
    .padding-top-xl-72px {
        padding-top: 72px !important;
    }
    .padding-top-xl-80px {
        padding-top: 80px !important;
    }
    .padding-top-xl-88px {
        padding-top: 88px !important;
    }
    .padding-top-xl-96px {
        padding-top: 96px !important;
    }
    .padding-top-xl-100px {
        padding-top: 100px !important;
    }
    .padding-bottom-xl-0px {
        padding-bottom: 0px !important;
    }
    .padding-bottom-xl-4px {
        padding-bottom: 4px !important;
    }
    .padding-bottom-xl-8px {
        padding-bottom: 8px !important;
    }
    .padding-bottom-xl-12px {
        padding-bottom: 12px !important;
    }
    .padding-bottom-xl-16px {
        padding-bottom: 16px !important;
    }
    .padding-bottom-xl-20px {
        padding-bottom: 20px !important;
    }
    .padding-bottom-xl-24px {
        padding-bottom: 24px !important;
    }
    .padding-bottom-xl-32px {
        padding-bottom: 32px !important;
    }
    .padding-bottom-xl-40px {
        padding-bottom: 40px !important;
    }
    .padding-bottom-xl-48px {
        padding-bottom: 48px !important;
    }
    .padding-bottom-xl-56px {
        padding-bottom: 56px !important;
    }
    .padding-bottom-xl-64px {
        padding-bottom: 64px !important;
    }
    .padding-bottom-xl-72px {
        padding-bottom: 72px !important;
    }
    .padding-bottom-xl-80px {
        padding-bottom: 80px !important;
    }
    .padding-bottom-xl-88px {
        padding-bottom: 88px !important;
    }
    .padding-bottom-xl-96px {
        padding-bottom: 96px !important;
    }
    .padding-bottom-xl-100px {
        padding-bottom: 100px !important;
    }
    .padding-left-xl-0px {
        padding-left: 0px !important;
    }
    .padding-left-xl-4px {
        padding-left: 4px !important;
    }
    .padding-left-xl-8px {
        padding-left: 8px !important;
    }
    .padding-left-xl-12px {
        padding-left: 12px !important;
    }
    .padding-left-xl-16px {
        padding-left: 16px !important;
    }
    .padding-left-xl-20px {
        padding-left: 20px !important;
    }
    .padding-left-xl-24px {
        padding-left: 24px !important;
    }
    .padding-left-xl-32px {
        padding-left: 32px !important;
    }
    .padding-left-xl-40px {
        padding-left: 40px !important;
    }
    .padding-left-xl-48px {
        padding-left: 48px !important;
    }
    .padding-left-xl-56px {
        padding-left: 56px !important;
    }
    .padding-left-xl-64px {
        padding-left: 64px !important;
    }
    .padding-left-xl-72px {
        padding-left: 72px !important;
    }
    .padding-left-xl-80px {
        padding-left: 80px !important;
    }
    .padding-left-xl-88px {
        padding-left: 88px !important;
    }
    .padding-left-xl-96px {
        padding-left: 96px !important;
    }
    .padding-left-xl-100px {
        padding-left: 100px !important;
    }
    .padding-right-xl-0px {
        padding-right: 0px !important;
    }
    .padding-right-xl-4px {
        padding-right: 4px !important;
    }
    .padding-right-xl-8px {
        padding-right: 8px !important;
    }
    .padding-right-xl-12px {
        padding-right: 12px !important;
    }
    .padding-right-xl-16px {
        padding-right: 16px !important;
    }
    .padding-right-xl-20px {
        padding-right: 20px !important;
    }
    .padding-right-xl-24px {
        padding-right: 24px !important;
    }
    .padding-right-xl-32px {
        padding-right: 32px !important;
    }
    .padding-right-xl-40px {
        padding-right: 40px !important;
    }
    .padding-right-xl-48px {
        padding-right: 48px !important;
    }
    .padding-right-xl-56px {
        padding-right: 56px !important;
    }
    .padding-right-xl-64px {
        padding-right: 64px !important;
    }
    .padding-right-xl-72px {
        padding-right: 72px !important;
    }
    .padding-right-xl-80px {
        padding-right: 80px !important;
    }
    .padding-right-xl-88px {
        padding-right: 88px !important;
    }
    .padding-right-xl-96px {
        padding-right: 96px !important;
    }
    .padding-right-xl-100px {
        padding-right: 100px !important;
    }
    .margin-top-xl-0px {
        margin-top: 0px !important;
    }
    .margin-top-xl-4px {
        margin-top: 4px !important;
    }
    .margin-top-xl-8px {
        margin-top: 8px !important;
    }
    .margin-top-xl-12px {
        margin-top: 12px !important;
    }
    .margin-top-xl-16px {
        margin-top: 16px !important;
    }
    .margin-top-xl-20px {
        margin-top: 20px !important;
    }
    .margin-top-xl-24px {
        margin-top: 24px !important;
    }
    .margin-top-xl-32px {
        margin-top: 32px !important;
    }
    .margin-top-xl-40px {
        margin-top: 40px !important;
    }
    .margin-top-xl-48px {
        margin-top: 48px !important;
    }
    .margin-top-xl-56px {
        margin-top: 56px !important;
    }
    .margin-top-xl-64px {
        margin-top: 64px !important;
    }
    .margin-top-xl-72px {
        margin-top: 72px !important;
    }
    .margin-top-xl-80px {
        margin-top: 80px !important;
    }
    .margin-top-xl-88px {
        margin-top: 88px !important;
    }
    .margin-top-xl-96px {
        margin-top: 96px !important;
    }
    .margin-top-xl-100px {
        margin-top: 100px !important;
    }
    .margin-bottom-xl-0px {
        margin-bottom: 0px !important;
    }
    .margin-bottom-xl-4px {
        margin-bottom: 4px !important;
    }
    .margin-bottom-xl-8px {
        margin-bottom: 8px !important;
    }
    .margin-bottom-xl-12px {
        margin-bottom: 12px !important;
    }
    .margin-bottom-xl-16px {
        margin-bottom: 16px !important;
    }
    .margin-bottom-xl-20px {
        margin-bottom: 20px !important;
    }
    .margin-bottom-xl-24px {
        margin-bottom: 24px !important;
    }
    .margin-bottom-xl-32px {
        margin-bottom: 32px !important;
    }
    .margin-bottom-xl-40px {
        margin-bottom: 40px !important;
    }
    .margin-bottom-xl-48px {
        margin-bottom: 48px !important;
    }
    .margin-bottom-xl-56px {
        margin-bottom: 56px !important;
    }
    .margin-bottom-xl-64px {
        margin-bottom: 64px !important;
    }
    .margin-bottom-xl-72px {
        margin-bottom: 72px !important;
    }
    .margin-bottom-xl-80px {
        margin-bottom: 80px !important;
    }
    .margin-bottom-xl-88px {
        margin-bottom: 88px !important;
    }
    .margin-bottom-xl-96px {
        margin-bottom: 96px !important;
    }
    .margin-bottom-xl-100px {
        margin-bottom: 100px !important;
    }
    .margin-left-xl-0px {
        margin-left: 0px !important;
    }
    .margin-left-xl-4px {
        margin-left: 4px !important;
    }
    .margin-left-xl-8px {
        margin-left: 8px !important;
    }
    .margin-left-xl-12px {
        margin-left: 12px !important;
    }
    .margin-left-xl-16px {
        margin-left: 16px !important;
    }
    .margin-left-xl-20px {
        margin-left: 20px !important;
    }
    .margin-left-xl-24px {
        margin-left: 24px !important;
    }
    .margin-left-xl-32px {
        margin-left: 32px !important;
    }
    .margin-left-xl-40px {
        margin-left: 40px !important;
    }
    .margin-left-xl-48px {
        margin-left: 48px !important;
    }
    .margin-left-xl-56px {
        margin-left: 56px !important;
    }
    .margin-left-xl-64px {
        margin-left: 64px !important;
    }
    .margin-left-xl-72px {
        margin-left: 72px !important;
    }
    .margin-left-xl-80px {
        margin-left: 80px !important;
    }
    .margin-left-xl-88px {
        margin-left: 88px !important;
    }
    .margin-left-xl-96px {
        margin-left: 96px !important;
    }
    .margin-left-xl-100px {
        margin-left: 100px !important;
    }
    .margin-right-xl-0px {
        margin-right: 0px !important;
    }
    .margin-right-xl-4px {
        margin-right: 4px !important;
    }
    .margin-right-xl-8px {
        margin-right: 8px !important;
    }
    .margin-right-xl-12px {
        margin-right: 12px !important;
    }
    .margin-right-xl-16px {
        margin-right: 16px !important;
    }
    .margin-right-xl-20px {
        margin-right: 20px !important;
    }
    .margin-right-xl-24px {
        margin-right: 24px !important;
    }
    .margin-right-xl-32px {
        margin-right: 32px !important;
    }
    .margin-right-xl-40px {
        margin-right: 40px !important;
    }
    .margin-right-xl-48px {
        margin-right: 48px !important;
    }
    .margin-right-xl-56px {
        margin-right: 56px !important;
    }
    .margin-right-xl-64px {
        margin-right: 64px !important;
    }
    .margin-right-xl-72px {
        margin-right: 72px !important;
    }
    .margin-right-xl-80px {
        margin-right: 80px !important;
    }
    .margin-right-xl-88px {
        margin-right: 88px !important;
    }
    .margin-right-xl-96px {
        margin-right: 96px !important;
    }
    .margin-right-xl-100px {
        margin-right: 100px !important;
    }
    .top-xl-0px {
        top: 0px !important;
    }
    .top-xl-4px {
        top: 4px !important;
    }
    .top-xl-8px {
        top: 8px !important;
    }
    .top-xl-12px {
        top: 12px !important;
    }
    .top-xl-16px {
        top: 16px !important;
    }
    .top-xl-20px {
        top: 20px !important;
    }
    .top-xl-24px {
        top: 24px !important;
    }
    .top-xl-32px {
        top: 32px !important;
    }
    .top-xl-40px {
        top: 40px !important;
    }
    .top-xl-48px {
        top: 48px !important;
    }
    .top-xl-56px {
        top: 56px !important;
    }
    .top-xl-64px {
        top: 64px !important;
    }
    .top-xl-72px {
        top: 72px !important;
    }
    .top-xl-80px {
        top: 80px !important;
    }
    .top-xl-88px {
        top: 88px !important;
    }
    .top-xl-96px {
        top: 96px !important;
    }
    .top-xl-100px {
        top: 100px !important;
    }
    .bottom-xl-0px {
        bottom: 0px !important;
    }
    .bottom-xl-4px {
        bottom: 4px !important;
    }
    .bottom-xl-8px {
        bottom: 8px !important;
    }
    .bottom-xl-12px {
        bottom: 12px !important;
    }
    .bottom-xl-16px {
        bottom: 16px !important;
    }
    .bottom-xl-20px {
        bottom: 20px !important;
    }
    .bottom-xl-24px {
        bottom: 24px !important;
    }
    .bottom-xl-32px {
        bottom: 32px !important;
    }
    .bottom-xl-40px {
        bottom: 40px !important;
    }
    .bottom-xl-48px {
        bottom: 48px !important;
    }
    .bottom-xl-56px {
        bottom: 56px !important;
    }
    .bottom-xl-64px {
        bottom: 64px !important;
    }
    .bottom-xl-72px {
        bottom: 72px !important;
    }
    .bottom-xl-80px {
        bottom: 80px !important;
    }
    .bottom-xl-88px {
        bottom: 88px !important;
    }
    .bottom-xl-96px {
        bottom: 96px !important;
    }
    .bottom-xl-100px {
        bottom: 100px !important;
    }
    .left-xl-0px {
        left: 0px !important;
    }
    .left-xl-4px {
        left: 4px !important;
    }
    .left-xl-8px {
        left: 8px !important;
    }
    .left-xl-12px {
        left: 12px !important;
    }
    .left-xl-16px {
        left: 16px !important;
    }
    .left-xl-20px {
        left: 20px !important;
    }
    .left-xl-24px {
        left: 24px !important;
    }
    .left-xl-32px {
        left: 32px !important;
    }
    .left-xl-40px {
        left: 40px !important;
    }
    .left-xl-48px {
        left: 48px !important;
    }
    .left-xl-56px {
        left: 56px !important;
    }
    .left-xl-64px {
        left: 64px !important;
    }
    .left-xl-72px {
        left: 72px !important;
    }
    .left-xl-80px {
        left: 80px !important;
    }
    .left-xl-88px {
        left: 88px !important;
    }
    .left-xl-96px {
        left: 96px !important;
    }
    .left-xl-100px {
        left: 100px !important;
    }
    .right-xl-0px {
        right: 0px !important;
    }
    .right-xl-4px {
        right: 4px !important;
    }
    .right-xl-8px {
        right: 8px !important;
    }
    .right-xl-12px {
        right: 12px !important;
    }
    .right-xl-16px {
        right: 16px !important;
    }
    .right-xl-20px {
        right: 20px !important;
    }
    .right-xl-24px {
        right: 24px !important;
    }
    .right-xl-32px {
        right: 32px !important;
    }
    .right-xl-40px {
        right: 40px !important;
    }
    .right-xl-48px {
        right: 48px !important;
    }
    .right-xl-56px {
        right: 56px !important;
    }
    .right-xl-64px {
        right: 64px !important;
    }
    .right-xl-72px {
        right: 72px !important;
    }
    .right-xl-80px {
        right: 80px !important;
    }
    .right-xl-88px {
        right: 88px !important;
    }
    .right-xl-96px {
        right: 96px !important;
    }
    .right-xl-100px {
        right: 100px !important;
    }
    .gap-xl-0px {
        gap: 0px !important;
    }
    .gap-xl-4px {
        gap: 4px !important;
    }
    .gap-xl-8px {
        gap: 8px !important;
    }
    .gap-xl-12px {
        gap: 12px !important;
    }
    .gap-xl-16px {
        gap: 16px !important;
    }
    .gap-xl-20px {
        gap: 20px !important;
    }
    .gap-xl-24px {
        gap: 24px !important;
    }
    .gap-xl-32px {
        gap: 32px !important;
    }
    .gap-xl-40px {
        gap: 40px !important;
    }
    .gap-xl-48px {
        gap: 48px !important;
    }
    .gap-xl-56px {
        gap: 56px !important;
    }
    .gap-xl-64px {
        gap: 64px !important;
    }
    .gap-xl-72px {
        gap: 72px !important;
    }
    .gap-xl-80px {
        gap: 80px !important;
    }
    .gap-xl-88px {
        gap: 88px !important;
    }
    .gap-xl-96px {
        gap: 96px !important;
    }
    .gap-xl-100px {
        gap: 100px !important;
    }
    .row-gap-xl-0px {
        row-gap: 0px !important;
    }
    .row-gap-xl-4px {
        row-gap: 4px !important;
    }
    .row-gap-xl-8px {
        row-gap: 8px !important;
    }
    .row-gap-xl-12px {
        row-gap: 12px !important;
    }
    .row-gap-xl-16px {
        row-gap: 16px !important;
    }
    .row-gap-xl-20px {
        row-gap: 20px !important;
    }
    .row-gap-xl-24px {
        row-gap: 24px !important;
    }
    .row-gap-xl-32px {
        row-gap: 32px !important;
    }
    .row-gap-xl-40px {
        row-gap: 40px !important;
    }
    .row-gap-xl-48px {
        row-gap: 48px !important;
    }
    .row-gap-xl-56px {
        row-gap: 56px !important;
    }
    .row-gap-xl-64px {
        row-gap: 64px !important;
    }
    .row-gap-xl-72px {
        row-gap: 72px !important;
    }
    .row-gap-xl-80px {
        row-gap: 80px !important;
    }
    .row-gap-xl-88px {
        row-gap: 88px !important;
    }
    .row-gap-xl-96px {
        row-gap: 96px !important;
    }
    .row-gap-xl-100px {
        row-gap: 100px !important;
    }
    .column-gap-xl-0px {
        column-gap: 0px !important;
    }
    .column-gap-xl-4px {
        column-gap: 4px !important;
    }
    .column-gap-xl-8px {
        column-gap: 8px !important;
    }
    .column-gap-xl-12px {
        column-gap: 12px !important;
    }
    .column-gap-xl-16px {
        column-gap: 16px !important;
    }
    .column-gap-xl-20px {
        column-gap: 20px !important;
    }
    .column-gap-xl-24px {
        column-gap: 24px !important;
    }
    .column-gap-xl-32px {
        column-gap: 32px !important;
    }
    .column-gap-xl-40px {
        column-gap: 40px !important;
    }
    .column-gap-xl-48px {
        column-gap: 48px !important;
    }
    .column-gap-xl-56px {
        column-gap: 56px !important;
    }
    .column-gap-xl-64px {
        column-gap: 64px !important;
    }
    .column-gap-xl-72px {
        column-gap: 72px !important;
    }
    .column-gap-xl-80px {
        column-gap: 80px !important;
    }
    .column-gap-xl-88px {
        column-gap: 88px !important;
    }
    .column-gap-xl-96px {
        column-gap: 96px !important;
    }
    .column-gap-xl-100px {
        column-gap: 100px !important;
    }
}
@media (min-width: 1400px) {
    .padding-top-xxl-0px {
        padding-top: 0px !important;
    }
    .padding-top-xxl-4px {
        padding-top: 4px !important;
    }
    .padding-top-xxl-8px {
        padding-top: 8px !important;
    }
    .padding-top-xxl-12px {
        padding-top: 12px !important;
    }
    .padding-top-xxl-16px {
        padding-top: 16px !important;
    }
    .padding-top-xxl-20px {
        padding-top: 20px !important;
    }
    .padding-top-xxl-24px {
        padding-top: 24px !important;
    }
    .padding-top-xxl-32px {
        padding-top: 32px !important;
    }
    .padding-top-xxl-40px {
        padding-top: 40px !important;
    }
    .padding-top-xxl-48px {
        padding-top: 48px !important;
    }
    .padding-top-xxl-56px {
        padding-top: 56px !important;
    }
    .padding-top-xxl-64px {
        padding-top: 64px !important;
    }
    .padding-top-xxl-72px {
        padding-top: 72px !important;
    }
    .padding-top-xxl-80px {
        padding-top: 80px !important;
    }
    .padding-top-xxl-88px {
        padding-top: 88px !important;
    }
    .padding-top-xxl-96px {
        padding-top: 96px !important;
    }
    .padding-top-xxl-100px {
        padding-top: 100px !important;
    }
    .padding-bottom-xxl-0px {
        padding-bottom: 0px !important;
    }
    .padding-bottom-xxl-4px {
        padding-bottom: 4px !important;
    }
    .padding-bottom-xxl-8px {
        padding-bottom: 8px !important;
    }
    .padding-bottom-xxl-12px {
        padding-bottom: 12px !important;
    }
    .padding-bottom-xxl-16px {
        padding-bottom: 16px !important;
    }
    .padding-bottom-xxl-20px {
        padding-bottom: 20px !important;
    }
    .padding-bottom-xxl-24px {
        padding-bottom: 24px !important;
    }
    .padding-bottom-xxl-32px {
        padding-bottom: 32px !important;
    }
    .padding-bottom-xxl-40px {
        padding-bottom: 40px !important;
    }
    .padding-bottom-xxl-48px {
        padding-bottom: 48px !important;
    }
    .padding-bottom-xxl-56px {
        padding-bottom: 56px !important;
    }
    .padding-bottom-xxl-64px {
        padding-bottom: 64px !important;
    }
    .padding-bottom-xxl-72px {
        padding-bottom: 72px !important;
    }
    .padding-bottom-xxl-80px {
        padding-bottom: 80px !important;
    }
    .padding-bottom-xxl-88px {
        padding-bottom: 88px !important;
    }
    .padding-bottom-xxl-96px {
        padding-bottom: 96px !important;
    }
    .padding-bottom-xxl-100px {
        padding-bottom: 100px !important;
    }
    .padding-left-xxl-0px {
        padding-left: 0px !important;
    }
    .padding-left-xxl-4px {
        padding-left: 4px !important;
    }
    .padding-left-xxl-8px {
        padding-left: 8px !important;
    }
    .padding-left-xxl-12px {
        padding-left: 12px !important;
    }
    .padding-left-xxl-16px {
        padding-left: 16px !important;
    }
    .padding-left-xxl-20px {
        padding-left: 20px !important;
    }
    .padding-left-xxl-24px {
        padding-left: 24px !important;
    }
    .padding-left-xxl-32px {
        padding-left: 32px !important;
    }
    .padding-left-xxl-40px {
        padding-left: 40px !important;
    }
    .padding-left-xxl-48px {
        padding-left: 48px !important;
    }
    .padding-left-xxl-56px {
        padding-left: 56px !important;
    }
    .padding-left-xxl-64px {
        padding-left: 64px !important;
    }
    .padding-left-xxl-72px {
        padding-left: 72px !important;
    }
    .padding-left-xxl-80px {
        padding-left: 80px !important;
    }
    .padding-left-xxl-88px {
        padding-left: 88px !important;
    }
    .padding-left-xxl-96px {
        padding-left: 96px !important;
    }
    .padding-left-xxl-100px {
        padding-left: 100px !important;
    }
    .padding-right-xxl-0px {
        padding-right: 0px !important;
    }
    .padding-right-xxl-4px {
        padding-right: 4px !important;
    }
    .padding-right-xxl-8px {
        padding-right: 8px !important;
    }
    .padding-right-xxl-12px {
        padding-right: 12px !important;
    }
    .padding-right-xxl-16px {
        padding-right: 16px !important;
    }
    .padding-right-xxl-20px {
        padding-right: 20px !important;
    }
    .padding-right-xxl-24px {
        padding-right: 24px !important;
    }
    .padding-right-xxl-32px {
        padding-right: 32px !important;
    }
    .padding-right-xxl-40px {
        padding-right: 40px !important;
    }
    .padding-right-xxl-48px {
        padding-right: 48px !important;
    }
    .padding-right-xxl-56px {
        padding-right: 56px !important;
    }
    .padding-right-xxl-64px {
        padding-right: 64px !important;
    }
    .padding-right-xxl-72px {
        padding-right: 72px !important;
    }
    .padding-right-xxl-80px {
        padding-right: 80px !important;
    }
    .padding-right-xxl-88px {
        padding-right: 88px !important;
    }
    .padding-right-xxl-96px {
        padding-right: 96px !important;
    }
    .padding-right-xxl-100px {
        padding-right: 100px !important;
    }
    .margin-top-xxl-0px {
        margin-top: 0px !important;
    }
    .margin-top-xxl-4px {
        margin-top: 4px !important;
    }
    .margin-top-xxl-8px {
        margin-top: 8px !important;
    }
    .margin-top-xxl-12px {
        margin-top: 12px !important;
    }
    .margin-top-xxl-16px {
        margin-top: 16px !important;
    }
    .margin-top-xxl-20px {
        margin-top: 20px !important;
    }
    .margin-top-xxl-24px {
        margin-top: 24px !important;
    }
    .margin-top-xxl-32px {
        margin-top: 32px !important;
    }
    .margin-top-xxl-40px {
        margin-top: 40px !important;
    }
    .margin-top-xxl-48px {
        margin-top: 48px !important;
    }
    .margin-top-xxl-56px {
        margin-top: 56px !important;
    }
    .margin-top-xxl-64px {
        margin-top: 64px !important;
    }
    .margin-top-xxl-72px {
        margin-top: 72px !important;
    }
    .margin-top-xxl-80px {
        margin-top: 80px !important;
    }
    .margin-top-xxl-88px {
        margin-top: 88px !important;
    }
    .margin-top-xxl-96px {
        margin-top: 96px !important;
    }
    .margin-top-xxl-100px {
        margin-top: 100px !important;
    }
    .margin-bottom-xxl-0px {
        margin-bottom: 0px !important;
    }
    .margin-bottom-xxl-4px {
        margin-bottom: 4px !important;
    }
    .margin-bottom-xxl-8px {
        margin-bottom: 8px !important;
    }
    .margin-bottom-xxl-12px {
        margin-bottom: 12px !important;
    }
    .margin-bottom-xxl-16px {
        margin-bottom: 16px !important;
    }
    .margin-bottom-xxl-20px {
        margin-bottom: 20px !important;
    }
    .margin-bottom-xxl-24px {
        margin-bottom: 24px !important;
    }
    .margin-bottom-xxl-32px {
        margin-bottom: 32px !important;
    }
    .margin-bottom-xxl-40px {
        margin-bottom: 40px !important;
    }
    .margin-bottom-xxl-48px {
        margin-bottom: 48px !important;
    }
    .margin-bottom-xxl-56px {
        margin-bottom: 56px !important;
    }
    .margin-bottom-xxl-64px {
        margin-bottom: 64px !important;
    }
    .margin-bottom-xxl-72px {
        margin-bottom: 72px !important;
    }
    .margin-bottom-xxl-80px {
        margin-bottom: 80px !important;
    }
    .margin-bottom-xxl-88px {
        margin-bottom: 88px !important;
    }
    .margin-bottom-xxl-96px {
        margin-bottom: 96px !important;
    }
    .margin-bottom-xxl-100px {
        margin-bottom: 100px !important;
    }
    .margin-left-xxl-0px {
        margin-left: 0px !important;
    }
    .margin-left-xxl-4px {
        margin-left: 4px !important;
    }
    .margin-left-xxl-8px {
        margin-left: 8px !important;
    }
    .margin-left-xxl-12px {
        margin-left: 12px !important;
    }
    .margin-left-xxl-16px {
        margin-left: 16px !important;
    }
    .margin-left-xxl-20px {
        margin-left: 20px !important;
    }
    .margin-left-xxl-24px {
        margin-left: 24px !important;
    }
    .margin-left-xxl-32px {
        margin-left: 32px !important;
    }
    .margin-left-xxl-40px {
        margin-left: 40px !important;
    }
    .margin-left-xxl-48px {
        margin-left: 48px !important;
    }
    .margin-left-xxl-56px {
        margin-left: 56px !important;
    }
    .margin-left-xxl-64px {
        margin-left: 64px !important;
    }
    .margin-left-xxl-72px {
        margin-left: 72px !important;
    }
    .margin-left-xxl-80px {
        margin-left: 80px !important;
    }
    .margin-left-xxl-88px {
        margin-left: 88px !important;
    }
    .margin-left-xxl-96px {
        margin-left: 96px !important;
    }
    .margin-left-xxl-100px {
        margin-left: 100px !important;
    }
    .margin-right-xxl-0px {
        margin-right: 0px !important;
    }
    .margin-right-xxl-4px {
        margin-right: 4px !important;
    }
    .margin-right-xxl-8px {
        margin-right: 8px !important;
    }
    .margin-right-xxl-12px {
        margin-right: 12px !important;
    }
    .margin-right-xxl-16px {
        margin-right: 16px !important;
    }
    .margin-right-xxl-20px {
        margin-right: 20px !important;
    }
    .margin-right-xxl-24px {
        margin-right: 24px !important;
    }
    .margin-right-xxl-32px {
        margin-right: 32px !important;
    }
    .margin-right-xxl-40px {
        margin-right: 40px !important;
    }
    .margin-right-xxl-48px {
        margin-right: 48px !important;
    }
    .margin-right-xxl-56px {
        margin-right: 56px !important;
    }
    .margin-right-xxl-64px {
        margin-right: 64px !important;
    }
    .margin-right-xxl-72px {
        margin-right: 72px !important;
    }
    .margin-right-xxl-80px {
        margin-right: 80px !important;
    }
    .margin-right-xxl-88px {
        margin-right: 88px !important;
    }
    .margin-right-xxl-96px {
        margin-right: 96px !important;
    }
    .margin-right-xxl-100px {
        margin-right: 100px !important;
    }
    .top-xxl-0px {
        top: 0px !important;
    }
    .top-xxl-4px {
        top: 4px !important;
    }
    .top-xxl-8px {
        top: 8px !important;
    }
    .top-xxl-12px {
        top: 12px !important;
    }
    .top-xxl-16px {
        top: 16px !important;
    }
    .top-xxl-20px {
        top: 20px !important;
    }
    .top-xxl-24px {
        top: 24px !important;
    }
    .top-xxl-32px {
        top: 32px !important;
    }
    .top-xxl-40px {
        top: 40px !important;
    }
    .top-xxl-48px {
        top: 48px !important;
    }
    .top-xxl-56px {
        top: 56px !important;
    }
    .top-xxl-64px {
        top: 64px !important;
    }
    .top-xxl-72px {
        top: 72px !important;
    }
    .top-xxl-80px {
        top: 80px !important;
    }
    .top-xxl-88px {
        top: 88px !important;
    }
    .top-xxl-96px {
        top: 96px !important;
    }
    .top-xxl-100px {
        top: 100px !important;
    }
    .bottom-xxl-0px {
        bottom: 0px !important;
    }
    .bottom-xxl-4px {
        bottom: 4px !important;
    }
    .bottom-xxl-8px {
        bottom: 8px !important;
    }
    .bottom-xxl-12px {
        bottom: 12px !important;
    }
    .bottom-xxl-16px {
        bottom: 16px !important;
    }
    .bottom-xxl-20px {
        bottom: 20px !important;
    }
    .bottom-xxl-24px {
        bottom: 24px !important;
    }
    .bottom-xxl-32px {
        bottom: 32px !important;
    }
    .bottom-xxl-40px {
        bottom: 40px !important;
    }
    .bottom-xxl-48px {
        bottom: 48px !important;
    }
    .bottom-xxl-56px {
        bottom: 56px !important;
    }
    .bottom-xxl-64px {
        bottom: 64px !important;
    }
    .bottom-xxl-72px {
        bottom: 72px !important;
    }
    .bottom-xxl-80px {
        bottom: 80px !important;
    }
    .bottom-xxl-88px {
        bottom: 88px !important;
    }
    .bottom-xxl-96px {
        bottom: 96px !important;
    }
    .bottom-xxl-100px {
        bottom: 100px !important;
    }
    .left-xxl-0px {
        left: 0px !important;
    }
    .left-xxl-4px {
        left: 4px !important;
    }
    .left-xxl-8px {
        left: 8px !important;
    }
    .left-xxl-12px {
        left: 12px !important;
    }
    .left-xxl-16px {
        left: 16px !important;
    }
    .left-xxl-20px {
        left: 20px !important;
    }
    .left-xxl-24px {
        left: 24px !important;
    }
    .left-xxl-32px {
        left: 32px !important;
    }
    .left-xxl-40px {
        left: 40px !important;
    }
    .left-xxl-48px {
        left: 48px !important;
    }
    .left-xxl-56px {
        left: 56px !important;
    }
    .left-xxl-64px {
        left: 64px !important;
    }
    .left-xxl-72px {
        left: 72px !important;
    }
    .left-xxl-80px {
        left: 80px !important;
    }
    .left-xxl-88px {
        left: 88px !important;
    }
    .left-xxl-96px {
        left: 96px !important;
    }
    .left-xxl-100px {
        left: 100px !important;
    }
    .right-xxl-0px {
        right: 0px !important;
    }
    .right-xxl-4px {
        right: 4px !important;
    }
    .right-xxl-8px {
        right: 8px !important;
    }
    .right-xxl-12px {
        right: 12px !important;
    }
    .right-xxl-16px {
        right: 16px !important;
    }
    .right-xxl-20px {
        right: 20px !important;
    }
    .right-xxl-24px {
        right: 24px !important;
    }
    .right-xxl-32px {
        right: 32px !important;
    }
    .right-xxl-40px {
        right: 40px !important;
    }
    .right-xxl-48px {
        right: 48px !important;
    }
    .right-xxl-56px {
        right: 56px !important;
    }
    .right-xxl-64px {
        right: 64px !important;
    }
    .right-xxl-72px {
        right: 72px !important;
    }
    .right-xxl-80px {
        right: 80px !important;
    }
    .right-xxl-88px {
        right: 88px !important;
    }
    .right-xxl-96px {
        right: 96px !important;
    }
    .right-xxl-100px {
        right: 100px !important;
    }
    .gap-xxl-0px {
        gap: 0px !important;
    }
    .gap-xxl-4px {
        gap: 4px !important;
    }
    .gap-xxl-8px {
        gap: 8px !important;
    }
    .gap-xxl-12px {
        gap: 12px !important;
    }
    .gap-xxl-16px {
        gap: 16px !important;
    }
    .gap-xxl-20px {
        gap: 20px !important;
    }
    .gap-xxl-24px {
        gap: 24px !important;
    }
    .gap-xxl-32px {
        gap: 32px !important;
    }
    .gap-xxl-40px {
        gap: 40px !important;
    }
    .gap-xxl-48px {
        gap: 48px !important;
    }
    .gap-xxl-56px {
        gap: 56px !important;
    }
    .gap-xxl-64px {
        gap: 64px !important;
    }
    .gap-xxl-72px {
        gap: 72px !important;
    }
    .gap-xxl-80px {
        gap: 80px !important;
    }
    .gap-xxl-88px {
        gap: 88px !important;
    }
    .gap-xxl-96px {
        gap: 96px !important;
    }
    .gap-xxl-100px {
        gap: 100px !important;
    }
    .row-gap-xxl-0px {
        row-gap: 0px !important;
    }
    .row-gap-xxl-4px {
        row-gap: 4px !important;
    }
    .row-gap-xxl-8px {
        row-gap: 8px !important;
    }
    .row-gap-xxl-12px {
        row-gap: 12px !important;
    }
    .row-gap-xxl-16px {
        row-gap: 16px !important;
    }
    .row-gap-xxl-20px {
        row-gap: 20px !important;
    }
    .row-gap-xxl-24px {
        row-gap: 24px !important;
    }
    .row-gap-xxl-32px {
        row-gap: 32px !important;
    }
    .row-gap-xxl-40px {
        row-gap: 40px !important;
    }
    .row-gap-xxl-48px {
        row-gap: 48px !important;
    }
    .row-gap-xxl-56px {
        row-gap: 56px !important;
    }
    .row-gap-xxl-64px {
        row-gap: 64px !important;
    }
    .row-gap-xxl-72px {
        row-gap: 72px !important;
    }
    .row-gap-xxl-80px {
        row-gap: 80px !important;
    }
    .row-gap-xxl-88px {
        row-gap: 88px !important;
    }
    .row-gap-xxl-96px {
        row-gap: 96px !important;
    }
    .row-gap-xxl-100px {
        row-gap: 100px !important;
    }
    .column-gap-xxl-0px {
        column-gap: 0px !important;
    }
    .column-gap-xxl-4px {
        column-gap: 4px !important;
    }
    .column-gap-xxl-8px {
        column-gap: 8px !important;
    }
    .column-gap-xxl-12px {
        column-gap: 12px !important;
    }
    .column-gap-xxl-16px {
        column-gap: 16px !important;
    }
    .column-gap-xxl-20px {
        column-gap: 20px !important;
    }
    .column-gap-xxl-24px {
        column-gap: 24px !important;
    }
    .column-gap-xxl-32px {
        column-gap: 32px !important;
    }
    .column-gap-xxl-40px {
        column-gap: 40px !important;
    }
    .column-gap-xxl-48px {
        column-gap: 48px !important;
    }
    .column-gap-xxl-56px {
        column-gap: 56px !important;
    }
    .column-gap-xxl-64px {
        column-gap: 64px !important;
    }
    .column-gap-xxl-72px {
        column-gap: 72px !important;
    }
    .column-gap-xxl-80px {
        column-gap: 80px !important;
    }
    .column-gap-xxl-88px {
        column-gap: 88px !important;
    }
    .column-gap-xxl-96px {
        column-gap: 96px !important;
    }
    .column-gap-xxl-100px {
        column-gap: 100px !important;
    }
}
body,
button,
input,
select,
textarea {
    font-family: "Poppins", sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.ak-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: #398239;
    text-decoration: none;
    padding: 16px 24px;
    transition: all 0.25s ease;
}
.ak-btn__text {
    color: #fff;
    font-family: "SF Pro Display", "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.ak-btn:hover {
    background: #2f6f2f;
    transform: translateY(-1px);
}
.ak-btn:active {
    transform: scale(0.98);
}
@media (max-width: 768px) {
    .ak-btn {
        padding: 12px 16px !important;
    }
    .ak-btn .ak-btn__text {
        font-size: 14px;
        line-height: 20px;
    }
}

.ak-header {
    position: relative;
    z-index: 1000;
    background-color: #fff;
}
.ak-header__top {
    padding: 16px 0;
    border-bottom: 1px solid #d9d9dc;
}
.ak-header__bottom {
    padding: 8px 0;
}
.ak-header__top-inner, .ak-header__bottom-inner, .ak-header__mobile-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.ak-header__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex-shrink: 0;
}
.ak-header__logo, .ak-header__mobile-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}
.ak-header__logo img, .ak-header__mobile-logo img {
    display: block;
    width: auto;
    height: 76px;
    object-fit: contain;
}
.ak-header__brand-content {
    min-width: 0;
}
.ak-header__title {
    margin: 0 0 4px;
    color: #010014;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.ak-header__subtitle {
    margin: 0;
    color: #010014;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.ak-header__top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}
.ak-header__quick-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ak-header__quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #010014;
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}
.ak-header__quick-link:hover {
    color: #076307;
}
.ak-header__quick-link--button::after {
    display: none !important;
}
.ak-header__quick-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #8d8c95;
    font-size: 18px;
}
.ak-header__quick-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.ak-header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ak-header__socials a {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5a5966;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.25s ease;
}
.ak-header__socials a:hover {
    color: #076307;
    transform: translateY(-1px);
}
.ak-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.ak-header__action-btn, .ak-header__lang-btn, .ak-header__mobile-btn, .ak-header__mobile-lang {
    border: 0;
    background-color: #f0f0f1;
    border-radius: 12px;
    color: #010014;
    transition: all 0.25s ease;
}
.ak-header__action-btn:hover, .ak-header__lang-btn:hover, .ak-header__mobile-btn:hover, .ak-header__mobile-lang:hover {
    background-color: #e7e7e9;
}
.ak-header__action-btn {
    width: 46px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: none;
}
.ak-header__lang-btn {
    min-width: 76px;
    height: 48px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    box-shadow: none;
}
.ak-header__lang-btn::after {
    margin-left: 0;
    border: 0;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 6L8 11L13 6' stroke='%23010014' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ak-header__mobile {
    padding: 14px 0;
}
.ak-header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.ak-header__mobile-btn {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: none;
}
.ak-header__mobile-lang {
    min-width: 78px;
    height: 52px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
}
.ak-header__mobile-lang::after {
    margin-left: 0;
    border: 0;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 6L8 11L13 6' stroke='%23010014' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ak-dropdown .dropdown-menu {
    border: 1px solid rgba(1, 0, 20, 0.06);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 10px;
    margin-top: 12px;
}

.ak-contact-dropdown {
    position: relative;
}
.ak-contact-dropdown__menu {
    min-width: 290px;
    padding: 16px !important;
    border: 0 !important;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15) !important;
    border-radius: 16px !important;
}

.ak-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 0;
    color: #010014;
}
.ak-contact-card + .ak-contact-card {
    margin-top: 12px;
}
.ak-contact-card:hover {
    color: #010014;
}
.ak-contact-card__icon {
    width: 46px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 24px;
}
.ak-contact-card__icon--whatsapp {
    background-color: rgba(103, 193, 94, 0.14);
    color: #67c15e;
}
.ak-contact-card__icon--hotline {
    background-color: #e6efe6;
    color: #076307;
}
.ak-contact-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ak-contact-card__content small {
    display: block;
    color: #010014;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.ak-contact-card__content strong {
    display: block;
    color: #010014;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.4px;
}

.ak-navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.ak-navbar__nav .nav-item {
    position: relative;
}

.ak-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 10px 12px !important;
    color: #010014 !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
}
.ak-nav-link:hover {
    color: #076307 !important;
}
.ak-nav-link.active {
    font-weight: 700;
}
.ak-nav-link.active::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 2px;
    background-color: #076307;
    border-radius: 999px;
}

.ak-nav-dropdown {
    min-width: 220px;
    padding: 10px;
}
.ak-nav-dropdown .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    color: #010014;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
}
.ak-nav-dropdown .dropdown-item:hover, .ak-nav-dropdown .dropdown-item:focus {
    background-color: #f7f7f8;
    color: #076307;
}

.ak-lang-dropdown {
    min-width: 90px;
    padding: 8px;
}
.ak-lang-dropdown .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #010014;
}
.ak-lang-dropdown .dropdown-item:hover, .ak-lang-dropdown .dropdown-item:focus, .ak-lang-dropdown .dropdown-item.active {
    background-color: #f7f7f8;
    color: #076307;
}

.ak-offcanvas {
    width: 360px !important;
}
.ak-offcanvas__header {
    padding: 20px 20px 12px;
    border-bottom: 1px solid #d9d9dc;
}
.ak-offcanvas__body {
    padding: 20px;
}

/* Mobile final design */
.ak-mobile-drawer {
    width: 100% !important;
    max-width: 450px;
    border: 0;
    background: #ffffff;
}
.ak-mobile-drawer .offcanvas-header,
.ak-mobile-drawer .offcanvas-body {
    padding: 0;
}
.ak-mobile-drawer__header {
    padding: 28px 28px 18px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ak-mobile-drawer__title {
    margin: 0;
    color: #010014;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}
.ak-mobile-drawer__top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ak-mobile-drawer__icon-btn {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 16px;
    background: #f0f0f1;
    color: #010014;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    transition: all 0.25s ease;
    box-shadow: none;
}
.ak-mobile-drawer__icon-btn:hover {
    background: #e7e7e9;
    color: #010014;
}
.ak-mobile-drawer__body {
    padding: 8px 28px 32px !important;
}

.ak-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ak-mobile-nav__item {
    text-align: center;
}
.ak-mobile-nav__item--active .ak-mobile-nav__button,
.ak-mobile-nav__item--active .ak-mobile-nav__plain-link {
    font-weight: 700;
}
.ak-mobile-nav__accordion-item {
    border: 0;
    background: transparent;
}
.ak-mobile-nav__button {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 0 18px !important;
    color: #010014 !important;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.25;
    justify-content: center;
    text-align: center;
}
.ak-mobile-nav__button:not(.collapsed) {
    color: #010014 !important;
    font-weight: 700;
}
.ak-mobile-nav__button:focus {
    box-shadow: none !important;
}
.ak-mobile-nav__button::after {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    background-size: 18px;
    background-position: center;
}
.ak-mobile-nav__item:has(.accordion-collapse.show), .ak-mobile-nav__item--active {
    border-bottom: 3px solid #076307;
    padding-bottom: 0;
}
.ak-mobile-nav__plain-link {
    display: inline-block;
    padding: 0 0 18px;
    color: #010014;
    text-decoration: none;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.25;
    transition: all 0.25s ease;
}
.ak-mobile-nav__plain-link:hover {
    color: #076307;
}
.ak-mobile-nav__submenu {
    margin-top: 6px;
    margin-bottom: 8px;
    padding: 26px 20px !important;
    background: #f0f0f1;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.ak-mobile-nav__submenu-title {
    color: #010014;
    text-decoration: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}
.ak-mobile-nav__submenu a {
    color: #010014;
    text-decoration: none;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.35;
    transition: all 0.25s ease;
}
.ak-mobile-nav__submenu a:hover {
    color: #076307;
}
.ak-mobile-nav .accordion-collapse {
    border: 0;
}
.ak-mobile-nav .accordion-body {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1399.98px) {
    .ak-header__title {
        font-size: 22px;
        line-height: 30px;
    }
    .ak-header__subtitle {
        font-size: 15px;
        line-height: 22px;
    }
    .ak-header__top-right {
        gap: 24px;
    }
    .ak-nav-link {
        font-size: 18px;
    }
}
@media (max-width: 1199.98px) {
    .ak-header__quick-links {
        gap: 18px;
    }
    .ak-header__top-right {
        gap: 18px;
    }
    .ak-nav-link {
        font-size: 17px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
@media (max-width: 991.98px) {
    .ak-header__mobile-logo img {
        height: 68px;
    }
    .ak-header__mobile-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
        border-radius: 14px;
    }
    .ak-header__mobile-lang {
        min-width: 72px;
        height: 48px;
        font-size: 16px;
        border-radius: 14px;
    }
}
@media (max-width: 575.98px) {
    .ak-header__mobile {
        padding: 0 16px;
    }
    .ak-header__mobile-inner {
        gap: 10px;
    }
    .ak-header__mobile-logo img {
        height: 60px;
    }
    .ak-header__mobile-actions {
        gap: 6px;
    }
    .ak-header__mobile-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 12px;
    }
    .ak-header__mobile-lang {
        min-width: 64px;
        height: 44px;
        padding: 0 12px;
        font-size: 15px;
        border-radius: 12px;
    }
    .ak-mobile-drawer {
        max-width: 100%;
    }
    .ak-mobile-drawer__header {
        padding: 22px 20px 16px;
    }
    .ak-mobile-drawer__title {
        font-size: 22px;
    }
    .ak-mobile-drawer__icon-btn {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 22px;
    }
    .ak-mobile-drawer__body {
        padding: 8px 20px 28px;
    }
    .ak-mobile-nav {
        gap: 16px;
    }
    .ak-mobile-nav__button, .ak-mobile-nav__plain-link {
        font-size: 22px;
        padding-bottom: 16px !important;
    }
    .ak-mobile-nav__submenu {
        border-radius: 22px;
        padding: 22px 16px !important;
        gap: 14px;
    }
    .ak-mobile-nav__submenu-title {
        font-size: 18px;
    }
    .ak-mobile-nav__submenu a {
        font-size: 17px;
    }
    .ak-offcanvas {
        width: 100% !important;
    }
}
.ak-nav-item--mega {
    position: relative;
}

.ak-nav-dropdown {
    min-width: 220px;
    padding: 10px;
}
.ak-nav-dropdown .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    color: #010014;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
}
.ak-nav-dropdown .dropdown-item:hover, .ak-nav-dropdown .dropdown-item:focus {
    background-color: #f7f7f8;
    color: #076307;
}
.ak-nav-dropdown--custom {
    min-width: 320px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ak-desktop-submenu {
    width: 100%;
    min-width: 320px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 54px 55px -10px rgba(0, 0, 0, 0.19);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.ak-desktop-submenu__title, .ak-desktop-submenu__link {
    width: 100%;
    color: #010014;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
}
.ak-desktop-submenu__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}
.ak-desktop-submenu__title:hover {
    color: #076307;
}
.ak-desktop-submenu__link {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.ak-desktop-submenu__link:hover {
    color: #076307;
    transform: translateX(2px);
}

.ak-nav-item {
    position: relative;
}
.ak-nav-item--mega {
    position: relative;
}
.ak-nav-item--mega .ak-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.25s ease;
}
.ak-nav-item--mega:hover .ak-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ak-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ak-header__quick-link:focus, .ak-header__quick-link:focus-visible, .ak-header__quick-link:active {
    outline: none !important;
    box-shadow: none !important;
}

.ak-hero {
    padding: 24px 0;
}
.ak-hero__wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.ak-hero__slider {
    border-radius: 24px;
    overflow: hidden;
}
.ak-hero__ui-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}
.ak-hero__ui-inner {
    position: relative;
    min-height: 553px;
    height: 100%;
}
.ak-hero__content-fixed {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    display: flex;
    align-items: stretch;
}
.ak-hero__content-fixed .ak-hero-slide__content {
    max-width: 700px;
    padding: 94px 0;
    pointer-events: auto;
}
.ak-hero__pagination {
    position: absolute;
    top: 54px !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 7;
    pointer-events: auto;
}
.ak-hero__pagination .swiper-pagination-bullet {
    width: 33.25px;
    height: 7px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}
.ak-hero__pagination .swiper-pagination-bullet-active {
    background: #fff;
}
.ak-hero__fixed-cards {
    position: absolute;
    top: 54px;
    right: 0;
    width: 368px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    z-index: 7;
}
.ak-hero__fixed-cards .ak-hero-card {
    pointer-events: auto;
}

.ak-hero-slide {
    position: relative;
    min-height: 553px;
}
.ak-hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ak-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 100%);
}
.ak-hero-slide__content {
    max-width: 700px;
}
.ak-hero-slide__body {
    max-width: 607px;
}
.ak-hero-slide__body h1 {
    margin: 0 0 40px;
    color: #fff;
    font-size: 34px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.4px;
}
.ak-hero-slide__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ak-btn {
    padding: 16px 24px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}
.ak-btn--primary {
    background: #fff;
    color: #010014;
}
.ak-btn--primary:hover {
    color: #010014;
    background: #f4f4f4;
}
.ak-btn--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.ak-btn--secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.28);
}

.ak-hero-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
}
.ak-hero-card:nth-child(1) {
    width: 368px;
    margin-left: 58px;
}
.ak-hero-card:nth-child(2) {
    width: 217px;
    margin-left: 0;
}
.ak-hero-card:nth-child(3) {
    width: 368px;
    margin-left: 89px;
}
.ak-hero-card__icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: #076307;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}
.ak-hero-card__icon img {
    width: 32px;
    height: 32px;
}
.ak-hero-card__content {
    flex: 1 1 auto;
    min-width: 0;
}
.ak-hero-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.ak-hero-card p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}

@media (max-width: 1399.98px) {
    .ak-hero__content-fixed .ak-hero-slide__content {
        max-width: 620px;
    }
}
@media (max-width: 1199.98px) {
    .ak-hero__ui-inner {
        min-height: 760px;
    }
    .ak-hero__content-fixed .ak-hero-slide__content {
        max-width: 560px;
        padding: 96px 0 260px;
    }
    .ak-hero__pagination {
        top: 40px !important;
    }
    .ak-hero__fixed-cards {
        top: auto;
        right: 0;
        left: 0;
        bottom: 32px;
        width: 100%;
        gap: 8px;
    }
    .ak-hero-slide {
        min-height: 760px;
    }
    .ak-hero-slide__body h1 {
        font-size: 32px;
        line-height: 38px;
    }
    .ak-hero-card {
        width: 100% !important;
        margin-left: 0 !important;
    }
}
@media (max-width: 991.98px) {
    .ak-hero__ui-inner {
        min-height: 700px;
    }
    .ak-hero__content-fixed .ak-hero-slide__content {
        max-width: 100%;
        padding: 84px 0 240px;
    }
    .ak-hero__fixed-cards {
        bottom: 24px;
    }
    .ak-hero-slide {
        min-height: 700px;
    }
    .ak-hero-slide__body {
        max-width: 520px;
    }
}
@media (max-width: 767.98px) {
    .ak-hero__ui-inner {
        min-height: 640px;
    }
    .ak-hero__content-fixed .ak-hero-slide__content {
        max-width: 100%;
        padding: 56px 0 220px;
    }
    .ak-hero__pagination {
        top: 24px !important;
        left: 0 !important;
        gap: 6px;
    }
    .ak-hero__pagination .swiper-pagination-bullet {
        width: 24px;
        height: 6px;
    }
    .ak-hero__fixed-cards {
        bottom: 16px;
        gap: 8px;
    }
    .ak-hero-slide {
        min-height: 640px;
    }
    .ak-hero-slide__body {
        max-width: 294px;
    }
    .ak-hero-slide__body h1 {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 32px;
    }
    .ak-hero-slide__buttons {
        gap: 8px;
    }
    .ak-btn {
        padding: 14px 18px;
        border-radius: 14px;
        font-size: 14px;
        line-height: 20px;
    }
    .ak-hero-card {
        padding: 12px;
        gap: 8px;
        border-radius: 16px;
    }
    .ak-hero-card__icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 18px;
    }
    .ak-hero-card h3 {
        margin-bottom: 4px;
        font-size: 12px;
        line-height: 16px;
    }
    .ak-hero-card p {
        font-size: 8px;
        line-height: 12px;
    }
}
.vacancy-section {
    padding-top: 32px;
    padding-bottom: 100px;
}

.vacancy-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.15);
    height: 100%;
    transition: 0.3s ease;
}
.vacancy-card--link {
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.vacancy-card--link:hover {
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}
.vacancy-card__icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f1;
    border-radius: 15px;
    color: #010014;
}
.vacancy-card__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}
.vacancy-card__top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vacancy-card__title {
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-card__date {
    color: rgba(1, 0, 20, 0.9);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.vacancy-card__desc {
    margin-top: 8px;
    color: #010014;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.vacancy-card__meta {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.vacancy-badge {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 16px;
    background: #f0f0f1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vacancy-badge__value {
    color: #010014;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.vacancy-badge__label {
    color: rgba(1, 0, 20, 0.9);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.vacancy-badge--salary {
    background: #e6efe6;
}
.vacancy-badge--salary .vacancy-badge__value {
    color: #076307;
}
.vacancy-badge--mode {
    background: #e6e6f5;
}
.vacancy-badge--mode .vacancy-badge__value,
.vacancy-badge--mode .vacancy-badge__label {
    color: #050096;
}
.vacancy-badge--branch {
    background: #f5eee6;
}
.vacancy-badge--branch .vacancy-badge__value,
.vacancy-badge--branch .vacancy-badge__label {
    color: #965500;
}

@media (max-width: 991.98px) {
    .vacancy-section {
        padding-top: 0;
        padding-bottom: 100px;
    }
    .vacancy-card {
        padding: 24px;
    }
    .vacancy-card__date {
        font-size: 12px;
        line-height: 16px;
    }
    .vacancy-card__meta {
        flex-wrap: nowrap;
    }
    .vacancy-badge {
        padding: 8px 12px;
    }
}
.vacancy-modal .modal-dialog {
    max-width: 648px;
}
.vacancy-modal__content {
    position: relative;
    padding: 40px;
    background: #fff;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.11);
}
.vacancy-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #010014;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.vacancy-modal__header {
    margin-bottom: 32px;
}
.vacancy-modal__title {
    margin: 0;
    color: #010014;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.vacancy-modal__form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.vacancy-modal__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vacancy-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vacancy-field__label {
    margin: 0;
    color: #010014;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.vacancy-field__control {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 16px;
    background: #fcfcfd;
    border: 1px solid #c0bfc4;
    border-radius: 4px;
}
.vacancy-field__input {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #010014;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-field__input::placeholder {
    color: #5a5966;
    opacity: 1;
}
.vacancy-field__control--file {
    overflow: hidden;
    cursor: pointer;
}
.vacancy-field__file {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.vacancy-field__placeholder {
    color: #5a5966;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}

.vacancy-btn {
    padding: 16px 24px;
    border: 0;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}
.vacancy-btn--primary {
    background: #398239;
    color: #fff;
}
.vacancy-btn--secondary {
    background: #f0f0f1;
    color: #010014;
    border-radius: 15px;
}

@media (max-width: 767.98px) {
    .vacancy-modal .modal-dialog {
        margin: 16px;
    }
    .vacancy-modal__content {
        padding: 24px;
        border-radius: 20px;
    }
    .vacancy-modal__header {
        margin-bottom: 24px;
        padding-right: 32px;
    }
    .vacancy-modal__title {
        font-size: 20px;
        line-height: 28px;
    }
    .vacancy-modal__form {
        gap: 24px;
    }
    .vacancy-modal__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .vacancy-btn {
        width: 100%;
    }
}
.vacancy-modal .modal-dialog {
    max-width: 648px;
}
.vacancy-modal__content {
    position: relative;
    padding: 40px;
    background: #fff;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.11);
}
.vacancy-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #010014;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}
.vacancy-modal__close:hover {
    opacity: 0.7;
}
.vacancy-modal__header {
    margin-bottom: 32px;
}
.vacancy-modal__title {
    margin: 0;
    color: #010014;
    font-size: 24px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.vacancy-modal__form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.vacancy-modal__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vacancy-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vacancy-field__label {
    margin: 0;
    color: #010014;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.vacancy-field__control {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 44px 14px 16px;
    background: #fcfcfd;
    border: 1px solid #c0bfc4;
    border-radius: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vacancy-field__control:focus-within {
    border-color: #398239;
    box-shadow: 0 0 0 3px rgba(57, 130, 57, 0.08);
}
.vacancy-field__control.is-filled .vacancy-field__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.vacancy-field__input {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #010014;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-field__input::placeholder {
    color: #5a5966;
    opacity: 1;
}
.vacancy-field__clear {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #5a5966;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 3;
}
.vacancy-field__clear:hover {
    color: #010014;
}
.vacancy-field__control--file {
    cursor: pointer;
    overflow: hidden;
}
.vacancy-field__control--file .vacancy-field__clear {
    right: 16px;
}
.vacancy-field__control--file.has-file .vacancy-field__file {
    pointer-events: none;
}
.vacancy-field__control--file.has-file .vacancy-field__file-placeholder {
    opacity: 0;
    visibility: hidden;
}
.vacancy-field__control--file.has-file .vacancy-field__file-name {
    opacity: 1;
    visibility: visible;
}
.vacancy-field__control--file.has-file .vacancy-field__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.vacancy-field__file {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.vacancy-field__file-placeholder, .vacancy-field__file-name {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-field__file-placeholder {
    color: #5a5966;
    opacity: 1;
    visibility: visible;
    transition: 0.2s ease;
}
.vacancy-field__file-name {
    position: absolute;
    left: 16px;
    right: 44px;
    color: #010014;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 2;
}

.vacancy-btn {
    padding: 16px 24px;
    border: 0;
    border-radius: 16px;
    font-size: 16px;
    font-family: "SF Pro Display", Poppins, sans-serif;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
}
.vacancy-btn--primary {
    background: #398239;
    color: #fff;
}
.vacancy-btn--primary:hover {
    background: #2f6f2f;
}
.vacancy-btn--secondary {
    background: #f0f0f1;
    color: #010014;
    border-radius: 15px;
}
.vacancy-btn--secondary:hover {
    background: #e4e4e6;
}

@media (max-width: 767.98px) {
    .vacancy-modal .modal-dialog {
        margin: 16px;
    }
    .vacancy-modal__content {
        padding: 24px;
        border-radius: 20px;
    }
    .vacancy-modal__header {
        margin-bottom: 24px;
        padding-right: 32px;
    }
    .vacancy-modal__title {
        font-size: 20px;
        line-height: 28px;
    }
    .vacancy-modal__form {
        gap: 24px;
    }
    .vacancy-modal__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .vacancy-btn {
        width: 100%;
    }
}
.vacancy-detail {
    padding: 56px 0 100px;
}
.vacancy-detail__inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.vacancy-detail__hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vacancy-detail__hero-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vacancy-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-detail__breadcrumb a {
    color: inherit;
    text-decoration: none;
}
.vacancy-detail__breadcrumb strong {
    font-weight: 700;
}
.vacancy-detail__title {
    margin: 0;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.4px;
}
.vacancy-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.vacancy-detail__content {
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.vacancy-detail__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vacancy-detail__heading {
    margin: 0;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.vacancy-detail__lead {
    margin: 0;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-detail__text {
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-detail__text p {
    margin: 0 0 16px;
}
.vacancy-detail__text p:last-child {
    margin-bottom: 0;
}
.vacancy-detail__apply {
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.11);
}
.vacancy-detail__apply-title {
    margin: 0 0 24px;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}

.vacancy-badge {
    padding: 8px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vacancy-badge__value {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.vacancy-badge__label {
    opacity: 0.9;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.vacancy-badge--salary {
    background: #e6efe6;
}
.vacancy-badge--salary .vacancy-badge__value {
    color: #076307;
}
.vacancy-badge--salary .vacancy-badge__label {
    color: #010014;
}
.vacancy-badge--mode {
    background: #e6e6f5;
}
.vacancy-badge--mode .vacancy-badge__value,
.vacancy-badge--mode .vacancy-badge__label {
    color: #050096;
}
.vacancy-badge--branch {
    background: #f5eee6;
}
.vacancy-badge--branch .vacancy-badge__value,
.vacancy-badge--branch .vacancy-badge__label {
    color: #965500;
}

@media (max-width: 991.98px) {
    .vacancy-detail {
        padding: 24px 0 100px;
    }
    .vacancy-detail__inner {
        gap: 32px;
    }
    .vacancy-detail__hero {
        gap: 16px;
    }
    .vacancy-detail__hero-top {
        gap: 8px;
    }
    .vacancy-detail__breadcrumb {
        font-size: 12px;
        line-height: 16px;
    }
    .vacancy-detail__title {
        font-size: 20px;
        line-height: 24px;
    }
    .vacancy-detail__meta {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .vacancy-detail__meta::-webkit-scrollbar {
        height: 4px;
    }
    .vacancy-detail__heading {
        font-size: 24px;
        line-height: 32px;
    }
    .vacancy-detail__lead {
        font-size: 14px;
        line-height: 24px;
    }
    .vacancy-detail__text {
        font-size: 16px;
        line-height: 24px;
    }
    .vacancy-badge__value {
        font-size: 12px;
        line-height: 16px;
    }
    .vacancy-badge__label {
        font-size: 12px;
        line-height: 16px;
    }
}
.vacancy-apply-card {
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.11);
}
.vacancy-apply-card__title {
    margin: 0 0 24px;
    color: #010014;
    font-size: 24px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.vacancy-apply-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.vacancy-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vacancy-field__label {
    margin: 0;
    color: #010014;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.vacancy-field__control {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 44px 14px 16px;
    background: #fcfcfd;
    border: 1px solid #c0bfc4;
    border-radius: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vacancy-field__control:focus-within {
    border-color: #398239;
    box-shadow: 0 0 0 3px rgba(57, 130, 57, 0.08);
}
.vacancy-field__control.is-filled .vacancy-field__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.vacancy-field__input {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #010014;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-field__input::placeholder {
    color: #5a5966;
    opacity: 1;
}
.vacancy-field__clear {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #5a5966;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 3;
}
.vacancy-field__clear:hover {
    color: #010014;
}
.vacancy-field__control--file {
    cursor: pointer;
    overflow: hidden;
}
.vacancy-field__control--file.has-file .vacancy-field__file {
    pointer-events: none;
}
.vacancy-field__control--file.has-file .vacancy-field__file-placeholder {
    opacity: 0;
    visibility: hidden;
}
.vacancy-field__control--file.has-file .vacancy-field__file-name {
    opacity: 1;
    visibility: visible;
}
.vacancy-field__control--file.has-file .vacancy-field__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.vacancy-field__file {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.vacancy-field__file-placeholder, .vacancy-field__file-name {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.vacancy-field__file-placeholder {
    color: #5a5966;
    opacity: 1;
    visibility: visible;
    transition: 0.2s ease;
}
.vacancy-field__file-name {
    position: absolute;
    left: 16px;
    right: 44px;
    color: #010014;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 2;
}

.vacancy-btn {
    padding: 16px 24px;
    border: 0;
    border-radius: 16px;
    font-size: 16px;
    font-family: "SF Pro Display", Poppins, sans-serif;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
}
.vacancy-btn--primary {
    background: #398239;
    color: #fff;
}
.vacancy-btn--primary:hover {
    background: #2f6f2f;
}
.vacancy-btn--secondary {
    background: #f0f0f1;
    color: #010014;
    border-radius: 15px;
}
.vacancy-btn--secondary:hover {
    background: #e4e4e6;
}

@media (max-width: 767.98px) {
    .vacancy-apply-card {
        padding: 32px;
    }
    .vacancy-apply-card__title {
        margin-bottom: 24px;
    }
    .vacancy-apply-card__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .vacancy-btn {
        width: 100%;
    }
}
.vacancy-detail .vacancy-badge {
    flex: unset;
}

.aq-blog-detail {
    padding-top: 56px;
    padding-bottom: 100px;
    overflow: hidden;
}
.aq-blog-detail .container {
    max-width: 1320px;
}
.aq-blog-detail__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.aq-blog-detail__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.aq-blog-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: #010014;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.aq-blog-detail__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.aq-blog-detail__breadcrumb a:hover {
    opacity: 0.7;
}
.aq-blog-detail__breadcrumb-current {
    font-weight: 700;
}
.aq-blog-detail__title {
    margin: 0;
    color: #010014;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0.4px;
}
.aq-blog-detail__slider-wrap {
    position: relative;
    overflow: hidden;
    padding-inline: 72px;
}
.aq-blog-detail__slider {
    overflow: visible;
}
.aq-blog-detail__slide {
    height: 415px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0.7;
    transition: transform 0.45s ease, opacity 0.45s ease;
}
.aq-blog-detail__slide-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.swiper-slide-active .aq-blog-detail__slide {
    opacity: 1;
}
.aq-blog-detail__nav {
    width: 44px;
    height: 44px;
    border: 1px solid #d9d9dc;
    border-radius: 999px;
    background: #fff;
    color: #010014;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.aq-blog-detail__nav:hover {
    background-color: #010014;
    color: #fff;
    border-color: #010014;
}
.aq-blog-detail__nav--prev {
    left: 8px;
}
.aq-blog-detail__nav--next {
    right: 8px;
}
.aq-blog-detail__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.aq-blog-detail__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.aq-blog-detail__subtitle {
    margin: 0;
    color: #010014;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.aq-blog-detail__lead {
    margin: 0;
    color: #010014;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.aq-blog-detail__heading {
    margin: 0;
    color: #010014;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.aq-blog-detail__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.aq-blog-detail__text p {
    margin: 0;
    color: #010014;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.aq-blog-detail__share {
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.aq-blog-detail__share:hover {
    opacity: 0.7;
}
.aq-blog-detail__share-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@media (max-width: 1199.98px) {
    .aq-blog-detail {
        padding-top: 40px;
        padding-bottom: 80px;
    }
    .aq-blog-detail__title {
        font-size: 30px;
        line-height: 1.25;
    }
    .aq-blog-detail__slide {
        height: 360px;
    }
    .aq-blog-detail__slider-wrap {
        padding-inline: 56px;
    }
}
@media (max-width: 991.98px) {
    .aq-blog-detail__breadcrumb {
        font-size: 16px;
        line-height: 22px;
    }
    .aq-blog-detail__title {
        font-size: 26px;
        line-height: 1.25;
    }
    .aq-blog-detail__slide {
        height: 280px;
        border-radius: 14px;
        transform: scale(0.9);
    }
    .aq-blog-detail__slider-wrap {
        padding-inline: 44px;
    }
    .aq-blog-detail__nav {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 767.98px) {
    .aq-blog-detail {
        padding-top: 16px;
        padding-bottom: 100px;
    }
    .aq-blog-detail .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .aq-blog-detail__inner {
        gap: 32px;
    }
    .aq-blog-detail__top {
        gap: 12px;
    }
    .aq-blog-detail__breadcrumb {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.3px;
    }
    .aq-blog-detail__title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0.4px;
    }
    .aq-blog-detail__slider-wrap {
        padding-inline: 0;
    }
    .aq-blog-detail__slide {
        height: 271px;
        border-radius: 16px;
        transform: scale(0.84);
        opacity: 0.78;
    }
    .swiper-slide-active .aq-blog-detail__slide {
        transform: scale(1);
        opacity: 1;
    }
    .aq-blog-detail__nav {
        width: 38px;
        height: 38px;
        top: auto;
        bottom: 12px;
        transform: none;
    }
    .aq-blog-detail__nav--prev {
        left: 12px;
    }
    .aq-blog-detail__nav--next {
        right: 12px;
    }
    .aq-blog-detail__content {
        gap: 24px;
    }
    .aq-blog-detail__subtitle {
        font-size: 24px;
        line-height: 32px;
    }
    .aq-blog-detail__lead {
        font-size: 14px;
        line-height: 24px;
    }
    .aq-blog-detail__heading {
        font-size: 20px;
        line-height: 24px;
    }
    .aq-blog-detail__text p {
        font-size: 16px;
        line-height: 24px;
    }
}
@media (max-width: 480px) {
    .aq-blog-detail__slide {
        height: 220px;
    }
}

.ak-links-slider-section {
    padding: 32px 0;
    position: relative;
}

.ak-links-slider-wrap {
    position: relative;
    padding: 0 56px;
}

.ak-links-slider {
    overflow: hidden;
}

.ak-links-slider .swiper-slide {
    height: auto;
}

.ak-link-card {
    min-height: 204px;
    height: 100%;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 54px 34px -20px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ak-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 30px 40px -18px rgba(0, 0, 0, 0.12);
}

.ak-link-card__image {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.ak-link-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ak-link-card__title {
    margin: 0;
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}

.ak-link-card__url {
    display: block;
    color: #272637;
    opacity: 0.8;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
    text-decoration: underline;
    word-break: break-word;
}

.ak-link-card__icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #ECF6F3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #398239;
    font-size: 22px;
}

.ak-links-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #010014;
    transition: 0.3s ease;
}

.ak-links-slider-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

.ak-links-slider-btn-prev {
    left: 0;
}

.ak-links-slider-btn-next {
    right: 0;
}

.ak-links-slider-btn.swiper-button-disabled {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .ak-links-slider-wrap {
        padding: 0;
    }
    .ak-links-slider-btn {
        display: none;
    }
    .ak-link-card {
        min-height: 204px;
        padding: 24px;
    }
}
@media (max-width: 575.98px) {
    .ak-links-slider-section {
        padding: 32px 0;
    }
    .ak-link-card {
        min-height: 200px;
        border-radius: 16px;
    }
    .ak-link-card__title {
        font-size: 16px;
        line-height: 24px;
    }
    .ak-link-card__url {
        font-size: 14px;
        line-height: 20px;
    }
}
.ak-links-slider-section {
    position: relative;
    padding: 32px 0;
    z-index: 1;
}

.ak-links-slider-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #f0f0f1;
    z-index: -1;
}

.service-network {
    padding: 40px 0 100px;
}
.service-network__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding-bottom: 32px;
}
.service-network__head-content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-network__breadcrumb {
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.service-network__breadcrumb strong {
    font-weight: 700;
}
.service-network__title {
    margin: 0;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.4px;
}
.service-network__select-wrap {
    width: 368px;
    flex-shrink: 0;
}
.service-network__desktop {
    display: block;
}
.service-network__mobile {
    display: none;
}
.service-network__cards {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.service-network__map {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 762px;
    background: #f5f5f6;
}
.service-network__map--mobile {
    height: 425px;
}
.service-network__map-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.service-network__map-pin {
    position: absolute;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -100%);
    z-index: 2;
    pointer-events: none;
}
.service-network__map-pin svg {
    width: 100%;
    height: 100%;
    display: block;
}
.service-network .select2-container {
    width: 100% !important;
}
.service-network .select2-container--default .select2-selection--single {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 52px 0 24px;
    border: 0;
    border-radius: 16px;
    background: #f0f0f1;
    box-shadow: none;
    outline: none;
}
.service-network .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.service-network .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 24px;
    height: 24px;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    pointer-events: none;
}
.service-network .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.service-network .select2-container--default .select2-selection--single .select2-selection__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #010014;
    border-bottom: 2px solid #010014;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.25s ease;
}
.service-network .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::before {
    transform: translate(-50%, -35%) rotate(-135deg);
}

.service-network-card {
    flex: 1 1 0;
    min-width: 0;
    padding: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    background: #f5f5f6;
    overflow: hidden;
}
.service-network-card__icon-box {
    position: relative;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-network-card__icon-bg {
    position: absolute;
    width: 38px;
    height: 38px;
    top: 0;
    left: 0;
    border-radius: 8px;
    background: #e6efe6;
}
.service-network-card__icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
}
.service-network-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.service-network-card__label {
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.service-network-card__value {
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-break: break-word;
}

@media (max-width: 991.98px) {
    .service-network-card {
        flex: none;
    }
}
.service-network-select-dropdown {
    margin-top: 8px;
    padding: 8px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(1, 0, 20, 0.08);
    overflow: hidden;
}
.service-network-select-dropdown .select2-results__options {
    max-height: 260px;
    padding-right: 2px;
}
.service-network-select-dropdown .select2-results__option {
    padding: 14px 16px;
    border-radius: 12px;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.3px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.service-network-select-dropdown .select2-results__option--selectable.select2-results__option--highlighted {
    background: #f0f0f1;
    color: #010014;
}
.service-network-select-dropdown .select2-results__option[aria-selected=true] {
    background: #f0f0f1;
    color: #010014;
}

@media (max-width: 1199.98px) {
    .service-network__cards {
        flex-direction: column;
    }
    .service-network__map {
        height: 620px;
    }
}
@media (max-width: 991.98px) {
    .service-network {
        padding: 24px 0 100px;
    }
    .service-network__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 16px;
    }
    .service-network__head-content {
        width: 100%;
        gap: 8px;
    }
    .service-network__breadcrumb {
        font-size: 12px;
        line-height: 16px;
    }
    .service-network__title {
        font-size: 20px;
        line-height: 24px;
    }
    .service-network__select-wrap {
        width: 100%;
    }
    .service-network__desktop {
        display: none;
    }
    .service-network__mobile {
        display: block;
    }
    .service-network__cards {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 32px;
    }
    .service-network__map {
        height: 425px;
    }
    .service-network .select2-container--default .select2-selection--single {
        height: 56px;
    }
    .service-network .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 16px;
        line-height: 24px;
    }
    .service-network-card {
        width: 100%;
    }
}
.ui-feature-list-section {
    width: 100%;
    padding: 32px 0 100px;
}
@media (max-width: 768px) {
    .ui-feature-list-section {
        padding: 24px 0 100px;
    }
}

.ui-feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 24px;
    background: #f5f5f6;
    border-radius: 16px;
}
.ui-feature-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}
.ui-feature-card__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}
.ui-feature-card__text {
    flex: 1 1 auto;
    color: #010014;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-break: break-word;
}
.ui-feature-card__text strong {
    font-weight: 700;
}
@media (max-width: 768px) {
    .ui-feature-card {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .ui-feature-card__text {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
}

.ak-bank-details {
    width: 100%;
    padding-bottom: 100px;
}
.ak-bank-details__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.ak-bank-details__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #d9d9dc;
}
.ak-bank-details__label {
    width: 570px;
    flex-shrink: 0;
    color: #010014;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-break: break-word;
}
.ak-bank-details__value {
    flex: 1 1 auto;
    min-width: 0;
    color: #010014;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-break: break-word;
}
.ak-bank-details__copy {
    width: 24px;
    height: 24px;
    min-width: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8d8c95;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
    flex-shrink: 0;
}
.ak-bank-details__copy svg {
    width: 24px;
    height: 24px;
    display: block;
}
.ak-bank-details__copy:hover {
    color: #010014;
}
.ak-bank-details__copy:active {
    transform: scale(0.94);
}
.ak-bank-details__copy.is-copied {
    color: #076307;
}
@media (max-width: 1399.98px) {
    .ak-bank-details__label {
        width: 420px;
    }
}
@media (max-width: 991.98px) {
    .ak-bank-details__label {
        width: 320px;
        font-size: 18px;
        line-height: 22px;
    }
    .ak-bank-details__value {
        font-size: 18px;
        line-height: 22px;
    }
}
@media (max-width: 767.98px) {
    .ak-bank-details {
        padding-bottom: 100px;
    }
    .ak-bank-details__row {
        gap: 16px;
        padding: 20px 0;
        align-items: center;
    }
    .ak-bank-details__label, .ak-bank-details__value {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.4px;
    }
    .ak-bank-details__copy {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
}

.ak-list-section {
    padding: 32px 0 100px;
}
@media (max-width: 768px) {
    .ak-list-section {
        padding: 24px 0 100px;
    }
}

.ak-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ak-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #F5F5F6;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.ak-list-item:hover {
    background: #ebebed;
}
.ak-list-item:active {
    transform: scale(0.995);
}
@media (max-width: 768px) {
    .ak-list-item {
        padding: 16px;
        gap: 12px;
    }
}

.ak-list-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ak-list-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.ak-list-text {
    flex: 1;
    color: #010014;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
@media (max-width: 768px) {
    .ak-list-text {
        font-size: 14px;
        line-height: 20px;
    }
}

.ak-list-action {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.ak-list-action img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ak-list-item:hover .ak-list-action img {
    opacity: 1;
    transform: translateY(1px);
}

.ak-reports {
    padding: 32px 0 100px;
}
.ak-reports .ak-reports__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.ak-reports .ak-report-card {
    min-width: 0;
    height: 100%;
    padding: 24px;
    background: #f5f5f6;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.ak-reports .ak-report-card__file-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #076307;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.ak-reports .ak-report-card__file-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}
.ak-reports .ak-report-card__body {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ak-reports .ak-report-card__content {
    flex: 1 1 auto;
    min-width: 0;
}
.ak-reports .ak-report-card__title {
    margin: 0 0 12px;
    color: #010014;
    font-size: 20px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-break: break-word;
}
.ak-reports .ak-report-card__meta {
    margin: 0;
    color: #010014;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-break: break-word;
}
.ak-reports .ak-report-card__download {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    color: #8d8c95;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ak-reports .ak-report-card__download svg {
    width: 21px;
    height: 21px;
    display: block;
}
.ak-reports .ak-report-card__download:hover {
    color: #076307;
    background: rgba(7, 99, 7, 0.08);
    transform: translateY(-1px);
}
@media (max-width: 767.98px) {
    .ak-reports {
        padding: 32px 0 100px;
    }
    .ak-reports .ak-report-card__title {
        font-size: 16px;
        line-height: 24px;
    }
}
@media (min-width: 768px) {
    .ak-reports .ak-reports__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1200px) {
    .ak-reports .ak-reports__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ak-pagination-wrapper {
    width: 100%;
}

.ak-pagination {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    border: 1px solid #f0f0f1;
    border-radius: 4px;
    background-color: #fff;
}
.ak-pagination__item {
    display: flex;
}
.ak-pagination__link {
    min-width: 44px;
    height: 44px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background: #fff;
    color: #010014;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    border-right: 1px solid #f0f0f1;
    transition: all 0.2s ease;
}
.ak-pagination__link:hover {
    background: #f8f8f9;
    color: #010014;
}
.ak-pagination__link:focus {
    outline: none;
    box-shadow: none;
}
.ak-pagination__link.is-active {
    background: #ecf6f3;
    color: #032a03;
    font-weight: 700;
}
.ak-pagination__item:last-child .ak-pagination__link {
    border-right: 0;
}
.ak-pagination__nav {
    min-width: 48px;
}
.ak-pagination__nav i {
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .ak-pagination-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .ak-pagination-wrapper::-webkit-scrollbar {
        display: none;
    }
    .ak-pagination {
        display: inline-flex;
        min-width: max-content;
    }
    .ak-pagination__link {
        min-width: 40px;
        height: 40px;
        padding: 6px 10px;
        font-size: 13px;
        line-height: 18px;
    }
    .ak-pagination__nav {
        min-width: 42px;
    }
}
@media (max-width: 575.98px) {
    .ak-pagination {
        border-radius: 8px;
    }
    .ak-pagination__link {
        min-width: 36px;
        height: 36px;
        padding: 4px 8px;
        font-size: 12px;
        line-height: 16px;
    }
    .ak-pagination__nav {
        min-width: 38px;
    }
}
.team-section {
    padding: 32px 0 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.team-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #d9d9dc;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    height: 100%;
}
.team-card__image {
    width: 200px;
    height: 200px;
    position: relative;
}
.team-card__image-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    background: #f0f0f1;
    border-radius: 50%;
}
.team-card__image img {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.team-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.team-card__name {
    margin: 0;
    color: #010014;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.team-card__name-button {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    cursor: pointer;
    transition: color 0.25s ease;
}
.team-card__name-button:hover {
    color: #076307;
}
.team-card__position {
    color: #5a5966;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.team-card__socials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px;
}
.team-card__social {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #c0bfc4;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
}
.team-card__social:hover {
    background: #032a03;
    color: #fff;
}
.team-card__social i {
    font-size: 12px;
    line-height: 1;
}

.team-modal__dialog {
    max-width: 640px;
}
.team-modal__content {
    position: relative;
    padding: 40px;
    background: #fff;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.11);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.team-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #010014;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.team-modal__close i {
    font-size: 18px;
}
.team-modal__image {
    width: 200px;
    height: 200px;
    position: relative;
}
.team-modal__image-bg {
    position: absolute;
    width: 68px;
    height: 68px;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    background: #f0f0f1;
    border-radius: 50%;
}
.team-modal__image img {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.team-modal__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.team-modal__name {
    margin: 0;
    color: #010014;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.team-modal__position {
    color: #5a5966;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.team-modal__socials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px;
}
.team-modal__social {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #c0bfc4;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
}
.team-modal__social:hover {
    background: #032a03;
    color: #fff;
}
.team-modal__social i {
    font-size: 12px;
    line-height: 1;
}
.team-modal__text {
    width: 100%;
    color: #010014;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-align: justify;
    text-align-last: center;
    margin-top: 8px;
}

@media (max-width: 1199.98px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .team-section {
        padding: 24px 0 72px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        padding: 20px;
    }
    .team-card__name {
        font-size: 18px;
        line-height: 22px;
    }
    .team-modal__dialog {
        max-width: calc(100% - 24px);
        margin: 12px auto;
    }
    .team-modal__content {
        padding: 24px 16px;
        border-radius: 20px;
    }
    .team-modal__text {
        font-size: 14px;
        line-height: 22px;
    }
}
.media-gallery-section {
    padding: 48px 0 100px;
}
.media-gallery-section .media-gallery-card {
    position: relative;
    display: block;
    width: 100%;
    height: 230px;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f1;
    cursor: pointer;
    text-decoration: none;
}
.media-gallery-section .media-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}
.media-gallery-section .media-gallery-card.is-video::after, .media-gallery-section .media-gallery-card:hover::after {
    opacity: 1;
}
.media-gallery-section .media-gallery-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.media-gallery-section .media-gallery-card:hover > img {
    transform: scale(1.06);
}
.media-gallery-section .media-gallery-card:hover .media-gallery-card__play {
    transform: translate(-50%, -50%) scale(1.08);
}
.media-gallery-section .media-gallery-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.35s ease;
    pointer-events: none;
}
.media-gallery-section .media-gallery-card__play img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.media-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.media-lightbox.is-open .media-lightbox__dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.media-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.media-lightbox__wrap {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-lightbox__dialog {
    position: relative;
    width: min(1176px, 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
    transform: scale(0.96) translateY(16px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease;
}
.media-lightbox__close {
    position: absolute;
    top: -10px;
    right: -23px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #010014;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 15;
}
.media-lightbox__close svg {
    width: 18px;
    height: 18px;
}
.media-lightbox__stage-area {
    position: relative;
}
.media-lightbox__stage {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}
.media-lightbox__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.media-lightbox__video-wrap {
    position: absolute;
    inset: 0;
    background: #000;
}
.media-lightbox__iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.media-lightbox__stage-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border: 0;
    background: none;
    z-index: 5;
    cursor: pointer;
}
.media-lightbox__stage-play img {
    width: 72px;
    height: 72px;
    filter: brightness(0) invert(1);
}
.media-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.media-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.05);
}
.media-lightbox__nav svg {
    width: 24px;
    height: 24px;
}
.media-lightbox__nav.is-prev {
    left: 16px;
}
.media-lightbox__nav.is-next {
    right: 16px;
}
.media-lightbox__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.media-lightbox__thumbs::-webkit-scrollbar {
    height: 6px;
}
.media-lightbox__thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}
.media-lightbox__thumb {
    flex: 0 0 115px;
    width: 115px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 0;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.media-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media-lightbox__thumb:hover {
    opacity: 0.9;
}
.media-lightbox__thumb.is-active {
    opacity: 1;
    box-shadow: 0 0 0 2px #076307 inset;
}
.media-lightbox__thumb.is-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
.media-lightbox__thumb.is-video::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

body.gallery-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .media-gallery-section {
        padding: 32px 0 80px;
    }
    .media-lightbox__stage {
        height: 300px;
    }
    .media-lightbox__close {
        top: -8px;
        right: -8px;
        width: 36px;
        height: 36px;
    }
    .media-lightbox__nav {
        width: 42px;
        height: 42px;
    }
    .media-lightbox__thumb {
        width: 96px;
        height: 64px;
    }
}
.procurement-page {
    padding: 32px 0 100px;
    background-color: #fff;
}
.procurement-page .procurement-sidebar {
    position: sticky;
    top: 24px;
}
.procurement-page .procurement-sidebar__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 1px solid #d9d9dc;
    border-radius: 16px;
    background: #fff;
}
.procurement-page .procurement-sidebar__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 15px;
    background: #f0f0f1;
    color: #010014;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.procurement-page .procurement-sidebar__link:hover {
    background: #e7e7e9;
    color: #010014;
}
.procurement-page .procurement-sidebar__link.active {
    background: #076307;
    color: #fff;
    font-weight: 700;
}
.procurement-page .procurement-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
    padding-left: 56px;
}
.procurement-page .procurement-head__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.procurement-page .procurement-breadcrumb {
    color: #010014;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.procurement-page .procurement-breadcrumb strong {
    font-weight: 700;
}
.procurement-page .procurement-title {
    margin: 0;
    color: #010014;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.4px;
}
.procurement-page .procurement-input {
    position: relative;
}
.procurement-page .procurement-input .form-control {
    height: 56px;
    padding: 16px 24px;
    border: 0;
    border-radius: 16px;
    background: #f0f0f1;
    color: #010014;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.4px;
    box-shadow: none;
}
.procurement-page .procurement-input .form-control::placeholder {
    color: #010014;
    opacity: 1;
    font-weight: 700;
}
.procurement-page .procurement-input .form-control:focus {
    background: #f0f0f1;
    box-shadow: 0 0 0 0.2rem rgba(7, 99, 7, 0.12);
}
.procurement-page .procurement-input--search .form-control, .procurement-page .procurement-input--date .form-control {
    padding-right: 56px;
}
.procurement-page .procurement-input__icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #010014;
    pointer-events: none;
}
.procurement-page .procurement-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 56px;
    padding-bottom: 100px;
}
.procurement-page .procurement-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}
.procurement-page .procurement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 40px -18px rgba(0, 0, 0, 0.18);
}
.procurement-page .procurement-card__icon {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #f0f0f1;
    color: #010014;
}
.procurement-page .procurement-card__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.procurement-page .procurement-card__content h2 {
    margin: 0;
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.procurement-page .procurement-card__date {
    color: #010014;
    opacity: 0.9;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.procurement-page .flatpickr-input[readonly] {
    cursor: pointer;
}
.procurement-page .flatpickr-calendar {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    font-family: inherit;
}
.procurement-page .flatpickr-day.selected,
.procurement-page .flatpickr-day.startRange,
.procurement-page .flatpickr-day.endRange {
    background: #076307;
    border-color: #076307;
}
.procurement-page .flatpickr-day:hover {
    background: #e8f3e8;
    border-color: #e8f3e8;
}
@media (max-width: 991.98px) {
    .procurement-page {
        padding: 24px 0 100px;
    }
    .procurement-page .procurement-sidebar {
        position: static;
    }
    .procurement-page .procurement-sidebar__inner {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0;
        border: 0;
        background: transparent;
    }
    .procurement-page .procurement-sidebar__inner::-webkit-scrollbar {
        height: 0;
    }
    .procurement-page .procurement-sidebar__link {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .procurement-page .procurement-head {
        margin-top: 24px;
        padding-left: 0;
    }
    .procurement-page .procurement-breadcrumb {
        font-size: 12px;
        line-height: 16px;
    }
    .procurement-page .procurement-title {
        font-size: 20px;
        line-height: 24px;
    }
    .procurement-page .procurement-list {
        padding-left: 0;
        padding-bottom: 0;
    }
    .procurement-page .procurement-card {
        flex-direction: column;
    }
    .procurement-page .procurement-card__icon {
        width: 64px;
        height: 64px;
        flex: 0 0 64px;
    }
    .procurement-page .procurement-card__content h2 {
        font-size: 14px;
        line-height: 20px;
    }
    .procurement-page .procurement-card__date {
        font-size: 16px;
        line-height: 24px;
    }
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 56px;
    padding-bottom: 100px;
}

.notification-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.notification-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 40px -18px rgba(0, 0, 0, 0.18);
}
.notification-card__icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #f0f0f1;
    color: #010014;
}
.notification-card__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.notification-card__top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.notification-card__title {
    display: inline-block;
    margin: 0;
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.notification-card__title:hover {
    color: #076307;
}
.notification-card__date {
    color: #010014;
    opacity: 0.9;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.notification-card p {
    margin: 0;
    color: #010014;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.notification-card__more {
    display: inline-block;
    width: fit-content;
    color: #3733ab;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}
.notification-card__more:hover {
    color: #076307;
}

@media (max-width: 991.98px) {
    .notification-list {
        padding-left: 0;
        padding-bottom: 0;
    }
    .notification-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    .notification-card__icon {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
    }
    .notification-card__title {
        font-size: 14px;
        line-height: 20px;
    }
    .notification-card__date {
        font-size: 16px;
        line-height: 24px;
    }
    .notification-card p {
        font-size: 16px;
        line-height: 24px;
    }
    .notification-card__more {
        font-size: 16px;
        line-height: 24px;
    }
}
.contracts-table-wrap {
    padding-left: 56px;
    padding-bottom: 100px;
}

.contracts-table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.contracts-table-responsive::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.contracts-table {
    width: 100%;
    min-width: 860px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}
.contracts-table th,
.contracts-table td {
    padding: 16px;
    text-align: left;
    vertical-align: middle;
}
.contracts-table thead th {
    background: #fff;
    color: #464553;
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
}
.contracts-table tbody td {
    color: #010014;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
    background: #fff;
}
.contracts-table tbody tr:nth-child(odd) td {
    background: #f5f5f6;
}
.contracts-table__company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 224px;
}
.contracts-table__company-name {
    color: #010014;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.contracts-table__company-voen {
    color: #010014;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}

@media (max-width: 991.98px) {
    .contracts-table-wrap {
        padding: 24px 24px 100px;
    }
    .contracts-table {
        min-width: 860px;
    }
}
.credit-order-form {
    gap: 56px;
    display: flex;
    flex-direction: column;
    padding: 16px 0 100px;
}

.ak-404 {
    padding: 36px 0 100px;
}
.ak-404__wrapper {
    background: #F5F5F6;
    border-radius: 24px;
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}
.ak-404__image {
    width: 300px;
    height: 300px;
}
.ak-404__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ak-404__text {
    color: #5A5966;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.4px;
}

@media (max-width: 576px) {
    .ak-404 {
        padding: 24px 0 100px;
    }
    .ak-404__wrapper {
        padding: 64px 16px;
    }
    .ak-404__text {
        font-size: 16px;
        font-weight: 700;
    }
    .ak-404__image {
        width: 240px;
        height: 240px;
    }
}
.search-result-head {
    padding: 40px 0;
}
.search-result-head__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.search-result-head__title {
    margin: 0;
    color: #010014;
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.4px;
    word-break: break-word;
}
@media (max-width: 991.98px) {
    .search-result-head {
        padding: 24px 0;
    }
    .search-result-head__inner {
        gap: 24px;
    }
    .search-result-head__title {
        font-size: 20px;
        line-height: 24px;
    }
}

.search-result-head__keyword {
    color: #2922FF;
    font-weight: 700;
}

.search-result-head__count {
    font-weight: 700;
}

.search-result-list {
    padding: 32px 0 100px;
}
.search-result-list__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-result-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #F5F5F6;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.search-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}
.search-result-card:hover .search-result-card__arrow {
    transform: translateX(4px);
}
.search-result-card__icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-result-card__icon i {
    width: 20px;
    height: 20px;
    border: 2px solid #010014;
    display: block;
}
.search-result-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.search-result-card__category {
    font-size: 12px;
    color: #010014;
    font-weight: 400;
    letter-spacing: 0.4px;
}
.search-result-card__text {
    font-size: 16px;
    font-weight: 700;
    color: #010014;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.search-result-card__arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.search-result-card__arrow i {
    width: 12px;
    height: 12px;
    border-right: 2px solid #010014;
    border-bottom: 2px solid #010014;
    transform: rotate(-45deg);
    display: block;
    margin: auto;
}
.search-result-card {
    /* MOBILE */
}
@media (max-width: 991.98px) {
    .search-result-card {
        align-items: flex-start;
        flex-direction: column;
    }
    .search-result-card__icon {
        display: none;
    }
    .search-result-card__text {
        font-size: 14px;
        line-height: 20px;
    }
    .search-result-card__arrow {
        position: absolute;
        right: 24px;
        top: 24px;
    }
}

.ui-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ui-field__label {
    margin: 0;
    color: #010014;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.ui-field__control {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 44px 14px 16px;
    background: #fcfcfd;
    border: 1px solid #c0bfc4;
    border-radius: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.ui-field__control:focus-within {
    border-color: #398239;
    box-shadow: 0 0 0 3px rgba(57, 130, 57, 0.08);
}
.ui-field__control.is-filled .ui-field__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.ui-field__control--textarea {
    align-items: flex-start;
    min-height: 120px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.ui-field__control--textarea .ui-field__clear {
    top: 16px;
    transform: none;
}
.ui-field__control--select {
    padding-right: 44px;
}
.ui-field__control--file {
    cursor: pointer;
    overflow: hidden;
}
.ui-field__control--file.has-file .ui-field__file {
    pointer-events: none;
}
.ui-field__control--file.has-file .ui-field__file-placeholder {
    opacity: 0;
    visibility: hidden;
}
.ui-field__control--file.has-file .ui-field__file-name {
    opacity: 1;
    visibility: visible;
}
.ui-field__control--file.has-file .ui-field__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.ui-field__input, .ui-field__textarea, .ui-field__select {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #010014;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.ui-field__input::placeholder, .ui-field__textarea::placeholder {
    color: #5a5966;
    opacity: 1;
}
.ui-field__textarea {
    min-height: 90px;
    resize: vertical;
}
.ui-field__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #010014;
}
.ui-field__select:invalid {
    color: #5a5966;
}
.ui-field__select-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #010014;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ui-field__clear {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #5a5966;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease, color 0.2s ease;
    z-index: 3;
}
.ui-field__clear:hover {
    color: #010014;
}
.ui-field__file {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.ui-field__file-placeholder, .ui-field__file-name {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.ui-field__file-placeholder {
    color: #5a5966;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.ui-field__file-name {
    position: absolute;
    left: 16px;
    right: 44px;
    color: #010014;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 2;
}
.ui-field__hint {
    color: #5a5966;
    font-size: 12px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.ui-field__error {
    color: #d92d20;
    font-size: 12px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.ui-field--disabled .ui-field__control {
    background: #f5f5f6;
    opacity: 0.7;
}
.ui-field--disabled .ui-field__input,
.ui-field--disabled .ui-field__textarea,
.ui-field--disabled .ui-field__select {
    cursor: not-allowed;
}

@media (max-width: 767.98px) {
    .ui-field__label {
        font-size: 14px;
        line-height: 20px;
    }
    .ui-field__control {
        min-height: 52px;
    }
    .ui-field__input, .ui-field__textarea, .ui-field__select, .ui-field__file-placeholder, .ui-field__file-name {
        font-size: 16px;
        line-height: 24px;
    }
}
.ui-field__control--select2 {
    padding: 0;
    border: 0;
    background: transparent;
    min-height: auto;
    box-shadow: none;
}
.ui-field__control--select2:focus-within {
    border: 0;
    box-shadow: none;
}
.ui-field__control--select2 .select2-container {
    width: 100% !important;
}
.ui-field__control--select2 .select2-selection--single {
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 44px 0 16px !important;
    background: #fcfcfd !important;
    border: 1px solid #c0bfc4 !important;
    border-radius: 4px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}
.ui-field__control--select2 .select2-container--default.select2-container--open .select2-selection--single,
.ui-field__control--select2 .select2-container--default.select2-container--focus .select2-selection--single,
.ui-field__control--select2 .select2-container--default.select2-container--below .select2-selection--single {
    border-color: #398239 !important;
    box-shadow: 0 0 0 3px rgba(57, 130, 57, 0.08) !important;
}
.ui-field__control--select2 .select2-selection__rendered {
    padding: 0 !important;
    color: #010014 !important;
    font-size: 16px !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    letter-spacing: 0.4px !important;
}
.ui-field__control--select2 .select2-selection__placeholder {
    color: #5a5966 !important;
}
.ui-field__control--select2 .select2-selection__arrow {
    width: 16px !important;
    height: 16px !important;
    top: 50% !important;
    right: 16px !important;
    transform: translateY(-50%) !important;
}
.ui-field__control--select2 .select2-selection__arrow b {
    display: none !important;
}
.ui-field__control--select2 .select2-selection__arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23010014' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.select2-dropdown {
    border: 1px solid #c0bfc4 !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
}

.select2-search--dropdown {
    padding: 8px !important;
}
.select2-search--dropdown .select2-search__field {
    height: 44px;
    padding: 10px 14px !important;
    border: 1px solid #c0bfc4 !important;
    border-radius: 4px !important;
    outline: 0 !important;
    box-shadow: none !important;
    color: #010014;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    line-height: 20px;
}
.select2-search--dropdown .select2-search__field:focus {
    border-color: #398239 !important;
    box-shadow: 0 0 0 3px rgba(57, 130, 57, 0.08) !important;
}

.select2-results__options {
    padding: 6px 0;
}

.select2-results__option {
    padding: 10px 16px !important;
    color: #010014;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #f0f6f0 !important;
    color: #076307 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #e6efe6 !important;
    color: #076307 !important;
}

@media (max-width: 767.98px) {
    .ui-field__control--select2 .select2-selection--single {
        height: 52px !important;
    }
    .ui-field__control--select2 .select2-selection__rendered {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}
.ak-btn {
    outline: none;
    border: none;
    box-shadow: none;
}

.contact-support-section {
    padding-top: 56px;
    padding-bottom: 100px;
}
.contact-support-section__inner {
    width: 100%;
}
.contact-support-section__content {
    display: flex;
    align-items: flex-start;
    gap: 56px;
}
.contact-support-section__info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 56px;
    min-width: 0;
}
.contact-support-section__head {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-support-section__title {
    margin: 0;
    color: #010014;
    font-size: 60px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0.4px;
}
.contact-support-section__desc {
    max-width: 461px;
    margin: 0;
    color: #464553;
    font-size: 20px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.contact-support-section__form-wrap {
    flex: 1 1 0;
    min-width: 0;
    align-self: stretch;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.11);
}

.contact-support-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-support-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f5f5f6;
    border-radius: 16px;
}
.contact-support-card__icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 15px;
}
.contact-support-card__icon img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}
.contact-support-card__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-support-card__label {
    color: #010014;
    font-size: 12px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.contact-support-card__value {
    color: #010014;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-break: break-word;
}

.contact-support-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}
.contact-support-form .ui-field {
    height: 100%;
}
.contact-support-form .ui-field__control--textarea {
    min-height: 145px;
}
.contact-support-form .ui-field__textarea {
    min-height: 115px;
    resize: none;
}
.contact-support-form__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-support-form .ak-btn {
    min-width: 139px;
}

@media (max-width: 1199.98px) {
    .contact-support-section__content {
        gap: 32px;
    }
    .contact-support-section__title {
        font-size: 48px;
        line-height: 52px;
    }
    .contact-support-section__desc {
        max-width: 100%;
    }
}
@media (max-width: 991.98px) {
    .contact-support-section__content {
        flex-direction: column;
    }
    .contact-support-section__info, .contact-support-section__form-wrap {
        width: 100%;
    }
    .contact-support-section__info {
        gap: 32px;
    }
    .contact-support-section__head {
        gap: 24px;
    }
    .contact-support-section__title {
        font-size: 40px;
        line-height: 44px;
    }
}
@media (max-width: 767.98px) {
    .contact-support-section {
        padding-top: 24px;
        padding-bottom: 100px;
    }
    .contact-support-section__content {
        gap: 32px;
    }
    .contact-support-section__info {
        gap: 24px;
    }
    .contact-support-section__head {
        gap: 16px;
    }
    .contact-support-section__title {
        font-size: 34px;
        line-height: 40px;
    }
    .contact-support-section__desc {
        font-size: 16px;
        line-height: 24px;
    }
    .contact-support-section__form-wrap {
        padding: 40px 24px 24px;
        border-radius: 24px;
    }
    .contact-support-form .ui-field__control--textarea {
        min-height: 145px;
    }
    .contact-support-form__actions {
        width: 100%;
    }
    .contact-support-form .ak-btn {
        width: 100%;
    }
}
.credit-calculator-section {
    padding: 80px 0;
}
@media (max-width: 1199.98px) {
    .credit-calculator-section {
        padding: 32px 0;
    }
}
.credit-calculator-section .credit-calculator__panel {
    position: relative;
    height: 100%;
    border-radius: 24px;
}
.credit-calculator-section .credit-calculator__panel--form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    height: 100%;
}
.credit-calculator-section .credit-calculator__panel--result {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: 100%;
    padding: 56px;
    background: #f0f0f1;
    overflow: hidden;
}
@media (max-width: 1199.98px) {
    .credit-calculator-section .credit-calculator__panel--result {
        padding: 24px;
        gap: 16px;
    }
}
.credit-calculator-section .credit-calculator__panel--result::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/backgrounds/bg-3.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto;
    pointer-events: none;
    z-index: 0;
}
.credit-calculator-section .credit-calculator__panel--result > * {
    position: relative;
    z-index: 1;
}
.credit-calculator-section .credit-calculator__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.credit-calculator-section .credit-calculator__title {
    margin: 0;
    color: #010014;
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.credit-calculator-section .credit-calculator__controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.credit-calculator-section .credit-calculator__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 575.98px) {
    .credit-calculator-section .credit-calculator__actions {
        flex-direction: column;
        align-items: stretch;
    }
}
.credit-calculator-section .credit-calculator__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 24px;
    border: 0;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.credit-calculator-section .credit-calculator__btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}
.credit-calculator-section .credit-calculator__btn--primary {
    background: #398239;
    color: #fff;
}
.credit-calculator-section .credit-calculator__btn--primary:hover {
    background: #2f6d2f;
    color: #fff;
}
.credit-calculator-section .credit-calculator__btn--secondary {
    background: #f0f0f1;
    color: #010014;
}
.credit-calculator-section .credit-calculator__btn--secondary:hover {
    background: #e5e5e8;
    color: #010014;
}
.credit-calculator-section .credit-calculator__bg-shape {
    position: absolute;
    top: -30px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(141, 140, 149, 0.16) 0%, rgba(141, 140, 149, 0.08) 40%, rgba(141, 140, 149, 0) 70%);
    transform: rotate(-30deg);
    pointer-events: none;
}
@media (max-width: 1199.98px) {
    .credit-calculator-section .credit-calculator__bg-shape {
        top: -60px;
        right: -120px;
        width: 300px;
        height: 300px;
    }
}
.credit-calculator-section .credit-calculator__result-head {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.credit-calculator-section .credit-calculator__result-label {
    color: #010014;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.credit-calculator-section .credit-calculator__result-total {
    color: #010014;
    font-size: 48px;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: 0.4px;
}
@media (max-width: 1199.98px) {
    .credit-calculator-section .credit-calculator__result-total {
        font-size: 34px;
        line-height: 40px;
    }
}
.credit-calculator-section .credit-calculator__summary {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}
@media (max-width: 767.98px) {
    .credit-calculator-section .credit-calculator__summary {
        grid-template-columns: 1fr;
    }
}
.credit-calculator-section .credit-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.credit-calculator-section .credit-range__top {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 575.98px) {
    .credit-calculator-section .credit-range__top {
        flex-wrap: wrap;
        align-items: flex-start;
    }
}
.credit-calculator-section .credit-range__label {
    margin: 0;
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.credit-calculator-section .credit-range__currency {
    flex: 0 0 auto;
}
.credit-calculator-section .credit-range__currency-select {
    min-width: 88px;
    height: 36px;
    padding: 0 36px 0 12px;
    border: 0;
    border-radius: 8px;
    background-color: #f0f0f1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23010014' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
    color: #010014;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.credit-calculator-section .credit-range__currency-select:hover {
    background-color: #e7e7ea;
}
.credit-calculator-section .credit-range__currency-select:focus {
    box-shadow: 0 0 0 4px rgba(7, 99, 7, 0.12);
}
.credit-calculator-section .credit-range__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 11px 0 48px;
    overflow: visible;
}
.credit-calculator-section .credit-range__progress {
    position: absolute;
    top: 14px;
    left: 0;
    width: 0;
    height: 6px;
    border-radius: 32px;
    pointer-events: none;
    z-index: 1;
}
.credit-calculator-section .credit-range__input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 6px;
    margin: 0;
    border-radius: 28px;
    background: #b5ccb9;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.credit-calculator-section .credit-range__input::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
    border-radius: 28px;
}
.credit-calculator-section .credit-range__input::-moz-range-track {
    height: 6px;
    background: transparent;
    border-radius: 28px;
}
.credit-calculator-section .credit-range__input::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    margin-top: -6px;
    border: 0;
    border-radius: 50%;
    background: #076307;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 0 0 4px rgba(7, 99, 7, 0);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.credit-calculator-section .credit-range__input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: #076307;
    cursor: pointer;
    appearance: none;
    box-shadow: 0 0 0 4px rgba(7, 99, 7, 0);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.credit-calculator-section .credit-range__input:hover::-webkit-slider-thumb, .credit-calculator-section .credit-range__input:focus::-webkit-slider-thumb {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(7, 99, 7, 0.14);
}
.credit-calculator-section .credit-range__input:hover::-moz-range-thumb, .credit-calculator-section .credit-range__input:focus::-moz-range-thumb {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(7, 99, 7, 0.14);
}
.credit-calculator-section .credit-range__bubble {
    position: absolute;
    top: 28px;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 3px 8px;
    border-radius: 5px;
    background: #010014;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    white-space: nowrap;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}
.credit-calculator-section .credit-range__bubble::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 6px solid #010014;
    transform: translateX(-50%);
}
.credit-calculator-section .credit-range__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
@media (max-width: 575.98px) {
    .credit-calculator-section .credit-range__meta {
        flex-wrap: wrap;
    }
}
.credit-calculator-section .credit-range__min, .credit-calculator-section .credit-range__max {
    color: #010014;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.credit-calculator-section .credit-summary-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
}
.credit-calculator-section .credit-summary-card__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 15px;
    background: #076307;
}
.credit-calculator-section .credit-summary-card__icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.credit-calculator-section .credit-summary-card__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.credit-calculator-section .credit-summary-card__label {
    color: #010014;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.credit-calculator-section .credit-summary-card__value {
    color: #010014;
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: 0.4px;
}
@media (max-width: 575.98px) {
    .credit-calculator-section .credit-summary-card__value {
        font-size: 18px;
    }
}

.credit-cards-section {
    --lift-size: 180px;
    position: relative;
    z-index: 3;
    margin-top: calc(var(--lift-size) * -1);
    padding-bottom: 32px;
}
@media (max-width: 991.98px) {
    .credit-cards-section {
        --lift-size: 0px;
        margin-top: 0;
        padding-top: 24px;
        padding-bottom: 0;
    }
}

.credit-cards-row {
    align-items: stretch;
}

.credit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
    padding: 24px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 54px 55px -20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.credit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 42px -18px rgba(0, 0, 0, 0.18);
}

.credit-card__icon-box {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    padding: 16px;
    border-radius: 15px;
    background: #398239;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    transform-origin: top right;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.credit-card__icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    pointer-events: none;
    flex-shrink: 0;
}
.credit-card:hover .credit-card__icon-box {
    transform: rotate(-15deg) translate(10px, 10px);
}

.credit-card__icon-container {
    transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.credit-card:hover .credit-card__icon-container {
    height: 76px;
}

.credit-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credit-card__title {
    display: block;
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
@media (max-width: 991.98px) {
    .credit-card__title {
        font-size: 14px;
        line-height: 20px;
    }
}

.credit-card__desc {
    display: block;
    color: rgba(1, 0, 20, 0.9);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
@media (max-width: 991.98px) {
    .credit-card__desc {
        font-size: 12px;
        line-height: 16px;
    }
}

.credit-card__footer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    width: 100%;
    padding-right: 24px;
}

.credit-card__cta {
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.credit-card__arrow {
    position: absolute;
    top: 50%;
    left: 120px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.credit-card__arrow img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.credit-card:hover .credit-card__arrow {
    left: calc(100% - 24px - 20px);
}

@media (max-width: 991.98px) {
    .credit-card__arrow {
        left: auto;
        right: 0;
    }
    .credit-card:hover .credit-card__arrow {
        left: auto;
        right: 0;
    }
}
.infographic-section {
    padding: 32px 0 100px;
}
@media (max-width: 991.98px) {
    .infographic-section {
        padding: 24px 0 80px;
    }
}
.infographic-section__box {
    position: relative;
    padding: 64px;
    border-radius: 24px;
    overflow: hidden;
}
.infographic-section__box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f5f5f6;
    border-radius: 24px;
    z-index: 0;
}
@media (min-width: 993px) {
    .infographic-section__box::before {
        right: 173px;
    }
}
@media (max-width: 993px) {
    .infographic-section__box::before {
        bottom: 200px;
    }
}
@media (max-width: 1199.98px) {
    .infographic-section__box {
        padding: 32px;
    }
}
@media (max-width: 767.98px) {
    .infographic-section__box {
        padding: 32px 20px;
    }
}
.infographic-section .row {
    position: relative;
    z-index: 1;
}
.infographic-section__content {
    width: 100%;
    max-width: 498px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (max-width: 1199.98px) {
    .infographic-section__content {
        max-width: 100%;
        gap: 24px;
        margin-bottom: 32px;
    }
}
.infographic-section__heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.infographic-section__title {
    margin: 0;
    color: #010014;
    font-size: 34px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 0.4px;
}
@media (max-width: 767.98px) {
    .infographic-section__title {
        font-size: 24px;
        line-height: 32px;
    }
}
.infographic-section__text-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.infographic-section__text-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.infographic-section__subtitle {
    color: #010014;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.infographic-section__desc {
    color: #010014;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.infographic-section__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
@media (max-width: 767.98px) {
    .infographic-section__actions {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
    }
}
.infographic-section__slider-side {
    width: 100%;
}

.infographic-btn {
    min-height: 56px;
    padding: 16px 24px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
    .infographic-btn {
        min-height: 56px;
        padding-left: 16px;
        padding-right: 16px;
        flex: 1 1 0;
        text-align: center;
    }
}
.infographic-btn--primary {
    background: #398239;
    color: #fff;
}
.infographic-btn--primary:hover {
    background: #2f6e2f;
    color: #fff;
}
.infographic-btn--secondary {
    background: #fff;
    color: #010014;
}
.infographic-btn--secondary:hover {
    background: #f0f0f1;
    color: #010014;
}

.infographic-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 503px;
    margin-left: auto;
}
@media (max-width: 1199.98px) {
    .infographic-slider-wrap {
        max-width: 100%;
    }
}

.infographic-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}
@media (max-width: 767.98px) {
    .infographic-slider {
        border-radius: 16px;
    }
}
.infographic-slider .swiper-slide {
    overflow: hidden;
}

.infographic-slide {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    text-decoration: none;
}
@media (max-width: 993px) {
    .infographic-slide {
        border-radius: 16px;
    }
}
.infographic-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 297px;
}
@media (max-width: 993px) {
    .infographic-slide img {
        border-radius: 16px;
    }
}

.infographic-slider__arrow {
    position: absolute;
    z-index: 3;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.infographic-slider__arrow svg {
    width: 24px;
    height: 24px;
}
.infographic-slider__arrow--prev {
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    background: #076307;
    color: #fff;
}
.infographic-slider__arrow--next {
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #010014;
    box-shadow: 0 10px 24px rgba(1, 0, 20, 0.08);
}
@media (max-width: 993px) {
    .infographic-slider__arrow {
        display: none;
    }
}

.infographic-slider__mobile-nav {
    display: none;
}
@media (max-width: 993px) {
    .infographic-slider__mobile-nav {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }
}

.infographic-slider__mobile-btn {
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.infographic-slider__mobile-btn svg {
    width: 24px;
    height: 24px;
}
.infographic-slider__mobile-btn--prev {
    background: #076307;
    color: #fff;
}
.infographic-slider__mobile-btn--next {
    background: #fff;
    color: #010014;
}

.custom-cards-section .custom-card {
    position: relative;
    padding: 56px;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.custom-cards-section .custom-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.custom-cards-section .custom-card__title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
}
.custom-cards-section .custom-card__desc {
    color: white;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-wrap: break-word;
}
.custom-cards-section .custom-card__btn {
    display: inline-flex;
    padding: 14px 24px;
    background: #fff;
    color: #010014;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    width: fit-content;
    transition: 0.3s;
}
.custom-cards-section .custom-card--green {
    background: #398239;
}
.custom-cards-section .custom-card--dark {
    background: #0B3F15;
}
.custom-cards-section .custom-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/backgrounds/bg-1.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}
.custom-cards-section .custom-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/backgrounds/bg-2.png");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 767.98px) {
    .custom-cards-section .custom-card {
        padding: 24px;
    }
    .custom-cards-section .custom-card__title {
        font-size: 20px;
        line-height: 28px;
    }
}

.news-section {
    padding-top: 32px;
    padding-bottom: 100px;
}
@media (max-width: 991.98px) {
    .news-section {
        padding-top: 24px;
        padding-bottom: 80px;
    }
}
@media (max-width: 575.98px) {
    .news-section {
        padding-top: 24px;
        padding-bottom: 64px;
    }
}
.news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
@media (max-width: 991.98px) {
    .news-section .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .news-section .news-grid {
        grid-template-columns: 1fr;
    }
}
.news-section .news-card {
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.news-section .news-card__image-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    flex-shrink: 0;
}
.news-section .news-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.news-section .news-card__meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 2;
}
.news-section .news-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.2px;
}
.news-section .news-card__meta-item--date {
    background: #398239;
    color: #fff;
}
.news-section .news-card__meta-item--read {
    background: #fff;
    color: #010014;
}
.news-section .news-card__meta-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.news-section .news-card__body {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
}
@media (max-width: 575.98px) {
    .news-section .news-card__body {
        padding: 24px;
    }
}
.news-section .news-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.news-section .news-card__title {
    margin: 0;
    color: #010014;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.news-section .news-card__text {
    margin: 0;
    color: #272637;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.news-section .news-card__link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #010014;
}
.news-section .news-card__link-text {
    flex: 0 0 auto;
    white-space: nowrap;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.2px;
}
.news-section .news-card__link-track {
    position: relative;
    flex: 1 1 auto;
    min-width: 24px;
    height: 24px;
    overflow: visible;
}
.news-section .news-card__arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    will-change: left, transform;
}
.news-section .news-card:hover .news-card__image {
    transform: scale(1.24);
}
.news-section .news-card:hover .news-card__arrow {
    animation: newsCardArrowMove 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.news-section .news-card:not(:hover) .news-card__image {
    transform: scale(1);
}
.news-section .news-card:not(:hover) .news-card__arrow {
    animation: newsCardArrowBack 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes newsCardArrowMove {
    0% {
        left: 0;
        transform: translateX(0);
    }
    80% {
        left: calc(100% - 24px);
        transform: translateX(0);
    }
    90% {
        left: calc(100% - 24px);
        transform: translateX(-3px);
    }
    100% {
        left: calc(100% - 24px);
        transform: translateX(0);
    }
}
@keyframes newsCardArrowBack {
    0% {
        left: calc(100% - 24px);
        transform: translateX(0);
    }
    100% {
        left: 0;
        transform: translateX(0);
    }
}
.news-head {
    padding: 40px 0;
}
.news-head__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
@media (max-width: 991.98px) {
    .news-head__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.news-head__content {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 991.98px) {
    .news-head__content {
        gap: 8px;
    }
}
.news-head__title {
    margin: 0;
    color: #010014;
    font-family: Poppins;
    font-weight: 800;
    letter-spacing: 0.4px;
    font-size: 34px;
    line-height: 40px;
}
@media (max-width: 991.98px) {
    .news-head__title {
        font-size: 24px;
        line-height: 32px;
    }
}
.news-head__desc {
    margin: 0;
    color: #464553;
    font-family: Poppins;
    font-weight: 400;
    letter-spacing: 0.4px;
    font-size: 16px;
    line-height: 24px;
}
@media (max-width: 991.98px) {
    .news-head__desc {
        font-size: 12px;
        line-height: 16px;
    }
}
.news-head__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: #F0F0F1;
    border-radius: 15px;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #010014;
    text-decoration: none;
    transition: all 0.3s ease;
}
.news-head__btn:hover {
    background: #e4e4e6;
}
@media (max-width: 991.98px) {
    .news-head__btn {
        width: 100%;
        justify-content: center;
    }
}

.about-history {
    padding-top: 32px;
    padding-bottom: 100px;
}
.about-history__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.about-history__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}
.about-history__item:not(:last-child) .about-history__year-col::after {
    content: "";
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 56px;
    background: #91B398;
    border-radius: 999px;
}
.about-history__year-col {
    position: relative;
    flex: 0 0 76px;
    width: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.about-history__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--dot-color, #91B398);
    display: block;
    flex-shrink: 0;
}
.about-history__year {
    color: #010014;
    text-align: center;
    font-size: 34px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.4px;
}
.about-history__content {
    flex: 1 1 0;
    padding: 24px;
    background: #f5f5f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
}
.about-history__content p {
    margin: 0;
    color: #010014;
    font-size: 20px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
}
.about-history__content strong {
    font-weight: 700;
}
@media (max-width: 991.98px) {
    .about-history {
        padding-top: 24px;
    }
    .about-history__timeline {
        gap: 24px;
    }
    .about-history__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .about-history__item:not(:last-child) .about-history__year-col::after {
        display: none;
    }
    .about-history__year-col {
        width: auto;
        flex: unset;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    .about-history__year {
        font-size: 34px;
        line-height: 40px;
    }
    .about-history__content {
        width: 100%;
    }
    .about-history__content p {
        font-size: 16px;
        line-height: 24px;
    }
}
@media (max-width: 575.98px) {
    .about-history .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.ak-footer {
    background: #f0f0f1;
}
.ak-footer__top {
    padding: 80px 0;
}
.ak-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid #8db78d;
}
.ak-footer__logo {
    width: 38px;
}
.ak-footer__logo img {
    width: 100%;
}
.ak-footer__brand-content h3 {
    color: #010014;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.ak-footer__brand-content p {
    color: #010014;
    font-size: 16px;
    line-height: 24px;
}
.ak-footer__col h4 {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 700;
    color: #010014;
}
.ak-footer__col a {
    font-size: 14px;
    color: #1f1f30;
    text-decoration: none;
}
.ak-footer__col a:hover {
    color: #398239;
}
.ak-footer__copyright {
    font-size: 14px;
    color: #010014;
}
.ak-footer__socials a {
    font-size: 20px;
    color: #010014;
}
.ak-footer__socials a:hover {
    color: #398239;
}

.akf-credit-program-hero {
    position: relative;
    padding: 24px 0;
}
.akf-credit-program-hero__fluid {
    padding-left: 0;
    padding-right: 0;
}
.akf-credit-program-hero__wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.akf-credit-program-hero__slider {
    border-radius: 24px;
    overflow: hidden;
}
.akf-credit-program-hero .swiper-slide {
    height: auto;
}
.akf-credit-program-hero__slide-bg {
    position: relative;
    min-height: 553px;
}
@media (max-width: 991.98px) {
    .akf-credit-program-hero__slide-bg {
        min-height: 547px;
    }
}
.akf-credit-program-hero__picture {
    position: absolute;
    inset: 0;
    display: block;
    margin: 0;
}
.akf-credit-program-hero__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.akf-credit-program-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.akf-credit-program-hero__ui-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}
.akf-credit-program-hero__container {
    position: relative;
    height: 100%;
}
.akf-credit-program-hero__desktop-layout {
    position: relative;
    min-height: 553px;
    display: block;
}
@media (max-width: 991.98px) {
    .akf-credit-program-hero__desktop-layout {
        display: none;
    }
}
.akf-credit-program-hero__content {
    position: absolute;
    top: 143px;
    left: 0;
    max-width: 607px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 6;
    pointer-events: auto;
}
.akf-credit-program-hero__title {
    margin: 0;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0.4px;
}
.akf-credit-program-hero__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    pointer-events: auto;
}
.akf-credit-program-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.akf-credit-program-hero__button--primary {
    background: #fff;
    color: #010014;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.akf-credit-program-hero__button--primary:hover {
    background: #f3f3f3;
    color: #010014;
}
.akf-credit-program-hero__button--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.akf-credit-program-hero__button--secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.akf-credit-program-hero__button--mobile {
    flex: 1 1 0;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 20px;
}
.akf-credit-program-hero__pagination {
    position: absolute;
    top: 54px !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 7;
    pointer-events: auto;
}
.akf-credit-program-hero__pagination .swiper-pagination-bullet {
    width: 33.25px;
    height: 7px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}
.akf-credit-program-hero__pagination .swiper-pagination-bullet-active {
    background: #fff;
}
.akf-credit-program-hero__info-list {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.akf-credit-program-hero__info-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
}
.akf-credit-program-hero__info-card--amount {
    width: 368px;
    right: 30px;
    top: 129px;
}
.akf-credit-program-hero__info-card--duration {
    width: 217px;
    right: 240px;
    top: 229px;
}
.akf-credit-program-hero__info-card--documents {
    width: 368px;
    right: 0;
    top: 329px;
}
.akf-credit-program-hero__info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #076307;
    border-radius: 15px;
}
.akf-credit-program-hero__info-icon img {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}
.akf-credit-program-hero__info-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
}
.akf-credit-program-hero__info-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.akf-credit-program-hero__info-text {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.akf-credit-program-hero__mobile-layout {
    display: none;
}
@media (max-width: 991.98px) {
    .akf-credit-program-hero__mobile-layout {
        min-height: 547px;
        padding: 56px 24px 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 24px;
        pointer-events: auto;
    }
}
.akf-credit-program-hero__mobile-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 294px;
}
.akf-credit-program-hero__mobile-title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
.akf-credit-program-hero__mobile-actions {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.akf-credit-program-hero__mobile-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.akf-credit-program-hero__mobile-info-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.akf-credit-program-hero__mobile-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #076307;
    border-radius: 12px;
}
.akf-credit-program-hero__mobile-info-icon img {
    max-width: 24px;
    max-height: 24px;
    display: block;
    object-fit: contain;
}
.akf-credit-program-hero__mobile-info-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
}
.akf-credit-program-hero__mobile-info-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.4px;
}
.akf-credit-program-hero__mobile-info-text {
    margin: 0;
    color: #fff;
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0.4px;
}

@media (max-width: 767.98px) {
    .akf-credit-program-hero__pagination {
        top: 24px !important;
        left: 0 !important;
        gap: 6px;
    }
    .akf-credit-program-hero__pagination .swiper-pagination-bullet {
        width: 24px;
        height: 6px;
    }
}
.ak-search-suggest-dropdown {
    width: 100%;
}
.ak-search-suggest-dropdown__box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 32px 32px;
    background: #ffffff;
    box-shadow: 0 54px 55px -10px rgba(0, 0, 0, 0.59);
    overflow: hidden;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}
@media (max-width: 991.98px) {
    .ak-search-suggest-dropdown__box {
        padding: 16px 24px 24px;
    }
}
.ak-search-suggest-dropdown__top {
    align-self: stretch;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
@media (max-width: 575.98px) {
    .ak-search-suggest-dropdown__top {
        gap: 12px;
    }
}
.ak-search-suggest-dropdown__placeholder {
    min-width: 0;
    color: #5a5966;
    font-size: 24px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.4px;
    word-wrap: break-word;
}
@media (max-width: 991.98px) {
    .ak-search-suggest-dropdown__placeholder {
        font-size: 16px;
        line-height: 24px;
    }
}
.ak-search-suggest-dropdown__button {
    flex: 0 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: #398239;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.ak-search-suggest-dropdown__button:hover {
    background: #2f6d2f;
}
.ak-search-suggest-dropdown__button:active {
    transform: translateY(1px);
}
@media (max-width: 991.98px) {
    .ak-search-suggest-dropdown__button {
        padding: 12px 16px;
        gap: 8px;
    }
}
.ak-search-suggest-dropdown__button-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 24px;
}
.ak-search-suggest-dropdown__button-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}
.ak-search-suggest-dropdown__button-text {
    color: #ffffff;
    font-size: 16px;
    font-family: "SF Pro Display", Poppins, sans-serif;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.4px;
    word-wrap: break-word;
}
.ak-search-suggest-dropdown__tags {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}
.ak-search-suggest-dropdown__tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f0f0f1;
    border-radius: 15px;
    color: #010014;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
    text-decoration: none;
    word-wrap: break-word;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.ak-search-suggest-dropdown__tag:hover {
    background: #e4e4e7;
    color: #010014;
}
@media (max-width: 991.98px) {
    .ak-search-suggest-dropdown__tag {
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 16px;
    }
}

.ak-header__search {
    position: relative;
}
.ak-header__search-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 480px;
    max-width: min(100vw - 24px, 480px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
@media (max-width: 991.98px) {
    .ak-header__search-dropdown {
        width: min(100vw - 24px, 480px);
        right: 0;
        left: auto;
    }
}
.ak-header__search.is-active .ak-header__search-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.ak-header__search-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.ak-header__search-dropdown.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.ak-header {
    position: relative;
}

.ak-header__search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.25s ease;
}
.ak-header__search-dropdown.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
