:root {
    --bs-body-font-size: 18px;
    --bs-border-radius: .625rem;
    --section-spacing: 3rem;
} 

/* Variables */
:root, [data-bs-theme=light] {
    /* Primary design color */
    --bs-primary: #1351D8;
    --bs-primary-rgb: 19, 81, 216;
    /* Secondary design color */
    --bs-secondary: #c7cbd3;
    --bs-secondary-rgb: 199, 203, 211;
    /* Secondary background + color: Highlighted boxes */
    --bs-secondary-bg: #F3F6FD;
    --bs-secondary-bg-rgb: 243, 246, 253;
    --bs-secondary-color: var(--bs-body-color);
    --bs-secondary-color-rgb: var(--bs-body-color-rgb);
    /* Tertiary background + color: Top navigation & Footer */
    --bs-tertiary-color: #FFFFFF;
    --bs-tertiary-color-rgb: 255, 255, 255;
    --bs-tertiary-bg: #212529;
    --bs-tertiary-bg-rgb: 33, 37, 41;
    --bs-box-shadow: 0px 4px 20px 5px rgba(0,0,0,0.03);
    --bs-border-color: #D9D9D9;
    --bs-danger: #EC6B5E;
    --bs-danger-rgb: 236, 107, 94;
    --bs-success: #61C554;
    --bs-success-rgb: 97, 197, 84;
    --bs-primary-bg-subtle: rgba(var(--bs-primary-rgb), .2);
    --bs-link-color: var(--bs-primary);
    --bs-link-color-rgb: var(--bs-primary-rgb);
    --button-bg: var(--bs-primary);
    --button-bg-rgb: var(--bs-primary-rgb);
    --button-color: #fff;
    --button-hover-bg: #000;
    --button-hover-bg-rgb: 0,0,0;
    --button-hover-color: #fff;
    --button-sec-bg: var(--bs-secondary);
    --button-sec-bg-rgb: var(--bs-secondary-rgb);
    --button-sec-color: #fff;
    --header-bg-color: rgba(var(--bs-primary-rgb), 0.3);
    --header-bg-subcolor: rgba(var(--bs-secondary-rgb), 0.3);
    --bs-highlight-bg: rgba(var(--bs-primary-rgb), 0.3);
}

[data-bs-theme=dark] {
    --bs-primary: #4F8DFF;
    --bs-primary-rgb: 79, 141, 255;
    /* Secondary design color */
    --bs-secondary: #d3d6dd;
    --bs-secondary-rgb: 211, 214, 221;
    /* Secondary background + color: Highlighted boxes */
    --bs-secondary-bg: #333333;
    --bs-secondary-bg-rgb: 51, 51, 51;
    --bs-secondary-color: var(--bs-body-color);
    --bs-secondary-color-rgb: var(--bs-body-color-rgb);
    /* Tertiary background + color: Top navigation & Footer */
    --bs-tertiary-color: #d3d6dd;
    --bs-tertiary-color-rgb: 211, 214, 221;
    --bs-tertiary-bg: #63666d;
    --bs-tertiary-bg-rgb: 99, 102, 109;
    --bs-box-shadow: 0px 4px 20px 5px rgba(211,2140,221,0.03);
    --bs-border-color: #717171;
}

.dropdown-menu {
    --bs-dropdown-link-hover-color: var(--bs-tertiary-color);
    --bs-dropdown-link-active-bg: var(--bs-primary);
        --bs-dropdown-min-width: 14rem;
    --bs-dropdown-padding-x: 0.5rem;
}

html {
    font-size: var(--bs-body-font-size);
    scroll-padding-top: 120px;
}

body {
    overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, .nav-link {
    font-family: var(--font-title);
}

img {
    max-width: 100%;
    height: auto;
}

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

a {
    text-decoration: none;
}

.flex-1 {
    flex: 1;
}

.gap-24 {
    gap: 24px;
}

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

section {
    padding-bottom: var(--section-spacing);
}

.section-mb {
    margin-bottom: var(--section-spacing);
}

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

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

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

.top-3 {
    top: 1rem;
}

.start-3 {
    left: 1rem;
}

.end-3 {
    right: 1rem;
}

.bottom-3 {
    bottom: 1rem;
}

.small, small {
    font-size: .75rem;
}

.smaller {
    font-size: .875rem;
}


.bigger {
    font-size: 1.5em;
}

.section-title .small, .section-title small {
    font-size: .75em;
}

.column-count-2 {
    column-count: 2;
    gap: 2rem;
}
.bg-body-tertiary {
    color: var(--bs-tertiary-color);
}
.bg-body-secondary {
    color: var(--bs-secondary-color);
}
.color-inherit {
    color: inherit;
}
@media screen and (min-width: 576px) {
    .column-count-sm-2 {
        column-count: 2;
    }    
    .px-sm-7 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media screen and (min-width: 768px) {
    .column-count-md-2 {
        column-count: 2;
        gap: 2rem;
    }    
    .px-md-7 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media screen and (min-width: 992px) {

    .column-count-lg-2 {
        column-count: 2;
        gap: 2rem;
    }    
    .px-lg-7 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

.key-facts .column-break {
    margin-bottom: 1rem;
}
@media screen and (min-width: 1200px) {
    :root {
        --section-spacing: 4.5rem;
    } 
    .key-facts .column-break {
        margin-bottom: 0;
    }
    .key-facts:has(.column-break),
    .column-count-xl-2 {
        column-count: 2;
        gap: 2rem;
    }    
    .px-xl-7 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media screen and (min-width: 1400px) {
    .column-count-xxl-2 {
        column-count: 2;
        gap: 2rem;
    }    
    .px-xxl-7 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .fw-xxl-bold {
        font-weight: 700;
    }
}
@media screen and (min-width: 565px) and (max-width: 1700px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        --bs-gutter-x: 3rem;
    }
}
@media screen and (min-width: 565px) and (max-width: 1400px) {
    .navbar .container-xxl {        
        --bs-gutter-x: 1.5rem;
    }
}
@media screen and (min-width: 1700px) {
    :root {
        --section-spacing: 6rem;
    } 
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1550px;
    }
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn-primary {
    --bs-btn-color: var(--button-color);
    --bs-btn-bg: var(--button-bg);
    --bs-btn-border-color: var(--button-bg);
    --bs-btn-hover-color: var(--button-hover-color);
    --bs-btn-hover-bg: var(--button-hover-bg);
    --bs-btn-hover-border-color: var(--button-hover-bg);
    --bs-btn-active-color: var(--button-hover-color);
    --bs-btn-active-bg: var(--button-hover-bg);
    --bs-btn-active-border-color: var(--button-hover-bg);
    --bs-btn-disabled-bg: rgba(var(--button-bg-rgb), .7);
    --bs-btn-disabled-border-color: rgba(var(--button-bg-rgb), .7);
}
.btn-secondary {
    --bs-btn-color: var(--button-sec-color);
    --bs-btn-bg: var(--button-sec-bg);
    --bs-btn-border-color: var(--button-sec-bg);
    --bs-btn-hover-color: var(--button-hover-color);
    --bs-btn-hover-bg: var(--button-hover-bg);
    --bs-btn-hover-border-color: var(--button-hover-bg);
    --bs-btn-active-color: var(--button-hover-color);
    --bs-btn-active-bg: var(--button-hover-bg);
    --bs-btn-active-border-color: var(--button-hover-bg);
    --bs-btn-disabled-bg: rgba(var(--button-sec-bg-rgb), .7);
    --bs-btn-disabled-border-color: rgba(var(--button-sec-bg-rgb), .7);
}
.theme-btn {
    font-size: 1rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    padding: .75rem 1.25rem;
    border-radius: 2rem;
    position: relative;
    cursor: pointer;
    transition: .3s;
    z-index: 1;
    overflow: hidden;
    text-decoration: none !important;
    gap: .5rem;
    font-family: var(--bs-body-font-family);
}
.theme-btn:not(.btn-primary):not(.btn-secondary) {
    color: var(--button-sec-color);
    background: var(--button-sec-bg);
}

.theme-btn::after,
.theme-btn::before {
    content: '';
    width: 50.5%;
    height: 0;
    background: var(--button-hover-bg);
    border-radius: 2rem 0 0 2rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .3s;
}

.theme-btn::after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    border-radius: 0 2rem 2rem 0;
}

.theme-btn:hover {
    color: var(--button-hover-color);
}

.theme-btn:hover::after,
.theme-btn:hover::before {
    height: 100%;
}

.theme-btn i {
    fill: currentColor;
}

.theme-btn.rounded {
    border-radius: 5px;
}
.theme-btn.rounded::before {
    border-radius: 5px 0 0 5px;
}
.theme-btn.rounded::after {
    border-radius: 0 5px 5px 0;
}
.theme-btn.btn-round {
    display: block;
    text-align: center;
    padding: 0;
    width: 3.25rem;
    height: 3.25rem;
    line-height: calc(3.25rem + 3px);
    margin-left: auto;
    border-radius: 50%;
}
.theme-btn.icon-btn {
    padding: .75rem;
    gap: 0;
}
.theme-btn.icon-btn i {
    font-size: 27px;

}
/* ============================================================== 
    # Links
=================================================================== */
a.blue-link {
    display: inline-block;
    color: var(--bs-primary);
    border-bottom: 1px solid var(--bs-primary);
    line-height: 1;
    padding-right: 0;
    font-size: 16px;
    font-weight: 700;
}

.cover-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    height: 100%;
    pointer-events: none;
}

.cover-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    height: 100%;
    pointer-events: none;
}

.position-right {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.opacity-70 {
    opacity: .7;
}

/* ============================================================== 
    # Section-subtitle Styles
=================================================================== */
.section-subtitle {
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: .25em;
    color: var(--bs-primary);
    margin: 0 0 1.25em 0;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
}
.section-subtitle.small {
    font-size: .75rem;
}

.section-title {
    font-size: calc(1.75rem + 1vw);
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    display: block;
}

@media screen and (min-width: 1200px) {
    .section-header {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

.section-header .text >*:last-child {
    margin-bottom: 0;
}

.letter-spacing-normal {
    letter-spacing: normal;
}

.align_center {
    text-align: center;
}
.align_right {
    text-align: right;
}
.align_left {
    text-align: left;
}
.btn-block {
    width: 100%;
}

/* ============================================================== 
    # Navbar
=================================================================== */
.navbar-toggler {
    padding: .75rem;
    font-size: 1.5rem;
    line-height: 1;
    transition: .3s;
    background: rgba(var(--button-bg-rgb), .1);
    color: var(--button-bg);
    border: 0;
    --bs-navbar-toggler-border-radius: var(--bs-border-radius);
    --bs-navbar-toggler-focus-width: 0.25rem;
}

.header {
    border-bottom: 1px solid var(--bs-border-color);
    position: relative;
    z-index: 1030;
    top: 0;
}
/* When scrolled past the top bar, we fix it */
header.header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
@media screen and (min-width: 575px) and (max-width: 991px) {
    .header {
        position: relative;
    }
}
.navbar-wrapper {
    gap: 10px;
}
.navbar-nav {
    gap: 10px;
}

.logo  {
    display: block;
    max-width: 175px;
    max-height: 54px;
}
.logo img {
    display: block;
    height: 54px;
    width: auto;
    object-fit: contain;
}
.logo svg {
    height: 54px;
}


@media screen and (min-width: 1200px) {
    .logo {
        max-height: 75px;
    }
    .logo img,
    .logo svg {
        height: 75px;
    }
}

.header .theme-btn .las,
.header .theme-btn .lab {
    font-size: 1.25em;
}

.btn-close {
    background: none;
    line-height: 1;
}

.navbar {
    --bs-navbar-padding-y: 0;
    position: static;
}
.mega-menu-link-wrap .img-box {
    width: 2rem;
    /* width: 2.5rem;
    background: rgba(var(--bs-primary-rgb), .2); */
    align-self: flex-start;
    /* border-radius: .5rem; */
    padding: .25rem;
    aspect-ratio: 1;
    flex: 0 0 2.5rem;
}
.mega-menu-link-wrap .img-box svg path {
    fill: var(--bs-primary);
}

/* .mega-menu .nav-link {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
} */
.mega-menu-ads .ratio {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 1rem;
}
.dropdown-menu.mega-menu {
    border-radius: 0;
}
.dropdown-menu {
        --bs-dropdown-border-color: var(--bs-border-color);
}
.mega-menu .mega-menu-inner .right {
    position: relative;
}
.mega-menu .mega-menu-inner .right:before {
    content: '';
    position: absolute;
    width: 1500px;
    z-index: -1;
    background: rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity));
    left: 0.75rem;
    top: -1.5rem;
    bottom: -1.5rem;
}
@media screen and (min-width: 1400px) {
    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        margin-top: 0;
    }
    /* li.nav-item.dropdown:hover .dropdown-menu {
        display: block;
    } */
    .navbar-wrapper {
        gap: 50px;
    }
}

@media screen and (max-width: 1399px) {
    .dropdown-menu {
        border: 0;
    }
}
/* ============================================================== 
    # Template Animation
=================================================================== */

/*slide-left Animation */
.slide-left {
    animation: slideLeft 1s;
}

/*slide-right Animation */
.slide-right {
    animation: slideRight 1s;
}

/*fade-in Animation */
.fade-in {
    animation: fadeIn 1s cubic-bezier(.97,.01,.92,1);
    animation-fill-mode: forwards;
}

/*bounce-in Animation */
.bounce-in {
    animation: bounceIn 0.5s ease;
    animation-delay: 1s;
    visibility: hidden;
    animation-fill-mode: forwards;
}
.scale-0 {
    transform: scale(0);
}
/*pop-in Animation */
.pop-in {
    animation-name: popIn;
    animation-duration: .5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;

      will-change: transform;
  backface-visibility: hidden;
  contain: paint;
  overflow: visible; /* or unset, but not hidden */
}

.opacity-start-0 {
    opacity: 0;
}

/*fadeIn Effects */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*bounceIn Effects */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% { transform: scale(.9); }
    100% { transform: scale(1); visibility: visible; }
}

/*popIn Effects */
@keyframes popIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

/*slideLeft Effects */
@keyframes slideLeft {
    0%{
        transform: translateX(-900px) rotate(-90deg);
    }
    100% {
        transform: translateX(0) rotate(0);
    }
}

/*slideRight Effects */
@keyframes slideRight {
    0%{
        transform: translateX(900px) rotate(90deg);
    }
    100% {
        transform: translateX(0) rotate(0);
    }
}
/*Animations End*/


/* ============================================================== 
    # Header bar
=================================================================== */
.header-bar .header-bar-body p {
    margin: 0;
}
.header-bar .header-bar-body p a {
    color: var(--bs-light);
    font-weight: 700;
    border-bottom: 1px solid;
    display: inline-block;
    line-height: 1.1;
}
.header-bar .header-bar-body .right p{
    overflow: hidden;
}

/* ============================================================== 
    # Hero
=================================================================== */
.hero-section-wrap .hero-section-content-wrap {
    background: linear-gradient(180deg, var(--header-bg-color) 0%, var(--header-bg-subcolor) 30%,  transparent 86.26%);
    padding-top: var(--section-spacing);
}

.hero-section-wrap .hero-section-content-wrap .bg-shape {
    position: absolute;
    left: 0;
    top: 90px;
    pointer-events: none;
}
.hero-section-wrap .hero-section-content-wrap .bg-shape2 {
    position: absolute;
    right: 0;
    top: 110px;
    pointer-events: none;
    z-index: -1;
}
.hero-section-wrap .hero-section-content-wrap .hero-section-content.text-center {
    max-width: 981px;
    width: 100%;
    margin: auto;
}
.max-width-header {
    max-width: 981px;
}
.hero-section-wrap .section-title {
    /* font-size: calc(2.75rem + 1.5vw); */
    font-size: calc(2.25rem + .5vw);
    font-weight: 700;
    margin-bottom: 0;
}

.hero-section-wrap .hero-section-content-wrap .hero-section-content .section-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--bs-emphasis-color);
    margin: 2rem 0;
}

.hero-section-grid  .hero-image {
    text-align: right;
    margin-top: 2rem;
}

.hero-section-grid .section-text > :last-child {
    margin: 0;
}
@media (min-width: 768px) {
    .hero-section-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto auto auto;
        align-items: start;
    }

    .hero-section-grid .section-subtitle {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-section-grid .section-title {
        grid-column: 1;
        grid-row: 2;
    }
    .hero-section-grid .joined-class {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .hero-section-grid  .hero-image {
        grid-column: 2;
        grid-row: 1 / span 4;
        align-self: center; /* Centers the image vertically */
        margin: 0;
    }

    .hero-section-grid .section-text {
        grid-column: 1 / span 2;
        grid-row: 5;
    }

    .hero-section-grid .hero-cta {
        grid-column: 1 / span 2;
        grid-row: 6;
    }
    .hero-section-grid .hero-image .img-wrap {
        max-width: 90%;
        display: inline-block;
    }
}

@media (min-width: 1200px) {
    .hero-section-wrap .hero-section-content-wrap .hero-section-content .section-text {
        font-size: 1.5rem;
    }
    .hero-section-grid {
        grid-template-rows: auto auto auto auto;
    }
    .hero-section-grid .section-text {
        grid-column: 1;
        grid-row: 3;
    }
    .hero-section-grid .hero-cta {
        grid-row: 4;
    }

    .hero-section-grid .hero-cta {
        grid-column: 1;
    }

    .hero-section-grid .hero-image {
        grid-row: 1 / span 5;
    }
}


.svg-stroke-primary svg {
    stroke: var(--bs-primary);
}
.svg-path-stroke-primary svg path {
    stroke: var(--bs-primary);
}
.svg-path-stroke-primary .icon-fill svg path {
    stroke: none;
    fill: var(--bs-primary);
}
.fill-primary svg path,
.icon-fill svg path {
    fill: var(--bs-primary);

}

.svg-stroke-emphasis svg {
    stroke: var(--bs-emphasis-color);
}
.svg-stroke-tertiary-color svg {
    stroke: var(--bs-tertiary-color);
}

.logos-slider-area {
    overflow: hidden;
}

.logos-slider-area .logos {
    gap: 30px;
    padding-right: 20px;
    margin-right: 20px;
}

.logos .logo-slider-item {
    min-width: 165px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 992px) {
    .logos .logo-slider-item {
        min-width: 330px;
        height: 110px;
    }
}
.logos .logo-slider-item img {
    display: block;
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.logos .logo-img {
    display: block;
    min-width: calc(200px + 3rem);
    /* height: 150px; */
}
.logos .logo-img a {
    display: block;
}
.logo-img .title {
    font-family: var(--font-title);
    font-size: .85rem;
    letter-spacing: .25em;
    color: var(--bs-primary);
    text-transform: uppercase;
    margin-top: .75rem;
    line-height: 1.25;
    display: block;
    text-align: center;
}
/* Services */
.info-card {
    padding: 1.5rem 1rem;
    position: relative;
    height: 100%;
}

.info-card .info-icon {
    display: block;
    width: 2.8125rem;
    flex-shrink: 0;
}
.info-card .info-icon i {
    font-size: 2rem;
    line-height: 2.125rem;
}
@media (min-width: 576px) {
    .info-card {
        padding: 2rem;
    }
    .info-card .icon-title.bigger-style .info-icon {
        width: 3.25rem;
    }
    .info-card .info-icon i {
        font-size: 2.5rem;
        line-height: 2.8125rem;
    }
}
.info-card .info-icon img,
.info-card .info-icon svg {
    transform: none;
    display: block;
    width: 100%;
    height: 100%;
}

.info-card .icon-title {
    display: flex;;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.info-card .icon-title.bigger-style {
    display: block;
}
.info-card .icon-title.bigger-style {
    font-weight: 700;
}
.icon-title.bigger-style .info-icon {
    margin-bottom: 1rem;
    padding: .5rem;
    background: rgba(var(--bs-primary-rgb), .2);
    border-radius: .5rem;
    aspect-ratio: 1;
}
.info-card .info-icon img {
    object-fit: contain;
}

.info-card-title a {
    color: var(--bs-emphasis-color);
}

.info-badge {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: .85rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 10px;
    background: var(--bs-secondary);
    color: #ffffff;
    padding: 10px 20px;
}

.badge {
    white-space: normal;
    text-align: left;
}

.badge-success .info-badge {
    background: var(--bs-success);
}
.badge-danger .info-badge {
    background: var(--bs-danger);
}


/* Pricing */
.info-year, .info-month {
    display: none;
}
.yearly .info-year {
    display: block;
}
.monthly .info-month {
    display: block;
}

/* About */
.timeline .timeline-item {
    width: calc(50% - 4.5rem + 1px);
    position: relative;
    transition: .3s;
}
.timeline .timeline-item:before {
    content: '';
    height: calc(100% + 4.25rem);
    border-left: 1px dashed rgba(var(--bs-primary-rgb), .5);
    width: 1px;
    position: absolute;
    left: -4.5rem;
    top: 4.25rem;
}
.timeline .timeline-item:last-child::before {
    display: none;
}
.timeline .timeline-item .line-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}
.timeline .timeline-item + .timeline-item {
    margin-top: 4.25rem;
}
.timeline .timeline-item:nth-child(odd) {
    margin-left: auto;
}
.timeline .timeline-item:nth-child(even)::before {
    left: auto;
    right: -4.5rem;
}
.timeline .timeline-item-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.timeline .timeline-item .text p {
    margin: 0;
}

.timeline .timeline-item .number {
    position: absolute;
    background: var(--bs-secondary-bg);
    width: 3.25rem;
    height: 3.25rem;
    line-height: 3.25rem;
    text-align: center;
    border-radius: 50%;
    color: var(--bs-primary);
    font-size: 1.25rem;
    font-weight: 700;
    left: -4.5rem;
    top: 50%;
    transform: translate(-50%, -50%);
}
.timeline .timeline-item:nth-child(even) .number {
    left: auto;
    right: -4.5rem;
    transform: translate(50%, -50%);
}
/* nav pills - common to buttons and pills bar */
.nav-pills .nav-item button {
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: .5s;
    line-height: 2.5rem;
    padding: .5rem 2rem;
    color: currentColor;
}

.button-tabs .nav-item button {
    padding: .5rem 2rem .5rem .5rem;
    border-radius: 2rem;
    background: var(--button-bg);
    color: var(--button-color);
}

.nav-pills .nav-item button.no-icon {
    padding: .5rem 2rem;
}

.nav-pills .nav-item button .icon {
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    align-items: center;
    justify-content: center;
}

.button-tabs .nav-item button .icon {
    background: rgba(var(--bs-primary-rgb), .2);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
}
.button-tabs .nav-item button .icon svg,
.button-tabs .nav-item button .icon img {
    width: 50%;
    display: block;
}

.button-tabs .nav-item button .icon {
    background: currentColor;
}

.nav-pills .nav-item button.active {
    background: var(--button-sec-bg);
    color: var(--button-sec-color);

}
.pill-tabs .nav-item button {
    width: 100%;
    justify-content: center;
    padding: .5rem;
}

.pill-tabs .nav-item button .icon,
.pill-tabs .nav-item button svg .fill-primary {
    fill: currentColor;
}
.pill-tabs .nav-item {
    flex: 1;
}
.button-tabs .nav-item button .icon {
    fill: var(--button-bg);
}
.button-tabs .nav-item button.active .icon {
    fill: var(--button-hover-bg);
}

.tab-content .tab-content-title {
    font-family: var(--font-title);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.button-tabs-tab-content .tab-content-title {
    font-family: var(--font-title);
    background: var(--bs-secondary-bg);
    color: var(--bs-secondary-color);
}
.tab-content .tab-content-title .title {
   font-size: 1.5rem;
    line-height: 1.1;
    margin: 0;
} 

.tab-content .tab-content-title .icon {
    width: 2.125rem;
    height: 2.125rem;
    flex: 0 0 2.125rem;
    display: none;
}
@media screen and (min-width: 768px) {

    .tab-content .tab-content-title .icon {
        display: block;
    }
}

.tab-content .tab-content-title svg,
.tab-content .tab-content-title img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: contain;
}

.button-tabs-tab-content .content {
    background: var(--bs-secondary-bg);
    color: var(--bs-secondary-color);
}

.tab-content .content p:last-child {
    margin-bottom: 0;
}

.pill-tabs {
    border: none;
    padding: .75rem;
    border-radius: var(--bs-border-radius);
    justify-content: space-between; 
}
@media (min-width: 576px) {
    .pill-tabs {
        padding: .75rem 2rem;
    }
}

@media (max-width: 575px) {
    .images-card {
        padding-top: 0;
    }
}
.bg-body-secondary .pill-tabs {
    background: var(--bs-body-bg);
}
.tab-pane {    
    border-radius: var(--bs-border-radius);
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity));
    box-shadow: var(--bs-box-shadow);
}
.tab-pane-card .content + a {
    margin-top: 1.5rem;
}
@media (min-width: 1200px) {
    .tab-pane {    
        border-radius: 0;
        background-color: transparent;
        box-shadow: none;
    }
    .tab-pane-card {    
        border-radius: var(--bs-border-radius);
        background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity));
        box-shadow: var(--bs-box-shadow);
    }
    .ratio-xl-1x1 {
        --bs-aspect-ratio: 100%
        
    }
}
/* Testimonial */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}
.swiper-button-prev,
.swiper-button-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;    
    color: var(--bs-primary);
    font-size: 14px;
    transition: .3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--bs-primary);
    color: #ffffff;
}

/* Project */
.text-and-slider-area {
    position: relative;
}
.related-pages-area .slider-item,
.text-and-slider-area .slider-item,
.cross-link-slider-area  .slider-item {
    height: auto;
}

.text-and-slider-area .portfolio-item,
.cross-link-slider-area .portfolio-item {
    height: 100%;
}
.cross-link-item,
.portfolio-item-details {
    color: var(--bs-secondary-color);
    background-color: var(--bs-secondary-bg);
}
.bg-body-secondary .cross-link-item,
.bg-body-secondary .portfolio-item-details {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
}
.portfolio-item .portfolio-item-details {
    transition: all .3s;
}
.portfolio-item:hover .portfolio-item-details{
    box-shadow: 0 12px 25px -6px rgba(0, 0, 0, .25);
}
@media screen and (min-width: 576px) and (max-width: 991px) {
    .news-img-box {
        max-width: 100px;
        margin-bottom: 0 !important;
        margin-right: 1rem;

    }
    .portfolio-item-image img {
        max-width: 100px;
    }
}
@media screen and (min-width: 992px) {
    .info-card .icon-title.bigger-style {
        display: block;
        margin-bottom: 2rem;
    }
    .icon-title.bigger-style .info-icon {
        margin-bottom: 2rem;
    }
}

.swiper {
    padding: 0 20px 10px 20px;
    margin: 0 -20px;
}
.swiper-wrapper {
    padding-bottom: 1.5rem;
}
.swiper-pagination.custom {
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--bs-border-color);
    border-radius: .5rem;
}
.swiper-pagination.custom.swiper-pagination-lock {
    margin: 0 auto;
}
.swiper-pagination.custom .swiper-pagination-bullet {
    flex: 1;
    height: .25rem;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: .5rem;
    transition: .3s;
}
.swiper-pagination.custom .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--bs-emphasis-color);
}

@media  screen and (min-width: 992px) {
    .swiper-pagination.custom {
        width: max-content;
    }
    .swiper-pagination.custom .swiper-pagination-bullet {
        width: 2rem;
    }
}


/* Portfolio */
.filter.btn {
    margin-bottom: .5rem;
}
.filter.btn.active {
    background-color: var(--button-hover-bg);
}

@media (min-width: 992px) {
    .filter-group + .filter-group {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    }
}

.portfolio-detail-slider .slider-item {
    height: auto;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background: #f4f6fd;
}
.portfolio-detail h2,
.portfolio-detail .h2 {
    margin-bottom: 1rem;
}

/* Features */

.position-absolute-inside {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 2rem;
}


/* FAQ */

.faq-box {
    padding: 1.75rem 1.25rem 1.75rem 3rem;
    border-radius: 10px;
    position: relative;
    margin-bottom: 1.5rem;
    border: 1px solid var(--bs-light);
    box-shadow: 0 0 10px 0 var(--bs-light);
    display: inline-block;
    width: 100%;
}
.faq-items-box .faq-col .faq-box:last-child {
    margin-bottom: 0;
}
.faq-box .card-header {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    position: relative;
}
.faq-box .card-header button {
    border: none;
    width: 100%;
    background: none;
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    font-family: var(--font-title);
    text-align: left;

    transition: .3s;
}
.faq-box .faq-box-svg {
    background-color: rgba(var(--bs-primary-rgb), .1);

    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;    
    width: 1.75rem;
    height: 1.75rem;
    left: -2rem; 
    top: .25rem;
}
.faq-box .faq-box-svg svg {
    stroke: var(--bs-primary);
    width: 50%;
}
.faq-box .card-header button[aria-expanded="true"] {
    transform: translateY(-.5rem);
}
.card-image-title {
    background-color: rgba(var(--button-hover-bg-rgb),.9);
    color: var(--button-hover-color);
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .5rem;
    z-index: 1;
}
@media screen and (min-width: 575px) {
    .faq-box {
        padding: 1.75rem 1.25rem 1.75rem 6rem;
    }
    .faq-box .faq-box-svg {
        width: 3.75rem;
        height: 3.75rem;
        left: -4.75rem; 
        top: calc(50% - 1.875rem);
    }
}

.theme-btn.btn-block {
    justify-content: center;
}
.cta-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}
.cta-bubble .theme-btn {
    display: block;
    max-width: calc(100% - 30px);
    margin-left: 30px;
}
.theme-btn p {
    margin: 0;
}

.portfolio-detail-slider .slider-item-inner {
    display: flex;
    align-items: center;
    /* align-content: center; */
    height: 100%;
}

.portfolio-detail .description hr {
    display: none;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

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

/* iframe {
    width: 100%;
    aspect-ratio: 4/3;
} */

svg {
    max-width: 100%;
    height: auto;
}

svg .fill-primary {
    fill: var(--bs-primary);
}
svg .fill-secondary {
    fill: var(--bs-secondary);
}
svg .fill-secondary-bg {
    fill: var(--bs-secondary-bg);
}
svg .fill-current-color {
    fill: currentColor;
}
svg .font-title {
    font-family: var(--font-title);
    font-size: 1rem;
}

svg .stroke-primary {
    stroke: var(--bs-primary);
}
svg .stroke-secondary {
    stroke: var(--bs-secondary);
}
svg .stroke-secondary-bg {
    stroke: var(--bs-secondary-bg);
}
svg .stroke-current-color {
    stroke: currentColor;
}

.ccm__content__heading span {
    display: block;
}

.ccm__content__heading span + span {
    margin-top: 1rem;
}
.footer-links .list-unstyled {
    margin: 0;
}
.cta-bubble + .footer-area {
    padding-bottom: 140px !important;
}

#google-maps-placeholder {
    /* aspect-ratio: 4 /3; */
    background: var(--bs-body-bg);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 200px;
    max-width: 310px;
    width: 100%;
    position: relative;
}

.liame {
    unicode-bidi: bidi-override;
    direction: rtl;
    display: inline-block;
    white-space: nowrap;
    text-align: left;
    cursor: pointer;
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}

.liame:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

.round-bubble {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    background: var(--bs-primary);
    padding: 1rem;
    border-radius: 50%;
    font-size: .75rem;
    color: var(--button-color);
    font-family: var(--font-title);
    line-height: 1;
    aspect-ratio: 1;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}
.round-bubble.primary {
    background: var(--bs-primary);
    color: var(--button-color);
}
.round-bubble.dark {
    background: var(--bs-tertiary-bg);
    color:  var(--bs-tertiary-color);
    transform: translate(-25%, -34%);
    z-index: -1;
    position: relative;
    padding: 0 .5rem;
}
.round-bubble .bigger { 
    font-size: 3em;     
    margin-bottom: -.125em;
}
.round-bubble .smaller { 
    font-size: .75em;
    margin-top: .125em;
}

.hero-image .hero-seal-wrapper {
    display: inline-block;
    transform: translate(10%, -25%);
}
.hero-section-content-wrap:has(.no-hero-image) .hero-seal-wrapper {
    text-align: right;  
 }
 .hero-section-content-wrap:has(.no-hero-image) .round-bubble{
    margin-bottom: -2rem;
 }

@media screen and (min-width: 726) {
    .hero-section-content-wrap:has(.no-hero-image) .round-bubble {
        margin-top: -2rem;
     }
}


@media screen and (min-width: 1200px) {
    .round-bubble {
        font-size: 1.5em;
        padding: 2rem;
    }
    .round-bubble.dark {
        padding: 0 1rem;
    }
}

#wrap_contact_sorglos_submit {
    margin-bottom: 0;
}

.contact-facts img {
    max-height: 250px;
    width: auto;
}
#contact .contact-facts img {
    max-height: 175px;
}

@media (min-width: 1200px) {

    #contact .contact-facts .col-12 {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    /* #contact .contact-facts .col-12 + .col-12 {
        border-left: 1px solid var(--bs-border-color);
    } */
    #contact .contact-facts :last-child {
        margin-bottom: 0;
    }
}

mark {
    position: relative;
    padding: 0 4px;
    display: inline-block;
    background: none;
    margin: 0 !important;
}
  

  mark svg {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    z-index: -1;
    overflow: hidden;
    margin: auto !important;
    padding: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 54px;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    will-change: stroke-dashoffset;
    pointer-events: none;
    stroke-opacity: .3;
    stroke: var(--bs-primary);
    width: 105.5%;
    height: 104%;
    transform: skewX(-17deg);
  }
  
mark.underline > svg {    
    animation: paintStroke 1s ease-in-out forwards;
}

/* SlideLeft Effects */
@keyframes paintStroke {
    0% {
        stroke-dashoffset: 400;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.round-icon {
    text-align: center;
}
.round-icon .info-icon {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    background: var(--bs-secondary-bg);
    border-radius: 50%;
}
.round-icon .info-icon img, 
.round-icon .info-icon svg {
    width: 60%;
    height: 60%;
    margin: 20%;
    object-fit: contain;
}
.round-icon .info-icon i {
    font-size: 3rem;
    line-height: 4rem;
}
.round-icon .info-icon svg {
    fill: var(--bs-primary);
}
.round-icon.highlight .info-icon {
    background: var(--button-bg);
}
.round-icon.highlight .info-icon svg {
    fill: var(--button-color);
}
.round-icon.highlight .info-card-title {
    margin-bottom: 0;
}
.round-icon .icon-title:has(.info-card-title) + .text {
    margin-top: 1rem;
}
.col-md-1\/5 {
    width: 20%;
}
@media screen and (min-width: 768px) {
    .col-md-1\/5 {
        width: 20%;
    }
    .info-cards-area  .round-icon .info-icon {
        width: 6rem;
        height: 6rem;
    }
}
@media screen and (min-width: 992px) {
    .col-lg-1\/5 {
        width: 20%;
    }
    .round-icon.highlight .info-icon {
        transform: scale(1.25);
    }
}
@media screen and (min-width: 1200) {
    .col-xl-1\/5 {
        width: 20%;
    }
}
.image-text-area .col-xl-6 .img-wrap {
    max-width: 730px;
    margin: 0 auto;
}

.smaller-img.image-text-area .col-xl-6 .img-wrap {
    max-width: 300px;
    width: 25vw;
}

.glossary-term-link {
    color: var(--bs-link-color);
}
.glossary-term-link:hover {
    color: var(--bs-link-hover-color);
    cursor: pointer;
}
.glossary-term-link i {
    font-size: 85%;
    margin-left: -.35em;
    display: inline-block;
    transform: translateY(-.25em);
}
.tooltip-inner {
    text-align: left;
}
.tooltip-inner p {
    margin-bottom: .25em;
}

.slider-figure {
    margin: 0;
}
.slider-figure figcaption {
    display: block;
    padding: .5rem;
    background: rgba(221, 221, 221, .2);
    width: 100%;
    text-align: center;
}

blockquote {
    border-left: .25em solid rgba(var(--bs-primary-rgb), .5);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
    padding: .25rem 1.5rem 3.25rem 1.5rem;
}

.blockquote-sm {
    padding: 0rem 0 1rem 1rem;
    margin-bottom: 1rem;
}
.testimonial-slider-wrap .blockquote-sm {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    blockquote.blockquote-big  {
        padding: .25rem 5rem 0.25rem 3rem;
    }
}
blockquote:has(img) {
    padding-right: 0;
}
/* blockquote:before {
    content: "\201C";
    display: inline;
    color: rgba(var(--bs-primary-rgb), .5);
    font-size: 2em;
    margin-right: .25em;
    font-family: var(--font-title);
} */
blockquote:after {
    content: "\f10e";
    font-family: 'Line Awesome Free';
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: var(--bs-primary);
    font-size: 3em;
    position: absolute;
    bottom: 0;
    right: 0;
}
.blockquote-sm:after {
    font-size: 2em;
}
blockquote > :first-child {
    display: inline;
}
blockquote p + p {
    margin-top: .5em;
}
blockquote small {
    font-style: normal;
    opacity: .7;
}
.mt-n3 {
    margin-top: -1rem;
}

.section-title.with-icon {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.wrap-title-icon {
    width: 1.5em;
    height: 1.5em;
    background: var(--bs-secondary-bg);
    border-radius: 50%;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
}
.bg-body-tertiary .wrap-title-icon {
    background: rgba(var(--bs-tertiary-color-rgb), .1);
}
.bg-body-secondary .wrap-title-icon {
    background: rgba(var(--bs-secondary-color-rgb), .1);
}
.wrap-title-icon svg,
.wrap-title-icon img {
    width: 60%;
    height: 60%;
    margin: 20%;
    display: block;
    object-fit: contain;
}
.page-navigation-item  {
    font-size: 1.25rem;
    font-family: var(--font-title);
    display: flex;
    gap: .5rem;
    align-items: center;
    position: relative;
}


.page-navigation-item .wrap-title-icon {
    width: 2.5em;
    height: 2.5em;
}

.page-navigation-item svg .fill-primary {
    fill: var(--bs-body-color);
} 


.column-break {
    break-before: column;
    height: 0;
}
.company-logo {
    width: 100px;
    height: 40px;
    object-fit: contain;
    object-position: center right;
    margin-top: -1rem;
}






.tabs-outer-wrapper {
    position: relative;
}


.tabs-inner-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
}


.tab-arrow {
    position: absolute;
    top: 0;
    z-index: 1;
    padding: .5rem;
    cursor: pointer;
    line-height: 2.5rem;
    color: var(--button-sec-color);
    background: var(--button-sec-bg);
    border: 0;
    text-decoration: none;
    border-radius: var(--bs-border-radius);
    opacity: .8;
}


.tab-arrow:hover {
    color: var(--button-hover-color);
    background: var(--button-hover-bg); 
}

.pill-tabs .tab-arrow {
    top: .75rem;
}

.button-tabs .tab-arrow {
    border: 0;
    border-radius: 2rem;
}

.tab-arrow.left-arrow {
    left: 0;
}
.tab-arrow.right-arrow {
    right: 0;
}

.tab-arrow.disabled {
    opacity: 0;
    z-index: -1;
    cursor: not-allowed;
}


.special-bg {
    position: relative;
    background: linear-gradient(180deg, var(--header-bg-color) 0%, var(--header-bg-subcolor) 30%, var(--header-bg-subcolor) 70%, transparent 100%);
}

.special-bg .bg-shape {
    position: absolute;
    left: 0;
    top: 90px;
    pointer-events: none;
}

div#FormBuilderSubmitted {
    position: relative;
    top: -200px;
}


.breadcrumb {
    --bs-breadcrumb-divider-color: currentColor;
}


.text:has(table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.text table td {
    height: auto;
}

.text table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-emphasis-color);
    --bs-table-bg: var(--bs-body-bg);
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-emphasis-color);
    --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
    --bs-table-active-color: var(--bs-emphasis-color);
    --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
    --bs-table-hover-color: var(--bs-emphasis-color);
    --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
    border-width: 0;
}

.text table>:not(caption)>*>* {
    padding: .5rem .5rem;
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
/* ============================================================== 
    # Search
=================================================================== */
.search-wrapper {
    position: relative;
}

.search-wrapper .form-control {
    padding-right: 145px;
    border-radius: 2rem;
    height: 64px;
    padding-left: 1rem;
}

.search-wrapper .theme-btn {
    position: absolute;
    width: 105px;
    right: 4px;
    top: 4px;
}

.search-wrapper .btn-link {
    text-decoration: none;
    position: absolute;
    top: 4px;
    right: 109px;
    padding: .75rem .5rem;
}
.search-wrapper .btn-link:hover {
    color: var(--bs-emphasis-color);
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

#searchModal .modal-header {
    background-color: #f7f7f7;
    border: 0;
}
#searchModal .modal-body {
    background-color: #f7f7f7;
}
[data-bs-theme=dark] #searchModal .modal-header,
[data-bs-theme=dark] #searchModal .modal-body {
    background-color: #2f434d;
}
#searchModal .list-group {
    overflow: hidden;
}
#searchModal .list-group-item a:hover {
    background: var(--bs-link-color);
    color: var(--bs-body-bg);
}

#searchModal .list-group-item a:hover .section-subtitle{
    color: var(--bs-body-bg);
}

/* ============================================================== 
    # Swiper inits
=================================================================== */
.swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 24px;
}
.swiper.swiper-medium:not(.swiper-initialized) .slider-item {
    flex: 0 0 calc(70% - 24px);
}
@media screen and (min-width: 576px) {
    .swiper.swiper-medium:not(.swiper-initialized) .slider-item {
        flex: 0 0 calc(50% - 12px);
    }
}
@media screen and (min-width: 992px) {
    .swiper:not(.swiper-initialized) .slider-item {
        flex: 0 0 calc(50% - 12px);
    }
}
@media screen and (min-width: 1024px) {
    .swiper.swiper-medium:not(.swiper-initialized) .slider-item {
        flex: 0 0 calc(33% - 12px);
    }
}
@media screen and (min-width: 1700px) {
    .swiper.swiper-medium.swiper-big:not(.swiper-initialized) .slider-item {
        flex: 0 0 calc(25% - 18px);
    }
}


@media (max-width: 575px) {
    .header-right .button-hidden-xs {
        display: none;
    }

    .contact-facts i {
        display: none;
    }
    
    .contact-facts .theme-btn {
        white-space: nowrap;
    }
}


@media (min-width: 1200px) {
    .logo img {
        height: 65px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }

    .hero-section-wrap .section-title {
        font-size: 2.75rem;
    }

}

@media (min-width: 1300px) {

    .swiper-button-prev, 
    .swiper-button-next {
        background: rgba(var(--bs-primary-rgb), .05);
        width: 58px;
        height: 58px;
        font-size: 25px;
    }

    .swiper-button-prev {
        left: -70px;
    }
    .swiper-button-next {
        right: -70px;
    }


}


@media (max-width: 1700px) {
    footer,
    section {
        overflow: hidden;
    }
}



@media (max-width: 1399px) {
    .career-body .career-lists {
        padding-left: 70px;
    }
    .career-body .career-left {
        max-width: 400px;
        padding-right: 70px;
        top: 0;
    }
    .mega-menu-inner > .container-xl {
        padding: 0;
    }

}
@media (max-width: 1199px) {
    .theme-btn:has(.theme-btn-visually-hidden) {
        gap: 0;
    }
    .theme-btn .theme-btn-visually-hidden {
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }
}

@media (max-width: 991px) {
    .timeline {
        padding-left: 4.5rem;
    }
    .timeline .timeline-item {
        width: 100%;
    }
    .timeline .timeline-item:nth-child(odd) {
        margin-left: 0;
    }
    .timeline .timeline-item:nth-child(even) .number,
    .timeline .timeline-item .number {
        right: auto;
        left: -2.25rem;
        transform: translate(-50%, -50%);
    }
    .timeline .timeline-item:before,
    .timeline .timeline-item:nth-child(even)::before {
        right: auto;
        left: -2.25rem;
    }
    .timeline .timeline-item {
        max-width: 100%;
    }
    .header .custom-row {
        flex-direction: column;
    }

}

@media (max-width: 575px) {
    .header-bar .header-bar-body:has(.left):has(.right) {
        gap: 20px;
    }
    .copyright-area .custom-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

}

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 10rem;
    }
}

section:has(.empty-module) {
    padding: 0;
}


.contact-facts div.with-icon i {
    font-size: 2rem;
    display: inline-block;
    vertical-align: middle;
    padding: .5rem;
    background: rgba(var(--bs-primary-rgb), .2);
    border-radius: .5rem;
    color: var(--bs-primary);
    position: absolute;
    left: 0;
}
.contact-facts  .with-icon {
    position: relative;
    padding-left: 3.5rem;
}

.contact-facts .with-icon {

    margin-bottom: 1rem;
}
@media (min-width: 1200px) {
    .contact .contact-facts {
        max-width: 432px;
    }
}

.callout-area {
    --grid-size: 2rem;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity));
    color: var(--bs-secondary-color);
    background-image: linear-gradient(rgba(var(--bs-secondary-rgb), .1) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--bs-secondary-rgb), .1) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    margin-bottom: var(--section-spacing);

}

.callout-area .callout-area-text {
        background: #fff;
    padding: 3rem;
    border-radius: .5rem;
    box-shadow: var(--bs-box-shadow-lg);
}

.svg-flag {
    width: 1rem;
    margin-right: .5rem;
}

.link-reset {
    color: currentColor;
}




.logo-footer {
 width: 150px;
 margin: 0 auto;
}

.logo-footer-img {
 /* fill: #fff; */
    fill: var(--bs-tertiary-color);
    stroke: var(--bs-tertiary-color);
 /* stroke: #fff; */
 stroke-miterlimit: 5;
}
.logo-footer .animate-draw {
  fill-opacity: 0;
}

.logo-footer.animate-logo .animate-draw {
animation-timing-function: ease-in-out;
animation-fill-mode: forwards;
animation-iteration-count: 1;
animation-name: DrawLine, FadeStroke, FillIn;
animation-duration: 4s, 1s, 1s;
animation-delay: 0s, 2s, 2s;
}

.logo-footer-img  .draw-logo {
stroke-dashArray: 1100;
stroke-dashoffset: 1100;
}

.logo-footer-img  .draw-text {
stroke-dashArray: 300;
stroke-dashoffset: 300;
}


@keyframes DrawLine {
 to { stroke-dashOffset: 0; }
}

@keyframes FadeStroke {
 to { stroke-opacity: 0; }
}

@keyframes FillIn {
 from { fill-opacity: 0; }
 to { fill-opacity: 1; }
}

.aspect-ratio-16x9 {
    aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
    .visually-hidden-sm {
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
        position: absolute;
    }
}
.header-bar {
    font-size: 16px;
}

@media screen and (min-width: 1400px) {
    .navbar-nav > .nav-item > .nav-link {
        --bs-nav-link-padding-y: 2rem;
    }
    /* Remove outlines for pointer interactions */
    .navbar .nav-link:focus,
    .navbar .nav-link:focus-visible {
        outline: none;
        box-shadow: none;
    }
    
    /* Keep accessible outline for keyboard nav only */
    .using-keyboard .navbar .nav-link:focus,
    .using-keyboard .navbar .nav-link:focus-visible {
        outline: 0.125rem solid #39638a;
    }
       
}