@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-Light.woff2") format("woff2"),
    url("Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-ExtraBold.woff2") format("woff2"),
    url("Montserrat-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Medium.woff2") format("woff2"),
    url("../font/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-SemiBold.woff2") format("woff2"),
    url("../font/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Bold.woff2") format("woff2"),
    url("../font/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Regular.woff2") format("woff2"),
    url("../font/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  margin: 0%;
  padding: 0%;
  text-decoration: none;
  /* list-style-type: none; */
  color: var(--black-color);
}

html {
  scroll-behavior: smooth;
}

#org_value_cong,
#team_building,
#tracking_insights,
#team_cross,
#employe_develop {
  scroll-margin-block-start: 70px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

body {
  margin: 0%;
  padding: 0%;
}

:root {
  --primary: rgba(78, 90, 244, 1);
  --secondary: rgba(78, 90, 244, 0.05);
  --black-color: #434343;
  --white-color: #ffffff;
  --black: #000000;
}

.container {
  width: 1350px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.outline-btn {
  display: inline-block;
  vertical-align: middle;
  min-width: 170px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: var(--white-color);
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.outline-btn:hover {
  transition: 0.3s all ease-in-out;
  color: var(--white-color);
  background-color: var(--primary);
}

.solid-btn {
  display: inline-block;
  vertical-align: middle;
  min-width: 170px;
  max-width: 100%;
  font-size: 18px;
  line-height: 24.5px;
  text-transform: capitalize;
  font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid var(--primary);
  color: var(--white-color);
  background-color: var(--primary);
  /* border-radius: 100px; */
  border-radius: 30px;
  cursor: pointer;
}

.text-danger {
  color: firebrick;
}

.solid-btn:hover {
  transition: 0.3s all ease-in-out;
  background-color: var(--white-color);
  border-color: var(--primary);
  color: var(--primary);
}

.solid-btn.bg-green {
  width: 250px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}

.solid-btn.bg-green:hover {
  border: 1px solid #7dde9d !important;
  background-color: white !important;
  color: #7dde9d !important;
}

.bg-theme-light {
  background-color: var(--secondary);
}

.bg-theme-primary {
  background-color: var(--primary);
}

.bg-white {
  background-color: var(--white-color);
}

.overflow-hidden {
  overflow: hidden;
}

.text-underline {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* .letter-space-half {
  letter-spacing: 0.2px;
} */

.section-padding {
  padding: 30px 0;
}

.section-padding-lg {
  padding: 70px 0;
}

.section-header {
  width: 1200px;
  max-width: 100%;
  margin: auto;
}

.section-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--black-color);
}

.section-desc {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--black-color);
  letter-spacing: 0.5px;
}

.text-theme {
  color: var(--primary);
}

.text-theme-black {
  color: var(--black-color);
}

.text-white {
  color: var(--white-color);
}

.position-relative {
  position: relative;
}

.w-100 {
  width: 100%;
}

.mw-100 {
  max-width: 100%;
}

.h-auto {
  height: auto;
}

.d-block {
  display: block;
}

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

.d-flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.d-none {
  display: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-start {
  align-items: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-center-i {
  justify-content: center !important;
}

.justify-content-start {
  justify-content: start;
}

.justify-content-end {
  justify-content: end;
}

.justify-content-between {
  justify-content: space-between;
}

.gap-40 {
  gap: 40px;
}

.ml-auto {
  margin-left: auto;
}

.ml-0,
.mx-0 {
  margin-left: 0;
}

.mr-0,
.mx-0 {
  margin-right: 0;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0;
}

.pb-0,
.py-0 {
  padding-bottom: 0;
}

.pt-0,
.py-0 {
  padding-top: 0;
}

.ml-5,
.mx-5 {
  margin-left: 0.3125rem;
}

.mr-5,
.mx-5 {
  margin-right: 0.3125rem;
}

.mb-5,
.my-5 {
  margin-bottom: 0.3125rem;
}

.mt-5,
.my-5 {
  margin-top: 0.3125rem;
}

.pl-5,
.px-5 {
  padding-left: 0.3125rem;
}

.pr-5,
.px-5 {
  padding-right: 0.3125rem;
}

.pb-5,
.py-5 {
  padding-bottom: 0.3125rem;
}

.pt-5,
.py-5 {
  padding-top: 0.3125rem;
}

.m-5 {
  margin: 0.3125rem;
}

.ml-10,
.mx-10 {
  margin-left: 0.625rem;
}

.mr-10,
.mx-10 {
  margin-right: 0.625rem;
}

.mb-10,
.my-10 {
  margin-bottom: 0.625rem;
}

.mt-10,
.my-10 {
  margin-top: 0.625rem;
}

.p-5 {
  padding: 0.3125rem;
}

.pl-10,
.px-10 {
  padding-left: 0.625rem;
}

.pr-10,
.px-10 {
  padding-right: 0.625rem;
}

.pb-10,
.py-10 {
  padding-bottom: 0.625rem;
}

.pt-10,
.py-10 {
  padding-top: 0.625rem;
}

.m-10 {
  margin: 0.625rem;
}

.ml-15,
.mx-15 {
  margin-left: 0.9375rem;
}

.mr-15,
.mx-15 {
  margin-right: 0.9375rem;
}

.mb-15,
.my-15 {
  margin-bottom: 0.9375rem;
}

.mt-15,
.my-15 {
  margin-top: 0.9375rem;
}

.p-10 {
  padding: 0.625rem;
}

.pl-15,
.px-15 {
  padding-left: 0.9375rem;
}

.pr-15,
.px-15 {
  padding-right: 0.9375rem;
}

.pb-15,
.py-15 {
  padding-bottom: 0.9375rem;
}

.pt-15,
.py-15 {
  padding-top: 0.9375rem;
}

.m-15 {
  margin: 0.9375rem;
}

.ml-20,
.mx-20 {
  margin-left: 1.25rem;
}

.mr-20,
.mx-20 {
  margin-right: 1.25rem;
}

.mb-20,
.my-20 {
  margin-bottom: 1.25rem;
}

.mt-20,
.my-20 {
  margin-top: 1.25rem;
}

.p-15 {
  padding: 0.9375rem;
}

.pl-20,
.px-20 {
  padding-left: 1.25rem;
}

.pr-20,
.px-20 {
  padding-right: 1.25rem;
}

.pb-20,
.py-20 {
  padding-bottom: 1.25rem;
}

.pt-20,
.py-20 {
  padding-top: 1.25rem;
}

.m-20 {
  margin: 1.25rem;
}

.ml-25,
.mx-25 {
  margin-left: 1.5625rem;
}

.mr-25,
.mx-25 {
  margin-right: 1.5625rem;
}

.mb-25,
.my-25 {
  margin-bottom: 1.5625rem;
}

.mt-25,
.my-25 {
  margin-top: 1.5625rem;
}

.p-20 {
  padding: 1.25rem;
}

.pl-25,
.px-25 {
  padding-left: 1.5625rem;
}

.pr-25,
.px-25 {
  padding-right: 1.5625rem;
}

.pb-25,
.py-25 {
  padding-bottom: 1.5625rem;
}

.pt-25,
.py-25 {
  padding-top: 1.5625rem;
}

.m-25 {
  margin: 1.5625rem;
}

.ml-30,
.mx-30 {
  margin-left: 1.875rem;
}

.mr-30,
.mx-30 {
  margin-right: 1.875rem;
}

.mb-30,
.my-30 {
  margin-bottom: 1.875rem;
}

.mt-30,
.my-30 {
  margin-top: 1.875rem;
}

.p-25 {
  padding: 1.5625rem;
}

.pl-30,
.px-30 {
  padding-left: 1.875rem;
}

.pr-30,
.px-30 {
  padding-right: 1.875rem;
}

.pb-30,
.py-30 {
  padding-bottom: 1.875rem;
}

.pt-30,
.py-30 {
  padding-top: 1.875rem;
}

.m-30 {
  margin: 1.875rem;
}

.ml-35,
.mx-35 {
  margin-left: 2.1875rem;
}

.mr-35,
.mx-35 {
  margin-right: 2.1875rem;
}

.mb-35,
.my-35 {
  margin-bottom: 2.1875rem;
}

.mt-35,
.my-35 {
  margin-top: 2.1875rem;
}

.p-30 {
  padding: 1.875rem;
}

.pl-35,
.px-35 {
  padding-left: 2.1875rem;
}

.pr-35,
.px-35 {
  padding-right: 2.1875rem;
}

.pb-35,
.py-35 {
  padding-bottom: 2.1875rem;
}

.pt-35,
.py-35 {
  padding-top: 2.1875rem;
}

.m-35 {
  margin: 2.1875rem;
}

.ml-40,
.mx-40 {
  margin-left: 2.5rem;
}

.mr-40,
.mx-40 {
  margin-right: 2.5rem;
}

.mb-40,
.my-40 {
  margin-bottom: 2.5rem;
}

.mt-40,
.my-40 {
  margin-top: 2.5rem;
}

.p-35 {
  padding: 2.1875rem;
}

.pl-40,
.px-40 {
  padding-left: 2.5rem;
}

.pr-40,
.px-40 {
  padding-right: 2.5rem;
}

.pb-40,
.py-40 {
  padding-bottom: 2.5rem;
}

.pt-40,
.py-40 {
  padding-top: 2.5rem;
}

.m-40 {
  margin: 2.5rem;
}

.ml-45,
.mx-45 {
  margin-left: 2.8125rem;
}

.mr-45,
.mx-45 {
  margin-right: 2.8125rem;
}

.mb-45,
.my-45 {
  margin-bottom: 2.8125rem;
}

.mt-45,
.my-45 {
  margin-top: 2.8125rem;
}

.p-40 {
  padding: 2.5rem;
}

.pl-45,
.px-45 {
  padding-left: 2.8125rem;
}

.pr-45,
.px-45 {
  padding-right: 2.8125rem;
}

.pb-45,
.py-45 {
  padding-bottom: 2.8125rem;
}

.pt-45,
.py-45 {
  padding-top: 2.8125rem;
}

.m-45 {
  margin: 2.8125rem;
}

.ml-50,
.mx-50 {
  margin-left: 3.125rem;
}

.mr-50,
.mx-50 {
  margin-right: 3.125rem;
}

.mb-50,
.my-50 {
  margin-bottom: 3.125rem;
}

.mt-50,
.my-50 {
  margin-top: 3.125rem;
}

.p-45 {
  padding: 2.8125rem;
}

.pl-50,
.px-50 {
  padding-left: 3.125rem;
}

.pr-50,
.px-50 {
  padding-right: 3.125rem;
}

.pb-50,
.py-50 {
  padding-bottom: 3.125rem;
}

.pt-50,
.py-50 {
  padding-top: 3.125rem;
}

.m-50 {
  margin: 3.125rem;
}

.ml-55,
.mx-55 {
  margin-left: 3.4375rem;
}

.mr-55,
.mx-55 {
  margin-right: 3.4375rem;
}

.mb-55,
.my-55 {
  margin-bottom: 3.4375rem;
}

.mt-55,
.my-55 {
  margin-top: 3.4375rem;
}

.p-50 {
  padding: 3.125rem;
}

.pl-55,
.px-55 {
  padding-left: 3.4375rem;
}

.pr-55,
.px-55 {
  padding-right: 3.4375rem;
}

.pb-55,
.py-55 {
  padding-bottom: 3.4375rem;
}

.pt-55,
.py-55 {
  padding-top: 3.4375rem;
}

.m-55 {
  margin: 3.4375rem;
}

.ml-60,
.mx-60 {
  margin-left: 3.75rem;
}

.mr-60,
.mx-60 {
  margin-right: 3.75rem;
}

.mb-60,
.my-60 {
  margin-bottom: 3.75rem;
}

.mt-60,
.my-60 {
  margin-top: 3.75rem;
}

.p-55 {
  padding: 3.4375rem;
}

.pl-60,
.px-60 {
  padding-left: 3.75rem;
}

.pr-60,
.px-60 {
  padding-right: 3.75rem;
}

.pb-60,
.py-60 {
  padding-bottom: 3.75rem;
}

.pt-60,
.py-60 {
  padding-top: 3.75rem;
}

.m-60 {
  margin: 3.75rem;
}

.ml-65,
.mx-65 {
  margin-left: 4.0625rem;
}

.mr-65,
.mx-65 {
  margin-right: 4.0625rem;
}

.mb-65,
.my-65 {
  margin-bottom: 4.0625rem;
}

.mt-65,
.my-65 {
  margin-top: 4.0625rem;
}

.p-60 {
  padding: 3.75rem;
}

.pl-65,
.px-65 {
  padding-left: 4.0625rem;
}

.pr-65,
.px-65 {
  padding-right: 4.0625rem;
}

.pb-65,
.py-65 {
  padding-bottom: 4.0625rem;
}

.pt-65,
.py-65 {
  padding-top: 4.0625rem;
}

.m-65 {
  margin: 4.0625rem;
}

.ml-70,
.mx-70 {
  margin-left: 4.375rem;
}

.mr-70,
.mx-70 {
  margin-right: 4.375rem;
}

.mb-70,
.my-70 {
  margin-bottom: 4.375rem;
}

.mt-70,
.my-70 {
  margin-top: 4.375rem;
}

.p-65 {
  padding: 4.0625rem;
}

.pl-70,
.px-70 {
  padding-left: 4.375rem;
}

.pr-70,
.px-70 {
  padding-right: 4.375rem;
}

.pb-70,
.py-70 {
  padding-bottom: 4.375rem;
}

.pt-70,
.py-70 {
  padding-top: 4.375rem;
}

.m-70 {
  margin: 4.375rem;
}

.ml-75,
.mx-75 {
  margin-left: 4.6875rem;
}

.mr-75,
.mx-75 {
  margin-right: 4.6875rem;
}

.mb-75,
.my-75 {
  margin-bottom: 4.6875rem;
}

.mt-75,
.my-75 {
  margin-top: 4.6875rem;
}

.p-70 {
  padding: 4.375rem;
}

.pl-75,
.px-75 {
  padding-left: 4.6875rem;
}

.pr-75,
.px-75 {
  padding-right: 4.6875rem;
}

.pb-75,
.py-75 {
  padding-bottom: 4.6875rem;
}

.pt-75,
.py-75 {
  padding-top: 4.6875rem;
}

.m-75 {
  margin: 4.6875rem;
}

.ml-80,
.mx-80 {
  margin-left: 5rem;
}

.mr-80,
.mx-80 {
  margin-right: 5rem;
}

.mb-80,
.my-80 {
  margin-bottom: 5rem;
}

.mt-80,
.my-80 {
  margin-top: 5rem;
}

.p-75 {
  padding: 4.6875rem;
}

.pl-80,
.px-80 {
  padding-left: 5rem;
}

.pr-80,
.px-80 {
  padding-right: 5rem;
}

.pb-80,
.py-80 {
  padding-bottom: 5rem;
}

.pt-80,
.py-80 {
  padding-top: 5rem;
}

.m-80 {
  margin: 5rem;
}

.ml-85,
.mx-85 {
  margin-left: 5.3125rem;
}

.mr-85,
.mx-85 {
  margin-right: 5.3125rem;
}

.mb-85,
.my-85 {
  margin-bottom: 5.3125rem;
}

.mt-85,
.my-85 {
  margin-top: 5.3125rem;
}

.p-80 {
  padding: 5rem;
}

.pl-85,
.px-85 {
  padding-left: 5.3125rem;
}

.pr-85,
.px-85 {
  padding-right: 5.3125rem;
}

.pb-85,
.py-85 {
  padding-bottom: 5.3125rem;
}

.pt-85,
.py-85 {
  padding-top: 5.3125rem;
}

.m-85 {
  margin: 5.3125rem;
}

.ml-90,
.mx-90 {
  margin-left: 5.625rem;
}

.mr-90,
.mx-90 {
  margin-right: 5.625rem;
}

.mb-90,
.my-90 {
  margin-bottom: 5.625rem;
}

.mt-90,
.my-90 {
  margin-top: 5.625rem;
}

.p-85 {
  padding: 5.3125rem;
}

.pl-90,
.px-90 {
  padding-left: 5.625rem;
}

.pr-90,
.px-90 {
  padding-right: 5.625rem;
}

.pb-90,
.py-90 {
  padding-bottom: 5.625rem;
}

.pt-90,
.py-90 {
  padding-top: 5.625rem;
}

.m-90 {
  margin: 5.625rem;
}

.ml-95,
.mx-95 {
  margin-left: 5.9375rem;
}

.mr-95,
.mx-95 {
  margin-right: 5.9375rem;
}

.mb-95,
.my-95 {
  margin-bottom: 5.9375rem;
}

.mt-95,
.my-95 {
  margin-top: 5.9375rem;
}

.p-90 {
  padding: 5.625rem;
}

.pl-95,
.px-95 {
  padding-left: 5.9375rem;
}

.pr-95,
.px-95 {
  padding-right: 5.9375rem;
}

.pb-95,
.py-95 {
  padding-bottom: 5.9375rem;
}

.pt-95,
.py-95 {
  padding-top: 5.9375rem;
}

.m-95 {
  margin: 5.9375rem;
}

.ml-100,
.mx-100 {
  margin-left: 6.25rem;
}

.mr-100,
.mx-100 {
  margin-right: 6.25rem;
}

.mb-100,
.my-100 {
  margin-bottom: 6.25rem;
}

.mt-100,
.my-100 {
  margin-top: 6.25rem;
}

.p-95 {
  padding: 5.9375rem;
}

.pl-100,
.px-100 {
  padding-left: 6.25rem;
}

.pr-100,
.px-100 {
  padding-right: 6.25rem;
}

.pb-100,
.py-100 {
  padding-bottom: 6.25rem;
}

.pt-100,
.py-100 {
  padding-top: 6.25rem;
}

.m-100 {
  margin: 6.25rem;
}

.p-100 {
  padding: 6.25rem;
}

.text-capital {
  text-transform: uppercase;
}

/* new css added by mk start*/

.bg-green {
  background: #7dde9d;
  border: #7dde9d;
}

.text-green {
  color: #7dde9d;
}

.h-100 {
  height: 100%;
}

.m-auto {
  margin: auto;
}

.lh-12 {
  line-height: 12px;
}

.lh-normal {
  line-height: 1;
}

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

.lh-13 {
  line-height: 1.3;
}

.max-h-500 {
  max-height: 500px;
}

.flex-1 {
  flex: 1;
}

.font-14 {
  font-size: 14px;
}

.font-36 {
  font-size: 36px;
}

.font-32 {
  font-size: 32px;

  @media (max-width: 768px) {
    font-size: 24px;
  }

  @media (max-width: 567px) {
    font-size: 22px;
  }
}

.font-28 {
  font-size: 28px;

  @media (max-width: 567px) {
    font-size: 24px;
  }
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-12 {
  font-size: 12px;
}

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

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

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

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

.gap-15 {
  gap: 15px;
}

@media (max-width: 992px) {
  .font-36 {
    font-size: 30px;
  }

  .font-22 {
    font-size: 18px;
  }

  .font-24 {
    font-size: 22px;
  }
}

@media (max-width: 776px) {
  .text-md-center {
    text-align: center;
  }

  .text-md-left {
    text-align: left;
  }

  .d-md-block {
    display: flex !important;
  }

  .font-36 {
    font-size: 28px;
  }

  .font-20 {
    font-size: 18px;
  }

  .prioritize-slide-card .mb-35 {
    margin-bottom: 12px;
  }
}

@media (max-width: 578px) {
  .text-sm-left {
    text-align: left !important;
  }

  .image-with-text-section .text-capital {
    text-transform: capitalize !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .font-20 {
    font-size: 18px;
  }

  .font-24 {
    font-size: 20px;
  }

  .font-18 {
    font-size: 16px;
  }

  .font-36 {
    font-size: 24px;
  }

  .text-sm-center {
    text-align: center;
  }
}

/*  new css added by mk end  */

@media (max-width: 578px) {
  .section-padding-lg {
    padding: 35px 0;
  }

  .client-review-card .client-review {
    gap: 10px;
    align-items: center;
  }

  .pb-md-4 {
    padding-bottom: 32px;
  }

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

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

  .pt-sm-35 {
    padding-top: 35px !important;
  }

  .pb-sm-35 {
    padding-bottom: 35px !important;
  }

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

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

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

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

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

  .mt-sm-35 {
    margin-top: 35px !important;
  }

  .mb-sm-35 {
    margin-bottom: 35px !important;
  }

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

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

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

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .px-sm-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Header css start */
.main-header {
  padding: 16px 0;
  background-color: var(--white-color);
  position: sticky;
  top: 0%;
  width: 100%;
  transition: box-shadow 0.3s ease;
  z-index: 999;
}

.main-header.scrolled {
  box-shadow: 0 2px 10px #f6f6f6;
}

.main-header .header-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.main-header .header-logo-wrapper .header-logo {
  width: 160px;
  height: auto;
}

.main-header .header-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0%;
  width: calc(100% - 400px);
}

.main-header .header-menu-wrapper .menu-link {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 15px;
}

.main-header .header-menu-wrapper .menu.active .menu-link {
  font-weight: 600;
}

.main-header .header-menu-wrapper .menu.active .menu-link,
.main-header .header-menu-wrapper .menu:hover .menu-link {
  color: var(--primary);
}

.main-header .header-menu-wrapper .menu.mobile-cta {
  display: none;
}

.main-header .header-menu-wrapper .menu.dropdown-menu .menu-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.main-header .header-cta .outline-btn {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: max-content;
}

.main-header .header-cta .outline-btn svg path,
.main-header .header-menu-wrapper .menu.dropdown-menu .menu-link svg path {
  transition: all 0.3s ease;
}

.main-header .header-cta .outline-btn:hover svg path:first-child {
  fill: var(--white-color);
}
.main-header .header-cta .outline-btn:hover img {
  filter: brightness(100);
}

.main-header .header-cta .outline-btn:hover svg path:last-child,
.main-header
  .header-menu-wrapper
  .menu.dropdown-menu:hover
  .menu-link
  svg
  path {
  fill: var(--primary);
}

.main-header .header-cta,
.main-header .header-logo-wrapper {
  width: 200px;
}

.main-header .header-menu-wrapper .menu-bar-header {
  display: none;
}

.main-header .menu-btn {
  display: none;
  padding: 10px;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  box-shadow: 1px 1px 8px #f1f1f1;
}

.main-header .header-menu-wrapper .menu-bar-header .menu-bar-logo {
  width: 150px;
  height: auto;
}

.hide-menu-btn {
  padding: 10px;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  box-shadow: 1px 1px 8px #f1f1f1;
  display: inline-flex;
}

.menu-bar-social-icon {
  display: none;
}

@media (max-width: 991px) {
  .main-header .header-menu-wrapper .menu-bar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 10px;
  }

  .main-header .header-menu-wrapper .menu {
    width: 100%;
  }

  .main-header .header-menu-wrapper .menu-link {
    padding: 12px 20px;
    display: block;
    width: 100%;
  }

  .main-header .header-menu-wrapper .menu.dropdown-menu .menu-link {
    justify-content: space-between;
  }

  .main-header .menu-btn,
  .main-header .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
  }

  .main-header .header-menu-wrapper {
    position: fixed;
    top: 0;
    left: -550px;
    background-color: var(--white-color);
    width: 400px;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 2px 0 10px #f1f1f1;
    transition: all 0.5s ease;
    z-index: 99;
  }

  .main-header .header-menu-wrapper.active {
    left: 0;
  }

  .menu-bar-social-icon {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    align-self: center;
    padding-bottom: 10px;
  }
}

@media (max-width: 578px) {
  .main-header .header-logo-wrapper .header-logo {
    width: 120px;
  }

  .main-header .header-cta .outline-btn {
    display: none;
  }

  .main-header .header-menu-wrapper .menu.mobile-cta {
    display: inline-block;
    padding: 10px 20px 0;
  }
}

/* Header css end */

/* Hero section css start */
.hero-section .banner-content-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 20px;
}

.hero-section .slick-dots li button {
  width: 8px !important;
  height: 5px;
}

.hero-section .slick-dots .slick-active button {
  width: 15px !important;
}

.hero-section-swip .slick-dots {
  justify-content: center;
  position: absolute;

  @media (max-width: 768px) {
    display: none !important;
  }
}

.hero-section-swip .slick-slide {
  margin: 0 5px !important;
  /* min-height: 100%; */
  /* position: relative; */
  /* padding-bottom: 10px; */
  /* display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center; */
}

.hero-section .banner-content-row .banner-content,
.hero-section .banner-content-row .banner-media {
  width: 50%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  gap: 25px;
}

.section-underline {
  max-width: 60%;
  margin: auto;
  height: 1px;
  background-color: #0000001a;
}

.hero-section .banner-content-row.equal-column .banner-content,
.hero-section .banner-content-row.equal-column .banner-media {
  width: calc(49% - 10px);
}

.hero-section .banner-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-section .banner-sub-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}

.hero-section .banner-cta-wrapper .video-btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: none;
  padding: 0;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
}

.hero-section .banner-content-row .banner-media {
  overflow: hidden;
  width: calc(50% - 22px);
  z-index: -1;
}

@media (min-width: 991px) {
  .hero-section-swip .banner-content-row .banner-media picture {
    opacity: 0;
  }

  .hero-section-swip .banner-content-row {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    height: 100%;
  }
}

@media (max-width: 990px) {
  .hero-section-swip .banner-content-row {
    background-image: none !important;
  }
}

.hero-section .banner-media .banner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}

.hero-section .banner-media .banner-img-rotate {
  /* animation: bannerRotate 60s linear infinite; */
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.hero-section .banner-media .rotating-number-image {
  /* animation: bannerRotate 60s linear infinite; */
  height: 90%;
  width: 90%;
  top: 1%;
  left: -18%;
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.oveflow-visible {
  overflow: visible !important;
}

/* @keyframes bannerRotate {
  0% {
    transform: rotate(0);
  }

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

@media (max-width: 1200px) {
  .hero-section .banner-media .rotating-number-image {
    top: 5%;
    left: -33%;
  }
}

@media (max-width: 991px) {
  .section-heading {
    font-size: 26px;
  }

  .hero-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-desc {
    font-size: 18px;
  }

  .roboto-image2 {
    width: 100%;
    /* height: auto; */
  }

  .hero-section .banner-media .rotating-number-image {
    width: 100%;
    height: 100%;
    left: -37%;
  }
}

@media (max-width: 768px) {
  .banner-media.pt-70 {
    padding-top: 20px;
  }

  .hero-section {
    padding-top: 10px;
  }

  .hero-section .banner-content-row {
    gap: 20px;
  }

  .hero-section .banner-content-row .banner-content,
  .hero-section .banner-content-row .banner-media,
  .hero-section .banner-content-row.equal-column .banner-content,
  .hero-section .banner-content-row.equal-column .banner-media {
    width: 100%;
    gap: 16px;
  }

  .hero-section .banner-cta-wrapper {
    justify-content: center;
  }

  /* .hero-section .banner-sub-title,
  .section-heading,
  .hero-section .section-desc {
    text-align: center;
  } */

  .oveflow-visible {
    overflow: hidden !important;
  }
  .banner-content.service-content {
    text-align: center;
  }
}

@media (max-width: 578px) {
  .hero-section .banner-content-row .banner-content {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
  }

  .hero-section .banner-content-row .banner-media {
    display: unset;
  }

  .banner-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .banner-cta-wrapper {
    margin-top: auto;
    /* Push the button to the bottom */
  }

  .hero-section .banner-content-row.equal-column .banner-content {
    gap: 10px;
  }

  .roboto-image2 {
    width: 100%;
    /* min-height: 285px; */
    height: auto;
  }

  .hero-section .banner-media .rotating-number-image {
    width: 60%;
    height: auto;
    left: -10%;
    top: 0%;
  }

  .section-heading {
    font-size: 24px;
  }

  .section-desc {
    font-size: 18px;
    line-height: 24px;
  }

  .hero-section .banner-sub-title {
    font-size: 16px;
  }

  .hero-section .banner-cta-wrapper {
    flex-direction: column;
  }

  .hero-section .banner-cta-wrapper .outline-btn {
    min-width: 100%;
  }
}

@media (max-width: 400px) {
  .hero-section .banner-content-row .banner-content {
    min-height: 280px;
  }

  .service-content {
    min-height: 100% !important;
  }
}

/* Hero section css end */

/* usp-section css start */
.usp-section {
  /* padding: 10px 0; */
  padding: 13px 0;
  background-color: var(--primary);
}

.usp-section .usp-item {
  /* max-width: 100%; */
  /* flex:1; */
  gap: 15px;
}

.usp-section .usp-item .usp-item-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
}

/* @media (max-width: 768px) {
  .usp-section .usp-item .usp-item-title {
    font-size: 16px;
  }
} */

@media (max-width: 578px) {
  .usp-section .usp-item {
    /* width: 100%; */
    /* max-width: 100%; */
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .usp-section .usp-item-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* usp-section css end */

/* about section css start */

.sub-text-wrapper {
  max-width: 100%;
  width: 1000px;
  margin: auto;
}

.about-section .about-section-card-wrapper .about-section-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(33.32% - 0px);
  padding: 15px;
  border-right: 1px solid #eee;
}
.about-section .about-section-card-wrapper .about-section-card:last-child {
  border-right: 0;
}

.about-section
  .about-section-card-wrapper
  .about-section-card
  .about-section-card-icon {
  width: 50px;
  height: auto;
}

.about-section
  .about-section-card-wrapper
  .about-section-card
  .about-section-card-title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
}
.about-section
  .about-section-card-wrapper
  .about-section-card:hover
  .about-section-card-title {
  color: #4e5af4;
}

/* .about-section .about-section-card-wrapper .about-section-card .about-section-card-title::after {
  position: absolute;
  content: '';
  border-left: 2px dashed var(--primary);
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  height: 80%;
} */

.about-section
  .about-section-card-wrapper
  .about-section-card
  .about-section-card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.about-section .about-section-card-wrapper .about-section-card .about-section-cta {
  margin-top: auto; 
}

.about-icon-props {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: #8ae39f40;
  /* padding: 7px; */
}

@media (max-width: 991px) {
  .about-section .about-section-card-wrapper .about-section-card {
    width: calc(50% - 20px);
  }

  .about-section .section-desc {
    padding: 0;
  }
}

@media (max-width: 578px) {
  .about-section .about-section-card-wrapper {
    gap: 25px;
  }

  .about-section
    .about-section-card-wrapper
    .about-section-card
    .about-section-card-icon {
    width: 40px;
  }

  .about-section
    .about-section-card-wrapper
    .about-section-card
    .about-section-card-title {
    font-size: 18px;
  }

  .about-section.pt-75,
  .client-review-section.py-65 {
    padding-top: 35px;
  }

  .about-section .about-section-card-wrapper .about-section-card {
    width: 100%;
    padding: 0;
  }

  .about-section .section-heading {
    margin-bottom: 16px;
  }
}

/* about section css end */

/* client review section css start */
.client-review-wrapper .slick-slide {
  margin: 0px;
}

.client-review-card {
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 25px;
  margin: 10px;

  @media (max-width: 768px) {
    padding: 15px;
  }
}

.client-review-card .client-comment-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
}

.client-review-card .rating-star-icon {
  width: 24px;
  height: 24px;
  margin-right: 2px;
}

.client-review-card .client-review-date {
  font-size: 18px;
  font-weight: 500;
  line-height: 21.94px;
  text-align: right;
  color: var(--black-color);
  opacity: 0.5;
}

.client-review-card .user-icon-props {
  width: 30px;
  height: 30px;
}

.slick-prev.slick-arrow {
  left: -12px;
  background-image: url("../img/angle-circle-left.png");
}

.slick-arrow {
  display: block;
  height: 40px;
  width: 40px;
  cursor: pointer;
  position: absolute;
  top: 40%;
  color: transparent;
  border: 0;
  background-size: 40px;
  background-color: transparent;
}

.slick-next.slick-arrow {
  right: -12px;
  background-image: url("../img/angle-circle-right.svg");
}

.slick-dots {
  bottom: 10px;
  display: flex;
  justify-content: end;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  background-color: #dedede;
  border-radius: 8px;
  width: 10px;
  height: 5px;
  opacity: 1;
  border: 0px;
  color: transparent;
  padding: 0;
}

.slick-dots li button::before {
  display: none;
  content: "";
  color: transparent;
}

.slick-dots .slick-active button {
  background-color: blue;
  width: 40px;
  /* height: 5px; */
  border-radius: 8px;
}

@media (max-width: 567px) {
  .client-review-card {
    margin: 0px;
  }

  .client-review-wrapper .slick-dots {
    margin-top: 15px;
  }
}

/* client review section css end */

/* logo slider css start */
.logo-slider-section {
  background-color: var(--secondary);
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 5.5));
    transform: translateX(calc(-250px * 5.5));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 5.5));
    transform: translateX(calc(-250px * 5.5));
  }
}

@-webkit-keyframes scroll2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(250px * 5.5));
    transform: translateX(calc(250px * 5.5));
  }
}

@keyframes scroll2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(250px * 5.5));
    transform: translateX(calc(250px * 5.5));
  }
}

.logo-slider-section .logo-slider {
  /* height: 100px; */
  height: 65px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slider-section .logo-slider::before,
.logo-slider-section .logo-slider::after {
  background: linear-gradient(to right, #f6f7fe 0%, rgb(246 247 254 / 0%) 100%);
  content: "";
  height: 70px;
  position: absolute;
  width: 250px;
  z-index: 1;
}

.logo-slider-section .logo-slider::after {
  right: -1px;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.logo-slider-section .logo-slider::before {
  left: -1px;
  top: 0;
}

.logo-slider-section .logo-slider .logo-slider-wrapper {
  -webkit-animation: scroll 52s linear infinite;
  animation: scroll 52s linear infinite;
  display: flex;
  gap: 100px;
  width: calc(250px * 11);
}

.slider-animate .logo-slider .logo-slider-wrapper {
  -webkit-animation: scroll2 52s linear infinite;
  animation: scroll2 52s linear infinite;
  display: flex;
  gap: 100px;
  width: calc(250px * 11);
}

.logo-slider-section .logo-slider .logo-slide {
  height: 60px;
}

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

@media (max-width: 767px) {
  .d-md-flex {
    display: flex;
  }

  .gap-md-15 {
    gap: 15px;
  }
}

@media (max-width: 578px) {
  .logo-slider-section.py-60 {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .founder-block {
    padding: 35px 0 35px 0px !important;
  }

  .logo-slider-section .logo-slider::before,
  .logo-slider::after {
    width: 150px;
    height: 40px;
  }

  .logo-slider-section .logo-slider .logo-slider-wrapper {
    gap: 40px;
    width: calc(250px * 9);
  }

  .logo-slider-section .logo-slider .logo-slide {
    height: 35px;
  }

  .logo-slider-section .logo-slider {
    height: 40px;
  }

  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }

    100% {
      -webkit-transform: translateX(calc(-250px * 4.5));
      transform: translateX(calc(-250px * 4.5));
    }
  }

  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }

    100% {
      -webkit-transform: translateX(calc(-250px * 4.5));
      transform: translateX(calc(-250px * 4.5));
    }
  }
}

/* logo slider css end */

/* image-with-text-section css start */
.image-with-text-section.isContainer .image-with-text-row {
  width: 1350px;
  max-width: 100%;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}

.lady-image-wid img {
  max-width: unset !important;
}

.image-with-text-section.isContainer
  .image-with-text-row
  .image-with-text-content {
  padding: 20px 50px 20px 0;
}

.image-with-text-section.isContainer
  .image-with-text-row.image-left
  .image-with-text-content {
  padding: 20px 0px 20px 50px;
}

.image-with-text-section.isContainer
  .image-with-text-row.image-left
  .image-with-text-media
  img {
  margin-right: auto;
  margin-left: 0;
}

/* .image-with-text-section.isContainer .image-with-text-row .image-with-text-media img {
  margin-left: auto;
} */

.image-with-text-section .image-with-text-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.special-image-with-text {
  max-width: 1100px;
  margin: auto;
}

.image-with-text-section .image-with-text-row.image-left {
  flex-direction: row-reverse;
}

.image-with-text-section .image-with-text-row .image-with-text-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.image-with-text-section .special-image-with-text .image-with-text-media {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;

  @media (max-width: 768px) {
    align-items: center;
  }
}

.image-with-text-section .image-with-text-row .image-with-text-media2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: center;

  @media (max-width: 768px) {
    align-items: center;
  }
}

.image-with-text-section .image-with-text-row .image-with-text-media img {
  height: auto;
  width: 100%;
  max-width: 370px;
}

.h-500 img {
  max-width: 500px !important;
}

.image-with-text-section .image-with-text-row .image-with-text-content {
  padding: 0px 50px 0px 0px;
}

.image-with-text-section
  .image-with-text-row.image-left
  .image-with-text-content {
  padding: 0px 0px 0px 50px;
}

.image-with-text-section .image-with-text-heading {
  font-size: 28px;
  font-weight: 600;
}

.image-with-text-section .image-with-text-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .image-with-text-section .image-with-text-row .image-with-text-content,
  .image-with-text-section
    .image-with-text-row.image-left
    .image-with-text-content {
    padding: 10px 50px;
  }
}

@media (max-width: 768px) {
  .max-h-500 {
    max-height: 100%;
    width: 100%;
  }

  .image-with-text-section .image-with-text-row .image-with-text-content,
  .image-with-text-section .image-with-text-row .image-with-text-media {
    gap: 15px;
  }

  .image-with-text-section.isContainer
    .image-with-text-row.image-left
    .image-with-text-content {
    padding: 20px 0;
  }

  .image-with-text-section.isContainer .image-with-text-row.image-left {
    justify-content: flex-end;
  }

  .image-with-text-section .image-with-text-row .image-with-text-content,
  .image-with-text-section
    .image-with-text-row.image-left
    .image-with-text-content {
    padding: 0px;
  }

  .image-with-text-section .image-with-text-heading {
    font-size: 22px;
  }
}

@media (max-width: 578px) {
  .image-with-text-section.isContainer
    .image-with-text-row.image-left
    .image-with-text-content {
    padding: 0;
  }

  .image-with-text-section .image-with-text-row .image-with-text-content,
  .image-with-text-section .image-with-text-row .image-with-text-media {
    width: 100%;
    flex: unset;
  }

  .image-with-text-section .image-with-text-row {
    flex-wrap: wrap-reverse;
    gap: 20px;
    margin-bottom: 30px;
  }

  .image-with-text-section .image-with-text-row:last-child {
    margin-bottom: 0;
  }

  .image-with-text-section .image-with-text-heading {
    font-size: 20px;
  }

  .image-with-text-row {
    flex-wrap: wrap;
  }

  .image-with-text-content .flex-1,
  .image-with-text-media .flex-1 {
    flex: unset !important;
  }
}

/* image-with-text-section css end */

/* contact-us-block css start */
.contact-us-block {
  /* padding: 44px 0px 54px 0px; */
  padding: 30px 0px 30px 0px;
}

.contact-us-block .section-detail {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.contact-us-block .section-detail a {
  font-weight: 600;
  position: relative;
}

.contact-us-block .section-detail a::after {
  position: absolute;
  content: "";
  top: calc(100% + 4px);
  left: 0%;
  width: 100%;
  height: 1px;
  /* background-color: var(--black-color); */
  background-color: var(--white-color);
}

@media (max-width: 991px) {
  .contact-us-block {
    padding: 50px 0;
  }

  .reserved-text {
    display: block !important;
  }
}

@media (max-width: 578px) {
  .contact-us-block {
    padding: 30px 0;
  }

  .contact-us-block .section-detail {
    font-size: 16px;
  }

  .contact-us-block .section-detail a::after {
    top: 100%;
  }
}

/* contact-us-block css end */

/* Footer css start */
footer .footer-bg {
  position: absolute;
  width: 400px;
  max-width: 100%;
  left: 0%;
  top: 0%;
  z-index: -1;
}

.reserved-text {
  display: none;
}

footer .footer-logo {
  width: 175px;
  height: auto;
}

footer .info-block,
footer .services-block {
  width: 50%;
}

footer .info-block-title {
  font-size: 18px;
  font-weight: 400;
  margin: 12px 0 25px;
}

footer .info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

footer .info-list-item {
  display: flex;
  gap: 11px;
  line-height: 1.6;
}

footer .services-block {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 50px;
}

footer .services-block .services-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 0px 30px;
}

footer .services-block-item {
  display: flex;
  flex-direction: column;
  align-items: end;
}

footer .services-block .services-block-item-title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

footer .services-block .services-block-item-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: calc(100% + 6px);
  right: 0;
  background-color: var(--black-color);
}

footer .services-block .services-menu-wrapper .services-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  display: inline-block;
  transition: all 0.3s ease;
}

footer .services-block .services-menu-wrapper .services-menu a:hover {
  color: var(--primary);
}

footer .social-media-block {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}

@media (max-width: 578px) {
  footer .info-block,
  footer .services-block {
    width: 100%;
  }

  footer .services-block,
  footer .services-block-item,
  footer .services-block .services-menu-wrapper {
    justify-content: start;
    align-items: flex-start;
  }

  footer .services-block {
    gap: 20px;
    margin-top: 30px;
  }

  footer .copy-right-block {
    flex-direction: column-reverse;
    gap: 12px;
  }

  footer .footer-logo {
    width: 150px;
  }

  footer .services-block .services-menu-wrapper .services-menu a {
    padding: 6px 0;
  }
}

/* Footer css end */

/* video-banner-section css start */
/* .video-banner-section .banner-media-wrapper::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;

  left: 0;
  top: 0;
} */
.videoIcons {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
}
.videoIcons img {
  width: 60px;
  height: auto;
}
.videoIcons:not(.play) .play-icon {
  display: block;
}
.videoIcons:not(.play) .pause-icon {
  display: none;
}
.videoIcons.play .play-icon {
  display: none;
}
.videoIcons.play .pause-icon {
  display: block;
}
.video-banner-section .video-banner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  filter: brightness(0.75);
  max-width: 50%;
  z-index: 9;
}
.video-banner-section video[poster] {
  width: 100%;
  height: auto;
}
.video-banner-section .video-banner-detail-wrapper {
  background-color: var(--white-color);
  width: 1350px;
  max-width: calc(100% - 30px);
  margin: auto;
  padding: 25px 29px;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 4px 24px 0 rgba(78, 90, 244, 0.15), 0 1.5px 8px 0 rgba(78, 90, 244, 0.10);
}

.video-banner-detail-wrapper .section-desc {
  font-size: 18px;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}

@media (max-width: 578px) {
  .video-banner-section .video-banner-detail-wrapper {
    margin-top: 20px;
    padding: 16px 18px;
    max-width: 100%;
    box-shadow: none;
  }

  .video-banner-section .video-banner-detail-wrapper .section-desc {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
  }
}

/* video-banner-section css end */

/* founder-block css start */
.founder-block {
  padding: 70px 0 40px 0px;
}

.founder-block img {
  border-radius: 10px;
}

.founder-block .image-with-text-subTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}
.founder-block.image-with-text-section
  .image-with-text-row
  .image-with-text-content {
  width: calc(100% - 500px);
}
.founder-block .lady-image-wid {
  max-width: 480px;
}

.founder-block .image-with-text-subTitle {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .image-with-text-section .image-with-text-row {
    flex-wrap: wrap-reverse;
  }
  .founder-block.image-with-text-section
    .image-with-text-row
    .image-with-text-content {
    width: calc(100% - 0px);
  }

  .image-with-text-section .image-with-text-row .image-with-text-content {
    width: 100%;
  }

  .image-with-text-section.isContainer
    .image-with-text-row
    .image-with-text-content {
    padding: 20px 0;
  }
}

@media (max-width: 578px) {
  .image-with-text-section.isContainer
    .image-with-text-row
    .image-with-text-content {
    padding: 0;
  }

  .founder-block .image-with-text-subTitle {
    font-size: 14px;
  }

  .image-with-text-section .image-with-text-desc {
    font-size: 16px;
    text-align: center;
  }
}

/* founder-block css end */

/* About team section css start */
.about-team {
  padding: 30px 0 70px;
}

.about-team .team-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 58px;
  justify-content: flex-start;
}

.about-team .team-cards-row .team-card {
  width: calc(25% - 55px);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.about-team .team-cards-row .team-card img {
  border-radius: 10px;
}

.about-team .team-cards-row .team-card .member-name {
  font-size: 22px;
  font-weight: 600;
  margin: 22px 0 10px;
}

.about-team .team-cards-row .team-card .member-post {
  font-size: 18px;
  font-weight: 400;
}

.about-team .team-cards-row .team-card .img-download-btn {
  position: absolute;
  top: 100%;
  right: 20px;
  transform: translateY(-55%);
}

@media (max-width: 991px) {
  .about-team .team-cards-row .team-card {
    width: calc(33% - 37px);
  }
}

@media (max-width: 768px) {
  .about-team {
    padding: 0 0 30px;
  }

  .about-team.r180-cards {
    padding: 30px 0;
  }

  .about-team .team-cards-row .team-card {
    width: calc(33% - 22px);
  }

  .about-team .team-cards-row {
    gap: 35px;
  }

  .about-team .team-cards-row .team-card .member-name {
    margin: 10px 0 6px;
    font-size: 20px;
  }

  .about-team .team-cards-row .team-card .member-post {
    font-size: 16px;
  }

  .about-team .team-cards-row .team-card .img-download-btn svg {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 578px) {
  .about-team .team-cards-row .team-card .img-download-btn svg {
    width: 30px;
    height: 30px;
  }

  .about-team .section-heading {
    margin-bottom: 20px;
  }

  .about-team.r180-cards .section-heading {
    margin-bottom: 10px;
  }

  .about-team .team-cards-row .team-card {
    width: calc(50% - 10px);
  }

  .about-team .team-cards-row {
    gap: 20px;
  }

  .about-team .team-cards-row .team-card .member-name {
    font-size: 18px;
  }

  .about-team .team-cards-row .team-card .member-post {
    font-size: 14px;
  }
}

/* About team section css end */

/* contact-form-block css start */


.contact-form-block .contact-form-wrapper input,
.contact-form-block .contact-form-wrapper select {
  border: none;
  outline: none;
  width: 100%;
}

.contact-form-block .contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form-block .contact-form-wrapper {
  width: 60%;
}
.contact-form-block .contact-form-media {
  width: 40%;
}

.contact-form-block .contact-form-wrapper .input-wrapper {
  border: 1px solid rgba(217, 217, 217, 1);
  border-radius: 8px;
  padding: 18px;
  display: block;
  width: 100%;
}

.contact-form-block .contact-form-wrapper .input-wrapper .form-input,
.contact-form-block .contact-form-wrapper .input-wrapper .input-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(153, 153, 153, 1);
}

.contact-form-block .contact-form-wrapper .input-wrapper .input-label {
  position: absolute;
  bottom: 100%;
  left: 20px;
  transform: translateY(50%);
  padding: 0 5px;
  background-color: var(--white-color);
}

@media (max-width: 991px) {
  .contact-form-block .contact-form-wrapper {
    padding: 0;
  }

  .contact-form-block {
    padding-top: 40px;
  }
}

@media (max-width: 578px) {
  .contact-form-block .contact-form-wrapper,
  .contact-form-block .contact-form-media {
    width: 100%;
  }

  .contact-form-media {
    display: none;
  }

  .contact-form-block .contact-form-wrapper {
    gap: 20px;
  }

  .contact-form-block .contact-form-wrapper .input-wrapper .form-input,
  .contact-form-block .contact-form-wrapper .input-wrapper .input-label {
    font-size: 14px;
  }
}

/* contact-form-block css end */

/* FAQs section css start */
.faqs-section .faqs-row-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.faqs-section .faqs-row-wrapper .faqs-block {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faqs-section .faqs-row-wrapper .faqs-block .faqs-item {
  background-color: var(--white-color);
  border-radius: 10px;
}

.faqs-section
  .faqs-row-wrapper
  .faqs-block
  .faqs-item[open]
  .faqs-item-question {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.faqs-section .faqs-row-wrapper .faqs-block .faqs-item .faqs-item-question {
  font-size: 24px;
  font-weight: 600;
  padding: 22px 28px;
  cursor: pointer;
  list-style-type: none;
}

.faqs-section .faqs-row-wrapper .faqs-block .faqs-item .faqs-item-answer {
  font-size: 18px;
  font-weight: 400;
  padding: 22px 28px;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .faqs-section .faqs-row-wrapper .faqs-block .faqs-item .faqs-item-question {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .faqs-section .faqs-row-wrapper .faqs-block,
  .faqs-row-wrapper {
    width: 100%;
    gap: 20px;
  }
}

@media (max-width: 578px) {
  .faqs-section .faqs-row-wrapper {
    margin-top: 30px;
  }

  .faqs-section .faqs-row-wrapper .faqs-block .faqs-item .faqs-item-question {
    font-size: 16px;
    padding: 14px 20px;
  }

  .faqs-section .faqs-row-wrapper .faqs-block .faqs-item .faqs-item-answer {
    font-size: 14px;
    padding: 14px 20px;
    line-height: 1.6;
  }

  .faqs-section {
    padding: 30px 0;
  }
}

/* FAQs section css end */

/* card-overlay-text-section css start */
.card-overlay-text-section .card-overlay-text-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 767px) {
  .overlay-card .overlay-card-detail {
    transform: translateY(0px);
  }

  /* .overlay-card:hover {
    .overlay-card-detail {
      transform: translateY(0px);
    }

    .overlay-traslate-text {
      display: block;
    }
  } */
}

.card-overlay-text-section .card-overlay-text-row .overlay-card {
  width: calc(33% - 13px);
  border-radius: 10px;
  overflow: hidden;
  /* border: 1px solid rgba(0, 0, 0, 0.05); */
  position: relative;
  /* background-color: #8AE39F40; */
}

.card-overlay-text-section
  .card-overlay-text-row
  .overlay-card
  .overlay-card-detail {
  position: static;
  padding: 15px;
  width: 100%;
}

.card-overlay-text-section
  .card-overlay-text-row
  .overlay-card
  .overlay-card-detail
  .overlay-card-detail-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 15px;
}

.card-overlay-text-section
  .card-overlay-text-row
  .overlay-card
  .overlay-card-detail
  .overlay-card-detail-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .card-overlay-text-section
    .card-overlay-text-row
    .overlay-card
    .overlay-card-detail
    .overlay-card-detail-title {
    font-size: 18px;
  }

  .card-overlay-text-section
    .card-overlay-text-row
    .overlay-card
    .overlay-card-detail
    .overlay-card-detail-desc {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .card-overlay-text-section .card-overlay-text-row .overlay-card {
    width: calc(50% - 10px);
  }

  .card-overlay-text-section.pt-20.pb-100 {
    padding-bottom: 60px;
  }

  .image-with-text-section.pt-80 {
    padding-top: 60px;
  }

  .section-header.mb-55 {
    margin-bottom: 35px;
  }
}

@media (max-width: 578px) {
  .card-overlay-text-section .card-overlay-text-row .overlay-card {
    width: 100%;
  }
}

/* card-overlay-text-section css end */

/* Step cards section css start */
.step-cards-section .step-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
}

.step-cards-section .step-cards-row .step-card {
  position: relative;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(222, 222, 222, 1);
}

.step-cards-section .step-cards-row .step-card.step-4 {
  order: 6;
}

.step-cards-section .step-cards-row .step-card.step-5 {
  order: 5;
}

.step-cards-section .step-cards-row .step-card.step-6 {
  order: 4;
}

.step-cards-section .step-cards-row .step-card.right-arrow svg,
.step-cards-section .step-cards-row .step-card.left-arrow svg {
  position: absolute;
  top: 40px;
  left: 100%;
  transform: translateX(-50%);
  z-index: 1;
}

.step-cards-section .step-cards-row .step-card.down-arrow svg {
  position: absolute;
  top: 100%;
  right: 0px;
  transform: translateY(60%) rotate(90deg);
  z-index: 1;
}

.step-cards-section .step-cards-row .step-card.left-arrow svg {
  transform: translateX(16%) rotate(180deg);
  right: 100%;
  left: auto;
}

.step-cards-section .step-cards-row .step-card .step-number {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

.step-cards-section .step-cards-row .step-card .step-card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .step-cards-section .step-cards-row {
    grid-gap: 20px;
  }

  .step-cards-section .step-cards-row .step-card .step-arrow {
    width: 80px;
    height: 23px;
  }
}

@media (max-width: 768px) {
  .step-cards-section .step-cards-row {
    grid-template-columns: 1fr 1fr;
  }

  .step-cards-section .step-cards-row .step-card.step-3 {
    order: 4;
  }

  .step-cards-section .step-cards-row .step-card.step-4 {
    order: 3;
  }

  .step-cards-section .step-cards-row .step-card.step-6 {
    order: 6;
  }

  .step-cards-section .step-cards-row .step-card.step-3 .step-arrow {
    top: 40px;
    right: 100%;
    transform: translateX(16%) rotate(180deg);
  }

  .step-cards-section .step-cards-row .step-card.step-4 .step-arrow {
    top: 100%;
    left: 0;
    transform: translateY(-50%) rotate(90deg);
  }

  .step-cards-section .step-cards-row .step-card.step-5 .step-arrow {
    top: 40px;
    left: 100%;
    transform: translateX(-50%);
  }

  .step-cards-section .step-cards-row .step-card.step-2 .step-arrow {
    top: 100%;
    right: 0px;
    left: auto;
    transform: translateY(-50%) rotate(90deg);
  }
}

@media (max-width: 578px) {
  .step-cards-section .step-cards-row .step-card .step-number {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .step-cards-section .step-cards-row .step-card .step-card-desc {
    font-size: 16px;
  }

  .step-cards-section .step-cards-row {
    grid-template-columns: 1fr;
  }

  .step-cards-section .step-cards-row .step-card {
    padding: 16px 30px 16px 16px;
  }

  .step-cards-section .step-cards-row .step-card.step-3 {
    order: 3;
  }

  .step-cards-section .step-cards-row .step-card.step-4 {
    order: 4;
  }

  .step-cards-section .step-cards-row .step-card.step-6 {
    order: 6;
  }

  .step-cards-section .step-cards-row .step-card .step-arrow {
    top: 100% !important;
    right: -12px !important;
    left: auto !important;
    transform: translateY(-25%) rotate(90deg) !important;
    width: 70px;
  }
}

/* Step cards section css end */

/* Discover section css start */
.discover-section .discover-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.discover-section .discover-section-wrapper .discover-section-detail {
  width: calc(40% - 25px);
}

.discover-section .discover-section-wrapper .discover-section-cards-row {
  width: calc(60% - 25px);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.discover-section
  .discover-section-wrapper
  .discover-section-cards-row
  .discover-section-card {
  padding: 20px;
}

.discover-section
  .discover-section-wrapper
  .discover-section-cards-row
  .discover-section-card.col-3 {
  width: calc(33% - 10px);
}

.discover-section
  .discover-section-wrapper
  .discover-section-cards-row
  .discover-section-card.col-2 {
  width: calc(50% - 7.5px);
}

.discover-section
  .discover-section-wrapper
  .discover-section-cards-row
  .discover-section-card
  .discover-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.discover-section
  .discover-section-wrapper
  .discover-section-cards-row
  .discover-section-card
  .discover-card-desc {
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .discover-section .discover-section-wrapper .discover-section-cards-row,
  .discover-section .discover-section-wrapper .discover-section-detail {
    width: 100%;
  }

  .discover-section .discover-section-wrapper .discover-section-detail {
    text-align: center;
  }
}

@media (max-width: 578px) {
  .discover-section
    .discover-section-wrapper
    .discover-section-cards-row
    .discover-section-card {
    width: 100% !important;
  }

  .discover-section .discover-section-wrapper {
    gap: 25px;
  }
}

/* Discover section css end */

/* blog-section css start */
.blog-section .blog-filter-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  gap: 25px;
  margin: 32px 0px 87px;
}

.blog-section .blog-filter-btn-row .blog-filter-btn {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 50px;
  background-color: #f9f9f9;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.blog-section .blog-filter-btn-row .blog-filter-btn.active {
  background-color: var(--primary);
  color: var(--white-color);
  font-weight: 600;
}

.blog-section .blog-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 22px;
}

.blog-section .blog-cards-row .blog-card {
  width: calc(33% - 16px);
  border: 1px solid rgba(217, 217, 217, 0.23);
  position: relative;
  /* display: flex; */
  border-radius: 10px;
  flex-wrap: wrap;
  align-content: space-between;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.blog-section .blog-cards-row .blog-card:hover {
  box-shadow: 0px 0px 10px -4px var(--black-color);
}

.blog-section .blog-cards-row .blog-card .blog-img {
  transition: transform 0.3s ease-in-out;
}

.blog-section .blog-cards-row .blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-card .blog-card-img-wrapper {
  border-radius: 10px 10px 0 0;
}

.blog-section .blog-cards-row .blog-card .blog-card-footer {
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-section .blog-cards-row .blog-card .blog-card-footer .blog-date,
.blog-section .blog-cards-row .blog-card .blog-card-footer .view-blog-btn {
  font-size: 16px;
  font-weight: 400;
  color: rgb(67, 67, 67);
}

.blog-section .blog-cards-row .blog-card .blog-card-footer .view-blog-btn {
  font-weight: 600;
}

.blog-section .blog-cards-row .blog-card .blog-tag {
  position: absolute;
  left: 15px;
  bottom: 100%;
  transform: translateY(50%);
  font-size: 12px;
  font-weight: 400;
  padding: 8px 15px;
  border-radius: 50px;
  z-index: 1;
  background-color: var(--primary);
  color: var(--white-color);
}

.blog-section .blog-cards-row .blog-card .blog-card-title {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 15px 10px;
  color: var(--black);
}

.blog-section .blog-cards-row .blog-card .blog-card-desc {
  font-size: 16px;
  font-weight: 400;
  padding: 0px 15px 15px;
}

/* CTA section in Blog  */
.blog-cta-section {
  background-color: #f8fffa;
  border: 2px dashed #7dde9d;
  padding: 40px 20px;
  margin: 20px auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 250px;
}

.blog-cta-section .image-container {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.blog-cta-section .image-container img {
  height: auto;
  width: 100%;
}

.blog-cta-section .content-container {
  flex: 2;
  text-align: left;
  padding-left: 20px;
  min-width: 250px;
}

.blog-cta-section .content-container h2 {
  color: #555555;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-cta-section .content-container > p {
  color: #434343;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 22px;
  font-weight: 400;
}

.blog-cta-section .bullet-points-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-cta-section .bullet-points-container .col {
  flex: 1;
  min-width: 150px;
}

.blog-cta-section .bullet-points-container .col p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #434343;
}

.blog-cta-section .content-container .cta-button {
  background-color: #4e5af4;
  color: white;
  padding: 6px 25px 7px 25px;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: max-content;
}

.blog-cta-section .content-container .cta-button span {
  margin-top: 4px;
}

@media screen and (max-width: 992px) {
  .blog-cta-section {
    flex-direction: column;
  }
  .blog-cta-section .image-container {
    max-width: 400px;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .blog-section .blog-cards-row .blog-card {
    width: calc(50% - 12px);
  }

  .blog-section .blog-filter-btn-row .blog-filter-btn {
    font-size: 16px;
    padding: 8px 15px;
  }
}

@media (max-width: 578px) {
  .blog-cta-section {
    padding: 20px;
  }

  .blog-section .blog-filter-btn-row {
    justify-content: flex-start;
    gap: 12px;
    margin: 20px 0px 40px;
    padding: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-section .blog-cards-row .blog-card {
    width: 100%;
  }

  .blog-section .blog-cards-row .blog-card .blog-card-title {
    font-size: 20px;
  }

  .blog-section .blog-cards-row .blog-card .blog-card-footer .view-blog-btn {
    font-size: 14px;
  }

  .blog-section .blog-cards-row .blog-card .blog-card-footer .blog-date {
    font-size: 12px;
  }

  .blog-cta-section .bullet-points-container {
    flex-direction: column;
    gap: 0px;
  }
  .blog-cta-section .image-container {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .blog-cta-section .content-container {
    padding-left: 0px;
  }
  .blog-cta-section .content-container .cta-button {
    font-size: 0.95rem;
  }
  .blog-cta-section .content-container .cta-button span img {
    width: 12px;
  }
}

/* blog-section css end */

/* Sticky-scroll-section css start */
.sub-text-wrapper2 {
  width: 1100px;
  max-width: 100%;
  margin: auto;
}

.sticky-scroll-section .sticky-scroll-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sticky-scroll-section .sticky-scroll-row::after {
  position: absolute;
  content: "";
  /* top: 60px;
  left: 9px;
  width: 100%;
  height: calc(100% - 150px);
  border-left: 2px dotted #999999; */
  z-index: -1;
}

.sticky-scroll-block.content.position-relative::before {
  /* height: 0px; */
  position: absolute;
  content: "";
  top: 60px;
  left: 9px;
  /* width: 100%; */
  height: 100%;
  border-left: 2px dotted #999999;
}

#content3::before {
  height: 0%;
}

.sticky-scroll-section .sticky-scroll-block {
  width: 50%;
  min-height: 350px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.sticky-scroll-section .sticky-scroll-block .block-title {
  font-size: 24px;
  font-weight: 600;
  /* height: 40px; */

  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.sticky-scroll-section .sticky-scroll-block .block-desc {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.5;
}

.sticky-scroll-section .sticky-scroll-block .block-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top: calc(100% + 5px);
  background-color: #434343;
  z-index: 9;
}

.sticky-scroll-section .sticky-scroll-block.content {
  padding: 50px;
}

.sticky-scroll-section .sticky-scroll-block.content::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 60px;
  background-color: #434343;
  border-radius: 50%;
}

.sticky-scroll-section .sticky-scroll-block.media {
  width: 40%;
  top: 10px;
}

@media (max-width: 768px) {
  .sticky-scroll-section .sticky-scroll-block .block-title {
    font-size: 18px;
  }

  .sticky-scroll-section .sticky-scroll-row {
    gap: 20px;
  }

  .sticky-scroll-section .sticky-scroll-block .block-desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

@media (max-width: 578px) {
  .sticky-scroll-section .sticky-scroll-block {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 0px;
    min-height: 100%;
  }

  .sticky-scroll-block.content.position-relative::before {
    border-left: unset;
  }

  /* .sticky-scroll-section .sticky-scroll-block.media {
    opacity: 1;
    position: static;
  } */

  .sticky-scroll-section .sticky-scroll-block.content {
    padding: 0px 0 0 0px;
  }

  .sticky-scroll-section .sticky-scroll-block.content::after {
    top: 6px;
    display: none;
  }

  .sticky-scroll-section .sticky-scroll-row::after {
    top: 12px;
  }
}

/* Sticky-scroll-section css end */

/* psychology-model-section css start */
.psychology-model-section .psychology-model-heading-block {
  width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.psychology-model-section
  .psychology-model-heading-block
  .psychology-model-block-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
}

.psychology-model-section .psychology-model-detail-block {
  width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.psychology-model-section
  .psychology-model-detail-block
  .psychology-model-block-number {
  font-size: 52px;
  font-weight: 800;
  color: #4e5af4;
  line-height: 45px;
}

.psychology-model-section
  .psychology-model-detail-block
  .psychology-model-block-desc {
  font-size: 20px;
  font-weight: 400;
  color: #434343;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .psychology-model-section
    .psychology-model-detail-block
    .psychology-model-block-desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .psychology-model-section .psychology-model-heading-block,
  .psychology-model-section .psychology-model-detail-block {
    width: 100%;
    gap: 20px;
  }

  .psychology-model-section .psychology-model-row {
    gap: 20px;
  }

  .psychology-model-block-item {
    display: flex;
    gap: 10px;
  }
}

@media (max-width: 578px) {
  .psychology-model-section .psychology-model-heading-block {
    gap: 12px;
  }

  .psychology-model-section
    .psychology-model-detail-block
    .psychology-model-block-number {
    font-size: 38px;
    line-height: 1;
  }

  .psychology-model-section
    .psychology-model-detail-block
    .psychology-model-block-desc {
    font-size: 16px;
  }
}

/* psychology-model-section css end */

/* power section css start */

.power-modal-heading {
  font-size: 42px;
  line-height: 51.2px;
}

.power-modal-subtext {
  color: #444444;
  border-radius: 10px;
}

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

.power-grid .power-card {
  gap: 15px;
  /* background-color: #8AE39F40; */
  padding: 15px;
  border-radius: 10px;
}

.power-card-heading {
  text-wrap: nowrap;
}

.max-w-70 {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .power-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .power-modal-heading {
    font-size: 32px;
    line-height: 35.2px;
  }

  .py-65.power-modal-wrapper,
  .py-65,
  .py-55 {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .pt-55 {
    padding-top: 40px;
  }
}

@media (max-width: 567px) {
  .power-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .max-w-70 {
    max-width: 100%;
  }

  .power-modal-heading {
    font-size: 20px;
    line-height: 24.2px;
  }
}

/* power section css end */

/* prioritize Perpetuate practice css start */
.prioritize-left-sticky-card {
  position: absolute;
  top: 0px;
  left: 0px;
  /* min-height: 450px; */
  z-index: 22;
  bottom: 0px;
  padding: 15px 7px 15px 15px;
  /* background-color: #f7f7ff; */
  background-color: #dcdefc;
  /* #4E5AF41A */
  box-shadow: 0px 0px 12px -2px #00000020;
}

.prioritize-right-sticky-card {
  position: absolute;
  top: 0px;
  right: 0px;
  max-width: 345px;
  /* min-height: 450px; */
  z-index: 22;
  bottom: 0px;
  padding: 15px 15px 15px 15px;
  /* background-color: #f7f7ff; */
  background-color: #dcdefc;
  box-shadow: 0px 0px 12px -2px #00000020;
}

.section-seprator {
  height: 7px;
}

.prioritize-section,
.prioritize-slider {
  /* min-height: 450px; */
  overflow: hidden;
}

.music-house {
  height: 270px;
  width: 250px;
  margin: auto;
}

.prioritize-slide-card {
  background-image: url(../img/footer-bg.png);
  background-size: 100%;
}

.perpetuate-slide-card {
  background-image: url(../img/Card2.png);
  padding: 0px !important;
  background-size: 100% 100%;
  /* min-width: 290px; */
}

.p-slide-card {
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 290px;
  max-width: 300px;
  min-height: 330px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.prioritize-slider .logo-slider::before {
  display: none;
}

.gap-50-i {
  gap: 50px !important;
}

.card-btm-text {
  bottom: 24px;
  width: 100%;
  color: #7dde9d;
  position: absolute;
  left: 0;
  right: 0px;
}

.image-card-btm-text {
  font-size: 24px;
  margin-bottom: 8px;
}

.image-card-btn-subtext {
  margin: auto;
  max-width: 300px;
}

.white-name-logo {
  padding-top: 18px;
  max-width: 63.4%;
}

@media (max-width: 776px) {
  .music-house {
    height: 336px;
    width: 300px;
  }

  .prioritize-left-sticky-card {
    min-height: 510px;
    max-width: 323px;
  }

  .p-slide-card {
    max-width: 300px;
    min-height: 410px;
    padding-top: 20px;
  }

  .prioritize-right-sticky-card {
    max-width: 323px;
    min-height: 527px;
  }
}

@media (max-width: 567px) {
  .music-house {
    height: 250px;
    width: 221px;
  }

  .prioritize-section > .d-flex.position-relative {
    flex-direction: column;
    align-items: center;
  }

  .logo-slide1 .font-24 {
    font-size: 16px;
  }

  .logo-slide1 .font-20 {
    font-size: 12px;
  }

  .perpetuate-slide-card {
    min-width: 220px;
  }

  .logo-slide1 .mb-35,
  .logo-slide1 .mb-45 {
    margin-bottom: 10px;
  }

  .p-slide-card {
    max-width: 270px;
    min-height: 330px;
  }

  .p-slide-card .font-18 {
    font-size: 14px !important;
  }

  .prioritize-right-sticky-card,
  .prioritize-left-sticky-card {
    min-height: 100%;
    max-width: 100%;
    position: unset;
    box-shadow: unset;
    width: 100%;
  }

  .logo-slider-wrapper.py-50 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .prioritize-section,
  .prioritize-slider {
    min-height: 400px;
  }
}

/* prioritize perpetuate practice css end */

/* dropdown section css start */

.service-backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0px;
  right: 0px;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: all 1s ease;
  /* overflow: hidden; */
}

.updated-dropdown {
  height: calc(100% - 75px);
  top: 75px;
}

.underline-b {
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 5px;
}

.service-backdrop.show {
  top: -200vh;
  transition: all 1s ease;
}

.service-dropdown {
  width: 100%;
  height: 100%;
  background: #fafafa;
  overflow: auto;
  position: absolute;
  top: 0;
  left: 0;
}

body.no-scroll {
  overflow: hidden;
}

.x-mark {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 46px;
  right: 46px;
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}

.service-tab-link span {
  display: block;
  padding: 2px 0px;
  border-radius: 4px;
  position: relative;
  margin: 5px 0;
}
.service-tab-link.active span {
  color: var(--primary);
  /* background-color: var(--black) !important; */
  /*  */
}
/* .service-tab-link.active span:after{
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  border:10px solid transparent;
  border-left:10px solid var(--black);
  right:-20px;
  top:50%;
  transform: translateY(-50%);
} */

.list-seprator {
  border-bottom: 1px solid var(--black-color);
}

.service-tab-link:hover span {
  color: var(--primary) !important;
}
/* .service-tab-link.active:hover span {
  color: #fff !important;
} */

.service-dropdown-card-33,
.service-dropdown-right-sdie {
  /* width: 32%; */
  flex: 1;
}

.service-dropdown-left-sdie {
  width: 231px;
}

.service-dropdown-right-sdie {
  display: none;
  /* Hide all tab content by default */
}

.service-dropdown-right-sdie.active {
  display: block;
  /* Show active tab content */
}
.service-dropdown-right-sdie .service-block-link > h2 {
  position: relative;
  display: inline-block;
}
.service-dropdown-right-sdie .service-block-link > h2:after {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid #434343;
  position: absolute;
  top: 9px;
  right: -28px;
  border-top: 0;
  border-left: 0;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}
.service-dropdown-right-sdie .service-block-link:hover > h2:after {
  border-color: #4e5ae0;
  right: -35px;
}
@media (max-width: 992px) {
  .service-dropdown-left-sdie {
    width: 100%;
  }

  .flex-lg-wrap {
    flex-wrap: wrap;
  }

  .service-tab {
    padding-top: 20px;
  }

  .list-seprator {
    margin-top: 0px;
    margin-bottom: 0px;
    height: 20px;
    width: 2px;
    background-color: var(--black-color);
  }

  .service-tab ul {
    flex-direction: row;
    display: flex;
    width: 100%;
    justify-content: space-around;
  }

  .service-dropdown-right-sdie {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .service-dropdown .pt-65.pl-65 {
    padding-left: 0px;
  }

  .d-md-none {
    display: none;
  }

  .x-mark {
    width: 30px;
    height: 30px;
    margin-right: 0px;
    position: unset;
  }

  .mb-25,
  .my-25 {
    margin-bottom: 1rem;
  }
}

/* dropdwon section css end */

/* accordian box css start */
.accordion {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  /* border: 1px solid #ddd; */
  padding: 0px 20px;
  border-radius: 4px;
}

.accordion-item {
  /* border-top: 1px solid #ddd; */
}

.accordion-header {
  /* background-color: var(--secondary); */
  /* padding: 15px; */
  cursor: pointer;
  /* font-weight: bold; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* font-size: 20px; */
  /* border-radius: 0px 0px 6px 6px; */
  /* border-top: 1px solid var(--black-color); */
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 10px;
}

.accordion-content {
  display: none;
  padding: 4px 0px;
  background-color: #fff;
  /* border-bottom: 1px solid #ddd; */
}

.accordion-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.accordion-content p {
  margin: 0 0 10px;
}

.accordion-header.active {
  border-bottom: 1px solid var(--black-color);
  padding: 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: #f9f9f9;
}

.simple-link {
  display: inline-flex;
  align-items: center;
  color: var(--black-color);
  text-decoration: none;
  font-size: 14px;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
  margin: 5px 0;
}

.simple-link:hover {
  text-decoration: underline;
}

.simple-link svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content p {
  margin: 0;
}

/* accodian box css end */

.slick-slide {
  margin: 0 25px;

  @media (max-width: 768px) {
    margin: 0 12px;
  }
}

.Perpetuate .slick-slide {
  margin: 0 50px;
}

.vertical-top {
  vertical-align: top;
}

.d-md-block {
  display: none;
}

/* modal step card hover css start */
.step-card {
  /* cursor: pointer; */
}

.step-arrow circle,
.step-arrow path {
  fill: #4e5af4;
  transition: fill 1s ease;
}

/* Animation keyframes for color change */
@keyframes changeColor {
  0% {
    fill: #7dde9d;
  }

  50% {
    fill: #7dde9d;
  }

  100% {
    fill: #4e5af4;
  }
}

/* Hover effect for the currently hovered step */
.step-card:hover svg circle,
.step-card:hover svg path {
  animation: changeColor 3s forwards !important;
  /* 3s duration */
}

/* Sequential color change starting from the hovered step */
.step-card.step-1:hover ~ .step-card.step-2 svg circle,
.step-card.step-1:hover ~ .step-card.step-2 svg path {
  animation: changeColor 3s 0.5s forwards;
  /* 0.5s delay */
}

.step-card.step-1:hover ~ .step-card.step-3 svg circle,
.step-card.step-1:hover ~ .step-card.step-3 svg path {
  animation: changeColor 3s 1s forwards;
  /* 1s delay */
}

.step-card.step-1:hover ~ .step-card.step-4 svg circle,
.step-card.step-1:hover ~ .step-card.step-4 svg path {
  animation: changeColor 3s 1.5s forwards;
  /* 1.5s delay */
}

.step-card.step-1:hover ~ .step-card.step-5 svg circle,
.step-card.step-1:hover ~ .step-card.step-5 svg path {
  animation: changeColor 3s 2s forwards;
  /* 2s delay */
}

/* Sequential color change starting from step-2 */
.step-card.step-2:hover svg circle,
.step-card.step-2:hover svg path {
  animation: changeColor 3s forwards;
  /* 3s duration */
}

.step-card.step-2:hover ~ .step-card.step-3 svg circle,
.step-card.step-2:hover ~ .step-card.step-3 svg path {
  animation: changeColor 3s 0.5s forwards;
  /* 0.5s delay */
}

.step-card.step-2:hover ~ .step-card.step-4 svg circle,
.step-card.step-2:hover ~ .step-card.step-4 svg path {
  animation: changeColor 3s 1s forwards;
  /* 1s delay */
}

.step-card.step-2:hover ~ .step-card.step-5 svg circle,
.step-card.step-2:hover ~ .step-card.step-5 svg path {
  animation: changeColor 3s 1.5s forwards;
  /* 1.5s delay */
}

/* Sequential color change starting from step-3 */
.step-card.step-3:hover svg circle,
.step-card.step-3:hover svg path {
  animation: changeColor 3s forwards;
  /* 3s duration */
}

.step-card.step-3:hover ~ .step-card.step-4 svg circle,
.step-card.step-3:hover ~ .step-card.step-4 svg path {
  animation: changeColor 3s 0.5s forwards;
  /* 0.5s delay */
}

.step-card.step-3:hover ~ .step-card.step-5 svg circle,
.step-card.step-3:hover ~ .step-card.step-5 svg path {
  animation: changeColor 3s 1s forwards;
  /* 1s delay */
}

/* Sequential color change starting from step-4 */
.step-card.step-4:hover svg circle,
.step-card.step-4:hover svg path {
  animation: changeColor 3s forwards;
  /* 3s duration */
}

.step-card.step-4:hover ~ .step-card.step-5 svg circle,
.step-card.step-4:hover ~ .step-card.step-5 svg path {
  animation: changeColor 3s 0.5s forwards;
  /* 0.5s delay */
}

/* Reset SVG color when not hovering */
.step-cards-row:hover .step-card svg circle,
.step-cards-row:hover .step-card svg path {
  fill: #4e5af4;
  /* Reset color */
  animation: none;
}

/* modal step card hover css end */

/* Home: responsive video section */
.video-section {
  background-color: var(--white-color);
  width: 75%;
  margin: auto;
}

.video-section .video-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-section .video-wrapper::before {
  content: none;
}

.video-section .video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 768px) {
  .video-section {
    width: 100%;
}
}

/* Full-bleed variant: no horizontal padding, edge-to-edge */
.video-section.full-bleed {
  padding-left: 0;
  padding-right: 0;
}
.video-section.full-bleed .video-wrapper {
  max-width: none;
  border-radius: 0;
}



/* Centered play/pause overlay for home video section */
.video-section .video-wrapper .videoIcons {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

@media (max-width: 768px) {
  .video-section .video-wrapper .videoIcons {
    top: 54%;
  }
  .video-section .video-wrapper .videoIcons img {
    width: 50px;
    height: 50px;
  }
}

.video-section .video-wrapper .videoIcons img {
  width: 64px;
  height: 64px;
}

.video-section .video-wrapper.playing .videoIcons {
  display: none;
}

/* Container for the video */
.video-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: black;
  overflow: hidden;

  @media (min-width: 1200px) {
    max-height: calc(100vh - 110px);
    overflow: hidden;
  }
  @media (min-width: 1500px) {
    max-height: auto;
    width: 100%;
  }
}

/* Ensure the iframe takes full width and height */
.video-iframe {
  width: 100vw;
  height: auto;
  border: none;
  background-color: black;
  transform-origin: center;
    transform: scale(1.02);
  /* Ensure no white space */

}

@media (max-width: 768px) {
  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .mb-md-10 {
    margin-bottom: 10px !important;
  }
}

.hero-section-swip .slick-track {
  display: flex !important;
}

.hero-section-swip .slick-slide {
  height: inherit !important;
}

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

/* new menu design chnage start */
/* .service-drop-nav-parent:hover .service-drop-nav {
  display: block;
} */
.service-drop-nav-parent:hover #serviceDropDown,
#serviceDropDown:hover {
  display: block;
}

.service-drop-nav {
  position: absolute;
  display: none;
  overflow: hidden;
  width: 100%;
  top: 75px;
  padding: 20px 0px;
  left: 0px;
  z-index: 998;
  box-shadow: 1px 1px 8px #f1f1f1;
  background-color: var(--white-color);
}

.navbar__submenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.right-nav-box {
  position: relative;
  padding-top: 25px;
  padding-left: 25px;
}

.right-nav-box::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 1920px;
  height: 120%;
  content: "";
  background: var(--secondary);
}

.navbar__submenu__item {
  max-width: 330px;
  padding: 10px;
  border-radius: 4px;
}

.navbar__submenu__item:hover {
  background-color: var(--secondary);
}

.navbar__submenu__link .title {
  font-size: 16px;
  line-height: 24px;
  color: var(--black-color);
  font-weight: 600;
}

.navbar__submenu__link .title:after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  content: "";
  background: url(../img/right-cravan.svg) no-repeat 50%;
}

.navbar__submenu__link .description {
  font-size: 14px;
  margin-top: 10px;
  color: var(--black-color);
}

/* ew menu design changes end */

/* blog detail css start */

.blog-detail-main {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 20px;

  @media (max-width: 768px) {
    flex-direction: column;
  }

  @media (max-width: 567px) {
  }
}

.blog-container {
  flex: 1;
  max-width: 75%;
}

@media (max-width: 768px) {
  .blog-container {
    flex: 1;
    max-width: 100%;
  }
}

.blog-image-wrapper {
  /* border-radius: 8px; */
  position: relative;
}

.blog-lebal {
  position: absolute;
  top: -14px;
  left: 22px;
  font-size: 12px;
  font-weight: 400;
  padding: 8px 15px;
  border-radius: 50px;
  width: max-content;
  background-color: var(--primary);
}

.blog-social-icon {
  display: flex;
  gap: 15px;
  justify-items: flex-end;
  align-items: center;
}

.blog-social-icon li {
  cursor: pointer;
}

.blog-social-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.blog-image-wrapper img {
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.recent-blog-container {
  width: 350px;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.blog-social-container ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.blog-social-container ul:first-child li:nth-child(2) {
  padding-left: 10px;
  padding-right: 10px;
  border-left: 1px dashed var(--black-color);
  border-right: 1px dashed var(--black-color);
}

.blog-social-container ul span {
  vertical-align: top;
  text-wrap: nowrap;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.blog-social-container ul svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.blog-content-container {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6em;
}

.blog-content-container strong {
  clear: both;
  font-weight: 500;
  color: var(--black);
}

.recent-blog-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  top: 85px;
  position: sticky;
}

.recent-blog-card {
  gap: 15px;
}

.recent-blog-image {
  width: 100px;

  img {
    border-radius: 6px;
    object-fit: cover;
  }
}

.load-more-btn {
  background-color: var(--primary);
  color: var(--white-color);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  width: 100%;
  border-radius: 8px;
  border: none;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .blog-social-container {
    flex-direction: column;
    gap: 15px;
  }
  .videoIcons {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
  }
  .videoIcons img {
    width: 40px;
    height: auto;
  }
}

.blog-content-container strong {
  display: block;
  margin-top: 14px;
  margin-bottom: 5px;
}

/* blog detail css end */

/* 3p-container css start */
.psychology-model-container {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  @media (max-width: 567px) {
    align-items: center;
    flex-direction: column;
  }
}

.psychology-model-container .perpetuate-model,
.psychology-model-container .practice-model,
.psychology-model-container .prioritize-model {
  display: flex;
  flex-direction: column;
}

.psychology-model-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  background-color: #e6e8fc;
  padding: 15px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;

  img {
    object-fit: contain;
    height: 180px;
    width: auto;
  }

  @media (max-width: 567px) {
    max-width: 100%;
  }
}

.psychology-model-footer {
  max-width: 100vw;
  width: 300px !important;
  padding: 15px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;

  @media (max-width: 768px) {
    max-width: 300px;
    width: 100% !important;
  }
}

.psychology-model-card {
  background-position: center;
  background-repeat: no-repeat;
  width: 260px;
  min-height: 340px;
  padding: 15px;
  margin: 5px;
  border: 1px solid #eee;
  border-radius: 8px;
  /* box-shadow: 0 0 5px #eee; */
}

.psychology-model-footer .slick-dots li {
  width: 8px;
  height: 8px;
}
.psychology-model-footer .slick-dots li button {
  width: 8px;
  height: 8px;
  background-color: #f9f9f9;
}

.psychology-model-footer .slick-dots .slick-active button {
  width: 8px;
  height: 8px;
  background-color: #4e5af4;
}

.psychology-model-footer .slick-dots .slick-active button {
  width: 8px;
  height: 8px;
  background-color: #4e5af4;
}

.psychology-model-footer .slick-dots {
  justify-content: center;
  left: 0;
}

.psychology-model-wrapper {
  background-color: #4e5af40d;
  padding-top: 40px;
  padding-bottom: 20px;
}

.psychology-model-footer .slick-dots {
  bottom: 5px;
}

.menu.dropdown-menu.show:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-bottom-color: #fafafa;
  left: calc(50% - 15px);
  bottom: -16px;
}

@media (max-width: 560px) {
  .psychology-model-container .perpetuate-model,
  .psychology-model-container .practice-model,
  .psychology-model-container .prioritize-model {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
  }

  .psychology-model-footer {
    align-self: center;
  }
}

/* 3p-container css end */

.blog-card {
  display: none;
  transition: opacity 0.3s ease;
}

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

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

.blog-card.show {
  display: flex;
  opacity: 1;
}
.psychology-model-section.section-padding-lg {
  padding: 40px 0;
}
ul:not(.listing) {
  list-style-type: none !important;
  padding-left: 0px;
}
ul.listing {
  list-style-type: disc !important;
  padding-left: 25px;
}
ol.listing {
  padding-left: 25px;
}
.listing li {
  padding: 5px 0 5px 0px;
  line-height: 1.4;
}
.hover-text:hover {
  color: #4e5af4;
}
.service-dropdown-card-33:hover {
  background-color: rgba(78, 90, 244, 0.15);
}
.contact-form-block .contact-form-wrapper .input-wrapper.contat-input-wrapper {
  display: grid;
  grid-template-columns: 100px auto;
  grid-gap: 20px;
}
.contact-form-block
  .contact-form-wrapper
  .input-wrapper.contat-input-wrapper
  input.form-input {
  -webkit-appearance: none;
}
@media (max-width: 768px) {
  .psychology-model-section.section-padding-lg {
    padding: 25px 0;
  }
}
.underline {
  text-decoration: underline;
}
.bg--green-d {
  background-color: #24be94;
}
.bg--green-l {
  background-color: #7ebf84;
}
.bg--blue-d {
  background-color: #38409b;
}
.bg--blue-l {
  background-color: #4e5ae0;
}
@media (max-width: 768px) {
  .sticky-scroll-section .sticky-scroll-block.media {
    width: 90%;
  }
  .pb-70 {
    padding-bottom: 32px !important;
  }
  .pt-70 {
    padding-top: 32px !important;
  }
}

.service-block-link {
  display: block;
  background-color: #fff;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.service-block-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #4e5ae015;
  top: 0;
  left: -100%;
  transition: all 0.3s ease;
}
.service-block-link:hover::before {
  left: 0;
}
/* .service-block-link:hover{
  background-color: #4e5ae010;
} */
.service-block-link h2,
.service-block-link p {
  position: relative;
}
.service-block-link:hover h2 {
  color: #4e5ae0;
}
.service-close-btn img {
  opacity: 0;
}
.service-close-btn {
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-image: url(../img/cross.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 0;
  transition: all 0.15s ease;
}
.service-close-btn:hover {
  background-position: center -41px;
}

@media (max-width: 768px) {
  .sticky-scroll-section .sticky-scroll-block {
    width: 100%;
  }
  .mobile-hide {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .desktop-hide {
    display: none !important;
  }
}
.tc-wrapper {
  display: grid;
  grid-template-columns: 20px auto;
  grid-gap: 10px;
  align-items: flex-start;
}
.blog-content-container p {
  margin-bottom: 20px;
}

/* FAQ Section Styles */
.faq-section {
  background-color: #fff;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin: 0;
  padding-right: 2rem;
}

.faq-icon {
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #4E5AF4;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: #4B5563;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question h3 {
      font-size: 16px;
  }
  .faq-answer li {
      font-size: 14px;
  }
  .faq-answer ul {
      font-size: 14px;
  }

  
  .faq-answer p {
      font-size: 14px;
  }
}

.learn-more-link {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: var(--primary); 
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Spacing between text and arrow */
  transition: color 0.3s ease-in-out;
  margin-top: auto;
  padding-top: 20px;
}

.learn-more-link:hover {
  text-decoration: underline;
  color: #007bff; /* Adjust hover color if needed */
}

.learn-more-link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.learn-more-link:hover::after {
  transform: translateX(5px);
}

.dropdown-menu {
  position: relative;
}

.resources-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 12px 0;
}

.resources-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

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

.resources-dropdown ul li {
  padding: 0;
  margin: 0;
}

.resources-dropdown ul li a {
  display: block;
  padding: 14px 24px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-left: 3px solid transparent;
}

.resources-dropdown ul li a:hover {
  background: #f5f5f5;
  color: #4e5af4;
  border-left: 3px solid #4e5af4;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
.resources-dropdown {
position: absolute;
top: 100%;
left:0;
right: auto;
transform: translate(0);
width: 100%;
min-width: auto;
max-height: none;
overflow-y: visible;
border-radius: 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 10px 0;
background: #fff;
z-index: 1000;
}
.resources-dropdown.show {

transform: translateX(0%) translateY(0);
}

.resources-dropdown.show {
opacity: 1;
visibility: visible;
}

.resources-dropdown ul li a {
padding: 12px 20px;
font-size: 15px;
border-bottom: 1px solid #eee;
}

.resources-dropdown ul li a:hover {
background: #f0f0f0;
border-left: none;
}

.resources-dropdown ul li:last-child a {
border-bottom: none;
}

/* Remove overlay for mobile */
.resources-dropdown-overlay {
display: none !important;
}
}





.about-team .team-cards-row .team-card:hover {
  box-shadow: 0 4px 24px 0 rgba(78, 90, 244, 0.15), 0 1.5px 8px 0 rgba(78, 90, 244, 0.10);
  transform: translateY(-4px) scale(1.03);
  background: var(--secondary);
}

@media (max-width: 991px) {
  .about-team .team-cards-row .team-card:hover {
    transform: scale(1.01);
  }
}

@media (max-width: 578px) {
  .about-team .team-cards-row .team-card:hover {
    transform: scale(1.01);
  }
}

.team-member-img-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 125%; /* Creates a 4:5 aspect ratio */
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.team-member-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-card {
    margin-bottom: 30px;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    padding-inline-start: 10px;

}

.member-post {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    padding-inline-start: 10px;
}

/* Modal image fixes */
.team-modal-img {
    width: 280px;
    /* height: 350px; */
    overflow: hidden;
}

.team-modal-img img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
}
