:root {
    --primary-color: #7c7c7c;
    --secondary-color: #F9F9F9;
    --text-color: #104862;
    --accent-color: #104862;
    --white-color: #FFFFFF;
    --divider-color: #EEEDED;
    --dark-divider-color: #ffffff3d;
    --error-color: rgb(230, 87, 87);
    --default-font: "Sora", sans-serif;
/*     --accent-font: "Marcellus", serif; */
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    background-color: var(--white-color);
    color: var(--text-color);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--default-font);
    font-weight: 400;
    line-height: 1.1em;
    color: #000000;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
/*     visibility: hidden; */
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: capitalize;
    /* background: #0075B8; */
    color: #0075B8;
    border-radius: 30px;
    padding: 14px 36px;
    border: 1px solid #0075B8;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.btn-default:hover {
    background-color: transparent;
    color: #fff;
}

.btn-default::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: #104862;
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 20px;
}

.btn-default.btn-highlighted:hover {
    color: var(--white-color);
}

.readmore-btn {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
    color: var(--primary-color);
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 0;
    transform: translateY(-50%);
    background: url('../images/arrow-accent.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
    filter: brightness(0) saturate(100%) invert(23%) sepia(71%) saturate(2975%) hue-rotate(185deg) brightness(99%) contrast(101%);
}

.readmore-btn:hover:before {
    filter: brightness(0) invert(0);
}

/* .cb-cursor:before{
	background: var(--accent-color);
} */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-btn {
    text-align: end;
}

.section-title {
    margin-bottom: 40px;
}

.section-title-content p {
    margin: 0;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    padding-left: 18px;
    margin-bottom: 15px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.section-title h1 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 0;
    /* cursor: none; */
}

.section-title h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 0;
    /* cursor: none; */
}

.section-title p {
    margin-top: 30px;
    margin-bottom: 0;
    color: #595959;
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: sticky;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
    top: 0;
    background: #fff;
}

header.main-header .header-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    border-bottom: 1px solid var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

header.main-header .header-sticky.active::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
}

.navbar {
    padding: 8px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: right;
    margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    padding: 14px 20px !important;
    color: #000000;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 6px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: #ffffff;
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.header-btn {
    margin-left: 20px;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-180deg);
    color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background: url('../images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 260px 0 60px;
    /* margin-top: -116px; */
    min-height: 85vh;
}

.hero::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(38, 38, 38, 0.3) 64.59%, #262626 101.91%), linear-gradient(270deg, rgba(38, 38, 38, 0) 44.72%, #262626 117.07%), linear-gradient(180deg, rgba(38, 38, 38, 0) 68.75%, rgba(38, 38, 38, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 200px 0;
    min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1.91deg, rgba(38, 38, 38, 0.3) 64.59%, #262626 101.91%), linear-gradient(270deg, rgba(38, 38, 38, 0) 44.72%, #262626 117.07%), linear-gradient(180deg, rgba(38, 38, 38, 0) 68.75%, rgba(38, 38, 38, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: left;
    padding-left: calc(((100vw - 1300px) / 2));
    z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 640px;
    z-index: 2;
}

.hero-content .section-title p,
.hero-content .section-title h1,
.hero-content .section-title h3 {
    color: var(--white-color);
}

.hero-content .section-title h3::before {
    background: var(--white-color);
}

.hero-content-body {
    display: flex;
    align-items: center;
}

.hero-btn {
    margin-right: 20px;
}

.hero-client-box {
    display: flex;
    align-items: center;
}

.hero-client-box .customer-images {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img {
    position: relative;
    display: inline-block;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.customer-img:first-child {
    margin: 0;
}

.customer-img figure {
    display: block;
}

.customer-img img {
    max-width: 100%;
    border-radius: 50%;
}

.customer-img.add-more {
    width: 52px;
    height: 52px;
    background-color: var(--accent-color);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img.add-more p {
    font-family: var(--default-font);
    color: var(--white-color);
    margin: 0;
}

.hero-client-content p {
    color: var(--white-color);
    margin: 0;
}

.hero-list {
    position: relative;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 180px;
    padding: 60px 0 0;
    z-index: 1;
}

.hero-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.hero-list ul li {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    color: var(--white-color);
    padding-left: 34px;
}

.hero-list ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--white-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/



/* Mobile submenu styles */
@media (max-width: 991px) {
  /* hide desktop hover submenus on mobile, show only when .open */
  .navbar-nav li > ul,
  .responsive-menu li > ul {
    display: none;
    padding-left: 14px; /* indent submenu items */
    margin-top: 8px;
  }

  .navbar-nav li.open > ul,
  .responsive-menu li.open > ul {
    display: block;
  }

  /* make parent link and toggle appear inline */
  .navbar-nav li > a,
  .responsive-menu li > a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }

  /* submenu toggle button (unstyled icon) */
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 0;
    width: 22px;
    height: 22px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
  }

  /* avoid default button appearance on some browsers */
  .submenu-toggle::-moz-focus-inner { border: 0; padding: 0; }

  /* rotate when open */
  .submenu-toggle .fa {
    transition: transform 0.18s ease;
    display: inline-block;
  }
  li.open > .submenu-toggle .fa,
  li.open > a > .submenu-toggle .fa { /* cover cases where toggle is after anchor */
    transform: rotate(180deg);
  }

  /* small spacing for top-level items so toggle doesn't wrap down */
  .navbar-nav li,
  .responsive-menu li {
    white-space: nowrap;
  }
}



.about-us {
    padding: 90px 0;
}

.about-us-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
}

.about-img-1 {
    width: calc(40% - 15px);
}

.about-img-2 {
    width: calc(60% - 15px);
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-1 figure {
    display: block;
}

.about-img-1 img {
    aspect-ratio: 1 / 1.75;
    object-fit: cover;
}

.about-img-2 figure {
    display: block;
    mask-image: url(../images/about-img-2-bg-shape.svg);
    background-image: url(../images/about-img-2-bg-shape.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.about-img-2 img {
    aspect-ratio: 1 / 1.75;
    object-fit: cover;
}

.about-customer-box {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    border-radius: 20px;
    width: 100%;
    max-width: 370px;
    padding: 30px;
}

.about-customer-rating {
    margin-bottom: 15px;
}

.about-customer-rating i {
    font-size: 14px;
    color: var(--accent-color);
}

.about-customer-content {
    margin-bottom: 15px;
}

.about-customer-content p {
    margin: 0;
}

.about-customer-content p span {
    color: var(--primary-color);
}

.about-customer-box .customer-images {
    display: flex;
    align-items: center;
}

.about-us-content {
    margin-left: 25px;
}

.about-vision-mission {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    border-bottom: 1px solid var(--divider-color);
    padding: 40px 0;
    margin-bottom: 40px;
}

.vision-mission-content {
    width: calc(50% - 15px);
}

.vision-mission-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.vision-mission-content p {
    margin: 0;
    color: #595959;
}

.vision-mission-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-mission-content ul li {
    position: relative;
    display: inline-block;
    padding-left: 34px;
    margin-bottom: 20px;
}

.vision-mission-content ul li:last-child {
    margin-bottom: 0;
}

.vision-mission-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.about-us-content-btn .btn-default.btn-highlighted {
    margin-left: 30px;
}

/************************************/
/***    06. Our Services css      ***/
/************************************/

.our-services {
    background: var(--secondary-color);
    padding: 100px 0;
}

.service-item {
    position: relative;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.service-image a {
    position: relative;
    display: block;
    /* cursor: none; */
}

.service-image a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-image img {
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    max-width: 210px;
    z-index: 2;
}

.service-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.service-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.service-btn .readmore-btn {
    display: block;
    color: var(--white-color);
}

.service-btn .readmore-btn:hover {
    color: var(--accent-color);
}

.service-btn .readmore-btn::before {
    filter: brightness(0) invert(1);
}

.service-get-quote-text {
    text-align: center;
    margin-top: 20px;
}

.service-get-quote-text p {
    margin: 0;
}

.service-get-quote-text p span {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 100px;
    font-weight: 500;
    line-height: 1.1em;
    padding: 2px 10px;
    margin-right: 5px;
}

.service-get-quote-text a {
    font-weight: 700;
    text-decoration: underline;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.service-get-quote-text a:hover {
    color: var(--accent-color);
}

/************************************/
/***    07. Why Choose Us css     ***/
/************************************/

.why-choose-us {
    padding: 100px 0 0;
}

.why-choose-us-box {
    /* height: 70%; */
    display: flex;
    gap: 30px;
}

.why-choose-image {
    position: relative;
    width: 33%;
    /* height: 52%; */
}

.why-choose-image figure {
    height: 78%;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.why-choose-image figure img {
    width: 100%;
    height: unset;
    aspect-ratio: 1 / 1.62;
    object-fit: cover;
    border-radius: 20px;
}

.contact-circle-img {
    position: absolute;
    right: -15px;
    bottom: 29%;
    transform: translate(50%, -50%);
    z-index: 1;
}

.contact-circle-img img {
    max-width: 130px;
    animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.why-choose-content {
    width: 67%;
    height: 100%;
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.why-choose-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.why-choose-item .icon-box {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 20px;
    transition: all 0.5s ease-in-out;
}

.why-choose-item:hover .icon-box {
    background-color: transparent;
}

.why-choose-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item:hover .icon-box::before {
    transform: scale(1);
}

.why-choose-item .icon-box img {
    position: relative;
    max-width: 24px;
    z-index: 1;
}

.why-choose-item-content {
    width: calc(100% - 60px);
}

.why-choose-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.why-choose-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.why-choose-body-content,
.why-choose-body-image {
    width: calc(50% - 15px);
}

.why-choose-body-image figure,
.why-choose-body-image img {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-body-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.why-choose-body-content p {
    margin-bottom: 15px;
    color: #595959;
}

/************************************/
/***      08. What We Do css      ***/
/************************************/

.what-we-do {
    background: linear-gradient(180deg, var(--secondary-color) 65%, var(--white-color) 35%);
    padding: 100px 0 50px;
}

.intro-video-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 170px 100px 50px;
}

.intro-video-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0) 65.21%, rgba(38, 38, 38, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.intro-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: relative;
    z-index: 1;
}

.video-play-button a {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 100%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* cursor: none; */
}

.video-play-button a:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--divider-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--divider-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a i {
    font-size: 30px;
    color: var(--white-color);
}

.intro-video-counter {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 120px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 50px;
    margin-top: 170px;
    z-index: 1;
}

.video-counter-item h2 {
    font-size: 50px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.video-counter-item p {
    color: var(--white-color);
    text-transform: capitalize;
    opacity: 80%;
    margin: 0;
}

/************************************/
/***      09. Case Study css	  ***/
/************************************/

.case-study {
    padding: 50px 0 70px;
}

.case-study-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.case-study-image {
    border-radius: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

.case-study-image figure,
.case-study-image a {
    display: block;
    /* cursor: none; */
    border-radius: 20px;
}

.case-study-image img {
    width: 100%;
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-content {
    margin-bottom: 30px;
}

.case-study-content h3 {
    font-size: 22px;
    line-height: 1.4em;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #000;
}

.case-study-content h3 a {
    color: inherit;
}

.case-study-content p {
    margin: 0;
}

/************************************/
/***      10. How It Work css	  ***/
/************************************/

.how-it-work {
    background: var(--secondary-color);
    padding: 100px 0;
}

.how-work-step-box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.how-work-step-item {
    position: relative;
    width: calc(25% - 30px);
    background: url('../images/how-work-step-arrow-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 60% auto;
    display: flex;
    flex-wrap: wrap;
}

.how-work-step-item:nth-child(even) {
    background: url('../images/how-work-step-arrow-2.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 60% auto;
    flex-direction: column-reverse;
}

.how-work-step-item:last-child,
.how-work-step-item:nth-child(4n + 4) {
    background: transparent;
}

.how-work-step-no {
    position: relative;
    background-color: #104862;
    border-radius: 8px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.how-work-step-item:nth-child(even) .how-work-step-no {
    margin: 30px 0 0 0;
}

.how-work-step-no::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.how-work-step-item:hover .how-work-step-no::before {
    transform: scale(1);
}

.how-work-step-no h3 {
    position: relative;
    font-family: var(--default-font);
    font-size: 50px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
    z-index: 1;
}

.how-work-step-content {
    width: 100%;
    max-width: 210px;
}

.how-work-step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.how-work-step-content p {
    margin: 0;
}

/************************************/
/***       11. Cta Box Css        ***/
/************************************/

.cta-section {
    padding: 100px 0 50px;
}

.cta-box {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: end;
    padding: 0 60px 0 30px;
}

.cta-box-image {
    width: 40%;
}

.cta-box-image img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
}

.cta-box-content {
    width: 60%;
    margin: 60px 0 60px 30px;
}

.cta-box-content .section-title h3,
.cta-box-content .section-title h2,
.cta-box-content .section-title p {
    color: var(--white-color);
}

.cta-box-content .section-title h3::before {
    background: var(--white-color);
}

.cta-box-content .cta-box-btn {
    position: relative;
}

.cta-box-content .cta-box-btn:before {
    content: '';
    position: absolute;
    width: 85px;
    height: 42px;
    top: 50%;
    right: 60%;
    transform: translate(0, -50%);
    background: url('../images/arrow-cta-btn.svg') no-repeat right center;
    background-size: cover;
    animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject {
    50% {
        right: 55%;
    }
}

.cta-box-btn .btn-default {
    background: var(--white-color);
    color: var(--accent-color);
}

.cta-box-btn .btn-default:hover {
    color: var(--white-color);
}

/************************************/
/***    12. Our Testimonial css	  ***/
/************************************/

.our-testimonial {
    padding: 50px 0 100px;
}

.testimonial-review-box {
    background: var(--secondary-color);
    border-radius: 20px;
    text-align: center;
    padding: 40px 80px;
}

.testimonial-site-logo {
    margin-bottom: 25px;
}

.testimonial-site-logo img {
    max-width: 160px;
}

.testimonial-review-box .about-customer-rating {
    display: inline-block;
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 15px 20px;
}

.testimonial-review-box .about-customer-rating i {
    font-size: 18px;
    color: var(--white-color);
}

.testimonial-review-box .customer-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
}



.testimonial-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.testimonial-slider-image {
    width: calc(35% - 15px);
}

.testimonial-slider-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-slider-image img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1 / 0.999;
    object-fit: cover;
}

.testimonial-slider-content {
    width: calc(65% - 15px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 2px;
}

.testimonial-rating i:last-child {
    margin-right: 0;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    margin-bottom: 0;
}

.author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.author-content p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-pagination {
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: right;
    z-index: 1;
}

.testimonial-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    position: relative;
    width: 22px;
    border-radius: 100px;
    background-color: var(--accent-color);
}

.testimonial-company-slider {
    margin-top: 80px;
}

.testimonial-company-slider .company-logo {
    text-align: center;
}

.testimonial-company-slider .company-logo img {
    width: 100%;
    max-height: 40px;
}

/************************************/
/***      	13. Our FAQs css	  ***/
/************************************/

.our-faqs {
    position: relative;
    background: url('../images/faqs-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0;
}

.our-faqs::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 90%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.our-faqs-content {
    position: relative;
    margin-right: 20px;
    z-index: 1;
}

.our-faqs-content .section-title h3,
.our-faqs-content .section-title h2 {
    color: var(--white-color);
}

.our-faqs-content .section-title h3::before {
    background: var(--white-color);
}

.faq-cta-box {
    position: relative;
    display: inline-block;
    backdrop-filter: blur(50px);
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    overflow: hidden;
}

.faq-cta-box::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    opacity: 5%;
    width: 100%;
    height: 100%;
}

.faq-cta-box .customer-images {
    margin-bottom: 20px;
}

.faq-cta-box-content h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.btn-faqs {
    position: relative;
    color: var(--white-color);
    padding-left: 30px;
}

.btn-faqs::before {
    content: '\f2a0';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    left: 0;
    top: 0;
    bottom: 0;
    color: var(--white-color);
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
    position: relative;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--white-color);
    align-items: start;
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
    margin-right: 5px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f0fe';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    text-align: right;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f146';
}

.faq-accordion .accordion-item .accordion-body {
    padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
    padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
    color: var(--white-color);
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}

/************************************/
/***       14. Our Blog css       ***/
/************************************/

.our-blog {
    padding: 100px 0 20px;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image figure a {
    /* cursor: none; */
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-featured-image img {
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 20px;
}

.post-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h3 a {
    color: inherit;
}

/************************************/
/***    15. Our Appointment css	  ***/
/************************************/

.our-appointment {
    background: linear-gradient(180deg, var(--white-color) 50%, var(--accent-color) 50%);
    padding: 50px 0 100px;
}

.our-appointment-box {
    background: var(--white-color);
    box-shadow: 0px 0px 50px 0px #0000000A;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    padding: 100px;
}

.our-appointment-content,
.appointment-form {
    width: calc(50% - 30px);
}

.appointment-form form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder {
    text-transform: capitalize;
    color: var(--text-color);
}

.appointment-form form .form-group select {
    padding: 16px 30px 16px 20px;
}

.appointment-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
}

.appointment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.appointment-item .icon-box {
    margin-right: 20px;
}

.appointment-item .icon-box img {
    max-width: 60px;
}

.appointment-item-content {
    width: calc(100% - 80px);
}

.appointment-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.appointment-item-content p {
    margin: 0;
}

.our-partner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}

.partner-logo-box,
.our-partner-content {
    width: calc(50% - 15px);
}

.our-partner-content .section-title {
    margin-bottom: 0;
}

.our-partner-content .section-title h3,
.our-partner-content .section-title h2,
.our-partner-content .section-title p {
    color: var(--white-color);
}

.our-partner-content .section-title h3::before {
    background: var(--white-color);
}

.partner-logo-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.partner-logo-image {
    width: calc(33.33% - 33.33px);
    text-align: center;
}

.partner-logo-image img {
    width: 100%;
    max-height: 40px;
    transition: all 0.3s ease-in-out;
}

.partner-logo-image img:hover {
    filter: invert(1);
}

/************************************/
/***    	16. Footer css		  ***/
/************************************/

.footer-cta-box {
    background: #83CCEB;
    padding: 45px 0;
}

.footer-cta-content .section-title {
    margin-bottom: 0;
}

.footer-cta-content .section-title h2 {
    color: var(--white-color);
}

.footer-cta-btn {
    text-align: right;
}

.footer-cta-btn .btn-default i {
    font-size: 18px;
    margin-right: 5px;
    color: var(--white-color);
}

.footer-cta-btn .btn-default.btn-phone {
    background: var(--dark-divider-color);
}

.footer-cta-btn .btn-default.btn-phone::before {
    background: var(--accent-color);
}

.footer-cta-btn .btn-default.btn-comment {
    margin-left: 30px;
}

.footer-cta-btn .btn-default.btn-comment::before {
    background: var(--dark-divider-color);
}

.main-footer {
    background: #104862;
    padding: 60px 0 0;
    color: #fff;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    max-width: 160px;
}

.footer-contact-box {
    display: grid;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.footer-contact-item p {
    text-transform: capitalize;
    margin-bottom: 10px;
}

.footer-contact-item h3 {
    font-size: 20px;
}

.footer-social-links h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.footer-social-links p {
    margin-bottom: 25px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    border: 1px solid #ffffff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    border-color: var(--primary-color);
}

.footer-social-links ul li a i {
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
    color: var(--primary-color);
}

.footer-copyright {
    position: relative;
    border-top: 1px solid var(--divider-color);
    padding: 30px 0;
    margin-top: 40px;
    z-index: 1;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-menu ul li {
    display: inline-block;
    margin-right: 50px;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-menu ul li a {
    font-family: var(--default-font);
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a {
    color: var(--accent-color);
}

/* .footer-copyright-text {
    text-align: end;
} */

.footer-copyright-text p {
    margin: 0;
}

/************************************/
/***    17. About Us Page css	  ***/
/************************************/

.page-header {
    position: relative;
    background: url('http://localhost/snatch/wp-content/uploads/2025/10/hero-bg-2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 270px 0 170px;
    margin-top: -116px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(38, 38, 38, 0) 75.27%, rgba(38, 38, 38, 0.8) 100%), linear-gradient(270deg, rgba(38, 38, 38, 0) 45.18%, #000000 105.08%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box {
    position: relative;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 70px;
    color: var(--white-color);
    margin-bottom: 10px;
    /* cursor: none; */
}

.page-header-box ol {
    margin: 0;
    padding: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "FontAwesome";
    font-size: 8px;
    color: var(--white-color);
}

.our-approach {
    background: var(--secondary-color);
    padding: 100px 0;
}

.our-approach-list {
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.our-approach-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 35px;
}

.our-approach-item::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 22px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 0;
    left: 0;
}

.our-approach-item:last-child {
    margin-bottom: 0;
}

.approach-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.approach-item-content p {
    margin: 0;
}

.our-approach-image {
    position: relative;
    padding: 0 0 100px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.our-approach-img-1 figure,
.our-approach-img-2 figure,
.our-approach-img-1 img,
.our-approach-img-2 img {
    display: block;
    border-radius: 20px;
}

.our-approach-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
}

.our-approach-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 525px;
}

.our-approach-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.our-team {
    padding: 50px 0 100px;
}

.our-team-content {
    position: sticky;
    top: 30px;
}

.mental-therapy-counter {
    display: inline-block;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px 60px;
}

.mental-therapy-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mental-therapy-header .icon-box {
    margin-right: 26px;
}

.mental-therapy-header .icon-box img {
    max-width: 44px;
}

.mental-therapy-header h2 {
    width: calc(100% - 70px);
    font-size: 40px;
}

.mental-therapy-body p {
    text-transform: capitalize;
    margin: 0;
}

.team-member-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 15px;
}

.team-member-item {
    width: calc(50% - 15px);
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
}

.team-image a {
    display: block;
    /* cursor: none; */
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 0.98;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
    transform: scale(1.1);
}

.team-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.team-content,
.team-social-icon {
    width: calc(50% - 10px);
}

.team-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    text-transform: capitalize;
    margin: 0;
}

.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.team-social-icon ul li {
    display: inline-block;
    margin-right: 5px;
}

.team-social-icon ul li:last-child {
    margin-right: 0;
}

.team-social-icon ul li a {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.team-social-icon ul li a i {
    color: inherit;
    font-size: 18px;
}

.our-benefit {
    background: var(--secondary-color);
    padding: 100px 0;
}

.our-benefit-btn {
    margin-bottom: 60px;
}

.our-benefit-img figure {
    display: block;
    border-radius: 20px;
}

.our-benefit-img img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 20px;
}

.our-benefit-box {
    margin-left: 15px;
}

.benefit-box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.our-benefit-item {
    position: relative;
    width: calc(50% - 15px);
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px 20px;
    overflow: hidden;
}

.our-benefit-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #104862;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.our-benefit-item:hover::after {
    top: 0;
}

.our-benefit-item .icon-box {
    position: relative;
    background: #104862;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    z-index: 1;
}

.our-benefit-item .icon-box::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.our-benefit-item:hover .icon-box:after {
    transform: scale(1);
}

.our-benefit-item .icon-box img {
    position: relative;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.our-benefit-item:hover .icon-box img {
    filter: invert(1);
}

.benefit-item-content {
    position: relative;
    z-index: 1;
}

.benefit-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.benefit-item-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p {
    color: var(--white-color);
}

.our-benefit-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.our-benefit-list ul li {
    position: relative;
    width: calc(50% - 15px);
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
}

.our-benefit-list ul li:after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

/************************************/
/***     18. Services Page css	  ***/
/************************************/

.page-services {
    padding: 100px 0 70px;
}

.why-choose-us.page-why-choose-us {
    background: var(--secondary-color);
}

/************************************/
/***    19. Services Single css   ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.service-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.service-catagery-list h3 {
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.service-catagery-list ul li {
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
    margin-bottom: 0;
}

.service-catagery-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    background-color: var(--white-color);
    border-radius: 15px;
    color: var(--text-color);
    padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.service-catagery-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
    filter: brightness(0) invert(1);
}

.faq-cta-box.sidebar-cta-box {
    max-width: 100%;
    background-color: var(--accent-color);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.faq-cta-box.sidebar-cta-box::before {
    display: none;
}

.service-feature-image {
    margin-bottom: 40px;
}

.service-feature-image figure {
    display: block;
    border-radius: 20px;
}

.service-feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: contain;
    border-radius: 20px;
}

.service-entry {
    margin-bottom: 40px;
}

.service-entry h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li {
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    width: calc(50% - 5px);
    padding-left: 34px;
}

.service-entry ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.service-therapy-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin: 40px 0;
}

.therapy-benefits-content,
.therapy-benefits-image {
    width: calc(50% - 15px);
}

.therapy-benefits-content ul {
    margin-bottom: 0;
}

.therapy-benefits-content ul li {
    width: 100%;
}

.therapy-benefits-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.therapy-benefits-image img {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    border-radius: 20px;
}

.therapy-benefits-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
    padding: 60px;
    margin-bottom: 40px;
}

.therapy-benefits-item {
    position: relative;
    width: calc(50% - 40px);
}

.therapy-benefits-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background-color: var(--divider-color);
    width: 1px;
    height: 100%;
}

.therapy-benefits-item:nth-of-type(2n + 2):before,
.therapy-benefits-item:last-child:before {
    display: none;
}

.therapy-benefits-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.therapy-benefits-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapy-benefits-item:hover .icon-box::before {
    transform: scale(1);
}

.therapy-benefits-item .icon-box img {
    position: relative;
    max-width: 30px;
    z-index: 1;
}

.therapy-benefits-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.therapy-benefits-item-content p {
    margin-bottom: 0;
}

.service-therapy-steps {
    margin: 40px 0;
}

.therapy-step-item {
    display: flex;
    margin-bottom: 30px;
}

.therapy-step-item:last-child {
    margin-bottom: 0;
}

.therapy-step-no {
    position: relative;
    height: 80px;
    width: 80px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    overflow: hidden;
}

.therapy-step-no::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapy-step-item:hover .therapy-step-no::before {
    transform: scale(1);
}

.therapy-step-no h2 {
    font-family: var(--default-font);
    font-size: 40px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 0;
    z-index: 1;
}

.therapy-step-content {
    width: calc(100% - 100px);
}

.therapy-step-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.therapy-step-content p {
    margin-bottom: 0;
}

.service-entry-video-image {
    position: relative;
    margin-top: 30px;
}

/* .service-entry-video-image .video-image a {
    cursor: none;
} */

.service-entry-video-image .video-image figure {
    border-radius: 20px;
    overflow: hidden;
}

.service-entry-video-image .video-image img {
    width: 100%;
    aspect-ratio: 1 / 0.478;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(70%);
}

.service-entry-video-image .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-accordion.page-faq-accordion .accordion-item {
    border-bottom-color: var(--divider-color);
}

.faq-accordion.page-faq-accordion .accordion-header .accordion-button {
    color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-button::after,
.faq-accordion.page-faq-accordion .accordion-item .accordion-button.collapsed::after {
    color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-body p {
    color: var(--text-color);
}

/************************************/
/***     20. Blog Archive css	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-blog .post-item {
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--divider-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 500;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***     21. Blog Single css	  ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 20px;
}

.post-image figure,
.post-image img {
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 20px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 0.6em;
}

.post-entry h1 {
    font-size: 70px;
}

.post-entry h2 {
    font-size: 48px;
}

.post-entry h3 {
    font-size: 46px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ol li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: url(../images/icon-blockquote.svg), #104862;
    background-repeat: no-repeat;
    background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--white-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    background: #104862;
    color: var(--white-color);
    border-radius: 10px;
    padding: 6px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***   22. Case Study Page css	  ***/
/************************************/

.page-case-study {
    padding: 100px 0 70px;
}

/************************************/
/***   23. Case Study Single css  ***/
/************************************/

.page-case-study-single {
    padding: 100px 0;
}

.case-study-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.case-study-detail-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
}

.case-study-detail-box h2 {
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.case-study-list-box {
    padding: 30px;
}

.case-study-list-item {
    padding: 15px 20px;
    background-color: var(--white-color);
    border-radius: 15px;
    margin-bottom: 20px;
}

.case-study-list-item:last-child {
    margin-bottom: 0;
}

.case-study-list-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.case-study-list-item p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.case-study-featured-image {
    margin-bottom: 40px;
}

.case-study-featured-image figure {
    display: block;
    border-radius: 20px;
}

.case-study-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 20px;
}

.case-study-entry {
    margin-bottom: 40px;
}

.case-study-entry h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.case-study-entry p {
    margin-bottom: 20px;
}

.case-study-entry p:last-child {
    margin-bottom: 0;
}

.case-study-entry ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.case-study-entry ul li {
    position: relative;
    text-transform: capitalize;
    color: var(--primary-color);
    padding-left: 34px;
    margin-bottom: 20px;
}

.case-study-entry ul li:last-child {
    margin-bottom: 0;
}

.case-study-entry ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.therapeutic-approach-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.therapeutic-approach-item {
    width: 50%;
}

.therapeutic-approach-item {
    padding: 50px 50px 50px 0;
    border-bottom: 1px solid var(--divider-color);
    border-right: 1px solid var(--divider-color);
}

.therapeutic-approach-item:nth-of-type(2n + 2) {
    padding: 50px 0 50px 50px;
    border-bottom: 1px solid var(--divider-color);
    border-right: none;
}

.therapeutic-approach-item:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: none;
}

.therapeutic-approach-item:nth-child(-n + 2) {
    padding-top: 0;
}

.therapeutic-approach-item .icon-box {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}

.therapeutic-approach-item .icon-box img {
    max-width: 30px;
    z-index: 1;
}

.therapeutic-approach-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.therapeutic-approach-item:hover .icon-box::before {
    transform: scale(1);
}

.therapeutic-approach-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.case-study-image-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.case-study-list,
.case-study-entry-image {
    width: calc(50% - 15px);
}

.case-study-list ul {
    margin-bottom: 0;
}

.case-study-entry-image figure {
    display: block;
    border-radius: 20px;
}

.case-study-entry-image img {
    width: 100%;
    aspect-ratio: 1 / 0.714;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***       24. Team Page css 	  ***/
/************************************/

.page-team {
    padding: 75px 0;
}

.page-team .team-member-item {
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***      25. Team Single css 	  ***/
/************************************/

.page-team-single {
    padding: 100px 0;
}

.team-single-sidebar {
    position: sticky;
    top: 30px;
}

.team-sidebar-box {
    border-radius: 20px;
    overflow: hidden;
}

.team-sidebar-image figure {
    display: block;
}

.team-sidebar-image img {
    width: 100%;
    aspect-ratio: 1 / 0.975;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.team-sidebar-body {
    background-color: var(--secondary-color);
    padding: 30px;
}

.team-sidebar-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-sidebar-body ul li {
    display: inline-flex;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider-color);
}

.team-sidebar-body ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-sidebar-body ul li span {
    font-family: var(--default-font);
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    width: 40%;
}

.team-sidebar-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 30px;
    background-color: var(--accent-color);
    border-radius: 0 0 20px 20px;
}

.team-sidebar-footer span {
    font-family: var(--default-font);
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
}

.team-sidebar-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-sidebar-footer ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.team-sidebar-footer ul li a {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a {
    border-color: var(--primary-color);
}

.team-sidebar-footer ul li a i {
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a i {
    color: var(--primary-color);
}

.team-single-content {
    margin-left: 30px;
}

.team-single-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    /* cursor: none; */
}

.team-single-content p {
    margin-bottom: 20px;
}

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

.team-member-info,
.team-member-experience,
.team-member-expertise {
    margin-bottom: 60px;
}

.team-member-experience {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.member-experience-info,
.team-member-skills {
    width: calc(50% - 15px);
}

.member-experience-info-item {
    margin-bottom: 30px;
}

.member-experience-info-item:last-child {
    margin-bottom: 0;
}

.member-experience-info-item h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.skills-progress-bar {
    margin-bottom: 30px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skills-progress-bar .skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title {
    font-size: 15px;
    text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no {
    font-size: 15px;
    color: var(--primary-color);
    margin-left: 20px;
}

.skills-progress-bar .skillbar .skill-progress {
    width: 100%;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 100px;
    position: relative;
}

.skills-progress-bar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--accent-color);
    border-radius: 100px;
}

.team-contact-form {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

/************************************/
/***      26. Pricing Page css 	  ***/
/************************************/

.page-pricing {
    padding: 100px 0;
}

.pricing-box {
    height: calc(100% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 40px;
}

.pricing-box.highlight-box {
    background-color: var(--accent-color);
    border-color: transparent;
}

.pricing-box-header {
    margin-bottom: 40px;
}

.pricing-title {
    margin-bottom: 30px;
}

.pricing-title h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.pricing-box.highlight-box .pricing-title h3 {
    color: var(--white-color);
}

.pricing-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-box.highlight-box .pricing-title h2 {
    color: var(--white-color);
}

.pricing-title h2 sub {
    font-family: var(--default-font);
    font-size: 16px;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlight-box .pricing-title h2 sub {
    color: var(--secondary-color);
}

.pricing-title p {
    margin-bottom: 0;
}

.pricing-box.highlight-box .pricing-title p {
    color: var(--secondary-color);
}

.pricing-btn .btn-default {
    width: 100%;
    text-align: center;
}

.pricing-box.highlight-box .pricing-btn .btn-default {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.pricing-box.highlight-box .btn-default:hover {
    color: var(--white-color);
}

.pricing-list-title {
    margin-bottom: 20px;
}

.pricing-list-title h3 {
    font-size: 20px;
}

.pricing-box.highlight-box .pricing-list-title h3 {
    color: var(--white-color);
}

.pricing-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-list ul li {
    position: relative;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 20px;
}

.pricing-list ul li:last-child {
    margin-bottom: 0;
}

.pricing-box.highlight-box .pricing-list ul li {
    color: var(--secondary-color);
}

.pricing-list ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.pricing-box.highlight-box .pricing-list ul li::before {
    color: var(--white-color);
}

.pricing-benefit-list {
    margin-top: 30px;
}

.pricing-benefit-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
}

.pricing-benefit-list ul li {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img {
    max-width: 20px;
    margin-right: 15px;
}

.our-testimonial.pricing-testimonial {
    padding: 100px 0;
}

/************************************/
/***    27. Testimonial Page css  ***/
/************************************/

.page-testimonial {
    padding: 100px 0 70px;
}

.client-testimonial-item {
    position: relative;
    height: calc(100% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
}

.client-testimonial-item::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.client-testimonial-item:hover::before {
    top: 0;
    height: 100%;
}

.client-testimonial-header {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 40px;
    z-index: 1;
}

.client-testimonial-author {
    width: calc(68% - 5px);
    display: flex;
    align-items: center;
}

.client-author-image {
    margin-right: 15px;
}

.client-author-image figure {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.client-author-image img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.client-author-content {
    width: calc(100% - 75px);
}

.client-author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.client-author-content p {
    text-transform: capitalize;
    margin: 0;
}

.client-testimonial-rating {
    width: calc(32% - 5px);
    text-align: right;
}

.client-testimonial-rating i {
    font-size: 14px;
    color: var(--accent-color);
}

.client-testimonial-body {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.client-testimonial-body p:last-child {
    margin-bottom: 0;
}

.client-testimonial-quote {
    position: relative;
    z-index: 1;
}

.client-testimonial-quote img {
    max-width: 40px;
}

/************************************/
/***     28. Image Gallery css 	  ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/* .page-gallery-box .photo-gallery a {
    cursor: none;
} */

.page-gallery-box .photo-gallery figure {
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    aspect-ratio: 1 / 0.794;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***     29. Video Gallery css 	  ***/
/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.video-gallery-image {
    border-radius: 20px;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.video-gallery-image a {
    position: relative;
    display: block;
    /* cursor: none; */
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    /* cursor: none; */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    aspect-ratio: 1 / 0.794;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***      30. FAQs Page css 	  ***/
/************************************/

.page-faqs {
    padding: 100px 0;
}

.faq-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.faq-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
}

.faq-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-catagery-list ul li {
    margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child {
    margin-bottom: 0;
}

.faq-catagery-list ul li a {
    position: relative;
    display: block;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 15px;
    text-transform: capitalize;
    padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a {
    color: var(--white-color);
    background-color: var(--accent-color);
}

.faq-catagery-list ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::after {
    filter: brightness(0) invert(1);
}

.faq-accordion.page-faq-accordion {
    margin-bottom: 60px;
}

.faq-accordion.page-faq-accordion:last-child {
    margin-bottom: 0;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
    padding: 100px 0;
}

.contact-form-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    text-align: center;
    padding: 80px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    background-color: var(--white-color);
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

.contact-info-box {
    background-color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
    padding: 80px;
    margin-top: 100px;
}

.contact-info-item {
    width: calc(33.33% - 40px);
    display: flex;
    flex-wrap: wrap;
}

.contact-info-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--white-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box {
    background-color: transparent;
}

.contact-info-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}

.contact-info-item .icon-box img {
    max-width: 35px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.contact-info-content {
    width: calc(100% - 80px);
}

.contact-info-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 15px;
}

.contact-info-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    height: 600px;
    width: 100%;
}

.google-map-iframe iframe {
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover {
    filter: grayscale(0);
}

/*************************************/
/*** 32. Book Appointment Page css ***/
/*************************************/

.page-book-appointment {
    padding: 100px 0;
}

/************************************/
/***    33. 404 Error Page css 	  ***/
/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 80px;
}

.error-page-image img {
    width: 100%;
    max-width: 50%;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 20px;
}

.error-page-content-body p {
    margin-bottom: 20px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {

    .main-menu ul li {
        margin: 0;
    }

    .our-appointment-box {
        padding: 50px;
    }
}

@media only screen and (max-width: 991px) {

    .navbar {
        padding: 20px 0;
    }

    .main-menu ul li.highlighted-menu {
        display: block;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        margin-bottom: 15px;
    }

    .section-title h1 {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .section-title-content {
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        padding: 180px 0 50px;
        margin-top: -90px;
        min-height: auto;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 200px 0 150px;
        min-height: auto;
    }

    .hero.hero-slider-layout .hero-pagination {
        padding-left: 15px;
        bottom: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-list {
        margin-top: 90px;
        padding: 50px 0 0;
        z-index: 1;
    }

    .hero-list ul {
        gap: 20px;
    }

    .hero-list ul li {
        font-size: 14px;
        padding-left: 28px;
    }

    .hero-list ul li::before {
        font-size: 18px;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-us-images {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .about-customer-box {
        max-width: 345px;
        padding: 20px;
    }

    .about-us-content {
        margin-left: 0px;
    }

    .about-vision-mission {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .vision-mission-content h3 {
        margin-bottom: 20px;
    }

    .vision-mission-content ul li {
        margin-bottom: 15px;
    }

    .our-services {
        padding: 50px 0;
    }

    .service-image img {
        aspect-ratio: 1 / 0.87;
    }

    .service-content {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .service-btn {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .service-get-quote-text {
        margin-top: 10px;
    }

    .service-get-quote-text p {
        font-size: 14px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-us-box {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .why-choose-image {
        position: relative;
        width: 100%;
        height: auto;
    }

    .why-choose-content {
        width: 100%;
        height: auto;
    }

    .why-choose-image figure img {
        height: auto;
        aspect-ratio: 1 / 0.8;
    }

    .contact-circle-img {
        position: absolute;
        right: auto;
        left: 0;
        top: -15px;
        bottom: auto;
        transform: translate(50%, -50%);
    }

    .why-choose-list {
        margin-bottom: 30px;
    }

    .why-choose-item .icon-box {
        margin-right: 10px;
    }

    .why-choose-item-content {
        width: calc(100% - 50px);
    }

    .why-choose-item-content h3 {
        font-size: 18px;
    }

    .why-choose-body-image img {
        aspect-ratio: 1 / 0.85;
    }

    .what-we-do {
        padding: 50px 0 25px;
    }

    .intro-video-box {
        padding: 150px 15px 25px;
    }

    .video-play-button a {
        width: 70px;
        height: 70px;
    }

    .video-play-button a i {
        font-size: 24px;
    }

    .intro-video-counter {
        gap: 30px;
        padding-top: 25px;
        margin-top: 150px;
    }

    .video-counter-item h2 {
        font-size: 40px;
    }

    .case-study {
        padding: 25px 0 20px;
    }

    .case-study-image {
        margin-bottom: 20px;
    }

    .case-study-content {
        margin-bottom: 20px;
    }

    .how-it-work {
        padding: 50px 0;
    }

    .how-work-step-item {
        background: transparent;
        width: calc(50% - 20px);
    }

    .how-work-step-item:nth-child(even) {
        background: transparent;
    }

    .how-work-step-no {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .how-work-step-item:nth-child(even) .how-work-step-no {
        margin: 20px 0 0 0;
    }

    .how-work-step-no h3 {
        font-size: 40px;
    }

    .how-work-step-content {
        max-width: 100%;
    }

    .cta-section {
        padding: 50px 0 25px;
    }

    .cta-box {
        padding: 0 15px;
    }

    .cta-box-image {
        width: 43%;
    }

    .cta-box-content {
        width: 57%;
        margin: 20px 0 20px 10px;
    }

    .cta-box-content .cta-box-btn:before {
        right: 20%;
    }

    @keyframes ctamoveobject {
        50% {
            right: 30%;
        }
    }

    .our-testimonial {
        padding: 25px 0 50px;
    }

    .testimonial-review-box {
        padding: 30px 40px;
        margin-bottom: 30px;
    }

    .testimonial-review-box .about-customer-rating {
        padding: 10px 15px;
    }

    .testimonial-review-box .about-customer-rating i {
        font-size: 16px;
    }

    .testimonial-slider {
        padding: 20px;
    }

    .testimonial-rating {
        margin-bottom: 10px;
    }

    .testimonial-content {
        margin-bottom: 20px;
    }

    .testimonial-company-slider {
        margin-top: 40px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .faq-cta-box {
        padding: 20px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .our-blog {
        padding: 50px 0 0px;
    }

    .our-appointment {
        padding: 25px 0 50px;
    }

    .our-appointment-box {
        padding: 30px 15px;
        gap: 30px;
    }

    .our-appointment-content,
    .appointment-form {
        width: 100%;
    }

    .appointment-form form .form-control {
        padding: 10px 15px;
    }

    .appointment-form form .form-group select {
        padding: 10px 30px 10px 15px;
    }

    .appointment-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .appointment-item .icon-box {
        margin-right: 10px;
    }

    .appointment-item .icon-box img {
        max-width: 50px;
    }

    .appointment-item-content {
        width: calc(100% - 60px);
    }

    .our-partner {
        margin-top: 50px;
        gap: 20px;
    }

    .partner-logo-box,
    .our-partner-content {
        width: calc(50% - 10px);
    }

    .partner-logo-box {
        gap: 20px 30px;
    }

    .partner-logo-image {
        width: calc(33.33% - 20px);
    }

    .footer-cta-box {
        padding: 20px 0;
    }

    .footer-cta-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-cta-btn {
        text-align: center;
    }

    .main-footer {
        padding: 40px 0 0;
    }

    .about-footer,
    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-contact-box {
        gap: 25px;
    }

    .footer-contact-item h3 {
        font-size: 18px;
    }

    .footer-social-links p {
        margin-bottom: 15px;
    }

    .footer-copyright {
        padding: 20px 0;
        margin-top: 30px;
    }

    .footer-menu ul li {
        margin-right: 15px;
    }

    .page-header {
        padding: 180px 0 80px;
        margin-top: -90px;
    }

    .page-header-box h1 {
        font-size: 50px;
    }

    .our-approach {
        padding: 50px 0;
    }

    .our-approach-content {
        margin-bottom: 30px;
    }

    .our-approach-list {
        padding-top: 30px;
    }

    .our-approach-item {
        margin-bottom: 30px;
        padding-left: 30px;
    }

    .our-approach-item::before {
        font-size: 20px;
    }

    .approach-item-content h3 {
        margin-bottom: 5px;
    }

    .our-team {
        padding: 25px 0 50px;
    }

    .our-team-content {
        margin-bottom: 30px;
    }

    .mental-therapy-counter {
        padding: 30px 40px;
    }

    .mental-therapy-header h2 {
        font-size: 34px;
    }

    .team-member-list {
        margin-left: 0;
    }

    .team-body {
        padding: 20px;
    }

    .team-content,
    .team-social-icon {
        width: 100%;
    }

    .team-social-icon ul {
        text-align: left;
    }

    .our-benefit {
        padding: 50px 0;
    }

    .our-benefit-content {
        margin-bottom: 30px;
    }

    .our-benefit-btn {
        margin-bottom: 30px;
    }

    .our-benefit-box {
        margin-left: 0px;
    }

    .benefit-box-list {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .our-benefit-item {
        padding: 20px;
    }

    .our-benefit-item .icon-box {
        margin-bottom: 30px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .service-catagery-list {
        margin-bottom: 30px;
    }

    .service-catagery-list h3,
    .service-catagery-list ul {
        padding: 20px;
    }

    .service-catagery-list ul li a {
        padding: 12px 45px 12px 15px;
    }

    .service-catagery-list ul li a::before {
        right: 15px;
    }

    .service-feature-image {
        margin-bottom: 30px;
    }

    .service-entry {
        margin-bottom: 30px;
    }

    .service-entry h2 {
        font-size: 38px;
    }

    .service-entry ul {
        gap: 15px 10px;
    }

    .service-entry ul li {
        padding-left: 25px;
    }

    .service-entry ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .service-therapy-benefits {
        margin: 30px 0;
    }

    .therapy-benefits-box {
        gap: 40px 60px;
        padding: 40px;
        margin-bottom: 30px;
    }

    .therapy-benefits-item {
        width: calc(50% - 30px);
    }

    .therapy-benefits-item::before {
        right: -30px;
    }

    .therapy-benefits-item .icon-box {
        margin-bottom: 20px;
    }

    .therapy-benefits-item-content h3 {
        margin-bottom: 10px;
    }

    .therapy-step-item {
        margin-bottom: 20px;
    }

    .service-therapy-steps {
        margin: 30px 0;
    }

    .therapy-step-no {
        height: 60px;
        width: 60px;
    }

    .therapy-step-no h2 {
        font-size: 30px;
    }

    .therapy-step-content {
        width: calc(100% - 80px);
    }

    .therapy-step-content h3 {
        margin-bottom: 10px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-blog .post-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h2 {
        font-size: 38px;
    }

    .post-entry ul li {
        font-size: 16px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .tag-links {
        font-size: 22px;
    }

    .post-tags .tag-links a {
        font-size: 16px;
        padding: 6px 15px;
    }

    .page-case-study {
        padding: 50px 0 20px;
    }

    .page-case-study-single {
        padding: 50px 0;
    }

    .case-study-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .case-study-detail-box h2,
    .case-study-list-box {
        padding: 20px;
    }

    .case-study-detail-box {
        margin-bottom: 30px;
    }

    .case-study-list-item {
        padding: 12px 15px;
        margin-bottom: 15px;
    }

    .case-study-featured-image {
        margin-bottom: 30px;
    }

    .case-study-entry {
        margin-bottom: 30px;
    }

    .case-study-entry h2 {
        font-size: 38px;
    }

    .therapeutic-approach-list {
        margin-bottom: 30px;
    }

    .therapeutic-approach-item {
        padding: 30px 30px 30px 0;
    }

    .therapeutic-approach-item:nth-of-type(2n + 2) {
        padding: 30px 0 30px 30px;
    }

    .therapeutic-approach-item:nth-last-child(-n + 2) {
        padding-bottom: 0;
    }

    .therapeutic-approach-item:nth-child(-n + 2) {
        padding-top: 0;
    }

    .case-study-image-list {
        gap: 20px;
    }

    .case-study-list {
        width: calc(55% - 10px);
    }

    .case-study-entry-image {
        width: calc(45% - 10px);
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-single-sidebar {
        position: initial;
        margin-bottom: 30px;
    }

    .team-sidebar-image img {
        aspect-ratio: 1 / 0.65;
        object-position: top center;
    }

    .team-sidebar-body {
        padding: 20px;
    }

    .team-sidebar-body ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .team-sidebar-footer {
        padding: 12px 20px;
    }

    .team-single-content {
        margin-left: 0;
    }

    .team-member-info,
    .team-member-experience,
    .team-member-expertise {
        margin-bottom: 40px;
    }

    .team-single-content h2 {
        font-size: 38px;
    }

    .member-experience-info-item {
        margin-bottom: 20px;
    }

    .team-contact-form {
        padding: 30px;
    }

    .page-pricing {
        padding: 50px 0;
    }

    .pricing-box {
        padding: 30px;
    }

    .pricing-box-header {
        margin-bottom: 30px;
    }

    .pricing-title {
        margin-bottom: 20px;
    }

    .pricing-title h2 {
        font-size: 38px;
    }

    .pricing-list ul li {
        margin-bottom: 10px;
    }

    .pricing-list ul li::before {
        font-size: 18px;
    }

    .pricing-benefit-list {
        margin-top: 10px;
    }

    .our-testimonial.pricing-testimonial {
        padding: 50px 0;
    }

    .page-testimonial {
        padding: 50px 0 20px;
    }

    .client-testimonial-item {
        padding: 20px;
    }

    .client-testimonial-header {
        margin-bottom: 30px;
    }

    .client-author-image {
        margin-right: 10px;
    }

    .client-author-image img {
        width: 50px;
        height: 50px;
    }

    .client-author-content {
        width: calc(100% - 60px);
    }

    .client-author-content h3 {
        font-size: 18px;
    }

    .client-author-content p {
        font-size: 14px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .faq-sidebar {
        position: initial;
        top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .faq-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .faq-accordion.page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 40px 0;
    }

    .contact-form-box {
        padding: 50px;
    }

    .contact-form .form-control {
        padding: 10px 15px;
    }

    .contact-info-box {
        gap: 10px;
        padding: 40px 15px;
        margin-top: 50px;
    }

    .contact-info-item {
        width: calc(33.33% - 6.66px);
    }

    .contact-info-item .icon-box {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }

    .contact-info-item .icon-box img {
        max-width: 25px;
    }

    .contact-info-content {
        width: calc(100% - 50px);
    }

    .contact-info-content p {
        font-size: 14px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
    }

    .page-book-appointment {
        padding: 50px 0;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 40px;
    }

    .error-page-image img {
        max-width: 80%;
    }
}

@media only screen and (max-width: 767px) {

    .btn-default {
        padding: 14px 20px;
    }

    .btn-default.btn-highlighted {
        padding: 13px 20px;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content-body {
        display: block;
    }

    .hero-btn {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .hero-slide .hero-content .hero-btn {
        margin-bottom: 0;
    }

    .hero-list ul {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .hero-list ul li {
        width: calc(50% - 10px);
        font-size: 12px;
        padding-left: 26px;
    }

    .hero-list ul li::before {
        top: 4px;
        font-size: 16px;
    }

    .about-us-images {
        max-width: 100%;
        gap: 20px;
    }

    .about-img-1 {
        width: calc(40% - 10px);
    }

    .about-img-2 {
        width: calc(60% - 10px);
    }

    .about-customer-box {
        max-width: 210px;
        padding: 10px;
    }

    .about-customer-content,
    .about-customer-rating {
        margin-bottom: 5px;
    }

    .about-customer-rating i {
        font-size: 12px;
    }

    .about-customer-content p {
        font-size: 14px;
    }

    .about-customer-box .customer-img {
        width: 34px;
        height: 34px;
        margin-left: -12px;
    }

    .about-customer-box .customer-img:first-child {
        margin: 0;
    }

    .about-customer-box .customer-img.add-more p {
        font-size: 12px;
    }

    .about-vision-mission {
        gap: 20px;
    }

    .vision-mission-content {
        width: 100%;
    }

    .vision-mission-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .vision-mission-content ul li {
        margin-bottom: 10px;
        padding-left: 28px;
    }

    .vision-mission-content ul li::before {
        top: 3px;
        font-size: 18px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .why-choose-list {
        gap: 20px;
    }

    .why-choose-item {
        width: 100%;
    }

    .why-choose-body {
        flex-direction: column-reverse;
    }

    .why-choose-body-content,
    .why-choose-body-image {
        width: 100%;
    }

    .contact-circle-img {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .contact-circle-img img {
        max-width: 110px;
    }

    .why-choose-body-image img {
        aspect-ratio: 1 / 0.8;
    }

    .intro-video-box {
        background-position: right center;
        padding: 100px 15px 25px;
    }

    .intro-video-counter {
        gap: 20px;
        padding-top: 25px;
        margin-top: 100px;
    }

    .video-counter-item {
        width: calc(50% - 10px);
    }

    .video-counter-item h2 {
        font-size: 30px;
    }

    .video-counter-item p {
        font-size: 14px;
    }

    .case-study-content {
        margin-bottom: 15px;
    }

    .how-work-step-box {
        gap: 35px;
    }

    .how-work-step-item {
        width: 100%;
    }

    .how-work-step-item:nth-child(even) {
        flex-direction: row;
    }

    .how-work-step-no {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .how-work-step-item:nth-child(even) .how-work-step-no {
        margin: 0px 15px 0 0;
    }

    .how-work-step-no h3 {
        font-size: 30px;
    }

    .how-work-step-content {
        width: calc(100% - 75px);
        max-width: 100%;
    }

    .how-work-step-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .cta-box {
        flex-direction: column-reverse;
        padding: 50px 15px 0;
    }

    .cta-box-image {
        width: 100%;
    }

    .cta-box-content {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .cta-box-content .cta-box-btn:before {
        right: 20px;
    }

    @keyframes ctamoveobject {
        50% {
            right: 50px;
        }
    }

    .testimonial-review-box {
        padding: 20px 30px;
    }

    .testimonial-review-box .about-customer-rating {
        margin-bottom: 15px;
    }

    .testimonial-item {
        gap: 20px;
    }

    .testimonial-slider-image,
    .testimonial-slider-content {
        width: 100%;
    }

    .author-content h3 {
        font-size: 18px;
    }

    .testimonial-company-slider {
        margin-top: 30px;
    }

    .faq-cta-box {
        max-width: 100%;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding-right: 0px;
    }

    .post-item-content {
        margin-bottom: 15px;
    }

    .post-item-content h3 {
        font-size: 18px;
    }

    .appointment-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .appointment-item-content h3 {
        font-size: 18px;
    }

    .partner-logo-box,
    .our-partner-content {
        width: 100%;
    }

    .footer-cta-btn .btn-default {
        font-size: 14px;
        padding: 12px 15px;
    }

    .footer-cta-btn .btn-default i {
        font-size: 16px;
    }

    .footer-cta-btn .btn-default.btn-comment {
        margin-left: 15px;
    }

    .about-footer .section-title h2 {
        font-size: 24px;
    }

    .footer-contact-box {
        display: block;
    }

    .footer-contact-item {
        margin-bottom: 20px;
    }

    .footer-contact-item:last-child {
        margin-bottom: 0;
    }

    .footer-contact-item p {
        margin-bottom: 5px;
    }

    .footer-social-links h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-copyright {
        padding: 15px 0;
    }

    .footer-menu ul {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-menu ul li {
        margin-right: 10px;
    }

    .footer-copyright-text {
        text-align: center;
    }

    .page-header-box h1 {
        font-size: 32px;
    }

    .our-approach-item::before {
        font-size: 18px;
    }

    .approach-item-content h3 {
        font-size: 18px;
    }

    .our-approach-image {
        padding: 0 0 50px 80px;
    }

    .our-approach-img-2 {
        max-width: 270px;
    }

    .mental-therapy-header .icon-box {
        margin-right: 16px;
    }

    .mental-therapy-header .icon-box img {
        max-width: 34px;
    }

    .mental-therapy-header h2 {
        width: calc(100% - 50px);
        font-size: 28px;
    }

    .team-member-item {
        width: 100%;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .our-benefit-item {
        width: 100%;
    }

    .benefit-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .our-benefit-list ul {
        gap: 15px;
    }

    .our-benefit-list ul li {
        width: 100%;
    }

    .service-catagery-list h3 {
        font-size: 18px;
    }

    .service-feature-image {
        margin-bottom: 20px;
    }

    .service-feature-image img {
        aspect-ratio: 1 / 0.7;
    }

    .service-entry h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry ul {
        margin-bottom: 15px;
    }

    .service-entry ul li {
        width: 100%;
    }

    .service-therapy-benefits {
        gap: 20px;
        margin: 20px 0;
    }

    .therapy-benefits-content ul {
        margin-bottom: 0;
    }

    .therapy-benefits-content,
    .therapy-benefits-image {
        width: 100%;
    }

    .therapy-benefits-image img {
        aspect-ratio: 1 / 0.72;
    }

    .therapy-benefits-box {
        gap: 30px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .therapy-benefits-item {
        width: 100%;
    }

    .therapy-benefits-item::before {
        top: auto;
        right: 0;
        left: 0;
        bottom: -15px;
        height: 1px;
        width: 100%;
    }

    .therapy-step-no {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }

    .therapy-step-no h2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .service-therapy-steps {
        margin: 20px 0;
    }

    .therapy-step-content {
        width: calc(100% - 50px);
    }

    .therapy-step-content h3 {
        font-size: 18px;
    }

    .service-entry-video-image {
        margin-top: 20px;
    }

    .service-entry-video-image .video-image img {
        aspect-ratio: 1 / 0.58;
    }

    .service-entry-video-image .video-play-button a {
        width: 50px;
        height: 50px;
    }

    .service-entry-video-image .video-play-button a:after,
    .service-entry-video-image .video-play-button a:before {
        top: -50%;
        left: -50%;
    }

    .service-entry-video-image .video-play-button a i {
        font-size: 20px;
    }

    .post-image figure,
    .post-image img {
        aspect-ratio: 1 / 0.70;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 20px;
    }

    .case-study-detail-box h2,
    .case-study-list-item h3 {
        font-size: 18px;
    }

    .case-study-featured-image {
        margin-bottom: 20px;
    }

    .case-study-featured-image img {
        aspect-ratio: 1 / 0.7;
    }

    .case-study-entry h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .case-study-entry p {
        margin-bottom: 15px;
    }

    .therapeutic-approach-item {
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        border-right: none;
        margin-bottom: 20px;
        padding: 0 0 20px 0;
    }

    .therapeutic-approach-item:nth-of-type(2n + 2) {
        padding: 0 0 20px 0;
    }

    .therapeutic-approach-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 20px;
    }

    .therapeutic-approach-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .therapeutic-approach-item .icon-box {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .therapeutic-approach-item .icon-box img {
        max-width: 25px;
    }

    .therapeutic-approach-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .case-study-list,
    .case-study-entry-image {
        width: 100%;
    }

    .case-study-entry ul li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 28px;
    }

    .case-study-entry ul li::before {
        font-size: 18px;
    }

    .case-study-entry-image img {
        aspect-ratio: 1 / 0.68;
    }

    .team-sidebar-image img {
        aspect-ratio: 1 / 0.86;
        object-position: initial;
    }

    .team-sidebar-body ul li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .team-sidebar-body ul li span,
    .team-sidebar-footer span {
        font-size: 18px;
    }

    .team-member-info,
    .team-member-experience,
    .team-member-expertise {
        margin-bottom: 30px;
    }

    .team-single-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .team-single-content p {
        margin-bottom: 15px;
    }

    .team-member-experience {
        gap: 20px;
    }

    .member-experience-info,
    .team-member-skills {
        width: 100%;
    }

    .member-experience-info-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .skills-progress-bar {
        margin-bottom: 20px;
    }

    .pricing-box {
        padding: 20px;
    }

    .pricing-box-header {
        margin-bottom: 20px;
    }

    .pricing-title h3 {
        font-size: 18px;
    }

    .pricing-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .pricing-title h2 sub {
        font-size: 14px;
    }

    .pricing-list-title {
        margin-bottom: 15px;
    }

    .pricing-list-title h3 {
        font-size: 18px;
    }

    .pricing-benefit-list ul {
        gap: 10px 15px;
    }

    .pricing-benefit-list ul li {
        width: calc(50% - 7.5px);
        font-size: 12px;
    }

    .pricing-benefit-list ul li img {
        max-width: 18px;
        margin-right: 5px;
    }

    .client-testimonial-header {
        margin-bottom: 20px;
    }

    .client-testimonial-rating i {
        font-size: 12px;
    }

    .client-testimonial-body {
        margin-bottom: 10px;
    }

    .client-testimonial-quote img {
        max-width: 30px;
    }

    .faq-catagery-list ul li a {
        padding: 12px 45px 12px 15px;
    }

    .contact-form-box {
        padding: 20px;
    }

    .contact-info-box {
        gap: 25px;
        padding: 20px;
    }

    .contact-info-item {
        width: 100%;
    }

    .contact-info-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .error-page-image {
        margin-bottom: 20px;
    }
}

a.navbar-brand img {
    width: 150px;
}

input.header-search {
    padding: 8px 10px 8px 30px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    outline: none;
    border: 1px solid #000;
}

@media (min-width: 992px) {

    .slider,
    .slide {
        height: 350px;
    }
}

.slide {
    position: relative;
}

.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

@media (min-width: 992px) {
    .slide .slide__img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}

.slide .slide__img img {
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 1s ease;
}

.slide .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slide .slide__content.slide__content__left {
    left: 15%;
    transform: translate(-15%, -50%);
}

.slide .slide__content.slide__content__right {
    right: 15%;
    left: auto;
    transform: translate(5%, -50%);
}

.slide .slide__content--headings {
    color: #FFF;
}

.slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
}

.slide .slide__content--headings .animated {
    transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
    font-family: "Playball", cursive;
    font-size: 2.5rem;
}

.slide .slide__content--headings .title {
    font-size: 3.5rem;
}

.slide .slide__content--headings .button-custom {
    text-decoration: none;
    color: #333;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
}

.slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
    opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
}

.stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
    opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
}

.slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, .12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
    left: 3%;
    transform: scaleX(-1);
    z-index: 999;
}

.slick-nav.next-arrow {
    left: auto;
    right: 3%;
}

.slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--active);
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
}

.slick-nav i:before {
    transform: rotate(-40deg);
}

.slick-nav i:after {
    transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
}

.slick-nav.animate svg {
    -webkit-animation: stroke 1s ease forwards 0.3s;
    animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
    -webkit-animation: arrow 1.6s ease forwards;
    animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
    -webkit-animation: arrowUp 1.6s ease forwards;
    animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
    -webkit-animation: arrowDown 1.6s ease forwards;
    animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }

    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }

    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }
}

@keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }

    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }

    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }
}

@-webkit-keyframes arrow {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    23% {
        transform: translateX(17px);
        opacity: 1;
    }

    24%,
    80% {
        transform: translateX(-22px);
        opacity: 0;
    }

    81% {
        opacity: 1;
        transform: translateX(-22px);
    }
}

@keyframes arrow {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    23% {
        transform: translateX(17px);
        opacity: 1;
    }

    24%,
    80% {
        transform: translateX(-22px);
        opacity: 0;
    }

    81% {
        opacity: 1;
        transform: translateX(-22px);
    }
}

@-webkit-keyframes arrowUp {

    0%,
    100% {
        transform: rotate(-40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

@keyframes arrowUp {

    0%,
    100% {
        transform: rotate(-40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

@-webkit-keyframes arrowDown {

    0%,
    100% {
        transform: rotate(40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

@keyframes arrowDown {

    0%,
    100% {
        transform: rotate(40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

.about-title h2 {
    color: #000;
    margin-bottom: 30px;
    font-size: 36px;
}

.about-title p {
    font-weight: 300;
    color: #000;
}

.carousel-parent .carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.carousel-parent .carousel {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-parent .carousel-item {
    flex: 0 0 33.33%;
    min-width: 300px;
    padding: 40px;
    background: #faf9f7;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid #ddd;
    box-shadow: inset 0 0 0 0 transparent;
    margin-right: unset;
}

.carousel-parent .carousel-item:first-child {
    border-left: none;
}

.carousel-parent .carousel-item:hover {
    flex: 0 0 45%;
    background: #104862;
    color: #fff;
    box-shadow: inset 8px 0 0 #fffbf5, inset -8px 0 0 #fffbf5;
}

.carousel-parent .carousel-item:hover h2,
.carousel-parent .carousel-item:hover p,
.carousel-parent .carousel-item:hover a {
    color: #fff;
}

.carousel-parent .carousel-item h2 {
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.3;
}

.carousel-parent .carousel-item p {
    margin: 0;
}

.carousel-parent .date {
    font-size: 0.9rem;
    /* opacity: 0.8; */
}

.carousel-parent .type {
    margin-top: 60px !important;
    font-size: 0.9rem;
    opacity: 1;
}

.carousel-parent .carousel-item a {
    margin-top: 15px;
    display: inline-block;
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
    color: #0075B8;
}

.carousel-parent button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    /* padding: 8px 13px; */
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.carousel-parent button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-parent .prev {
    left: 3px;
}

.carousel-parent .next {
    right: 3px;
}

@media (max-width: 1024px) {
    .carousel-parent .carousel-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .carousel-parent .carousel-item {
        flex: 0 0 80%;
    }
}

.carousel-parent .carousel-item:after {
    content: "";
    width: 5.6rem;
    height: 16rem;
    clip-path: path("M0 0.0156623V79.8C7.43503 60.0534 30.1514 44.1716 56 39.9C30.1514 36.0195 7.43503 19.7622 0 0V0.0156623Z");
    background-color: #faf9f7;
    position: absolute;
    top: 2rem;
    left: 95px;
    transform: translateX(-100%) scale(.43);
    transform-origin: 0 0;
    transition: transform .25s ease-out 0s;
}

.editorial_with_cta_root__n8QLf {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.editorial_with_cta_headline__T2Eql {
    font-style: normal;
    font-weight: 300;
    letter-spacing: -.01em;
    font-size: 3rem;
    line-height: 4rem;
    color: #000;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 2.4rem;
}

section.blog-sec {
    padding: 90px 0;
}

input.input-footer {
    width: 100%;
    padding: 8px 13px;
    font-size: 14px;
    border-radius: 25px;
    outline: none;
    border: none;
}

.newsletter_signup_inputWrapper___kawK.position-relative svg {
    position: absolute;
    right: 13px;
    top: 13px;
}

.footer-contact-item h3 {
    color: #fff;
    font-size: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact-item p {
    margin: 0;
}

.footer-mid-link ul li {
    list-style: none;
    margin-top: 8px;
    color: #fff;
}

.footer-mid-link ul {
    padding: 0;
}

.footer-mid-link ul li a {
    color: #fff;
}

.footer-mid-link {
    margin-left: 60px;
}

.footer-mid-link h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.header-btn.d-inline-flex.position-relative i {
    position: absolute;
    left: 11px;
    top: 15px;
    color: #a0a0a0;
    font-size: 14px;
}

.btn-default-2 {
    border-color: #fff;
    color: #fff;
}

.case-study-content p {
    color: #595959;
    font-weight: 300;
}

ul.footer-link {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 0;
}

ul.footer-link li {
    list-style: none;
    font-weight: 300;
    font-size: 14px;
}


.hero2 {
    /* margin-top: 80px; */
    background: linear-gradient(135deg, #83cceb 0%, #10486200 100%);
    ;
    /* padding: 80px 0; */
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    /* margin: 0 auto; */
    /* padding: 0 20px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-left: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 2;
    color: #000000;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    /* border-radius: 8px; */
    height: 500px;
    object-fit: cover;
}

/* Attributes Grid */
.attributes {
    padding: 80px 0;
    background: #f8f9fa;
}

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.attribute-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #104862;
}



.attribute-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.attribute-card h3 {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    line-height: 1.3;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #104862 0%, #7ac0e7 100%);
    color: white;
    text-align: center;
}

.mission-content h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: #5d9cdb;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    /* background: white; */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 64px;
    font-weight: 300;
    color: #104862;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.timeline-title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 60px;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #104862;
}

.timeline-item {
    position: relative;
    margin-bottom: 23px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #104862;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #104862;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 15px 22px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0 5%;
}

.timeline-year {
    background: #104862;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* History Section */
.history {
    padding: 100px 0;
    background: #104862;
    color: white;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.history-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
}

.history-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #e8f4f0;
}

.how-it-work-icon img {
    width: 50px;
}

.how-it-work-icon-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-work-icon {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: #fff;
    padding: 10px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-icon-hover {
    /* border: 3px dashed #104862;  */
    position: relative;
}

.how-icon-hover:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.how-icon-hover:after {
    border: 3px dashed #ffffff;
    -webkit-animation: spinAround 9s linear infinite;
    -moz-animation: spinAround 9s linear infinite;
    animation: spinAround 9s linear infinite;
}

@keyframes spinAround {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.investment-icon {
    text-align: center;
}

/* Hero Section */
.hero-manifesto {
    background: linear-gradient(135deg, #83cceb 0%, #10486257 100%);
    padding: 120px 0 80px;
    border-bottom: 1px solid #e2e8f0;
}

.hero-content-manifesto {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title-manifesto {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle-manifesto {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
    font-weight: 400;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.01em;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Why DeepTech Section */
.why-deeptech {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-intro {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 64px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.benefit-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* What Drives Us Section */
.drives-us {
    padding: 80px 0;
    background-color: #ffffff;
}

.drives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.drive-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.drive-border {
    width: 4px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.drive-content {
    flex: 1;
}

.drive-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.drive-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

.text-center.mb-5.philosophy-sec {
    width: 75%;
    margin: 0 auto;
}

.row.justify-center {
    justify-content: center;
}

.core-value .left,
.core-value .right {
    padding: 0 20px;
}

.core-value .center img {
    max-width: 53%;
    margin-bottom: 35px;
}

.core-value .center h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.core-value .value {
    display: flex;
    align-items: flex-start;
    margin: 30px 0;
    text-align: left;
}

.core-value .value img {
    width: 40px;
    margin-right: 12px;
    margin-top: 5px;
}

.core-value .value h3 {
    margin: 0;
    font-size: 22px;
    color: #0077b6;
    margin-bottom: 16px;
}

.core-value .value p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.container-value {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    text-align: center;

}

.text-black {
    color: #000;
}

/* Philosophy Section */
.help-section-page .philosophy-section {
    background-color: #104862;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.help-section-page .philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.help-section-page .section-title {
    font-family: "Crimson Text", serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
}

.help-section-page .section-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 60px;
    opacity: 0.9;
}

.help-section-page .philosophy-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    font-weight: 300;
}

.help-section-page .tagline-text {
    font-family: "Crimson Text", serif;
}

.help-section-page .tagline-arrow {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Strategic Areas Section */
.help-section-page .strategic-section {
    background-color: #f8f9f8;
    padding: 120px 0;
}

.help-section-page .strategic-content {
    text-align: center;
}

.help-section-page .strategic-section .section-title {
    /* color: #104862; */
    margin-bottom: 60px;
}

.help-section-page .strategic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.help-section-page .strategic-item {
    text-align: left;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.help-section-page .strategic-title {
    font-family: "Crimson Text", serif;
    font-size: 1.5rem;
    color: #104862;
    margin-bottom: 15px;
    font-weight: 600;
}

.help-section-page .strategic-description {
    color: #666;
    line-height: 1.6;
}

/* Operational Support Section */
.help-section-page .operational-section {
    background-color: #c8d5d0;
    padding: 120px 0;
}

.help-section-page .operational-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.help-section-page .operational-section .section-title {
    color: #104862;
    margin-bottom: 30px;
}

.help-section-page .section-intro {
    font-size: 1.1rem;
    color: #5a6b5d;
    margin-bottom: 40px;
}

.help-section-page .support-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.help-section-page .support-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(45, 90, 74, 0.2);
    color: #104862;
    font-size: 1.05rem;
    position: relative;
    padding-left: 20px;
}

.help-section-page .support-list li:before {
    content: "•";
    color: #104862;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.help-section-page .support-list li:last-child {
    border-bottom: none;
}

/* Governance Section */
.help-section-page .governance-section {
    background-color: #f8f9f8;
    padding: 120px 0;
}

.help-section-page .governance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.help-section-page .governance-section .section-title {
    color: #104862;
    margin-bottom: 30px;
    margin-top: 60px;
}

.help-section-page .governance-section .section-title:first-child {
    margin-top: 0;
}

.help-section-page .governance-section .section-description {
    color: #666;
    margin-bottom: 40px;
}

.help-section-page .cta-button {
    background: transparent;
    border: 2px solid #104862;
    color: #104862;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.help-section-page .cta-button:hover {
    background-color: #104862;
    color: white;
}

.search-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;

}

.search-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #f8fafc;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
}

.filter-dropdown {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    cursor: pointer;
    min-width: 140px;
}

.results-count {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.logo-tf {
    background: #1e293b;
}

.logo-ge {
    background: #059669;
}

.logo-hs {
    background: #1e40af;
}

.company-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.company-info .founded {
    color: #64748b;
    font-size: 0.85rem;
}

.company-tags {
    display: grid;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag-ai {
    background: #dbeafe;
    color: #1d4ed8;
}

.tag-series-a {
    background: #f3f4f6;
    color: #374151;
}

.tag-cleantech {
    background: #d1fae5;
    color: #065f46;
}

.tag-seed {
    background: #fef3c7;
    color: #92400e;
}

.tag-healthtech {
    background: #fce7f3;
    color: #be185d;
}

.tag-series-b {
    background: #f3f4f6;
    color: #374151;
}

.company-description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.company-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-size: 0.85rem;
    font-weight: 500;
}

.metric-icon {
    width: 16px;
    height: 16px;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background: #f8fafc;
}

@media (max-width: 768px) {


    .search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }
}



.investment-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.investment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.investment-table th {
    background: #f8fafc;
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.investment-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.investment-table tbody tr:hover {
    background: #f8fafc;
}



.highlight-row:hover {
    background: #f8fafc;
}

.company-name {
    font-weight: 600;
    color: #1f2937;
}

.increase-positive {
    color: #059669;
    font-weight: 600;
}

.increase-neutral {
    color: #6b7280;
    font-weight: 600;
}

.increase-high {
    color: #dc2626;
    font-weight: 600;
}

.increase-exceptional {
    color: #7c3aed;
    font-weight: 700;
}

.status-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.status-private {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-writeoff {
    background: #fee2e2;
    color: #dc2626;
}

.status-acquired {
    background: #d1fae5;
    color: #065f46;
}

.status-sandstorm {
    background: #fef3c7;
    color: #92400e;
}

.text-left {
    text-align: left;
}

.deal-image {
    width: 63%;
    margin: 0 auto;
}

:root {
    --bg-cream: #f7f3ea;
    --blue: #1e6f9d;
    /* hover panel background */
    --blue-outline: #104862;
    /* card outline color (like screenshot) */
    --text: #112029;
}

.wrap-sec {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 980px) {
    .wrap-sec {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .wrap-sec {
        grid-template-columns: 1fr;
    }
}

/* Card */
.wrap-sec .tile {
    position: relative;
    height: 250px;
    background: #ffffff;
    border: 1.5px solid #104862;
    border-radius: 8px;
    overflow: hidden;
    /* outline: 1px solid rgb(22 112 184); */
}

.wrap-sec .tile .logo-side {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wrap-sec .tile .logo {
    max-width: 60%;
    max-height: 42%;
    object-fit: contain;
    filter: saturate(.9) contrast(.95);
}

.wrap-sec .tile .overlay {
    position: absolute;
    inset: 0;
    background: #104862;
    color: #fff;
    padding: 18px 18px 18px 22px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .22s ease, transform .22s ease;
}

.wrap-sec .tile:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.wrap-sec .tile .overlay::before {
    content: "";
    width: 5.6rem;
    height: 16rem;
    clip-path: path("M0 0.0156623V79.8C7.43503 60.0534 30.1514 44.1716 56 39.9C30.1514 36.0195 7.43503 19.7622 0 0V0.0156623Z");
    background-color: #faf9f7;
    position: absolute;
    top: 20px;
    left: 87px;
    transform: translateX(-100%) scale(.43);
    transform-origin: 0 0;
    transition: transform .25s ease-out 0s;
}
.wrap-sec .ov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 13px;
}

.wrap-sec .ov-block h5 {
    margin: 0px 0 8px 0;
    font-size: 17px;
    letter-spacing: .2px;
    color: #fff;
}

.wrap-sec .ov-block p {
    margin: 0;
    font-size: 14px;
    line-height: 2;
	margin-top: 4px !important;
}

.wrap-sec .ov-logo {
    position: absolute;
    right: 18px;
    top: 18px;
    max-height: 22px;
    max-width: 140px;
    object-fit: contain;
    opacity: .95;
}

.wrap-sec .muted {
    opacity: .9
}

.wrap-sec .tile:focus-within,
.wrap-sec .tile:focus {
    outline: 2px solid #0a5c86;
    outline-offset: 2px
}

.logo-side.logo-side-2 img {
    width: 100% !important;
    margin: 0 auto;
    display: flex;
    margin-bottom: 15px;
}

.logo-side.logo-side-2 h6 {
    font-size: 26px;
    font-weight: 600;
}

.arrow-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

p.p-investment {
    font-size: 20px;
    font-weight: 500;
}

section.core-value {
    margin: 75px 0;
}

h3.hero-title-3 {
    font-size: 28px;
}

:root {
    --bg: #f4efe6;
    --navy: #104862;
    --text: #1f2937;
    --line: #2f3e46;
}

.star-2 .stat-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    align-items: center;
    /* min-height: clamp(170px, 42vh, 360px); */
    /* width: 60%; */
}

/* Long thin rule + arrowhead */
.star-2 .rule {
    height: 2px;
    background: var(--line);
    position: relative;
    align-self: center;
}

.star-2 .rule::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-top: 2px solid var(--line);
    border-right: 2px solid var(--line);
    transform: translateY(-50%) rotate(45deg);
}

/* Number + caption block */
.star-2 .stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
}

.star-2 .value {
    font-size: 51px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
}

.star-2 .caption {
    font-size: 17px;
    color: #000;
    margin-bottom: 15px;
}

/* Placement per row to match screenshot (left / center / right) */
.star-2 .row-left .stat {
    grid-column: 3 / span 6;
}

.star-2 .row-left .rule {
    grid-column: 1 / 2;
}

.star-2 .row-center .stat {
    grid-column: 6 / span 6;
}

.star-2 .row-center .rule {
    grid-column: 1 / 5;
}

.star-2 .row-right .stat {
    grid-column: 10 / span 6;
}

.star-2 .row-right .rule {
    grid-column: 1 / 9;
}

/* Colors for values: navy, teal, navy */
.star-2 .row-left .value {
    color: var(--navy);
}

.star-2 .row-center .value {
    color: var(--navy);
}

.star-2 .row-right .value {
    color: var(--navy);
}

.star-2 .row-right-2 .value {
    color: var(--navy);
}

/* Responsive: keep feel but shorter rules */
@media (max-width: 900px) {
    .star-2 .stat-row {
        grid-template-columns: repeat(8, 1fr);
        min-height: 240px;
    }

    .star-2 .row-left .stat {
        grid-column: 2 / span 4;
    }

    .star-2 .row-left .rule {
        grid-column: 1 / 2;
    }

    .star-2 .row-center .stat {
        grid-column: 3 / span 4;
    }

    .star-2 .row-center .rule {
        grid-column: 1 / 3;
    }

    .star-2 .row-right .stat {
        grid-column: 5 / span 4;
    }

    .star-2 .row-right .rule {
        grid-column: 1 / 5;
    }
}

.star-2 .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.star-2 .row-right-2 .stat {
    grid-column: 14 / span 6;
}

.star-2 .row-right-2 .rule {
    grid-column: 1 / 13;
}

.text-anime-style-5 {
    font-size: 42px;
    line-height: 1.3;
}

.visacard-1 {
    background-color: #edf1f7;
}

.mice-column {
    border: 1px solid #0000000f;
    border-radius: 13px;
    background-repeat: no-repeat !important;
}

.visacard-2 {
    background-color: #fbf9f3;
}

.visacard-3 {
    background-color: #f4fefd;
}

.visacard-4 {
    background-color: #fbfffa;
}

p.due-p {
    font-size: 22px;
    font-weight: 400;
}

.benefits-grid-deepteach .mice-column {
    border: 1px solid #ffffff;

}

img.bg-img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.2;
    z-index: 0;
}

.blockquote {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
    border: solid 4px #104862;
    border-radius: 20px;
    padding: 25px;
}

.blockquote:before {
    content: "";
    position: absolute;
    width: 80px;
    border: 6px solid #ffffff;
    bottom: -4px;
    left: 50px;
    z-index: 2;
}

.blockquote:after {
    content: "";
    position: absolute;
    border: 4px solid #104862;
    border-radius: 0 50px 0 0;
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 50px;
    border-bottom: none;
    border-left: none;
    z-index: 3;
}

.common-pragh {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
}

.common-title {
    font-size: 32px;
    font-weight: 600;
    color: #104862;
}

.potential-eligibility {
    position: relative;
    padding: 60px 0;
    /* background: url(../images/aboutt.png); */
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.potential-eligibility::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #196b24d1 10.11%, #104862e6 100%);
    width: 100%;
    height: 100%;
}

.potential-eligibility-inn {
    position: relative;
    z-index: 9;
}

.potential-eligibility-inn span {
    font-weight: 700;
}

.we-invest .arrow {
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 15px 30px;
    margin-right: -25px;
    /* overlap for seamless connection */
    position: relative;
    min-width: 180px;
    color: #fff;
    clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 10% 50%);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Colors */
.we-invest .black {
    background: #000;
}

.we-invest .darkgray {
    background: #595959;
}

.we-invest .gray {
    background: #555;
}

.we-invest .lightgray {
    background: #888;
}

.we-invest .green {
    background: #196B24;
}

.we-invest .blue {
    background: #0075B8;
}

.we-invest .silver {
    background: #6f6f6f;
}

/* Left Column */
.we-invest .left {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}

.we-invest .left .arrow {
    margin: 6px 0;
    padding: 12px 40px;
    font-size: 14px;
    min-width: 230px;
}

/* Right Column */
.we-invest .right {
    display: flex;
    align-items: center;
}

.we-invest .green ul {
    margin: 0;
    padding-left: 20px;
    font-weight: normal;
    font-size: 14px;
    list-style-type: "► ";
}

.we-invest .green ul li {
    margin: 6px 0;
    color: #fff;
}

/* Text inside arrows */
.we-invest .arrow-text {
    font-size: 16px;
    line-height: 1.4;
}

.container-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.we-invest .arrow-2 {
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 16px 75px 16px 30px;
    margin-right: -71px;
    position: relative;
    min-width: 180px;
    height: 100%;
    color: #fff;
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%, 0% 50%);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

.we-invest .right .arrow {
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 27px 96px;
    margin-right: -61px;
    position: relative;
    min-width: 181px;
    height: 100%;
    color: #fff;
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%, 20% 50%);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.we-invest {
    padding-top: 5px;

}

.buttom-invest .box {
    border: 1px solid #ccc;
    border-collapse: collapse;
    height: 100%;
    background: #f5f5f5;
}

.buttom-invest .box-header {
    background-color: #196B24;
    color: #fff;
    font-weight: bold;
    padding: 8px;
}

.buttom-invest .box-content {
    background-color: #f5f5f5;
    padding: 10px;
    color: #000;
    font-size: 14px;
}

.buttom-invest .box-content ul {
    margin: 0;
    padding-left: 18px;
}

.buttom-invest-flex {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.row-flex {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
}

.blockquote-2:before {
    border: 6px solid #e4f0d8;
}

.sustainable .how-icon-hover:after {
    border: 3px dashed #196B24;
}

.history-3 .how-icon-hover:after {
    border: 3px dashed #104862;
}

.history-3 .how-it-work-icon {
    background: #104862;
}

.history-3 .how-it-work-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(356deg) brightness(109%) contrast(101%);
}

.our-blog-content {
    position: sticky;
    top: 100px;

}

.section-title-2 h4 {
    font-size: 22px;
    color: #000000;
    margin-top: 10px;
    font-weight: 500;
    line-height: 31px;
    margin-bottom: 20px;
}

.section-title-2 h2 {
    font-size: 47px;
    font-weight: 700;
    line-height: 1.2em;
    color: #104862;
    margin-bottom: 0;
}

.our-blog-2 {
    padding: 100px 0;
}

.blog-box {
    margin-left: 70px;
}

.blog-item-content h2 {
    color: #104862;
    font-weight: 600;
}

.blog-item-content p {
    color: #000;
}

.blog-item-content ul li {
    color: #000;
    margin-bottom: 12px;
}

.blog-item-body {
    border-bottom: 1px solid #104862;
    padding-bottom: 15px;
}

h1.mean-title {
    font-size: 35px;
    line-height: 58px;
}

h1.mean-title b {
    color: #00B661;
}

h5.philosophy-h5 {
    color: #104760;
    font-weight: 500;
}

.center-btn-inner {
    position: relative;
    width: fit-content;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: capitalize;
    background: #196B24;
    color: #fff;
    border-radius: 30px;
    padding: 12px 36px;
    border: 1px solid #196B24;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.center-btn {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.center-btn-inner.w-80 {
    width: 80%;
    text-align: center;
    margin: auto;
}

.side-sec {
    display: flex;
    align-items: center;
}

.center-btn-inner.w-90 {
    width: 90%;
    text-align: center;
    margin: auto;
}

.center-btn-2 {
    gap: 5px;
}

.center-btn.center-btn-2 .center-btn-inner {
    padding: 12px 20px;
}

.table-contain table {
    border-collapse: collapse;
    width: 100%;
}

.table-contain td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    vertical-align: top;
}

.table-contain .title {
    background: #104862;
    color: #fff;
    font-weight: bold;
    width: 220px;
}

.table-contain .content {
    background: #f9f9f9;
    color: #000;
}

.table-contain .header {
    background: #000;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    font-size: 18px;
}

.our-blog-content-2 {
    position: sticky;
    top: 100px;
}

.blog-item-content h4 {
    color: #104862;
    font-weight: 600;
}

.hero-slider-image:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000080;
}

.hero-slider-image {
    position: relative;
}
.hero-slider-image img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.hero-content h1 {
    color: #fff;
    line-height: 60px;
}
.hero-content {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

.blog-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.blog-item .blog-img {
  position: relative;
  display: block;
  z-index: 1;
}
.blog-item .blog-img::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #141414 105.28%);
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  z-index: 2;
}
.blog-item .blog-img img {
  border-radius: 10px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}
.blog-item .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
.blog-item .blog-info {
  -webkit-transition: all 0.9s;
  -ms-transition: all 0.9s;
  transition: all 0.9s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 20px;
  width: 100%;
  z-index: 2;
}
.blog-item .blog-info a {
  color: #FFF;
}
.blog-item .blog-info a:hover {
  color: #004c85;
}
.blog-item .blog-info h5 a {
  color: #FFF;
}
.blog-item .blog-info h5 a:hover {
  color: #004c85;
}
.blog-item h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-item:hover .blog-img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
/* Communities Grid */
.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .communities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Community Card */
.community-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.community-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Card Icon */
.card-icon-2 {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Card Content */
.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #104862;
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}

/* Card Actions */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}



/* Expandable Section */
.expandable-section {
    margin: 1.5rem 0;
}

.expand-btn {
   width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 14px 36px;
    background: #ffffff;
    color: #0075B8;
    border: 1px solid #0075B8;
    border-radius: 30px;
    /* font-weight: 600; */
    cursor: pointer;
    transition: all 0.2s 
ease;
    font-size: 1rem;
}

.expand-btn:hover {
    background: #dbeafe;
}

.expand-icon {
    transition: transform 0.3s ease;
}

.expand-btn.active .expand-icon {
    transform: rotate(180deg);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    opacity: 0;
}

.expandable-content.active {
    max-height: 600px;
    opacity: 1;
    margin-top: 1.5rem;
}

/* Essentials Grid */
.essentials-grid {
    display: grid;
    gap: 10px;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.essential-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #104862;
    margin-bottom: 10px;
}

.essential-item ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.essential-item li {
    padding-bottom: 7px;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    font-size: 14px;
}

.essential-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #104862;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .main-subtitle {
        font-size: 1rem;
    }

    .community-card {
        padding: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .essentials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0.5rem;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .communities-grid {
        gap: 1.5rem;
    }

    .community-card {
        padding: 1.5rem;
    }
}
.invedt-heading h3 {
    background: #196b24;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    transform: rotate(-90deg);
    margin-top: 50px;
}
.row-flx-2{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.pagination {
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-inner  .pages {
    display: flex;
    align-items: center;
    /* gap: 4px; */
    justify-content: space-between;
    max-width: 100%;
    width: 200px;
}

.pagination-inner .page-number {
    cursor: pointer;
    background-color: #f0eeee;
    color: #999;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    line-height: 7px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
}

.pagination-inner .active {
    font-size: 14px;
    height: 35px;
    width: 35px;
        background-color: #104862;
    color: white;
}

.pagination-inner  button {
    width: 120px;
    padding: 8px 16px;
    background-color: #ffffff00;
    color: #104862;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination-inner  button:hover {
    color: #104862;
}

.pagination-inner  button:disabled {
    background-color: #ffffff00;
    color: #ccc;
    cursor: not-allowed;
}

.pagination-inner  #prevPage {
    margin-right: 20px;
}

.pagination-inner  #nextPage {
    margin-left: 20px;
}

.pagination-inner  .arrow {
    font-size: 1.2em;
}

.pagination-inner .nav-text {
    font-size: 0.7em;
    letter-spacing: 0.3em;
}
.client-logo img {
    width: 30%;
    margin: auto;
    margin-top: 62px;
    display: flex;
}

 .privacy-page .last-updated {
            color: #666;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
 
       .privacy-page .intro {
            margin-bottom: 40px;
            color: #555;
        }
 
      .privacy-page  .intro a {
            color: #104862;
            text-decoration: none;
        }
 
       .privacy-page .intro a:hover {
            text-decoration: underline;
        }
 
      .privacy-page  h2 {
            margin: 40px 0 20px;
            color: #1a1a1a;
        }
 
       .privacy-page p {
            margin-bottom: 20px;
            color: #555;
        }
 
       .privacy-page ul {
            margin: 20px 0 20px 20px;
        }
 
        .privacy-page li {
            margin-bottom: 15px;
            color: #555;
        }
 
       .privacy-page strong {
            color: #333;
        }
 
       .privacy-page .toggle-section {
            margin: 30px 0;
        }
 
       .privacy-page .toggle-item {
            display: flex;
            align-items: center;
            margin: 20px 0;
            gap: 15px;
        }
 
       .privacy-page .toggle {
            position: relative;
            width: 60px;
            height: 30px;
            background: #1670b8;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s;
        }
 
       .privacy-page .toggle.off {
            background: #ccc;
        }
 
       .privacy-page .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }
 
       .privacy-page .toggle.on .toggle-slider {
            transform: translateX(30px);
        }
 
       .privacy-page .toggle-label {
            font-weight: 600;
            color: #333;
        }
 
        .privacy-page .toggle-description {
            color: #666;
            font-size: 0.9rem;
            margin-top: 5px;
        }
 
      .privacy-page  .sign-in-btn {
            display: inline-block;
            padding: 8px 16px;
            background: #e9ecef;
            border: 1px solid #ccc;
            border-radius: 4px;
            color: #333;
            text-decoration: none;
            font-size: 0.9rem;
            margin: 10px 0;
            cursor: pointer;
        }
 
       .privacy-page .sign-in-btn:hover {
            background: #dee2e6;
        }
 

.custom-gallery-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.gallery-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.gallery-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-row.bottom-row {
    justify-content: center;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-row {
        flex-direction: column;
    }
}
