@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* ======================================================
   FONT FACE DECLARATIONS (Helvetica Neue Family)
   ====================================================== */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Roman.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ======================================================
   ROOT VARIABLES
   ====================================================== */
:root {
    --primary: #06412A;
    --primary-light: #0F5A39;
    --primary-dark: #092B1A;
    --secondary: #183C34;
    --gray: #4B474B;
    --gray-light: #f9f9f9;
    --gray-light-1: #696969;
    --light: #F2F2F2;
    --dark: #1c1e21;
    --bs-primary: var(--primary);
    --bs-primary-rgb: 6, 65, 42;
    --bs-primary-text-emphasis: var(--primary-dark);
    --bs-primary-bg-subtle: color-mix(in srgb, var(--primary) 15%, white);
    --bs-primary-border-subtle: color-mix(in srgb, var(--primary) 40%, white);
    --bs-secondary: var(--secondary);
    --bs-secondary-rgb: 24, 60, 52;
    --bs-secondary-text-emphasis: color-mix(in srgb, var(--secondary) 60%, black);
    --bs-secondary-bg-subtle: color-mix(in srgb, var(--secondary) 15%, white);
    --bs-secondary-border-subtle: color-mix(in srgb, var(--secondary) 40%, white);
    --bs-light: var(--light);
    --bs-light-rgb: 242, 242, 242;
    --bs-dark: var(--dark);
    --bs-dark-rgb: 28, 30, 33;
    --bs-gray: var(--gray);
    --bs-link-color: var(--primary);
    --bs-link-hover-color: var(--primary-light);
    --bs-body-font-family: 'Helvetica Neue', Arial, sans-serif;
    /* ===============================
     BODY SETTINGS
     =============================== */
    /* --body-bg: #fcf5eb; */
    --section-bg: #f9f9f9;
    --body-bg: #FFF;
    --body-text: #1c1e21;
    --font-helvetica: 'Helvetica Neue', Arial, sans-serif;
    /* ===============================
     SPACING 
     =============================== */
    --section-padding-lg: 9.375rem;
    --section-padding: 6rem;
    --section-title-dec-gap: 1.5rem;
    --section-title-dec-gap-sm: 1rem;
    --section-card-padding: 2rem;
    --section-card-padding-sm: 1rem;
    --input-padding: 1rem;
    --input-padding-sm: 0.5rem;

    /* ===============================
     FONT SIZE 
     =============================== */
    --fs-122: 7.625rem;
    --fs-92: 5.75rem;
    --fs-72: 4.5rem;
    --fs-56: 3.5rem;
    --fs-42: 2.625rem;
    --fs-40: 2.5rem;
    --fs-38: 2.375rem;
    --fs-36: 2.25rem;
    --fs-34: 2.125rem;
    --fs-32: 2rem;
    --fs-30: 1.875rem;
    --fs-28: 1.75rem;
    --fs-26: 1.625rem;
    --fs-24: 1.5rem;
    --fs-22: 1.375rem;
    --fs-20: 1.25rem;
    --fs-18: 1.125rem;
    --fs-16: 1rem;
    --fs-14: 0.875rem;

    --dropdown-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23111111' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

/* ======================================================
   GLOBAL RESET & BASE STYLES
   ====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--body-text);
    line-height: 1.5 !important;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    font-size: 0.835vw;
    scroll-behavior: auto !important;
}

body {
    padding-top: 5.8rem;
    background-color: var(--body-bg);
    font-family: var(--font-helvetica);
    color: var(--body-text);
    line-height: normal;
    letter-spacing: 0.02rem;
    overscroll-behavior: none;
}

.container {
    padding-left: calc(0.75rem + 2%);
    padding-right: calc(0.75rem + 2%);
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    width: 100%;
    display: block;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--body-text);
    transition: 0.4s;
}

a:hover {
    color: var(--body-text);
}

a:focus-visible,
button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.bg-gray-light {
    background-color: var(--gray-light) !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

/* ======================================================
   FONT SIZE UTILITIES
   ====================================================== */
.fs-122 {
    font-size: var(--fs-122) !important;
    line-height: 1.1 !important;
}

.fs-92 {
    font-size: var(--fs-92) !important;
    line-height: 1.1 !important;
}

.fs-72 {
    font-size: var(--fs-72) !important;
    line-height: 1.1 !important;
}

.fs-56 {
    font-size: var(--fs-56) !important;
    line-height: 1.2 !important;
}

.fs-42 {
    font-size: var(--fs-42) !important;
}

.fs-40 {
    font-size: var(--fs-40) !important;
}

.fs-38 {
    font-size: var(--fs-38) !important;
}

.fs-36 {
    font-size: var(--fs-36) !important;
}

.fs-34 {
    font-size: var(--fs-34) !important;
}

.fs-32 {
    font-size: var(--fs-32) !important;
}

.fs-30 {
    font-size: var(--fs-30) !important;
}

.fs-28 {
    font-size: var(--fs-28) !important;
}

.fs-26 {
    font-size: var(--fs-26) !important;
}

.fs-24 {
    font-size: var(--fs-24) !important;
}

.fs-22 {
    font-size: var(--fs-22) !important;
}

.fs-20 {
    font-size: var(--fs-20) !important;
}

.fs-18 {
    font-size: var(--fs-18) !important;
}

.fs-16 {
    font-size: var(--fs-16) !important;
}

.fs-14 {
    font-size: var(--fs-14) !important;
}

.section-card .section-card-list li *,
.section-description *,
.fs-122 *,
.fs-92 *,
.fs-72 *,
.fs-56 *,
.fs-42 *,
.fs-40 *,
.fs-38 *,
.fs-36 *,
.fs-34 *,
.fs-32 *,
.fs-30 *,
.fs-28 *,
.fs-26 *,
.fs-24 *,
.fs-22 *,
.fs-20 *,
.fs-18 *,
.fs-16 *,
.fs-14 * {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit !important;
}

/* ======================================================
   FONT FAMILY & WEIGHT UTILITIES
   ====================================================== */
.font-helvetica {
    font-family: var(--font-helvetica) !important;
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

/* ======================================================
      BUTTON
      ====================================================== */
.btn {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-font-family: var(--font-helvetica);
    --bs-btn-font-size: 1.125rem;
    --bs-btn-font-weight: 500;
    --bs-btn-line-height: normal;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: .0938rem;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: none;
    --bs-btn-disabled-opacity: 0.6;
    --bs-btn-focus-box-shadow: none;
    transition: .4s;
    position: relative;
    min-height: 3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn:hover {
    background-color: unset;
}

.btn>span {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-transform: inherit;
    z-index: 2;
    position: relative;
}

.btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 0;
    left: 0;
    width: 100%;
    transition: .4s;
    background-color: var(--bs-btn-hover-bg);
    z-index: 1;
    opacity: 0;
}

.btn:hover::before {
    height: 100%;
    opacity: 1;
}

.btn:not([class*="btn-outline"])::before {
    background-color: var(--bs-btn-bg);
    height: 100%;
    opacity: 1;
    bottom: unset;
    top: 0;
}

.btn:not([class*="btn-outline"]):hover::before {
    height: 0;
}

.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-light);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: unset;
    --bs-btn-active-border-color: var(--bs-btn-hover-border-color);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--bs-btn-color);
    --bs-btn-disabled-bg: var(--bs-btn-bg);
    --bs-btn-disabled-border-color: var(--bs-btn-border-color);
}

.btn-outline-primary {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primary);
    --bs-gradient: none;
}

.btn-light {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color: var(--bs-white);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-white-light);
    --bs-btn-hover-border-color: var(--bs-white);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: unset;
    --bs-btn-active-border-color: var(--bs-btn-hover-border-color);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--bs-btn-color);
    --bs-btn-disabled-bg: var(--bs-btn-bg);
    --bs-btn-disabled-border-color: var(--bs-btn-border-color);
}

.btn-outline-light {
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: var(--bs-white);
    --bs-btn-hover-color: var(--dark);
    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-hover-border-color: var(--bs-white);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-white);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--bs-white);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-white);
    --bs-gradient: none;
}

.btn-dark {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--dark);
    --bs-btn-border-color: var(--dark);
    --bs-btn-hover-color: var(--dark);
    --bs-btn-hover-bg: var(--dark-light);
    --bs-btn-hover-border-color: var(--dark);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: unset;
    --bs-btn-active-border-color: var(--bs-btn-hover-border-color);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--bs-btn-color);
    --bs-btn-disabled-bg: var(--bs-btn-bg);
    --bs-btn-disabled-border-color: var(--bs-btn-border-color);
}

.btn-outline-dark {
    --bs-btn-color: var(--dark);
    --bs-btn-border-color: var(--dark);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--dark);
    --bs-btn-hover-border-color: var(--dark);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--dark);
    --bs-btn-active-border-color: var(--dark);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--dark);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--dark);
    --bs-gradient: none;
}

.btn.btn-icon,
.btn.btn-icon:focus,
.btn.btn-icon:focus-visible,
.btn.btn-icon:active {
    padding: 0;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.btn.btn-icon::before {
    display: none;
}

.btn.btn-icon img,
.btn.btn-icon svg {
    width: 2rem;
    height: auto;
}

.section-padding-lg {
    padding-top: var(--section-padding-lg);
    padding-bottom: var(--section-padding-lg);
}

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.section-element-gap {
    display: flex;
    flex-direction: column;
    gap: var(--section-title-dec-gap);
}

.section-bg {
    background-color: var(--section-bg) !important;
}

/* ======================================================
   HEADER STYLES
   ====================================================== */
.global-header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: transparent;
    height: 5.8rem;
    transition: 0.3s;
    border-bottom: .0625rem solid transparent;

}

.global-header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--body-bg);
    backdrop-filter: blur(6px);
}

.global-header.sticky-header::after {
    background-color: rgba(255, 255, 255, 0.8);
}


.global-header.sticky-header {
    border-bottom-color: #CEC9C1;
}

.global-header .menu-button {
    cursor: pointer;
    overflow: hidden;
    width: 25px;
    height: 20px;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    flex-shrink: 0;
}

.global-header .menu-button .line-toggle {
    position: absolute;
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    border-radius: 5px;
    transition: all .6s;
}

.global-header .menu-button .line-toggle:first-child {
    transform: translateY(-6px) translateX(-4px);
    width: 17px;
    transition-delay: 0s;
}

.global-header .menu-button .line-toggle:nth-child(2) {
    transition-delay: .12s;
}

.global-header .menu-button .line-toggle:last-child {
    transform: translateY(6px) translateX(-4px);
    width: 17px;
    transition-delay: 0s;
}

.global-header .menu-button.open .line-toggle:first-child {
    background: var(--dark);
    transform: translateY(0) translateX(0) rotate(45deg);
    width: 25px;
    height: 2px;
    transition-delay: .1s;
}

.global-header .menu-button.open .line-toggle:nth-child(2) {
    transform: translateX(30px);
    transition-delay: 0s;
}

.global-header .menu-button.open .line-toggle:last-child {
    background: var(--dark);
    transform: translateY(0) translateX(0) rotate(314deg);
    width: 25px;
    height: 2px;
    transition-delay: .1s;
}

.global-header .navbar {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 1;
}

.global-header .navbar .navbar-brand {
    margin: 0;
    padding: 0;
    display: block;
    flex-shrink: 0;
    width: 18rem;
}

.global-header .navbar .navbar-collapse {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: calc(100% - 19rem);
}

.global-header .navbar .navbar-nav {
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
}

.global-header .navbar .quick-link {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.global-header .header-dropdown .header-dropdown-list .header-dropdown-link,
.global-header .navbar .navbar-nav .nav-link {
    padding: 0;
    font-weight: 500;
    transition: 0.3s;
    color: var(--body-text);
    font-size: 1.25rem;
    position: relative;
    display: block;
    text-transform: capitalize;
}

.global-header .navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(100% + .25rem);
    height: .0938rem;
    width: 0;
    background-color: var(--primary);
    transition: 0.3s;
}

.global-header .navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.global-header .navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
    right: unset;
    left: 0;
}

.global-header .navbar .navbar-nav .nav-link.header-dropdown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.global-header .navbar .navbar-nav .nav-link.header-dropdown-btn::after {
    display: none;
}

.global-header .navbar .navbar-nav .nav-link.header-dropdown-btn .arrow-icon {
    margin-left: 0.5rem;
    position: static;
    display: inline-block;
    height: 1.25rem;
    width: 1.25rem;
    background-color: transparent;
    background-image: var(--dropdown-arrow);
    flex-shrink: 0;
    transition: 0.3s;
}

.global-header .navbar .header-dropdown.active .nav-link.header-dropdown-btn .arrow-icon {
    transform: rotate(180deg);
}

.global-header .navbar .navbar-nav .nav-link.header-dropdown-btn:hover {
    color: var(--body-text);
}

.global-header .header-dropdown .header-dropdown-list .header-dropdown-link {
    font-weight: 400;
}

.global-header .header-dropdown .header-dropdown-list .header-dropdown-link:hover {
    transform: translateX(0.5rem);
}

.global-header .header-dropdown {
    position: relative;
}

.global-header .header-dropdown .header-dropdown-menu {
    display: none;
    padding: 1rem 0;
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    transform: translateX(-0);
    background-color: var(--bs-white);
    width: 16rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.global-header .header-dropdown .header-dropdown-menu .header-dropdown-list {
    display: flex;
    flex-direction: column;
}

.global-header .header-dropdown .header-dropdown-menu .header-dropdown-item {
    padding: 0.5rem 1rem;
    border-bottom: .0625rem solid var(--bs-border-color);
}

.global-header .header-dropdown .header-dropdown-menu .header-dropdown-item:first-child {
    padding-top: 0;
}

.global-header .header-dropdown .header-dropdown-menu .header-dropdown-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* ======================================================
   FOOTER STYLES
   ====================================================== */
.global-footer {
    padding: var(--section-padding) 0 2rem;
    background-color: var(--primary-light);
    background-color: var(--secondary);
}

.global-footer * {
    color: var(--light);
}

.global-footer .footer-brand {
    width: 100%;
    max-width: 20rem;
    display: inline-block;
}

.global-footer .footer-brand img {
    width: 100%;
    height: auto;
}

.global-footer .footer-social-link-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.global-footer .footer-text {
    font-size: var(--fs-18);
    font-weight: 300;
}

.global-footer .footer-link {
    display: inline-block;
    font-size: var(--fs-18);
    font-weight: 300;
    transition: 0.4s;
    position: relative;
    width: fit-content;
}

.global-footer .footer-link:hover {
    color: var(--light);
    transform: translateX(0.5rem);
    text-decoration: underline;
}

.global-footer .footer-title {
    font-size: var(--fs-22);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}

.global-footer .footer-gap>*:not(:last-child) {
    margin-bottom: 2rem;
}

.global-footer .footer-social-link-wrap .social-link {
    font-size: var(--fs-28);
    color: var(--light);
    transition: 0.4s;
}

.global-footer .footer-social-link-wrap .social-link:hover {
    color: var(--bs-white);
    transform: translateY(-0.1875rem);
}

.global-footer .footer-social-link-wrap .social-link>* {
    color: inherit;
    font-size: inherit;
}

.hero-sec {
    background-image: var(--hero-sec-bg-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 65vh
}

.hero-sec::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--bs-black);
    opacity: 0.7;
}

.hero-sec.hero-full-sec {
    min-height: 90vh
}

.hero-sec .here-content {
    position: relative;
    z-index: 1;
    color: var(--bs-white);
    width: 100%;
    max-width: 78rem;
}

/* Slider wrapper */
.custom-slider-wrap {
    display: flex;
    justify-content: center;
}

.custom-card-swiper {
    width: 100%;
}

.swiper-bottom-scrollbar {
    display: flex;
    flex-direction: column;
}

.swiper-bottom-scrollbar .swiper-bottom-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-arrows-container {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-arrows-container .swiper-btn {
    width: 4rem;
    height: 4rem;
    border: .0625rem solid var(--bs-black);
    border-radius: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-arrows-container .swiper-btn:hover {
    background-color: var(--bs-black);
    border-color: var(--bs-black);
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-arrows-container .swiper-btn::after {
    content: "";
    background-image: var(--dropdown-arrow);
    background-repeat: no-repeat;
    display: block;
    height: 40%;
    width: 40%;
    transition: 0.3s;
    filter: brightness(0) saturate(100%);
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-arrows-container .swiper-btn:hover::after {
    filter: brightness(0) invert(1);
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-arrows-container .swiper-btn.swiper-prev::after {
    transform: rotate(90deg);
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-arrows-container .swiper-btn.swiper-next::after {
    transform: rotate(-90deg);
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-scrollbar {
    flex-grow: 1;
    flex-shrink: 1;
    background: #d2d4d8;
    height: 0.125rem;
    position: static;
}

.swiper-bottom-scrollbar .swiper-bottom-container .swiper-scrollbar-drag {
    background: var(--body-text);
}

.hover-text-card {
    padding: 2rem;
    min-height: 36.125rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.hover-text-card:hover {
    background-size: 116%;
}

.hover-text-card::after,
.hover-text-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s;
}

.hover-text-card::before {
    background-image: var(--hover-card-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hover-text-card:hover::before {
    transform: scale(1.04);
}

.hover-text-card::after {
    background-color: var(--bs-black);
    opacity: 0.5;
}

.hover-text-card:hover::after {
    opacity: 0.3;
}

.hover-text-card .card-body {
    flex: unset;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.hover-text-card:hover .card-body {
    opacity: 1;
    visibility: hidden;
}

.sticky-element-section {
    position: relative;
}

.sticky-element-section .sticky-element {
    position: sticky;
    top: calc(var(--section-padding-lg) + 1rem);
}

.section-card {
    border-radius: 0;
    border: none;
    padding: var(--section-card-padding);
    display: flex;
    flex-direction: column;
    gap: var(--section-title-dec-gap-sm);
    box-shadow: var(--bs-box-shadow-sm);
}

.section-card .section-card-icon {
    width: 4rem;
    height: auto;
}

.section-card .section-card-icon img {
    width: 100%;
    height: auto;
}

.card-title,
.section-card .section-card-title {
    font-size: var(--fs-26);
    text-transform: capitalize;
}

.card-dec,
.section-card .section-card-dec,
.section-card .section-card-list li {
    font-size: var(--fs-20);
}

.img-section-card {
    display: block;
    position: relative;
    height: 21.875rem;
}

.img-section-card .card-img {
    width: 100%;
    height: 100%;
}

.img-section-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-section-card .card-body {
    padding: var(--section-card-padding-sm);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: var(--bs-white);
    width: 80%;
}

.testimonial-card {
    display: flex;
    box-shadow: var(--bs-box-shadow-sm);
    height: 100%;
}

.testimonial-card .card-body {
    padding: var(--section-card-padding);
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: var(--section-title-dec-gap-sm);
}

.testimonial-card .client-img-video-wrap {
    position: relative;
    width: 100%;
    max-width: 20rem;
    height: 100%;
    min-height: 20rem;
    flex-shrink: 0;
}

.section-full-video-wrap .video,
.testimonial-card .client-img-video-wrap .client-img,
.testimonial-card .client-img-video-wrap .client-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-full-video-wrap .video-play-btn,
.testimonial-card .client-img-video-wrap .video-play-btn {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    border: none;
}

.section-full-video-wrap .video-play-btn .icon,
.testimonial-card .client-img-video-wrap .video-play-btn .icon {
    color: var(--bs-danger);
    font-size: var(--fs-56);
    transition: 0.3s;
}

.section-full-video-wrap .video-play-btn .icon {
    font-size: var(--fs-72);
}

.section-full-video-wrap .video-play-btn:hover .icon,
.testimonial-card .client-img-video-wrap .video-play-btn:hover .icon {
    color: var(--bs-white);
}

.section-full-video-wrap {
    width: 100%;
    height: auto;
    position: relative;
}

.section-title {
    font-size: var(--fs-56);
    font-weight: 600;
    text-transform: uppercase;
}

.section-sub-title {
    font-size: var(--fs-28);
    text-transform: uppercase;
}

.section-description {
    font-size: var(--fs-20);
}

.section-description>p:not(:last-child) {
    margin-bottom: 1rem;
}

.logo-slider {
    overflow: unset;
}

.logo-slider .swiper-slide {
    height: auto;
    width: 10rem;
    display: flex;
    flex-direction: column;
    place-content: center;
}

.logo-slider .swiper-slide img {
    height: auto;
    width: 100%;
}

.custom-card-center-swiper .swiper-slide {
    height: auto;
}

.custom-accordion .accordion-button:focus-visible,
.custom-accordion .accordion-button:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--section-title-dec-gap);
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.custom-accordion .accordion-item {
    border: none;
    border-radius: 0;
    box-shadow: var(--bs-box-shadow-sm);
}

.custom-accordion .accordion-button {
    padding: var(--section-title-dec-gap);
    border: none;
    border-radius: 0;
    font-size: var(--fs-24);
    font-weight: 500;
    text-transform: capitalize;
    box-shadow: none;
    color: var(--body-text) !important;
    text-wrap: wrap;
}

.custom-accordion .accordion-button:focus,
.custom-accordion .accordion-button:hover {
    color: var(--body-text) !important;
}

.custom-accordion .accordion-body {
    padding: 0 var(--section-title-dec-gap) var(--section-title-dec-gap);
    border: none;
    border-radius: 0;
    font-size: var(--fs-20);
}

.custom-accordion .accordion-item.bg-gray-light>*,
.custom-accordion .accordion-item.bg-gray-light .accordion-button,
.custom-accordion .accordion-item.bg-gray-light .accordion-body {
    background-color: var(--gray-light);
}

.custom-accordion .accordion-item.bg-white>*,
.custom-accordion .accordion-item.bg-white .accordion-button,
.custom-accordion .accordion-item.bg-white .accordion-body {
    background-color: var(--bs-white);
}

.form-control {
    padding: 0 var(--input-padding-sm) var(--input-padding);
    border-radius: 0;
    border-width: 0 0 0.0625rem 0;
    border-color: var(--bs-border-color);
    font-size: var(--fs-18);
    background-color: transparent;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--dark);
    background-color: transparent;
}

.form-control[type="file"] {
    padding: var(--input-padding) var(--input-padding-sm);
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
.form-control:not(:disabled):not([readonly])::file-selector-button {
    padding: 0.5rem 1rem;
    background-color: var(--dark);
    color: var(--bs-white);
    border: none;
    font-family: var(--font-helvetica);
    ;
    font-size: .875rem;
}

.form-control:focus::placeholder {
    color: var(--dark);
}

.form-control::-webkit-outer-spin-button,
.form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control[type=number] {
    -moz-appearance: textfield;
}

textarea {
    resize: none;
}


.footer-form-section {
    background-image: var(--footer-form-section-bg-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--bs-black);
    opacity: 0.8;
}

.footer-form-section .container {
    z-index: 2;
}

.footer-form-section .footer-form-section-title {
    font-size: var(--fs-122);
    line-height: 1.1;
    white-space: nowrap;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--bs-white);
}

/* gsap animation  */
.gsap-motion-row-text {
    overflow: hidden;
}

.gsap-motion-row-text .line {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    display: block;
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
    will-change: clip-path;
}

.gsap-motion-text {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    opacity: 1;
    will-change: clip-path;
    transition: clip-path 1s ease;
}

.list-type-dot {
    padding-left: 1.25rem;
}

.list-type-dot li {
    list-style: disc;
}

.list-type-dot li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.map-section {
    height: 50vh;
}

.map-section .map-iframe {
    width: 100%;
    height: 100%;
}

.page-template-template-contact-us .footer-form-section:not(.contact-us-form-section),
.page-template-template-contact-us-php .footer-form-section:not(.contact-us-form-section),
.page-template-template-career .footer-form-section:not(.footer-apply-form-section),
.page-template-template-career-php .footer-form-section:not(.footer-apply-form-section) {
    display: none !important;
}

.blog-detail-section .blog-featured-img {
    height: 70vh;
    margin-bottom: 1rem;
}
.blog-detail-section .blog-featured-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-detail-section .blog-title{
    font-size: var(--fs-56);
    font-weight: 600;
}
.blog-detail-section .blog-date{
    font-size: var(--fs-22);
    font-weight: 500;
}
.blog-detail-section .blog-content > *{
    margin-bottom: 1rem;
    color: var(--gray-light-1);
}
.blog-detail-section .blog-content ol,
.blog-detail-section .blog-content ul{
    padding-left: 1.25rem;
}
.blog-detail-section .blog-content ul li{
    list-style: disc;
    color: var(--gray-light-1);
}
.blog-detail-section .blog-content ol li{
    list-style: auto;
    color: var(--gray-light-1);

}

.blog-detail-section .blog-content ol li:not(:last-child),
.blog-detail-section .blog-content ul li:not(:last-child) {
    margin-bottom: 0.5rem;
}