@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  /* --primary_font_family: "Open Sans", sans-serif;
  --secondary_font_family: "Inter", sans-serif; */
  --primary_font_family: "Proxima Nova", sans-serif;
  --secondary_font_family: "Inter", sans-serif;
  --font_proxima: "Proxima Nova", sans-serif;
  --primary: #00a5d7;
  --secondary: #030303;
  --text_dark: #030303;
  --text_light: rgba(0, 0, 0, 0.72);
  --bg_blue_light: #e6f6fb;
  --white: #ffffff;
  --black: #000000;
  --bgGray: #f1f5f9;
  --red: #ca2154;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--primary_font_family);
  color: var(--text_dark);
  overflow-x: hidden;
}

.font_inter {
  font-family: var(--font_inter);
}

.font_proxima {
  font-family: var(--font_proxima);
}

.text_light {
  color: var(--text_light);
}

.text_dark {
  color: var(--text_dark);
}

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

.text_primary {
  color: var(--primary);
}

.text_secondary {
  color: var(--secondary);
}

.bg_primary {
  background: var(--primary);
}

.bg_secondary {
  background: var(--secondary);
}

.bg_gray {
  background: var(--bgGray);
}

.bg_light {
  background: var(--bg_blue_light);
}

p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text_light);
  font-weight: 400;
}

.text_14 {
  font-size: 14px !important;
  line-height: 22px !important;
}

.text_16 {
  font-size: 16px !important;
  line-height: 28px !important;
}

.text_18 {
  font-size: 18px !important;
  line-height: 30px !important;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: 0.5s ease;
}

a:hover {
  color: var(--secondary);
}

h1,
.h1 {
  font-size: 72px;
  line-height: 1;
  font-weight: 600;
  font-family: var(--secondary_font_family);
}

h2,
.h2 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  font-family: var(--secondary_font_family);
}

h3,
.h3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  font-family: var(--secondary_font_family);
}

h4,
.h4 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

h6,
.h6 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

.fw_100 {
  font-weight: 100;
}

.fw_200 {
  font-weight: 200;
}

.fw_300 {
  font-weight: 300;
}

.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_600 {
  font-weight: 600;
}

.fw_700 {
  font-weight: 700;
}

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

img {
  max-width: 100%;
}

.container {
  max-width: 1230px;
}

.btn_primary {
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_proxima);
  border: 0;
  padding: 17px 24px;
  border-radius: 6px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.btn_primary img {
  margin-right: 6px;
}

.btn_primary:hover {
  color: var(--white);
  background: var(--secondary);
}

.btn_primary:hover:before {
  height: 100%;
  width: 200%;
}

.btn_border {
  background: transparent;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_proxima);
  border: 2px solid var(--primary);
  padding: 17px 24px;
  border-radius: 6px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.btn_border img {
  margin-right: 6px;
}

.btn_border:hover {
  color: var(--white);
  background: var(--primary);
}

.btn_border:hover:before {
  height: 100%;
  width: 200%;
}

.btn_white {
  background: var(--white);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  padding: 17px 24px;
  justify-content: center;
  border-radius: 6px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.btn_white:before {
  background-color: var(--secondary);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  -webkit-transform: skew(50deg);
  -moz-transform: skew(50deg);
  -o-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  transform-origin: top left;
  -ms-transition: 0.4s;
}

.btn_white img {
  margin-right: 6px;
}

.btn_white:hover {
  color: var(--white);
}

.btn_white:hover:before {
  height: 100%;
  width: 200%;
}

.btn_link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  position: relative;
}

.btn_link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.5s ease;
}

.btn_link img {
  margin-left: 8px;
  transition: 0.3s ease;
}

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

.btn_link:hover img {
  margin-left: 15px;
}

.btn_link:hover:before {
  width: 100%;
}

header .btn_primary {
  padding: 12px 24px;
  font-size: 16px;
  line-height: 20px;
}

header .btn_border {
  padding: 12px 24px;
  font-size: 16px;
  line-height: 20px;
}

header {
  padding: 30px 0;
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  transition: padding 0.3s ease;
}

header.fixed {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header .navbar {
  padding: 0;
}

header .navbar .navbar-brand {
  height: auto;
}

header .navbar .navbar-collapse {
  margin-left: 40px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text_dark);
  padding: 16px 24px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover,
header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .nav-link:hover::before,
  /* header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active, */
header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .nav-link.active:before {
  color: #00a5d7;
}

header .navbar .navbar-collapse .navbar-nav .nav-item.has_children {
  position: relative;
}

header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .nav-link {
  /*padding-right: 40px;*/
  padding-right: 25px;
  position: relative;
}

header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .nav-link:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 53%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 7px;
  background: url(../images/down-arrow.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  transition: 0.5s ease;
}

header .navbar .navbar-collapse .navbar-nav .nav-item.has_children:hover .nav-link:before {
  transform: translateY(-50%) rotate(-180deg);
}

header .navbar .navbar-collapse .navbar-nav .nav-item.has_children:hover .dropdown_wrapper {
  display: block;
}

header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .dropdown_wrapper {
  position: absolute;
  background: #fff;
  left: 0;
  top: 100%;
  min-width: 200px;
  z-index: 99;
  display: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 5px;
  transition: display 0.5s ease;
}

header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .dropdown_wrapper ul li a {
  padding: 5px 0;
  display: block;
  color: var(--text_dark);
  font-weight: 600;
}

footer {
  background: var(--secondary);
}

footer .footer_newsletter {
  max-width: 400px;
}

footer .footer_newsletter h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

footer .footer_newsletter form {
  margin: 0 0 24px;
}

footer .footer_newsletter form .form-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

footer .footer_newsletter form .form-group .form-control {
  background: #fff;
  border-radius: 8px;
  border: 0;
  padding: 8px 20px;
  width: calc(100% - 108px);
  margin-right: 8px;
}

footer .footer_newsletter form .form-group .btn_primary {
  border-radius: 8px;
  width: 100px;
  font-size: 14px;
  padding: 10px 20px;
}

footer .footer_newsletter p {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

footer .footer_link h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 15px;
}

footer .footer_link ul li a {
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
  margin: 0 0 12px;
  color: #fff;
  font-weight: 600;
}

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

footer .footer_link ul.social_icon li a {
  display: inline-flex;
  align-items: center;
    gap: 5px;
}

footer .footer_link ul.social_icon li a img {
  /*margin-right: 5px;*/
  filter: brightness(0) invert(1);
  transition: 0.5s ease;
    width: 17px;
}

footer .footer_link ul.social_icon li a:hover img {
  filter: inherit;
}

footer .copyright_wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

footer .copyright_wrap p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

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

footer .copyright_wrap ul li {
  padding: 0 16px;
}

footer .copyright_wrap ul li:last-child {
  padding-right: 0;
}

footer .copyright_wrap ul li a {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.banner_wrapper {
  background: url(../images/banner-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 110px;
  overflow: hidden;
  background-position: center;
  /* animation: scrollBackground 10s linear infinite;  */
}

/* Keyframes for background animation */
@keyframes scrollBackground {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 20px 100px;
  }

  100% {
    background-position: 0 0;
  }
}

.banner_wrapper .banner_text {
  max-width: 590px;
  margin-left: auto;
  transform: translateX(-150px);
  animation: slideInLeft 2s ease-out forwards;
}

.banner_wrapper .banner_text.banner_size {
  max-width: 810px !important;
}

.banner_wrapper .banner_text h1 {
  margin: 0 0 30px;
}

.banner_wrapper .banner_text h1 span {
  color: var(--primary);
}

.banner_wrapper .banner_text p {
  font-size: 24px;
  line-height: 32px;
  color: var(--text_dark);
  margin: 0 0 60px;
}

.banner_wrapper .banner_img {
  text-align: right;
  margin-right: -80px;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1.5s ease-out forwards;
}

/* .banner_wrapper .banner_img img {
  width: 100%;
} */

.banner_wrapper .banner_img img:hover {
  animation: float 3s ease-in-out infinite;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.service_box {
  text-align: center;
  padding: 25px 48px;
  background: var(--bg_blue_light);
  border-radius: 12px;
}

.service_box .icon {
  margin: 0 0 35px;
}

.service_box h4 {
  font-size: 20px;
  line-height: 28px;
  margin: 0 auto 12px;
  max-width: 230px;
}

.swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  right: calc(100% / 2 - 605px);
  left: inherit;
}

.swiper .swiper-button-next:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/arrow-right.svg);
  width: 24px;
  height: 24px;
  background-size: 24px;
}

.swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  left: calc(100% / 2 - 605px);
  right: inherit;
}

.swiper .swiper-button-prev:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/arrow-left.svg);
  width: 24px;
  height: 24px;
  background-size: 24px;
}

.logo_slidder .swiper-wrapper {
  transition-timing-function: linear !important;
}

.logo_slidder {
  padding: 0 50px;
}

.logo_slidder .swiper-slide {
  width: auto;
  text-align: center;
}

.logo_slidder .swiper-slide .logo_in img {
  max-width: 105px;
  height: 80px;
  object-fit: contain;
}

.review_wrapper {
  background: var(--bgGray);
}

.review_wrapper .title {
  max-width: 1024px;
  margin: 0 auto;
}

.title h2 span {
  color: var(--primary);
}

.title p {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  margin: 0;
}

.review_box {
  padding: 30px;
  background: #fff;
  border-radius: 24px;
}

.review_box h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 0 30px;
}

.review_box .user_wrap {
  display: flex;
  align-items: center;
}

.review_box .user_wrap .user_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review_box .user_wrap .user_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review_box .user_wrap .user_text {
  width: calc(100% - 55px);
}

.review_box .user_wrap .user_text p {
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.review_box .user_wrap .user_text h6 {
  font-size: 14px;
  line-height: 16px;
  color: var(--text_light);
  margin: 0;
  font-weight: 700;
}

.visual_wrapper .visual_img_wrap img {
  border-radius: 40px;
  width: 100%;
}

.visual_wrapper .visual_text_wrap {
  padding-left: 100px;
}

.visual_wrapper .visual_text_wrap h2 {
  font-size: 36px;
  line-height: 44px;
}

.feature_box a {
  /* padding: 16px 24px; */
  padding: 16px 20px;
  display: flex;
  align-items: center;
  background: var(--bg_blue_light);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text_dark);
  position: relative;
  transition: 0.5s ease;
  outline: 0 solid var(--bg_blue_light);
  outline-offset: 0;
  height: 100%;
}

.feature_box a:hover {
  outline: 4px solid #66c9e7;
  outline-offset: 2px;
}

.feature_box a:before {
  content: "";
  position: absolute;
  /* right: 25px; */
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../images/right-arrow2.svg);
  background-repeat: no-repeat;
}

/* .feature_box a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 5px;
} */
.feature_box a img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  margin-right: 5px;
}

.why_we_are {
  overflow: hidden;
}

.why_we_are,
.pin-spacer {
  background: var(--bgGray);
}

.accordian_wrapper .accordion .accordion-item {
  background-color: transparent;
  border: 0;
  border-radius: 0 !important;
  padding-left: 24px;
  margin: 0 0 25px;
  position: relative;
}

.accordian_wrapper .accordion .accordion-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
}

.accordian_wrapper .accordion .accordion-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: 0.5s ease;
}

.accordian_wrapper .accordion .accordion-item:has(.accordion-collapse.show):after {
  height: 70%;
}

.accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  box-shadow: none;
  color: var(--text_dark);
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  padding: 0;
}

.accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}

.accordian_wrapper .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 12px 0 0;
}

.accordian_wrapper .accordion .accordion-item .accordion-collapse .accordion-body p {
  margin: 0;
}

.success_wrapper {
  background: var(--secondary);
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.success_box {
  text-align: center;
  position: relative;
}

.success_box:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.24);
}

.success_box.last:before {
  display: none;
}

.success_box img {
  margin: 0 0 25px;
}

.success_box h2 {
  color: var(--red);
  margin: 0 0 24px;
}

.success_box p {
  color: #fff;
  margin: 0;
}

.tab_design_one {
  text-align: center;
}

.tab_design_one .nav {
  border: 0;
  justify-content: center;
  width: auto;
  display: inline-flex;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 40px 0 rgba(31, 40, 87, 0.08);
  border-radius: 50px;
  margin: 0 0 80px;
}

.tab_design_one .nav li button {
  border: 0;
  padding: 15px 24px;
  border-radius: 40px;
  line-height: 1;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: var(--text_dark);
}

.tab_design_one .nav li button.active {
  background: var(--primary);
  color: #fff;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.chips li a {
  background: var(--bg_blue_light);
  padding: 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text_dark);
  padding-right: 50px;
  position: relative;
}

.chips li a:hover {
  background: var(--primary);
  color: #fff;
}

.chips li a:hover:before {
  filter: brightness(0) invert(1);
}

.chips li a:before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../images/right-arrow2.svg);
  background-size: 16px;
}

.chips li a img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  background: #e6f6fb;
  box-shadow: 0 0 56px 0 rgba(31, 40, 87, 0.24);
  padding: 14px;
}

.testimoanial_box {
  position: relative;
  z-index: 9;
}

.testimoanial_box .testimonial_img_wrapper {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.testimoanial_box .testimonial_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimoanial_box .testimonial_text_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99;
  padding: 24px;
  background: #ffffff03;
  backdrop-filter: blur(5px);
}

.testimoanial_box .testimonial_text_wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(16px);
  z-index: -1;
}

.testimoanial_box .testimonial_text_wrap h4 {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
}

.testimoanial_box .testimonial_text_wrap .testi_user_wrap {
  display: flex;
  align-items: center;
}

.testimoanial_box .testimonial_text_wrap .testi_user_wrap .testi_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
}

.testimoanial_box .testimonial_text_wrap .testi_user_wrap .testi_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimoanial_box .testimonial_text_wrap .testi_user_wrap .testi_text {
  width: calc(100% - 52px);
}

.testimoanial_box .testimonial_text_wrap .testi_user_wrap .testi_text h6 {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.testimoanial_box .testimonial_text_wrap .testi_user_wrap .testi_text p {
  color: #fff;
  margin: 0;
  font-size: 12px;
}

.resources_box .resource_img a {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  margin: 0 0 20px;
}

.resources_box .resource_img a img {
  width: 100%;
  aspect-ratio: 15/16;
  object-fit: cover;
  transition: 0.5s ease;
}

.resources_box .resource_img a:hover img {
  transform: scale(1.1);
}

.resources_box .resource_content h3 {
  display: flex;
  align-items: center;
  font-size: 32px;
}

.resources_box .resource_content h3 span {
  width: calc(100% - 24px);
}

.resources_box .resource_content h3 a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources_box .resource_content p,
.ppms_detail_box>* {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}

/* inner page css  */
section.banner_wrapper.inner_banner {
  .banner_text h1 {
    font-size: 43px;
    line-height: 55px;
  }

  .banner_text {
    /* max-width: 865px; */
    margin: 0 auto;
  }

  .btn-group {
    display: flex;
    gap: 15px;
  }
}

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

.benifit-block h6,.benifit-block span,
.inner-small-heading {
  font-size: 16px;
  color: #00a5d7;
  line-height: 24px;
  font-weight: 700;
}

main.inner-solution-page .logo_slider_wrap::after,
main.inner_home .logo_slider_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1024px;
  width: 100%;
  height: 2px;
  background: #00000014;
  bottom: -30px;
  margin: 0 auto;
}

.transform-title-head {
  max-width: 1020px;
  margin: 0 auto;
}

.transform-title-head h2 {
  max-width: 680px;
  margin: 0 auto;
}

.transform-title-head hf {
  color: #000000b8;
}

.casestudy_text_wrap h2 {
  /* font-size: 32px; */
  font-family: "Inter";
  /* line-height: 44px; */
  font-weight: 600;
}

.casestudy_text_wrap h2 span {
  color: var(--primary);
}

.why-stratocore-block h6 {
  font-size: 18px;
  /*font-size: 16px;*/
  line-height: 22px;
  font-weight: 700;
}

.client-review-wrap {
  background: #e6f6fb;
  padding: 40px;
  border-radius: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.inner_success_wrapper p {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-top: 20px;
}

.link-wrap .search-bar {
  display: flex;
  padding: 0px;
  gap: 10px;
  margin-bottom: 20px;
}

.link-wrap .search-bar .serach-icon {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}

.link-wrap .search-bar .serach-icon img {
  position: absolute;
  left: 20px;
}

.link-wrap .search-bar input[type="text"] {
  width: 100%;
  padding: 10px 10px 10px 50px;
  border-radius: 12px;
  background-color: #f6f6f6;
  border: 0px;
}

.link-wrap .search-bar select {
  padding: 10px 50px 10px 10px;
  border: 0px;
  width: 90%;
  background-color: #f6f6f6;
  border-radius: 12px;
}

.link-wrap .link-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.link-wrap .link-item .title {
  font-weight: bold;
}

.link-wrap .link-item .category {
  color: #555;
  font-size: 0.9em;
  font-weight: 800;
}

.link-wrap .link-item .view-link {
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
}

.link-wrap .link-item .view-link:hover {
  text-decoration: underline;
}

.circle-container {
  position: relative;
  width: 600px;
  height: 600px;
}

.center-logo {
  position: absolute;
  /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
}

.center-logo img {
  width: 95%;
  margin: 0 auto;
}

.circle-item {
  padding: 12px 16px;
  position: absolute;
  background-color: white;
  color: #000000b8;
  border-radius: 8px;
  box-shadow: 0px 14px 21px 7px #3341551a;
  font-family: var(--font_proxima);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.2px;
  text-align: center;
  font-weight: 700;
  width: 192px;
}

/* Position the items in a circle */
/* .circle-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); } */
.circle-item:nth-child(2) {
  top: 8%;
  left: 35%;
  transform: translate0(-0.5%, -50%);
}

.circle-item:nth-child(3) {
  top: 30%;
  left: 92%;
  transform: translate(-50%, -50%);
}

.circle-item:nth-child(4) {
  top: 64%;
  left: 92%;
  transform: translate(-50%, -50%);
}

.circle-item:nth-child(5) {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.circle-item:nth-child(6) {
  top: 30%;
  left: 8%;
  transform: translate(-50%, -50%);
}

.circle-item:nth-child(7) {
  top: 64%;
  left: 8%;
  transform: translate(-50%, -50%);
}

.pms_use_wrapper .card {
  border: 1px solid #00000029;
  padding: 32px 32px 68px 32px;
  box-shadow: 0px 0px 8px 1px #19213a14;
}

.pms_use_wrapper .card h3 {
  color: #00a5d7;
  font-size: 20px;
}

.pms_use_wrapper .card ul li a {
  color: #030303;
  font-size: 18px;
  text-decoration: underline;
  font-weight: 400;
}

@media (max-width: 1281px) {
  .container {
    max-width: 960px;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    padding: 14px 15px;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .nav-link {
    padding-right: 30px;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .nav-link:before {
    right: 16px;
  }

  .btn_primary,
  .btn_border {
    font-size: 13px;
    line-height: 20px;
  }

  header {
    padding: 20px 0;
  }

  .swiper .swiper-button-prev {
    left: calc(100% / 2 - 465px);
  }

  .swiper .swiper-button-next {
    right: calc(100% / 2 - 465px);
  }

  header .navbar .navbar-collapse {
    margin-left: 30px;
  }

  h1,
  .h1 {
    font-size: 54px;
  }

  .banner_wrapper .banner_text p {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 30px;
  }

  .banner_wrapper .banner_text {
    max-width: 450px;
  }

  .banner_wrapper {
    padding: 120px 0 80px;
  }

  h2,
  .h2 {
    font-size: 38px;
    line-height: 46px;
  }

  .title p,
  .subscribe_mail_title_area p {
    font-size: 18px;
    line-height: 22px;
  }

  .accordian_wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    line-height: 24px;
  }

  .tab_design_one .nav li button {
    padding: 13px 20px;
    font-size: 17px;
    line-height: 20px;
  }

  .chips li a {
    padding: 9px;
    font-size: 16px;
    padding-right: 50px;
  }

  .chips li a img {
    width: 46px;
    height: 46px;
    padding: 9px;
  }

  .tab_design_one .nav {
    margin: 0 0 50px;
  }

  .resources_box .resource_content h3 {
    font-size: 24px;
  }

  .resources_box .resource_content p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 1024px) {

  main.inner-solution-page .logo_slider_wrap::after,
  main.inner_home .logo_slider_wrap::after {
    /* width: 754px; */
  }

  main.inner-solution-page .banner_wrapper .banner_img {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  section.banner_wrapper.inner_banner .banner_text {
    max-width: 100%;
    /* padding-right: 0; */
    text-align: center;
  }

  section.banner_wrapper.inner_banner .banner_text .btn-group {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .banner_wrapper .banner_text {
    max-width: 100%;
    padding: 0 20px 30px;
    text-align: center;
  }

  .visual_wrapper .visual_text_wrap {
    padding-left: 0;
  }

  .why_img img {
    width: 100%;
    margin: 0 0 30px;
  }

  .swiper .swiper-button-prev {
    left: 20px;
  }

  .swiper .swiper-button-next {
    right: 20px;
  }

  .visual_wrapper .visual_text_wrap h2 {
    font-size: 26px;
    line-height: 32px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  .visual_wrapper .visual_img_wrap img {
    border-radius: 20px;
  }

  h2,
  .h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .chips li a {
    padding: 6px;
    font-size: 14px;
    padding-right: 44px;
  }

  .chips li a img {
    width: 40px;
    height: 40px;
    padding: 7px;
  }

  footer .copyright_wrap p {
    margin: 0 0 15px;
    text-align: center;
  }

  footer .copyright_wrap ul {
    justify-content: center;
  }

  .navbar-light .navbar-toggler {
    border: 0;
    box-shadow: none !important;
    outline: 0 !important;
  }

  header .navbar .navbar-collapse {
    margin-left: 0;
    background: #fff;
    /* box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); */
    padding: 20px;
    top: 60px;
    position: absolute;
    width: 100%;
    left: 0;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .dropdown_wrapper {
    position: relative;
    background: var(--bgGray);
    min-width: 100%;
    box-shadow: none;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .dropdown_wrapper ul li a {
    font-size: 14px;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item.has_children:hover .dropdown_wrapper {
    display: none;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .dropdown_wrapper {
    display: none;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .dropdown_wrapper.show {
    display: block;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item.has_children:hover .nav-link:before {
    transform: inherit;
  }

  main.inner-solution-page .logo_slider_wrap::after,
  main.inner_home .logo_slider_wrap::after {
    /* width: 554px; */
  }

  .demo_img {
    margin-top: 20px;
    text-align: center !important;
  }
}

@media (max-width: 768px) {

  .case_study_wrapper .visual_img_wrap img,
  .why-stratocore-img img {
    width: 100%;
  }

  .circle-container {
    position: relative;
    width: 500px;
    height: 500px;
  }

  .circle-item {
    width: 150px;
    padding: 3px 12px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .Discover_lisiting_inner_content>.row {
    gap: 28px;
  }

  .service_box {
    padding: 25px 28px;
  }

  h2,
  .h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h1,
  .h1 {
    font-size: 44px;
  }

  h4,
  .h4 {
    font-size: 24px;
    line-height: 32px;
  }

  .visual_wrapper .visual_img_wrap img {
    border-radius: 20px;
  }

  .visual_wrapper .visual_text_wrap h2 {
    font-size: 28px;
    line-height: 37px;
  }

  h3,
  .h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .title p {
    font-size: 16px;
    line-height: 20px;
  }

  .visual_wrapper .visual_text_wrap {
    text-align: center;
    padding-top: 20px;
  }

  .success_box:before {
    display: none;
  }

  .resources_box .resource_img a {
    border-radius: 14px;
  }

  footer .copyright_wrap ul li:last-child {
    padding-right: 16px;
  }

  footer .copyright_wrap ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 481px) {
  .stats-container {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  h1,
  .h1 {
    font-size: 34px;
  }

  h2,
  .h2 {
    font-size: 26px;
    line-height: 32px;
  }

  h4,
  .h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .review_box h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .review_box {
    padding: 20px;
    border-radius: 15px;
  }

  .chips {
    gap: 7px;
  }

  .chips li {
    width: 100%;
  }

  .chips li a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    line-height: 17px;
  }

  .tab_design_one .nav {
    margin: 0 0 30px;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
  }

  .tab_design_one .nav li button {
    width: 100%;
    border-radius: 10px;
  }

  .testimoanial_box .testimonial_text_wrap {
    padding: 14px;
  }

  .banner_wrapper .banner_text p {
    font-size: 16px;
    line-height: 24px;
  }

  main.inner-solution-page .logo_slider_wrap::after,
  main.inner_home .logo_slider_wrap::after {
    /* width: 274px; */
    /* width: 190px; */
  }

  section.banner_wrapper.inner_banner {
    .banner_text h1 {
      font-size: 34px;
      line-height: 44px;
    }
  }

  .transform-title-head h5 {
    font-size: 16px;
    line-height: 21px;
    font-weight: 500 !important;
  }

  .link-wrap .search-bar {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */

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

.core_facility_box {
  opacity: 0;
  /* Start hidden */
  transform: translateY(50px);
  /* Positioned below */
  transition: all 0.8s ease-out;
  /* Smooth transition */
}

.core_facility_box.animate {
  opacity: 1;
  /* Fully visible */
  transform: translateY(0);
  /* Original position */
}

/* Optional: Add delay for staggered effect */
.core_facility_box:nth-child(1).animate {
  transition-delay: 0.1s;
}

.core_facility_box:nth-child(2).animate {
  transition-delay: 0.2s;
}

.core_facility_box:nth-child(3).animate {
  transition-delay: 0.3s;
}

.core_facility_box:nth-child(4).animate {
  transition-delay: 0.4s;
}

.core_facility_box:nth-child(5).animate {
  transition-delay: 0.5s;
}

.core_facility_box:nth-child(6).animate {
  transition-delay: 0.6s;
}

.core_facility_box_wrapper .core_facility_box {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  width: 33.3333%;
  padding: 40px;
  text-align: center;
}

.core_facility_box_wrapper .core_facility_box:nth-child(1),
.core_facility_box_wrapper .core_facility_box:nth-child(2),
.core_facility_box_wrapper .core_facility_box:nth-child(3) {
  border-top: 0;
}

.core_facility_box_wrapper .core_facility_box:nth-child(3n + 1) {
  border-left: 0;
}

.core_facility_box_wrapper .core_facility_box h4 {
  margin: 30px 0 12px;
}

@media (max-width: 1281px) {
  .core_facility_box_wrapper .core_facility_box h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 991px) {
  .core_facility_box_wrapper .core_facility_box {
    width: 50%;
  }

  .core_facility_box_wrapper .core_facility_box:nth-child(3) {
    border-top: 1px solid #ddd;
  }

  .core_facility_box_wrapper .core_facility_box:nth-child(3n + 1) {
    border-left: 1px solid #ddd;
  }

  .core_facility_box_wrapper .core_facility_box:nth-child(2n + 1) {
    border-left: 0;
  }
}

@media (max-width: 481px) {
  .core_facility_box_wrapper .core_facility_box {
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-left: 0 !important;
    border-top: 0 !important;
  }
}

.benefit_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f6fb;
  border-radius: 12px;
}

.benefit_img img {
  width: 140px;
}

.why_us_wrapper .title {
  max-width: 800px;
  margin: 0 auto;
}

.why_us_wrapper .title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* .why_us_wrapper .title h3 {
  font-size: 28px;
} */

.about_inner_wrap {
  text-align: left;
  max-width: 810px;
  margin: 0 auto;
}

.journey_wrapper .title {
  max-width: 810px;
  margin: 0 auto;
}

.timeline_inner_wrapper ul {
  max-width: 790px;
  margin: 0 auto;
  position: relative;
}

.timeline_inner_wrapper ul:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 6px;
  height: 100%;
  background: #e490a9;
}

.timeline_inner_wrapper ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
}

.timeline_inner_wrapper ul li:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 20px var(--bgGray);
}

.timeline_inner_wrapper ul li:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline_inner_wrapper ul li .year_wrap {
  flex-grow: 1;
  max-width: 320px;
  display: flex;
  gap: 20px;
}

.timeline_inner_wrapper ul li .year_wrap h2 {
  color: var(--red);
  font-size: 18px;
  margin: 0 0 5px;
  font-weight: 700;
}

.timeline_inner_wrapper ul li .year_wrap h3 {
  color: var(--red);
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 15px;
}

@media (max-width: 575px) {
  .timeline_inner_wrapper ul li .year_wrap {
    flex-direction: column;
    margin-bottom: 10px;
    margin-top: 15px;
  }
}

/* .timeline_inner_wrapper ul li:nth-child(odd) .year_wrap {
  text-align: right;
} */

.timeline_inner_wrapper ul li:nth-child(even) .timeline_text_wrap {
  text-align: right;
}

.timeline_inner_wrapper ul li .timeline_text_wrap {
  flex-grow: 1;
  max-width: 320px;
}

.team_box .team_img_wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  width: 100%;
  height: 280px;
}

.team_box .team_img_wrap>img {
  height: 100%;
  object-fit: cover;
  width: -webkit-fill-available;
}

.team_box .team_img_wrap .member_detail_text {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  z-index: 0;
  padding: 24px;
  background: var(--bg_blue_light);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  justify-content: flex-start;
  transition: 0.3s ease;
  gap: 10px;
}

.team_box:hover .team_img_wrap .member_detail_text {
  top: 0;
}

.scroll-box {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding-right: 10px;
}

.scroll-box::-webkit-scrollbar {
  width: 7px;
  height: 15px;
}

.scroll-box::-webkit-scrollbar,
.scroll-box::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
  background-color: transparent;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #00a5d7;
}

/* .member_detail_text p {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  min-height: 176px;
  overflow-y: scroll;
  overflow-x: hidden;
  text-overflow: ellipsis;
  scrollbar-width: none;
} */

.member_detail_text ul {
  display: flex;
  align-items: center;
}

.member_detail_text ul li {
  margin-right: 15px;
}

.member_detail_text ul li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0);
}

.security_box {
  display: flex;
  margin-bottom: 24px;
}

.security_box .security_icon {
  width: 56px;
  margin-right: 20px;
}

.security_box .security_icon img {
  width: 56px;
  height: 56px;
}

.security_box .security_text {
  width: calc(100% - 76px);
}

.client_wrapper ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.client_wrapper ul li img {
  height: 80px;
  object-fit: contain;
}

.title_two h4 {
  color: rgba(0, 0, 0, 0.7);
}

.map_wrapper .title_wrap {
  max-width: 780px;
  margin: 0 auto;
}

.offcanvas {
  width: 100%;
  max-width: 450px;
}

.offcanvas-header {
  background: #f1f5f9;
}

.organizer_list ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.organizer_list ul li a {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
  position: relative;
}

.organizer_list ul li a:before {
  content: "";
  position: absolute;
  left: -14px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.7);
}

.career_box {
  background: var(--bg_blue_light);
  border-radius: 20px;
  padding: 24px;
}

.career_box h4 {
  color: #000;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 4px;
}

.career_box ul {
  display: flex;
  align-items: center;
}

.career_box ul li {
  margin-right: 8px;
}

.career_box ul li {
  display: flex;
  align-items: center;
}

.career_box ul li img {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .timeline_inner_wrapper ul:before {
    left: 15px;
    transform: inherit;
  }

  .timeline_inner_wrapper ul {
    padding-left: 50px;
  }

  .timeline_inner_wrapper ul li:before {
    left: -46px;
    transform: inherit;
    top: 20px;
  }

  .timeline_inner_wrapper ul li {
    flex-direction: column;
  }

  /* .timeline_inner_wrapper ul li:nth-child(odd) .year_wrap {
    text-align: right;
  } */

  .timeline_inner_wrapper ul li .year_wrap {
    max-width: 100%;
  }

  .timeline_inner_wrapper ul li:nth-child(even) {
    flex-direction: column;
  }

  .timeline_inner_wrapper ul li:nth-child(even) .timeline_text_wrap {
    text-align: left;
  }

  .timeline_inner_wrapper ul li .timeline_text_wrap {
    max-width: 100%;
  }
}

.logo_slider_wrap {
  width: 95%;
  margin: auto;
}

.features {
  margin-bottom: 120px;
  background-color: var(--bgGray);
}

.features h2 {
  font-size: 64px;
  color: #141b4d;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.022em;
  margin: 20px 0 24px;
}

.features .list_box {
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.features .list_box.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #f3f4f6;
  border-radius: 2px;
}

.features .list_box.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 70%;
  background-color: var(--primary);
  border-radius: 2px;
}

.features .list_box.active h5 {
  color: #141b4d;
}

.features .list_box.active p {
  color: #4f5479;
}

.features .list_box h5 {
  font-size: 18px;
  color: #c4c6d2;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.014em;
  margin-bottom: 8px;
}

.features .list_box p {
  font-size: 16px;
  color: #c4c6d2;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.011em;
  margin-bottom: 0;
}

.features_info {
  max-width: 800px;
  /*margin-left: auto*/
}

.features {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.right-element img {
  /*width: 100%;*/
  aspect-ratio: 7/6;
  -o-object-fit: contain;
  object-fit: contain;
}

.left-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.right-element {
  width: 100%;
  height: 100vh;
  transition: 0.5s ease;
}

.right-content {
  overflow: hidden;
}

.right-container {
  aspect-ratio: 5/4;
  position: relative;
}

.pin-spacer {
  margin: 0 !important;
}

.gsap-marker-end,
.gsap-marker-start,
.gsap-marker-scroller-end,
.gsap-marker-scroller-start {
  display: none !important;
}

.tab_wrapper {
  margin: 0;
  padding: 0 0 0 20px;
  position: relative;
}

.tab_wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #f3f4f6;
  border-radius: 2px;
}

.tab_wrapper li {
  list-style: none;
  position: relative;
  padding: 15px 0;
}

.tab_wrapper li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
  opacity: 0;
  transition: 0.5s ease;
}

.tab_wrapper li.selected:before {
  opacity: 1;
}

.tab_wrapper li p {
  margin: 0;
}

.tab_wrapper li:has(.selected):before {
  opacity: 0;
}

.tab_wrapper li:first-child {
  opacity: 0.3;
}

.tab_wrapper li:first-child:before {
  opacity: 0;
}

.tab_wrapper li:before {
  opacity: 0;
}

.tab_wrapper:has(li:first-child.selected) li:nth-child(2) {
  opacity: 0.3 !important;
}

.tab_wrapper:has(li:first-child.selected) li:nth-child(2):before {
  opacity: 0;
}

.tab_wrapper:has(li:nth-child(2).selected) li:nth-child(3) {
  opacity: 0.3 !important;
}

.tab_wrapper:has(li:nth-child(2).selected) li:nth-child(3):before {
  opacity: 0;
}

.tab_wrapper:has(li:first-child.selected) li:first-child {
  opacity: 1;
}

.tab_wrapper:has(li:first-child.selected) li:first-child:before {
  opacity: 1;
}

.tab_wrapper:has(li:first-child.selected) li:nth-child(2) {
  opacity: 1;
}

.tab_wrapper:has(li:first-child.selected) li:nth-child(2):before {
  opacity: 0;
}

.tab_wrapper:not(:has(li:nth-child(2).selected)) li:nth-child(2) {
  opacity: 0.3;
}

.tab_wrapper:not(:has(li:nth-child(2).selected)) li:nth-child(2):before {
  opacity: 0;
}

@media (max-width: 1681px) {
  .features h2 {
    font-size: 46px;
    line-height: 54px;
  }

  .tab_wrapper li p {
    font-size: 14px;
  }
}

@media (max-width: 1399px) {
  .features {
    background-size: 50%;
  }
}

@media (max-width: 1281px) {
  .features h2 {
    font-size: 36px;
    line-height: 43px;
    margin: 10px 0;
  }

  .tab_wrapper li h5 {
    font-size: 16px;
  }

  .tab_wrapper li p {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .features {
    background-image: none;
  }

  .features_info {
    max-width: 100%;
    margin-left: auto;
    text-align: center;
  }

  .features h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .tab_wrapper {
    text-align: left;
  }

  .tab_wrapper li p {
    margin: 0;
    display: none;
  }

  .tab_wrapper li h5 {
    margin: 0;
  }

  .tab_wrapper li {
    padding-bottom: 10px;
  }

  .left-container {
    height: 250px;
  }

  .right-element {
    height: calc(100vh - 250px);
  }

  .right-element img {
    height: calc(100vh - 250px);
  }
}

@media (max-width: 767px) {
  .features h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.badge_theam {
  background-color: #ffe4e6;
  color: #be123c;
  padding: 4px 8px;
  border-radius: 6px;
}

.why_img.hidden {
  display: none;
}

.faq .title p {
  color: #000000b8;
  font-size: 16px;
  font-weight: 400;
}

.faq .accordion-item {
  border: 0px;
  border-bottom: 1px solid #b1b1b1 !important;
}

.faq .accordion-button {
  background-color: transparent;
  color: #000;
  border: 0px !important;
  font-size: 18px;
  box-shadow: none;
  padding: 4px 0px 10px;
  font-weight: 700;
}

.faq .accordion-button:focus {
  box-shadow: none !important;
}

.faq .accordion-button:not(.collapsed) {
  color: #000;
}

.faq .accordion-body {
  padding: 0px 0px 24px;
  font-size: 14px;
  color: #000000b8;
  margin-top: -15px;
  font-weight: 400;
}

.accordion-button::after {
  background-image: url("../images/visual.svg");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/visual_1.svg");
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
}

/* Popup Styling */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  width: 80%;
  max-width: 700px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.popup-content video {
  width: 100%;
  display: block;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 10;
}

.testimonial-marquee {
  display: block;
  width: 100%;
  padding: 10px 0;
}

.testimonial-container {
  display: inline-flex;
  gap: 20px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  color: #333;
  width: 435px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  min-height: 76px;
  margin-bottom: 20px;
  white-space: normal;
  word-break: break-word;
  text-align: left;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  font-size: 14px;
  margin: 0;
}

.author-title {
  font-size: 12px;
  color: #555;
  margin: 0;
}

/* Why Stratorcore Page */
.success-card {
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  padding: 40px 24px;
  border-radius: 30px;
}

.size-one {
  max-width: 810px !important;
}

.success-card h5 {
  font-size: 36px;
  color: var(--primary);
}

.success-card p {
  font-size: 14px;
  color: var(--text_dark);
}

/* Remove default border, box-shadow, and background */
.custome-accordion .accordion-button {
  border: none;
  box-shadow: none;
  background-color: transparent;
  line-height: 20px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.custome-accordion .accordion-button h3 {
  font-size: 16px;
  color: var(--text_dark) !important;
  margin-right: 20px;
}

.custome-accordion .accordion-button:focus {
  box-shadow: none;
}

/* Custom styles for the plus/minus icon */
.custome-accordion .accordion-button.collapsed .icon-toggle {
  content: "+";
  font-size: 20px;
  margin-right: 10px;
}

.custome-accordion .accordion-button:not(.collapsed) .icon-toggle {
  content: "-";
  font-size: 20px;
  margin-right: 10px;
}

.custome-accordion .accordion-button:not(.collapsed) {
  background-color: var(--white);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
}

.custome-accordion .accordion-collapse.show {
  background-color: var(--white);
  box-shadow: 40px 46px 104px 0px rgba(27, 46, 104, 0.08);
  border-bottom-left-radius: 24px;
  z-index: 99;
  position: relative;
  border-bottom-right-radius: 24px;
}

.accordion-item {
  background-color: transparent;
}

.why-stratocore-block h3 {
  color: #007bff;
}

.why-stratocore-block .transform-dec {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.blog_wrapper .card-img-top {
  height: 200px;
  object-fit: cover;
}

.blog_wrapper .card-title {
  font-size: 18px;
  color: #030303;
  font-weight: 700;
}

.blog_wrapper .resource_content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #00a5d7;
}

.blog_wrapper .card-text {
  font-size: 14px !important;
  font-weight: 400;
  color: #000000b8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog_wrapper .resources_box {
  margin-top: 40px;
}

.blog_wrapper .author-info,
.artical_social_upper_area .author-info {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  margin-top: 10px;
}

.blog_wrapper .author-info img,
.author-info img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.blog_wrapper .author-info span img,
.author-info span img {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 328px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 300px;
  }

  .benefit_wrapper .casestudy_text_wrap h2 {
    font-size: 32px;
  }
}

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

  100% {
    transform: translateX(calc(-435px * 3));
    /* Moves left */
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-435px * 3));
    /* Start from the leftmost position */
  }

  100% {
    transform: translateX(0);
    /* Move to the initial position */
  }
}

.testimonial_Wrapper {
  overflow: hidden;
  background-color: var(--bgGray);
}

.client-slide-track {
  animation: scroll-left 60s linear infinite;
  /* Moves left */
  /* display: flex; */
  /* width: calc(435px * 6); */
  /* Total width */
}

.client-slide-track-to {
  animation: scroll-right 60s linear infinite;
  /* Change animation to scroll-right */
  /* display: flex;
  width: calc(435px * 6); */
  /* Total width */
}

.demo_wrapper .demo_text h5 {
  font-size: 24px;
  font-weight: 700;
  color: #030303;
}

.demo_wrapper .demo_text p {
  font-size: 16px;
  font-weight: 400;
  margin: 24px 0px 48px 0px;
  color: #000000b8;
}

.key_wrapper .core_facility_box_wrapper .core_facility_box {
  border: 0px;
  padding: 20px;
}

.testimonial-container .Efficiency {
  background: #fff;
  width: 350px;
  padding: 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text_dark);
  padding-right: 40px;
  position: relative;
}

.testimonial-container .Efficiency img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background: #fff;
  box-shadow: 0 0 56px 0 rgba(31, 40, 87, 0.24);
  padding: 14px;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: transparent;
  border: 1px solid #007bff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-next:before,
.slick-prev:before {
  color: #00a5d7;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
}

.slick-prev:before {
  /* content: "\f177"; */
}

.slick-next:before {
  /* content: "\f178"; */
}

.slick-dots li button:before {
  font-size: 18px;
}

.slick-dots li.slick-active button:before {
  color: #00a5d7;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.slide .content {
  padding: 20px;
}

.slide .content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #007bff;
}

.slide .content p {
  font-size: 16px;
  color: #555;
}

.icon-list li {
  margin-bottom: 10px;
  list-style: none;
  display: flex;
  align-items: center;
}

.icon-list li i {
  margin-right: 10px;
  color: #28a745;
}

.slick-initialized .slick-slide {
  display: flex;
}

.slider .inner-small-heading,
.ppms_detail_box>* {
  color: #030303;
  font-size: 18px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  padding: 20px;
}

.card {
  background: white;
  justify-content: center;
  border-radius: 32px;
  padding: 30px 25px;
  text-align: left;
  transition: transform 0.2s ease-in-out;
  box-shadow: -50px 46px 104px 0px #1b2e6814;
  border: 0px;
}

.card:hover {
  transform: translateY(-5px);
}

.percentage {
  font-size: 2.5rem;
  color: #00a5d7;
  font-weight: 700;
  margin-bottom: 10px;
}

.description {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

.benefit_wrapper .casestudy_text_wrap h2 {
  font-size: 45px;
  font-family: "Inter";
  color: #030303;
  font-weight: 700;
}

.benefit_wrapper .card {
  box-shadow: 0px 0px 0px 8px #e6f6fb8f !important;
  text-align: center;
  border: 2px solid var(--primary-300, #99dbef);
  height: 147px;
}

.benefit_wrapper .percentage {
  font-size: 36px;
  color: #ca2154;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit_wrapper .description {
  font-size: 1rem;
  color: #030303;
  font-weight: 700;
}

@media (max-width: 480px) {
  .benefit_wrapper .casestudy_text_wrap h2 {
    font-size: 32px;
  }
}

/* =================== Events-Page CSS =================== */
.website_content {
  overflow-x: hidden;
}

.events_banner_wrapper,
.webinars_banner_wrapper {
  padding-bottom: 147px;
}

.tab_design_two .nav {
  box-shadow: none;
  border: 0;
  gap: 12px;
}

.tab_design_two .nav li button {
  border: 2px solid #030303;
}

.set_default_lbl {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  color: var(--primary);
  background-color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
}

.events_box p.text_14,
.webinars_box p.text_14 {
  margin-top: 8px;
}

/* =================== Scroll-text CSS =================== */
/* .scroll-container {
  width: 100%;
  height: 88px;
  position: relative;
  overflow: hidden;
  scroll-behavior: smooth;
  transform: translateY(5px);
}
.heading-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
span.scroll_text {
  color: var(--text_dark) !important;
  display: block;
  line-height: 90px;
} */
/* .scroll-container {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: relative;
  transform: translateY(10px);
}

.heading-list {
  position: relative;
  display: flex;
  flex-direction: column;
} */
/* Show only the first text initially */
/* span.scroll_text:first-child {
  opacity: 1;
  transform: translateY(0);
} */

/* span.scroll_text {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  color: var(--text_dark) !important;
} */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  line-height: 88px;
  transform: translateY(5px);
  /*font-style: italic;*/
}

.cd-words-wrapper b {
  display: inline-block;
  font-weight: 600;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  color: var(--primary);
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xslide --------------------------------  */
.cd-headline.slide span {
  /* display: inline-block; */
  display: block;
  padding: 0;
}

.cd-headline.slide .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.slide b {
  opacity: 0;
  top: 0.2em;
}

.cd-headline.slide b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -moz-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}

.cd-headline.slide b.is-hidden {
  -webkit-animation: slide-out 0.6s;
  -moz-animation: slide-out 0.6s;
  animation: slide-out 0.6s;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}

/* .colourful {
  animation: colorchange 8s infinite;
  -webkit-animation: colorchange 8s infinite;
  -moz-animation: colorchange 8s infinite;
  -ms-animation: colorchange 8s infinite;
  -o-animation: colorchange 8s infinite;
} */

/* @keyframes colorchange {
  0% {
      color: #eb008b;
  }

  25% {
      color: #fff100;
  }

  50% {
      color: #01a54f;
  }

  75% {
      color: #00adef;
  }

  100% {
      color: #eb008b;
  }
} */
@media (max-width: 991px) {
  h1.cd-headline.slide {
    max-width: 450px;
    margin: 0 auto 30px;
  }

  .cd-words-wrapper {
    text-align: center;
  }

  .cd-headline.slide span {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .cd-words-wrapper {
    line-height: 58px;
    transform: translateY(0);
  }
}

/* =================== Webinars-Page CSS =================== */
.webinars_box .button_wrap a.btn_link {
  font-size: 20px;
  line-height: 24px;
}

.webinars_box .button_wrap a.btn_link svg {
  margin-left: 10px;
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .webinars_box .button_wrap a.btn_link {
    font-size: 18px;
  }
}

@media (max-width: 350px) {
  .row.webinars_upper_row {
    flex-direction: column-reverse;
    gap: 15px;
  }

  .row.webinars_upper_row>div {
    width: 100%;
  }
}

/* =================== Testimonials-Page CSS =================== */
.testimonials_banner_wrapper {
  padding-bottom: 164px;
}

.testimonials_box_area>.row>div {
  padding-left: 8px;
  padding-right: 8px;
}

.testimonials_boxes p {
  color: var(--text_dark);
}

.testimonials_boxes {
  background-color: var(--bg_blue_light);
  padding: 32px 24px;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials_box_area>.row {
  gap: 16px 0;
}

/* dynamic code css */
/* .testimonials_box_part {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.testimonials_boxes {
  max-width: 384px;
}
.testimonials_boxes:nth-child(6n + 4),
.testimonials_boxes:nth-child(6n + 5) {
  max-width: 584px;
} */
@media (max-width: 991px) {
  .testimonials_box_area {
    padding: 0 12px;
  }
}

/* =================== Blogs-Page CSS =================== */
.blogpage_wrapper {
  padding: 140px 0 56px;
}

.blogpage_wrapper .resources_box {
  margin-top: 0;
}

.row.blog_news_content_area {
  gap: 56px 0;
}

@media (max-width: 991px) {
  .row.blog_news_content_area {
    gap: 40px 0;
  }
}

/* =================== Blogs-Page CSS =================== */
.subscribe_mail_wrapper {
  padding: 128px 0;
}

.subscribe_mail_box {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 64px;
  align-items: center;
}

.subscribe_mail_box input {
  border-radius: 999px;
  background: #f6f6f6;
  color: #000000b8;
  border: 0;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  max-width: 666px;
  width: 100%;
}

.subscribe_mail_box input:focus-visible {
  outline: none;
}

.subscribe_mail_box input::placeholder,
.artical_social_icons li {
  color: #000000b8;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.subscribe_mail_title_area p,
.subscribe_mail_box_area p {
  font-family: var(--font_proxima);
  margin-top: 24px;
}

.subscribe_mail_box_area p {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #00000066;
}

@media (max-width: 1399px) {
  .subscribe_mail_wrapper {
    padding: 40px 0;
  }

  .subscribe_mail_box {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .subscribe_mail_box {
    flex-direction: column;
    gap: 15px;
  }

  .subscribe_mail_box input {
    max-width: 100%;
  }
}

/* =================== litrature-Page CSS =================== */
.litrature_wrapper {
  padding: 56px 0;
}

/* =================== Article-Page CSS =================== */
.Article_wrapper {
  background-color: var(--bgGray);
  padding: 160px 0 80px;
}

ul.artical_social_icons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}

.artical_social_upper_area {
  padding: 8px;
}

.artical_text,
ul.artical_tags_area li a {
  display: flex;
  font-family: var(--font_proxima);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.artical_text_1 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.artical_text_info,
.pera_info {
  padding: 32px 0 80px;
}

.artical_text_info,
.pera_info,
.artical_pera_info,
.artical_pera_info>.artical_img {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

p.artical_text.artical_text_3 {
  border-left: 6px solid #e6f6fb;
  padding-left: 30px;
}

.artical_pera_info>.artical_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

ul.artical_tags_area {
  gap: 8px;
}

ul.artical_tags_area li a {
  padding: 12px 8px;
  background-color: var(--bg_blue_light);
  color: var(--text_dark);
  border-radius: 4px;
}

.artical_area>.row {
  gap: 40px;
}

main.inner-solution-page.Article-solution-page>section.blogpage_wrapper {
  padding: 56px 0 180px;
}

.artical_img img {
  width: -webkit-fill-available;
}

.artical_social_upper_area>.row,
.artical_social_bottom_area>.row {
  gap: 20px 0;
}

@media (max-width: 991px) {
  .our_artical_details_area {
    padding: 50px 0 !important;
  }

  main.inner-solution-page.Article-solution-page>section.blogpage_wrapper {
    padding: 30px 0 60px;
  }

  .artical_text_info,
  .pera_info,
  .artical_pera_info,
  .artical_pera_info>.artical_img {
    gap: 24px;
  }

  .artical_text_info {
    padding-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .artical_text_1 {
    font-size: 16px;
  }

  .our_artical_details_area {
    padding: 30px 0 !important;
  }

  ul.artical_social_icons {
    justify-content: flex-start;
  }

  .artical_area>.row {
    gap: 30px;
  }

  .artical_text_info,
  .pera_info,
  .artical_pera_info,
  .artical_pera_info>.artical_img {
    gap: 18px;
  }
}

/* =================== Feature-Overview-Page CSS =================== */
.why_we_are_section {
  padding-bottom: 56px;
}

@media (max-width: 991px) {
  .why_we_area_btn_area {
    padding-top: 40px !important;
  }
}

/* =================== why-stratorcore-Page CSS =================== */
.ppms_boxes {
  display: flex;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 50px 46px 104px 0px rgba(27, 46, 104, 0.1);
  padding: 32px;
}

.ppms_detail_box {
  max-width: 512px;
}

.ppms_arrow_box {
  max-width: 54px;
  width: 100%;
  text-align: center;
}

.ppms_cars_area>.row {
  gap: 16px;
}

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

  .ppms_boxes {
    padding: 20px;
    gap: 20px;
    flex-direction: column;
  }

  .ppms_arrow_box svg {
    transform: rotate(90deg);
  }
}

/* =================== facilities-Page CSS =================== */
/* .container-yscroll {
  width: 270vw !important;
  align-items: center;
  height: 70vh !important;
  display: flex;
  overflow: hidden;
}
li.thumbnail .case-card {
  display: grid;
  grid-template-columns: 536px max-content;
  align-items: center;
  gap: 64px;
  margin: 0 80px;
}
section.why_we_are .pin-spacer {
  padding-bottom: 0 !important;
} */
/* li.thumbnail.thumbnail_002 .case-card {
  border: 2px solid #121212;
  border-top: 0;
  border-bottom: 0;
  padding: 0 40px;
  margin: 0 40px;
} */
/* li.thumbnail {
  flex: 0 0 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
} */

/* .container-yscroll {
  height: 100vh !important;
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory; 
}
.thumbnail.active {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.thumbnail:first-child {
  opacity: 1 !important;
}

.thumbnail:not(.active) {
  opacity: 0.1; 
}

@media (max-width: 1600px) {
  .container-yscroll {
    width: 300vw !important;
  }
}
@media (max-width: 1250px) {
  .container-yscroll {
    width: 330vw !important;
  }
  li.thumbnail .case-card {
    margin: 0 80px 0 0;
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .container-yscroll {
    width: 370vw !important;
  }
}
@media (max-width: 991px) {
  .container-yscroll {
    width: max-content !important;
  }
  li.thumbnail {
    width: 100vw;
    padding: 0 40px 0 0;
  }
  li.thumbnail .case-card {
    grid-template-columns: 1fr 1fr;
    margin: 0;
  }
}
@media (max-width: 575px) {
  li.thumbnail .case-card {
    grid-template-columns: 100%;
  }
  .visual_img_wrap.d-sm-none.d-block {
    text-align: center;
  }

  .visual_img_wrap.d-sm-none.d-block img {
    max-width: 75%;
  }
  .container-yscroll {
    top: 0px !important;
  }
  li.thumbnail .case-card h6.inner-small-heading,
  li.thumbnail .case-card p {
    font-size: 14px;
    margin-bottom: 15px !important;
  }
} */

/* .why_we_are-new {
  background: #f1f5f9;
}
.card-main {
  background: #f1f5f9;
  top: 100px;
  position: sticky;
}

.card-wrapper {
  position: relative;
}
@media (max-width: 575px) {
  .card-main {
    top: 0;
  }
} */
.why_we_are-new {
  background: #f1f5f9;
  position: relative;
}

/* Wrapper for Cards */
.card-wrapper {
  position: relative;
}

.card-main {
  /* background: #f1f5f9; */
  top: 100px;
  position: sticky;
  padding-top: 80px;
}

/* Navigation Dots */
.dots-container {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  transition: background 0.3s;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .card-wrapper {
    padding-top: 40px;
  }

  .card-main {
    padding: 15px;
  }

  .card-wrapper img {
    /* max-width: 90%; */
  }
}

@media (max-width: 575px) {
  .card-main {
    top: 0 !important;
  }

  .card-wrapper img {
    max-width: 75%;
  }
}

/* =================== Client-Page CSS =================== */
.map_location_detail_area {
  margin: 40px 24px 0;
  padding-top: 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.16);
  text-align: left;
}

.map_location_detail_area>.row {
  gap: 24px 0;
}

.map_location_details h6.inner-small-heading {
  font-family: var(--font_proxima);
  margin-bottom: 12px;
}

.map_location_detail_area ul li a {
  font-family: var(--font_proxima);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
  color: rgba(0, 0, 0, 0.72);
}

/* Prevent page scroll when video popup is open */
body.no-scroll {
  overflow: hidden;
}

.casestudy_text_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: inside;
  margin-bottom: 20px;
}

.casestudy_text_wrap ul li {
  font-size: 20px;
  line-height: 24px;
  /* color: var(--text_light); */
  /* font-weight: 400; */
  color: #00a5d7;
  font-weight: 700;
}

section.counter_success_wrapper {
  background: #030303;
  padding: 56px 0;
}

.success_counter_box_area>.row {
  gap: 40px 0;
}

.success_counter_box_area {
  margin: 60px auto 0;
  text-align: center;
}

.counter_box .counter_info .odometer {
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.48px;
  color: #ca2154;
  margin: 15px 0;
}

.counter_info p {
  color: #fff;
  margin: 0;
}

.counter_box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.24);
}

.success_counter_box_area>.row>div:last-child .counter_box::before {
  all: unset;
}

@media (max-width: 767px) {
  .success_counter_box_area {
    margin-top: 40px;
  }

  .counter_box::before {
    all: unset;
  }
}

/* Custome Animation */
.reveal {
  position: relative;
  opacity: 0;
  transition: all 1.8s ease;
}

.reveal.active {
  opacity: 1;
  transition: all 1.8s ease;
}

.active.custom_fade_top {
  animation: custom_fade_top 1.8s ease;
}

.active.custom_fade_buttom {
  animation: custom_fade_buttom 1.8s ease;
}

.active.custom_fade_left {
  animation: custom_fade_left 1.8s ease;
}

.active.custom_fade_right {
  animation: custom_fade_right 1.8s ease;
}

.active.custom_zoom_in {
  animation: custom_zoom_in 1.8s ease;
}

.active.custom_zoom {
  animation: custom_zoom 1.8s ease;
}

.active.custom_zoom_in_bottom {
  animation: custom_zoom_in_bottom 1.8s ease;
}

@keyframes custom_fade_top {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes custom_fade_buttom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes custom_fade_left {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes custom_fade_right {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes custom_zoom_in {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes custom_zoom {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes custom_zoom_in_bottom {
  from {
    transform: translateZ(1);
    opacity: 0;
  }

  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

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

.feature_wrapper>.container-fluid {
  padding: 0 60px;
}

.testimoanial_box .testimonial_img_wrapper .play-btn>img:hover {
  filter: invert(1);
}

section.about_page_wrapper .about_inner_wrap h2 {
  color: var(--primary);
}

.client-slide-track:hover,
.client-slide-track-to:hover,
.testimonial_slider_wrapper:hover .testimonial-container.client-slide-track,
.testimonial_slider_wrapper:hover .testimonial-container.client-slide-track-to {
  animation-play-state: paused;
}

.stats-pera-container .card {
  height: 100%;
}

.stats-pera-container>.row {
  gap: 30px 0px;
}

.stats-pera-container {
  padding: 0 20px;
}

.casestudy_pera_text_wrap h2 {
  /* font-size: 36px; */
  font-family: "Inter";
  /* line-height: 44px; */
  font-weight: 600;
}

.casestudy_pera_text_wrap h2 span {
  color: var(--primary);
}

.casestudy_pera_btn_area {
  text-align: center;
  margin: 48px 0 96px;
}

.stats-pera-container .card {
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  gap: 14px;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .casestudy_pera_btn_area {
    margin-top: 30px;
  }

  .custome_benefites_points_dasktop_inner {
    box-shadow: 10px 10px 40px 0px rgba(27, 46, 104, 0.1);
    overflow: hidden;
  }

  .custome_benefites_problem_box {
    padding: 0;
    box-shadow: none;
  }
}

/* NEW CODE */
.why_we_are_section .accordion.row {
  gap: 24px 0;
}

.why_we_are_section .accordion.row>.accordion-item {
  padding: 0 16px;
}

.why_we_are_section .accordion.row .accordion-item>div {
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.16) !important;
}

.why_we_are_section .accordion.row .accordion-item .why_we_are_accordian_area button.accordion-button {
  padding: 32px;
}

.why_we_are_section .accordion.row .accordion-item .why_we_are_accordian_area .accordion-body {
  padding: 0 32px 32px;
}

/* NEW SECTIONS */
header .navbar .container {
  align-items: unset;
}

.Discover_lisiting_sec {
  padding: 120px 0;
}

/* .Discover_lisiting_title_area {
  padding-right: 60px;
} */

.Discover_lisiting_title_area h2 span,
.Discover_lisiting_inner_box .lisiting_inner_box_title h6,
.custome_benefites_upper_title h2 span {
  color: var(--primary);
}

.Discover_lisiting_inner_content {
  margin-top: 80px;
}

.Discover_lisiting_inner_box .lisiting_inner_box_title h6 {
  line-height: 30px;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info a {
  color: var(--secondary);
}

.Discover_lisiting_inner_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info a {
  font-family: var(--font_proxima);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  background: #e6f6fb;
  outline: 0 solid var(--bg_blue_light);
  outline-offset: 0;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info a:hover {
  outline: 4px solid #66c9e7;
  outline-offset: 2px;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info ul {
  gap: 8px 0;
}

.home_blogs_sec_area {
  padding: 56px 0;
}

.home_blogs_area_inner .resources_box .resource_content h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #00a5d7;
}

.home_blogs_area_inner .resources_box .resource_content h5.card-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 11px 0 0;
}

.home_blogs_area_inner .resources_box img.card-img-top {
  aspect-ratio: auto;
  max-width: 272px;
  max-height: 165px;
}

.home_blogs_sec_area .row {
  gap: 40px 0;
}

@media (max-width: 1100px) {
  .feature_wrapper>.container-fluid {
    padding: 0 30px;
  }
}

/* custome_benefites_points */
.custome_benefites_points_sec {
  padding: 128px 0;
}

.custome_benefites_upper_title h2 span {}

.custome_benefites_upper_title p {
  font-family: var(--font_proxima);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.24px;
  max-width: 810px;
  margin: 0 auto;
}

.custome_benefites_points_dasktop {
  /* display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 48px; */
  margin-top: 80px;
  gap: 16px;
}

.custome_benefites_points_dasktop_inner {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.custome_benefites_problem_box {
  max-width: 528px;
  padding: 32px;
  box-shadow: 50px 46px 104px 0px rgba(27, 46, 104, 0.1);
  background: #fff;
  margin-top: 8px;
  border-radius: 16px;
  transition: all 0.5s ease;
}

.custome_benefites_points_dasktop_inner .custome_benefites_problem_box:hover {
  transform: translateY(-5px);
  transition: all 0.5s ease;
}

.custome_benefites_problem_box p {
  margin: 0;
}

.custome_benefites_problem_box>* {
  color: #030303;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.18px;
  font-family: var(--primary_font_family);
}

.custome_benefites_points_dasktop span {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  color: #00a5d7;
}

.custome_benefites_icons span {
  transform: translateY(10px);
  display: block;
}

.custome_benefites_problem_box>span {
  display: none;
}

@media (max-width: 1199px) {
  .custome_benefites_points_dasktop_inner {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .custome_benefites_points_dasktop_inner:hover {
    transform: translateY(-5px);
    transition: 0.5s ease;
  }

  .custome_benefites_points_dasktop_inner .custome_benefites_problem_box,
  .custome_benefites_points_dasktop_inner .custome_benefites_problem_box:hover {
    all: unset;
  }

  .custome_benefites_upper_title p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.16px;
  }

  .custome_benefites_points_dasktop {
    margin-top: 24px;
  }

  .custome_benefites_points_dasktop_inner {
    flex-direction: column;
    text-align: center;
    /* padding: 24px 16px; */
    background: #fff;
    border-radius: 16px;
    box-shadow: 50px 46px 104px 0px rgba(27, 46, 104, 0.1);
    gap: 0;
  }

  .custome_benefites_problem,
  .custome_benefites_solution {
    padding: 24px 16px;
  }

  .custome_benefites_points_dasktop span {
    display: none;
  }

  .custome_benefites_problem_box>span {
    display: block;
    font-weight: 700;
  }

  .custome_benefites_icons span {
    transform: translateY(0) rotate(90deg);
    display: inline-block;
  }

  .custome_benefites_icons {
    position: relative;
    display: block;
    width: 100%;
    z-index: 0;
  }

  .custome_benefites_icons::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    z-index: -1;
  }

  section.why_we_are-new .transform-title-head p {
    font-weight: 400;
  }
}

.inner_success_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 426px;
  height: 426px;
  padding: 18.748px 0px;
  border-radius: 426.504px;
  opacity: 0.7;
  background: #8a42b7;
  filter: blur(145px);
  z-index: -1;
}

/* CONTACT-PAGE */
section.contactus_wrapper.banner_wrapper.inner_banner {
  padding: 260px 0 200px;
}

section.contactus_wrapper .banner_text_contact {
  max-width: 100% !important;
}

section.contactus_wrapper .banner_text_contact p {
  margin-bottom: 32px;
}

.custome_padding_sec {
  padding: 100px 0;
}

.contact_boxes_content>.row {
  gap: 40px 0;
}

.contact_boxes>* {
  font-family: var(--font_proxima);
}

.contact_boxes h5 {
  color: #1e293b;
  font-weight: 700;
  letter-spacing: -0.24px;
}

.contact_boxes a,
.contact_boxes p.contact_box_address {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #030303;
}

.contact_boxes a:hover {
  color: #00a5d3;
}

.contactpage_form_sec,
.contact_faqs_sec {
  background: #f1f5f9;
}

.contactpage_form_title_area h3 {
  margin: 24px 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  color: #030303;
}

.contactpage_form_title_area p {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
}

.contactpage_form_area .contactpage_form_content h6 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #030303;
}

.contactpage_form_content {
  padding: 32px;
  border-radius: 20px;
  box-shadow: 50px 46px 104px 0px rgba(27, 46, 104, 0.1);
  background: #fff;
}

.contactpage_form_area .contactpage_form_content>form>div.row {
  gap: 12px;
}

.contactpage_form_area .contactpage_form_content>form>div.row input,
.contactpage_form_area .contactpage_form_content>form>div.row textarea {
  padding: 12px;
  border-radius: 8px;
  background: #f6f6f6;
  border: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.72);
}

.contactpage_form_area .contactpage_form_content>form>div.row textarea {
  min-height: 80px;
}

.contactpage_form_area .contactpage_form_content>form>div.row button {
  display: inline-flex;
  padding: 15px 26px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #fff;
  background: #00a5d7;
  border-radius: 8px;
  border: 1px solid;
  transition: 0.5s ease;
}

.contactpage_form_area .contactpage_form_content>form>div.row button:hover {
  transition: 0.5s ease;
  color: #00a5d7;
  background: transparent;
}

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

.contact_loaction_info {
  margin-top: 24px;
}

.contact_loaction_area {
  margin-top: 40px;
}

.contact_loaction_titles {
  padding-left: 15px;
}

.contact_loaction_info h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.32px;
  color: #030303;
}

.contact_loaction_info a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact_loaction_area>.row>div {
  padding: 0 20px;
}

.contact_faqs_sec {
  padding: 144px 0;
}

.contact_faqs_titles a.btn_primary {
  margin-top: 48px;
}

.contact_faqs .accordion-item {
  margin-bottom: 16px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  padding-bottom: 24px;
}

.contact_faqs .accordion-item h2 button.accordion-button {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -0.18px;
  color: #030303;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 4px 0;
}

.contact_faqs .accordion-item .accordion-body {
  padding: 10px 4px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

@media (max-width: 1281px) {
  section.contactus_wrapper.banner_wrapper.inner_banner {
    padding: 200px 0 100px;
  }
}

@media (max-width: 991px) {
  .home_blogs_area_inner .resources_box img.card-img-top {
    max-width: 100%;
    max-height: 100%;
  }

  /* .Discover_lisiting_title_area {
    padding-right: 60px;
  } */

  .Discover_lisiting_inner_content {
    margin-top: 40px;
  }

  .Discover_lisiting_inner_content>.row {
    gap: 40px 0;
  }

  .custome_padding_sec {
    padding: 80px 0;
  }

  .contactpage_form_area>.row,
  .contact_loaction_area>.row,
  .contact_faqs_content>.row {
    gap: 40px 0;
  }

  .contact_faqs_sec {
    padding: 40px 0;
  }

  .contact_faqs_titles a.btn_primary {
    margin-top: 24px;
  }

  .contactpage_form_title_area h3 {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 575px) {
  section.contactus_wrapper.banner_wrapper.inner_banner {
    padding: 150px 0 100px;
  }

  .custome_padding_sec {
    padding: 40px 0;
  }

  .contactpage_form_title_area h3 {
    margin: 12px 24px 12px 0;
  }

  .contact_loaction_titles {
    padding: 0;
  }

  .contact_loaction_area>.row>div {
    padding: 0 12px;
  }
}

section.counter_success_wrapper {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

section.counter_success_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 426.504px;
  height: 426.504px;
  border-radius: 426.504px;
  opacity: 0.6;
  background: #8a42b7;
  filter: blur(145px);
  z-index: -1;
}

@media (max-width: 575px) {
  .circle-container {
    position: relative;
    width: 300px;
    height: 300px;
  }

  .circle-item {
    font-size: 12px;
    line-height: 16px;
    padding: 8px;
    width: 100px;
  }

  .circle-item:nth-child(2) {
    top: 3%;
    left: 34%;
  }

  .circle-item:nth-child(3) {
    top: 30%;
    left: 90%;
  }

  .circle-item:nth-child(4) {
    top: 70%;
    left: 90%;
  }

  .circle-item:nth-child(5) {
    bottom: 2%;
    left: 50%;
  }

  .circle-item:nth-child(6) {
    top: 30%;
    left: 9%;
  }

  .circle-item:nth-child(7) {
    top: 70%;
    left: 10%;
  }
}

.why_we_are_accordian_area .accordion-collapse.show {
  z-index: 10;
}

.bg-grey {
  background: #f1f5f9 !important;
}

.bg-white {
  background: #ffffff !important;
}

.Article_wrapper {
  background-color: var(--bgGray);
  padding: 160px 0 80px;
}

ul.artical_social_icons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}

.artical_social_upper_area {
  padding: 8px;
}

.artical_text,
ul.artical_tags_area li a {
  display: flex;
  font-family: var(--font_proxima);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.artical_text_1 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.artical_text_info,
.pera_info {
  padding: 32px 0 80px;
}

.artical_text_info,
.pera_info,
.artical_pera_info,
.artical_pera_info>.artical_img {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

p.artical_text.artical_text_3 {
  border-left: 6px solid #e6f6fb;
  padding-left: 30px;
}

.artical_pera_info>.artical_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

ul.artical_tags_area {
  gap: 8px;
}

ul.artical_tags_area li a {
  padding: 12px 8px;
  background-color: var(--bg_blue_light);
  color: var(--text_dark);
  border-radius: 4px;
}

.artical_area>.row {
  gap: 40px;
}

main.inner-solution-page.Article-solution-page>section.blogpage_wrapper {
  padding: 56px 0 180px;
}

.artical_img img {
  width: -webkit-fill-available;
}

.artical_social_upper_area>.row,
.artical_social_bottom_area>.row {
  gap: 20px 0;
}

@media (max-width: 991px) {
  .our_artical_details_area {
    padding: 50px 0 !important;
  }

  main.inner-solution-page.Article-solution-page>section.blogpage_wrapper {
    padding: 30px 0 60px;
  }

  .artical_text_info,
  .pera_info,
  .artical_pera_info,
  .artical_pera_info>.artical_img {
    gap: 24px;
  }

  .artical_text_info {
    padding-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .artical_text_1 {
    font-size: 16px;
  }

  .our_artical_details_area {
    padding: 30px 0 !important;
  }

  ul.artical_social_icons {
    justify-content: flex-start;
  }

  .artical_area>.row {
    gap: 30px;
  }

  .artical_text_info,
  .pera_info,
  .artical_pera_info,
  .artical_pera_info>.artical_img {
    gap: 18px;
  }
}

.why_we_are_accordian_area button.accordion-button {
  transition: none !important;
  position: unset !important;
}

.counter_box .counter_info>.Corefacilities-PPMS-3::after {
  content: "%";
  position: absolute;
  top: 5px;
  right: -33px;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.48px;
  color: #ca2154;
  z-index: 0;
}

.custome_benefites_problem_box {
  box-shadow: 10px 10px 40px 0px rgba(27, 46, 104, 0.1);
}

.custome_benefites_problem_box>h2 {
  font-size: 20px;
}

.title h4 span,
.Universities_Facilities_title h2 span,
.unlock_stastistics_titles h2 span,
.scheduling_client_title h2 span {
  color: var(--primary);
}

.why_we_are_section .accordion.row .accordion-item>div {
  overflow: hidden;
}

.why_we_are_section .accordion.row .accordion-item .why_we_are_accordian_area .accordion-body {
  background: #fff !important;
}

/* ===================== Universities-Solutions CSS ===================== */
.Choose_Stratocore_area {
  padding: 120px 0 60px;
}

.Choose_Stratocore_area>.row {
  justify-content: space-between;
  align-items: center;
}

.Choose_Stratocore_box {
  background: #fff;
  border-radius: 40px;
  padding: 38px;
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  height: 100%;
}

.Choose_Stratocore_title_area h3 {
  margin: 24px 0 48px;
}

.Choose_Stratocore_content>.row {
  gap: 16px 0;
}

.Universities_Facilities_content_desktop {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.Universities_Facilities_box {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.Universities_Facilities_img {
  max-width: 582px;
}

.Universities_Facilities_info {
  max-width: 528px;
}

.Universities_Facilities_info ul {
  list-style: disc;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
}

.unlock_stastistics_box {
  padding: 20px 50px;
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  background: #fff;
  border-radius: 16px;
  height: 100%;
  place-content: center;
}

.unlock_stastistics_content>.row {
  gap: 24px 0;
}

.Why_StratocorePPMS_content>.row {
  gap: 30px 0;
}

.Why_StratocorePPMS_content {
  margin: 60px 0;
}

section.Why_StratocorePPMS_sec {
  padding-top: 120px;
}

@media (max-width: 1399px) {
  .Choose_Stratocore_area>.row {
    gap: 30px;
  }

  .Universities_Facilities_img,
  .Universities_Facilities_img img {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .Choose_Stratocore_title_area h3 {
    margin: 18px 0px 30px;
  }

  .Choose_Stratocore_area {
    padding: 40px 0;
  }

  .Choose_Stratocore_sec {
    background-color: #f1f5f9;
  }

  .Universities_Facilities_box {
    display: flex;
    align-items: unset;
    gap: 0;
    justify-content: unset;
    flex-direction: column;
  }

  .Universities_Facilities_content,
  .unlock_stastistics_content {
    margin-top: 20px;
  }

  .Universities_Facilities_info {
    max-width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
  }

  .Universities_Facilities_img {
    max-width: 100%;
  }

  .Universities_Facilities_img img {
    width: 100%;
  }

  section.Why_StratocorePPMS_sec {
    padding-top: 60px;
  }

  .Why_StratocorePPMS_titles p {
    font-size: 14px;
    line-height: 20px;
  }

  .Why_StratocorePPMS_content {
    margin: 30px 0;
  }
}

/* ===================== instrument-scheduling CSS ===================== */
.sectionpart_bg {
  padding: 120px 0;
}

section.scheduling_client_sec {
  padding: 184px 0 200px;
}

.Scheduling-slider-area {
  display: grid;
  grid-template-columns: 1fr 504px;
  gap: 40px;
}

.Scheduling_slide_box {
  margin: 0 0 20px 40px;
  position: relative;
  z-index: 0;
}

.Scheduling_slide_box>* {
  color: #030303;
}

.Scheduling-slide .Scheduling_slide_box>* {
  opacity: 0.2;
}

.Scheduling-slide.slick-active.slick-center .Scheduling_slide_box>* {
  opacity: 1;
}

.Scheduling-slide.slick-active.slick-center .Scheduling_slide_box::before {
  border: 6px solid #00a5d7;
}

.Scheduling_slide_box::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -40px;
  width: 20px;
  height: 20px;
  border: 6px solid #eee;
  background: #fff;
  border-radius: 50%;
  padding: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.Scheduling_slide_box::after {
  content: "";
  position: absolute;
  top: 28px;
  left: -31px;
  width: 2px;
  height: 190%;
  background: #eee;
}

.Scheduling_slide_box h3.Scheduling_slide_title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
}

ul.Scheduling_slide_points li {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.18px;
}

ul.Scheduling_slide_points {
  list-style: inside;
}

.Scheduling-image img#Scheduling-image-display {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.instrument_scheduling_banner_text,
.universities_solutions_banner_text {
  max-width: 865px;
  margin: 0 auto;
}

.instrument_scheduling_banner_text h1,
.universities_solutions_banner_text h1 {
  font-size: 43px;
  line-height: 55px;
}

.instrument_scheduling_banner_text p,
.universities_solutions_banner_text p {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.24px;
  padding: 40px 0 30px;
}

.stastistics_box {
  padding: 41px 32px;
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  background: #fff;
  border-radius: 16px;
}

.stastistics_box p,
.scheduling_client_img_area span,
.scheduling_client_img_area p {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.14px;
}

.Scheduling-slider-area,
.stastistics_content,
.transform_stratocore_btn,
.Universities_Facilities_content,
.unlock_stastistics_content {
  margin-top: 60px;
}

section.transform_stratocore_wrapper .title {
  max-width: 950px;
  margin: 0 auto;
}

.transform_stratocore_box h4,
.Why_StratocorePPMS_box h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.scheduling_client_box {
  max-width: 870px;
  margin: 55px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 32px 64px;
  border-radius: 16px;
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  background: #fff;
}

.scheduling_client_box p {
  color: #030303;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.18px;
  margin: 0;
}

.scheduling_client_img_area span {
  margin: 10px 0 5px;
}

@media (max-width: 991px) {

  .instrument_scheduling_banner_text h1,
  .universities_solutions_banner_text h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .instrument_scheduling_banner_text p,
  .Scheduling-slider-upper-title p,
  .universities_solutions_banner_text p {
    font-size: 18px;
    line-height: 24px;
  }

  .instrument_scheduling_banner_text p,
  .universities_solutions_banner_text p {
    padding: 16px 0 32px;
  }

  .sectionpart_bg {
    padding: 40px 0;
  }

  section.scheduling_client_sec {
    padding: 80px 0;
  }

  .scheduling_client_box {
    margin: 30px auto 0;
    padding: 32px 16px;
  }

  .stastistics_content>.row {
    gap: 16px 0;
  }

  .Scheduling-slider-area,
  .stastistics_content {
    margin-top: 30px;
  }

  .transform_stratocore_btn {
    margin: 0;
  }
}

@media (max-width: 850px) {
  .Scheduling-slider-area {
    grid-template-columns: 1fr 380px;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .Scheduling-slider-area {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .Scheduling_slide_box::before,
  .Scheduling_slide_box::after {
    all: unset;
  }

  .Scheduling_slide_box {
    margin: 0;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
  }

  .Scheduling-slide .Scheduling_slide_box>* {
    opacity: 1;
  }

  ul.Scheduling_slide_points {
    list-style: disc;
    padding: 0 0px 0 20px;
  }

  .Scheduling-carousel ul.slick-dots,
  .Scheduling-carousel ul.slick-dots li,
  .Scheduling-carousel ul.slick-dots button,
  .Scheduling-carousel ul.slick-dots li button:before,
  .Universities_Facilities_content_slider ul.slick-dots,
  .Universities_Facilities_content_slider ul.slick-dots li,
  .Universities_Facilities_content_slider ul.slick-dots button,
  .Universities_Facilities_content_slider ul.slick-dots li button:before {
    all: unset;
  }

  .Scheduling-carousel ul.slick-dots,
  .Universities_Facilities_content_slider ul.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }

  .Scheduling-carousel ul.slick-dots li button,
  .Universities_Facilities_content_slider ul.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50px;
    background: #ccc;
    margin-top: 20px;
    transition: all 0.5s ease;
  }

  .Scheduling-carousel ul.slick-dots li.slick-active button,
  .Universities_Facilities_content_slider ul.slick-dots li.slick-active button {
    width: 40px;
    background: #00a5d7;
  }
}

.circle-container .circle-item {
  scale: 1;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.circle-container .circle-item:hover {
  scale: 1.1;
  border: 1px solid #33B7DF;
}

section.stream_flow_wrapper h2 {
  max-width: 1150px;
  margin: 0 auto;
}

.f-bold {
  font-weight: bold;
}

/* NEWS-SLIDER */
.home_news_slider_title_area h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
}

.home_news_slider_title_area p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.home_news_slider_wrapper .resources_box img.card-img-top {
  aspect-ratio: auto;
}

.home_news_slider_wrapper .resource_content h3 {
  font-family: var(--font_proxima);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: #00A5D7;
}

.home_news_slider_wrapper .resource_content h5 {
  font-family: var(--font_proxima);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.14px;
}

.home_news_slider_sec .home_news_slider_wrapper>.container {
  padding-right: 0;
}

main.inner_home .logo_slider_wrap::after {
  all: unset;
}

/* testimonial_slider_marquee */
/* .testimonial_card_box_trake {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.testimonial-container {
  display: flex;
  gap: 20px;
  animation: LeftToRightSlider 50s linear infinite;
  justify-content: space-between;
}
.testimonial_card_box_trake:hover>.testimonial-container {
  animation-play-state: paused;
}
.testimonial_card_box_trake>.testimonial-container > .testimonial-card {
  min-width: 435px;
  display: flex;
  width: unset;
  word-wrap: unset;
  overflow-wrap: unset;
  flex-direction: column;
  justify-content: space-between;
}
@keyframes LeftToRightSlider {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(-100% - 30px));
  }
}
@media (max-width: 575px) {
  .testimonial_card_box_trake>.testimonial-container > .testimonial-card {
    min-width: 360px;
  }
} */

/* video-auto play */
.play-btn {
  z-index: 1;
}

.video-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.hover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* display: none; */
  /* Hidden by default */
}

.video-container:hover .hover-video {
  display: block;
  /* Show video on hover */
}

/* NEW HOME */
/* flexble_tools CSS */
.flexble_tools_area {
  padding: 54px 0;
}

.flexble_tools_content h2 {
  max-width: 750px;
  margin: 0 auto;
}

.flexble_tools_content p {
  font-size: 18px;
  margin: 24px 0 0;
}

@media (max-width: 767px) {
  .flexble_tools_area {
    padding: 30px 0;
  }

  .flexble_tools_content p {
    margin: 16px 0 0;
  }
}

/* Case_study CSS */
.Case_study_home_area>.row {
  gap: 24px;
}

.Case_study_home_area {
  padding: 25px 0;
}

.Case_study_inner_info {
  margin: 24px 0;
}

.Case_study_inner_box {
  border-radius: 20px;
  background: #fff;
  padding: 40px;
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  transition: transform 0.5s ease-in-out;
}

.Case_study_inner_box:hover {
  transform: translateY(-10px);
}

.Case_study_inner_box_content h2.Case_study_inner_heading {
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
}

.Case_study_inner_box_content ul {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  padding-left: 20px;
  letter-spacing: -0.2px;
  list-style: disc;
  color: #00a5d7;
}

@media (max-width: 1199px) {
  .Case_study_inner_box_content h2.Case_study_inner_heading {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 991px) {
  .Case_study_inner_box.Case_study_inner_left_box>.row {
    flex-direction: column-reverse;
  }

  .Case_study_inner_box {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .Case_study_home_area {
    padding: 40px 0;
  }

  .Case_study_inner_box_content h2.Case_study_inner_heading {
    font-size: 24px;
    line-height: 30px;
    margin: 15px 0 0;
  }
}

/* Discover_lisiting CSS */
.Discover_lisiting_sec {
  padding: 128px 0;
}

.Discover_lisiting_title_area {
  max-width: 778px;
  margin: 0 auto;
}

.Discover_lisiting_title_area h2 span,
.Discover_lisiting_inner_box .lisiting_inner_box_title h6,
.custome_benefites_upper_title h2 span {
  color: var(--primary);
}

.Discover_lisiting_inner_content {
  margin: 60px 0;
}

.Discover_lisiting_inner_box .lisiting_inner_box_title h6 {
  font-family: "Open Sans";
  line-height: 30px;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info a {
  color: var(--secondary);
}

.Discover_lisiting_inner_box {
  display: flex;
  flex-direction: column;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info a {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: #e6f6fb;
  outline: 0 solid var(--bg_blue_light);
  outline-offset: 0;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info a:hover {
  outline: 4px solid #66c9e7;
  outline-offset: 2px;
}

.Discover_lisiting_inner_box .lisiting_inner_box_info ul {
  gap: 16px 0;
}

@media (max-width: 1199px) {
  .Discover_lisiting_sec {
    padding: 80px 0;
  }
}

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

  .Discover_lisiting_inner_content {
    margin: 30px 0;
  }
}

/* testimoanial_slider */
.testimoanial_box {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 10px;
}

.testimoanial_box .testimonial_img_wrapper {
  aspect-ratio: auto;
  border-radius: 0;
}

/* Features_section CSS */
section#Features_accodian_sec_two .custome-accordion .accordion-button h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.72) !important;
}

section#Features_accodian_sec_two .accordion-body {
  padding: 0 24px 24px 24px;
}

section#Features_accodian_sec_two .accordion-body p {
  font-size: 18px;
}

ul.Featuresiconaccodian_points {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.72);
  list-style: disc;
  padding-left: 20px;
}

@media (max-width: 575px) {
  section#Features_accodian_sec_two .custome-accordion .accordion-button h3 {
    font-size: 18px;
    line-height: 24px;
  }

  /* section#Features_accodian_sec_two
    .accordion.row
    .accordion-item
    .why_we_are_accordian_area
    button.accordion-button {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
  } */
}

/* new sections */
.Discover_accodian_title_area span {
  color: var(--primary);
}

.discover_custom_accordian_area h2.accordion-header {
  background: transparent;
}

.discover_custom_accordian_area h2.accordion-header button.accordion-button h5 {
  color: #00a5d7 !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.discover_custom_accordian_area h2.accordion-header button.accordion-button {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #00a5d7;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.discover_custom_accordian_area .lisiting_inner_box_info a {
  font-family: var(--font_proxima);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  background: #e6f6fb;
  outline: 0 solid var(--bg_blue_light);
  outline-offset: 0;
}

.discover_custom_accordian_area .lisiting_inner_box_info a:hover {
  outline: 1px solid #66c9e7;
  outline-offset: 0.5px;
}

.discover_custom_accordian_area .lisiting_inner_box_info>ul.row {
  gap: 8px;
}

.discover_custom_accordian_area .accordion-collapse.show,
.Features_icon_accodian_section .accordion-collapse.show {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  z-index: 10;
}

.discover_custom_accordian_area .accordion-body {
  padding: 0;
}

.discover_custom_accordian_area button.accordion-button,
.Features_icon_accodian_section button.accordion-button {
  transition: none !important;
  position: unset !important;
}

.discover_custom_accordian_area .accordion-button::after {
  background-image: url(../images/blue-plus.svg);
}

.discover_custom_accordian_area .accordion-button:not(.collapsed)::after {
  background-image: url(../images/blue-minus.svg);
}

.discover_accodian_area .accordion-flush.row {
  gap: 40px;
}

.Features_icon_accordian_area {
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 50px 46px 104px 0px rgba(27, 46, 104, 0.1);
  overflow: hidden;
}

.Features_icon_accordian_area button.accordion-button {
  padding: 24px !important;
  gap: 8px;
}

.Features_icon_accodian_section .accordion.row {
  gap: 32px 0;
}

.Features_icon_accodian_section .accordion-collapse,
.Features_icon_accodian_section .accordion-collapse.show {
  background-color: #fff;
}

/* new_test code */
/* testimonial_slider_marquee */
.testimonial_card_box_Right_trake {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-container {
  display: flex;
  gap: 20px;
  animation: LeftToRightSlider 50s linear infinite;
  justify-content: space-between;
}

.testimonial_card_box_Right_trake:hover>.testimonial-container {
  animation-play-state: paused;
}

.testimonial_card_box_Right_trake>.testimonial-container>.testimonial-card {
  min-width: 435px;
  display: flex;
  width: unset;
  word-wrap: unset;
  overflow-wrap: unset;
  flex-direction: column;
  justify-content: space-between;
}

@keyframes LeftToRightSlider {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(calc(-100% - 30px));
  }
}

@media (max-width: 575px) {
  .testimonial_card_box_Right_trake>.testimonial-container>.testimonial-card {
    min-width: 360px;
  }
}

/* LEFT TRAKE */
.testimonial_card_box_left_trake {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.testimonial_card_box_left_trake .testimonial-container {
  display: flex;
  gap: 20px;
  animation: RightToLeftSlider 50s linear infinite;
  justify-content: space-between;
}

.testimonial_card_box_left_trake:hover>.testimonial-container {
  animation-play-state: paused;
}

.testimonial_card_box_left_trake>.testimonial-container>.testimonial-card {
  min-width: 435px;
  display: flex;
  width: unset;
  word-wrap: unset;
  overflow-wrap: unset;
  flex-direction: column;
  justify-content: space-between;
}

@keyframes RightToLeftSlider {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(calc(3% - 30px));
  }
}

@media (max-width: 575px) {
  .testimonial_card_box_left_trake>.testimonial-container>.testimonial-card {
    min-width: 360px;
  }
}

/* LEST_UP */
.circle-item {
  background-color: #eff9fc;
  color: rgba(0, 0, 0, 0.72);
  box-shadow: 0px 20px 25px -5px rgba(51, 65, 85, 0.1),
  0px 0px 2px -5px rgba(13, 21, 32, 0.24);
}

.circle-item:nth-child(2) {
  top: 6%;
  left: 33%;
}

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

section.why_we_are-new {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.18px;
}

.Case_study_inner_box_content ul {
  color: rgba(0, 0, 0, 0.72);
}

.Case_study_inner_box_content ul li::marker {
  color: #00a5d7;
}

/* NEW_HOME_UPDATE */
.home_hero_banner {
  background-image: url(../images/banner-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 25%;
  padding: 160px 0 100px;
  min-height: 82vh;
  height: 100%;
  place-content: center;
}

.home_banner_info h1 {
  font-size: 56px;
  line-height: 58px;
}

.cd-words-wrapper {
  line-height: 65px;
}

.home_banner_info p {
  font-size: 20px;
  line-height: 32px;
  margin: 40px 0 32px;
}

.logo_marquee_sec {
  padding: 56px 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-container {
  animation: LeftToRightSlider 150s linear infinite;
}

@media (max-width: 1600px) {
  .home_hero_banner {
    padding: 130px 0 30px;
  }
}

@media (max-width: 1199px) {
  .home_banner_info h1 {
    font-size: 48px;
    line-height: 50px;
  }

  .home_banner_info p {
    margin: 32px 0;
  }

  .logo_marquee_sec {
    padding: 24px 0;
  }
}

@media (max-width: 991px) {
  .home_banner_info h1 {
    font-size: 40px;
    line-height: 43px;
  }

  .home_banner_info p {
    margin: 20px 0;
  }

  .home_banner_img {
    height: 100%;
    place-content: center;
  }
}

@media (max-width: 767px) {
  .home_banner_info {
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }

  .home_banner_area>.row {
    gap: 40px;
  }
}

/* Streamline_two */
.Streamline_two_area {
  /* padding: 80px 0 100px; */
  background: #f6f6f6;
}

.custome_spacing_sec {
  padding: 144px 0;
}

.custome_spacing_sec_top {
  padding-top: 144px;
}

.custome_spacing_sec_bottom {
  padding-bottom: 144px;
}

.custom_pera_sec h2 {
  font-size: 40px;
  line-height: 48px;
  color: #030303;
  font-weight: 400;
}

.custom_pera_sec h2 span {
  color: #00a5d7;
}

.box_pera_design {
  position: relative;
  z-index: 2;
  padding: 24px 68px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  height: 100%;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.box_pera_design:hover {
  transform: translateY(-10px);
}

.box_pera_design .box_prea_info .box_prea_heading {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 12px;
  letter-spacing: -0.18px;
  color: #030303;
}

.box_pera_design .box_prea_info .box_prea_detail {
  letter-spacing: -0.16px;
  margin: 0;
}

.Streamline_two_content>.row {
  gap: 60px;
}

.Streamline_two_list>.row {
  gap: 16px 0;
}

.custom_pera_sec p {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
}

@media (max-width: 1199px) {
  .box_pera_design {
    padding: 24px;
  }
}

@media (max-width: 991px) {
  .custom_pera_sec h2 {
    font-size: 36px;
    line-height: 43px;
    font-weight: 500;
  }

  .custome_spacing_sec {
    padding: 70px 0;
  }

  .custome_spacing_sec_top {
    padding-top: 70px;
  }

  .custome_spacing_sec_bottom {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .Streamline_two_area {
    padding: 40px 0;
  }

  .Streamline_two_content>.row {
    gap: 30px;
  }

  .custom_pera_sec h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .custome_spacing_sec {
    padding: 35px 0;
  }

  .custome_spacing_sec_top {
    padding-top: 35px;
  }

  .custome_spacing_sec_bottom {
    padding-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .custom_pera_sec h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

.Case_study_inner_box_content ul {
  color: rgba(0, 0, 0, 0.72);
}

.Case_study_inner_box_content ul li::marker {
  color: #00a5d7;
}

section.counter_success_wrapper {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

section.counter_success_wrapper::after,
.inner_success_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 426.504px;
  height: 426.504px;
  opacity: 0.6;
  filter: blur(145px);
  z-index: -1;
  border-radius: 426.504px;
  background: rgb(138, 66, 183);
}

/* Feture_Overview SEC */
.common_banner_content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.48px;
  margin: 0;
}

.common_banner_content h1 span {
  color: #00a5d7;
}

.common_banner_content p {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.24px;
  margin: 40px 0 64px;
}

.custom_pera_sec .custom_pera_small_heading {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #00a5d7;
  letter-spacing: -0.16px;
}

.custom_pera_sec .custom_pera_small_heading,
.Streamline_two_title_area h2 {
  margin-bottom: 24px;
}

.Streamline_two_title_area {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .common_banner_content h1 {
    font-size: 36px;
    line-height: 45px;
  }

  .common_banner_content p {
    margin: 32px 0;
  }
}

@media (max-width: 991px) {

  .common_banner_content h1 {
    font-size: 28px;
    line-height: 40px;
  }

  .common_banner_content p {
    margin: 20px 0;
  }

  .common_banner_content .btn-group {
    justify-content: center;
  }

  section.banner_wrapper.inner_banner .row {
    gap: 60px;
  }
}

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

@media (max-width: 991px) {
  .common_banner_content h1 {
    font-size: 24px;
    line-height: 33px;
  }

  .common_banner_content p {
    font-size: 18px;
    line-height: 24px;
  }
}

.casestudy_text_wrap.custom_pera_sec p {
  margin: 24px 0 48px;
}

.description {
  font-weight: 700;
}

/* Why_Stratocore */
.Why_Stratocore_V2_sec>.container-fluid {
  padding: 0 70px;
}

.Why_Stratocore_V2_area h2 {
  margin: 0 0 24px;
}

.Why_Stratocore_V2_titles_area.custom_pera_sec p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.24px;
  color: #030303;
  font-weight: 400;
}

.custome_benefites_upper_title.custom_pera_sec {
  max-width: 850px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .Why_Stratocore_V2_sec>.container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .Why_Stratocore_V2_sec>.container-fluid {
    padding: 0 30px;
  }

  .Why_Stratocore_V2_titles_area.custom_pera_sec p {
    font-size: 18px;
    line-height: 24px;
  }
}

.stats-container {
  margin: 0 auto;
}

.Why_Stratocore_V2_content>.row {
  gap: 24px 0;
}


/* accodian */
.accordion_button_inner_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

div#Featuresiconaccodian .accordion-header p {
  margin: 0;
  font-size: 18px;
  width: 100%;
}

.accordion-button::after {
  position: relative;
  top: -30px;
}

.accordion_button_inner_box>div {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 15px;
  align-items: center;
}

@media (max-width: 575px) {
  .Features_icon_accordian_area button.accordion-button {
    padding: 20px !important;
  }
}

@media (max-width: 400px) {
  .accordion-button::after {
    top: -45px;
  }
}

.Case_study_inner_box {
  background: transparent;
}

/* CF PAGE */
section#common_hero_logo_banner_sec {
  height: 100%;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
}

.common_hero_logo_banner {
  background-image: url(../images/banner-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 25%;
  place-content: center;
  padding: 150px 0 110px;
}

section#common_hero_logo_banner_sec .logo_marquee_sec {
  border: 0;
}

.Facility-title-head {
  max-width: 1000px;
  margin: 0 auto;
}

.btn_white {
  border-radius: 40px;
}

.btn_white:before {
  all: unset;
}

.btn_white:hover {
  color: var(--white);
  background: var(--secondary);
}

@media (max-width: 991px) {
  section#common_hero_logo_banner_sec {
    min-height: -webkit-fill-available;
  }
}

@media (max-width: 767px) {
  .common_hero_logo_banner_area>.row {
    gap: 40px;
    text-align: center;
  }
}

/* Companies page */
.all_patform_title_area p {
  font-size: 24px;
  line-height: 32px;
  margin-top: 24px;
}

.all_patform_heading_area .all_patform_heading {
  letter-spacing: -0.36px;
  font-weight: 500;
  margin-bottom: 5px;
}

.all_patform_heading_area .all_patform_heading_small {
  line-height: 32px;
  letter-spacing: -0.2px;
  font-weight: 500;
  margin: 0;
}

.all_patform_details p,
.all_patform_details ul {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #030303;
  letter-spacing: -0.2px;
}

.all_patform_content>.row,
.all_patform_list>.row {
  gap: 64px;
}

.all_patform_box>.row {
  gap: 24px 0;
}

.all_patform_details ul {
  list-style: disc;
  padding-left: 20px;
}

.all_patform_details ul li::marker {
  color: #00a5d7;
}

.all_patform_details {
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 16px;
}

@media (max-width: 991px) {

  .all_patform_content>.row,
  .all_patform_list>.row {
    gap: 35px;
  }

  .all_patform_title_area p {
    font-size: 20px;
    line-height: 30px;
    margin-top: 16px;
  }

  .all_patform_list>.row>div:nth-child(odd) .all_patform_box>.row {
    flex-direction: column-reverse;
  }
}

.box_pera_design .box_prea_info .box_prea_detail {
  font-size: 18px;
  letter-spacing: -0.18px;
  margin: 0;
}

.Case_study_inner_box_content .Case_study_inner_info>*,
.Case_study_inner_box_content ul {
  font-size: 18px;
}

.feature_box a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  padding: 16px;
  display: grid;
  grid-template-columns: max-content 1fr 16px;
}

/* research-infrastructure-page */
/* .home_banner_img img:hover {
  animation: float 3s ease-in-out infinite;
} */

.common_hero_banner {
  background-image: url(../images/banner-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 25%;
  padding: 160px 0 100px;
  min-height: 100vh;
  height: 100%;
  place-content: center;
}

@media (max-width: 991px) {
  .common_hero_banner {
    background-position: left top;
  }

  .common_hero_banner_area>.row {
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .common_hero_banner {
    padding: 110px 0 80px;
    min-height: auto;
  }
}

.stats_card_box {
  padding: 32px;
  height: 100%;
  box-shadow: -50px 46px 104px 0px rgba(27, 46, 104, 0.08);
  border-radius: 40px;
}

.stats_card_box>.percentage {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  display: block;
  margin-bottom: 16px;
}

.stats_card_box>.description {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--text_light);
}

.case_study_pera_area>.row {
  gap: 40px;
}

.testimonials_content_area>.row {
  gap: 60px;
}

.stats_list_area>.row,
.testimonials_box_list_area>.row {
  gap: 40px 0;
}

@media (max-width: 991px) {
  .testimonials_content_area>.row {
    gap: 40px;
  }
}

@media (max-width: 575px) {

  .stats_list_area>.row,
  .testimonials_box_list_area>.row {
    gap: 20px 0;
  }
}

/* .home_banner_img img:hover {
  animation: float 3s ease-in-out infinite;
} */

.common_hero_banner {
  background-image: url(../images/banner-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 25%;
  padding: 160px 0 100px;
  min-height: 100vh;
  height: 100%;
  place-content: center;
}

@media (max-width: 991px) {
  .common_hero_banner {
    background-position: left top;
  }

  .common_hero_banner_area>.row {
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .common_hero_banner {
    padding: 110px 0 80px;
    min-height: auto;
  }
}

.home_hero_banner,
.common_hero_banner,
.banner_wrapper {
  height: 614px;
  place-content: center;
}

@media (max-width: 991px) {

  .home_hero_banner,
  .common_hero_banner {
    min-height: max-content;
  }
}

.home_hero_banner,
.common_hero_banner {
  height: 614px;
  place-content: center;
  padding: 110px 0;
  min-height: unset;
  overflow: hidden;
}


@media (max-width: 991px) {

  .home_hero_banner,
  .common_hero_banner {
    min-height: max-content;
    padding-bottom: 40px;
  }
}


/* ABOUT */
.hero_slider_item {
  margin: 0 20px;
}

.hero_slider_list {
  margin: 0 -20px 0;
}

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

.hero_slider_area {
  padding: 110px 0;
  position: relative;
  height: 614px;
  place-content: center;
}

.hero_slider_list ul.slick-dots,
.hero_slider_list ul.slick-dots li,
.hero_slider_list ul.slick-dots li.active,
.hero_slider_list ul.slick-dots li button,
.hero_slider_list ul.slick-dots li button::before {
  all: unset;
}

.hero_slider_list ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  cursor: pointer;
}

.hero_slider_list ul.slick-dots li button {
  display: block;
  font-size: 0;
  width: 8px;
  height: 8px;
  padding: 4px;
  background: #e6f6fb;
  border-radius: 500px;
  transition: width 0.5s linear;
}

.hero_slider_list ul.slick-dots li.slick-active button {
  width: 30px;
  background: #00a5d7;
  transition: width 0.5s linear;
}

/* .hero_slider_list ul.slick-dots {
  bottom: -45px;
  } */

@media (max-width: 1440px) {
  .hero_slider_area {
    padding: 90px 0 0;
    height: 100%;
  }
}

@media (max-width: 575px) {
  .hero_slider_area {
    padding: 110px 0 40px;
  }
}

/* .member_detail_text p {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  min-height: 137px;
  height: 157px;
  overflow-y: scroll;
  overflow-x: hidden;
  text-overflow: ellipsis;
  scrollbar-width: none;
} */
.timeline_inner_wrapper ul li .year_wrap {
  display: inline-block;
}

.feature_box a {
  font-size: 18px;
  line-height: 24px;
  gap: 7px;
}

.feature_box {
  height: 100%;
}

.feature_list>.row>div {
  padding: 0 6px;
}

ul.Featuresiconaccodian_points li::marker {
  color: #00a5d7;
}


/* TESTIMONIELS PAGE */
.testimonials_page_slider_area {
  padding: 80px 0;
}

.sider_progress {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 80px auto 0;
  height: 10px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #e5ebed;
  background-image: linear-gradient(to right, #00a5d7, #00a5d7);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.4s ease-in-out;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.testimonials_page_slider_list .slick-slide {
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 8px;
}

.test_slider_arrows {
  border: 0;
  box-shadow: none;
  width: 48px;
  height: 48px;
}

.test_slider_arrows::before {
  all: unset;
}

@media (max-width: 575px) {
  .testimonials_page_slider_list {
    margin: 0 40px;
  }

  .sider_progress {
    margin-top: 30px;
  }

  .testimonials_page_slider_area {
    padding: 50px 0;
  }

  .banner_wrapper {
    /* height: 450px; */
    padding: 80px 0;
    background-position: 13% center;
  }
}

/* LINK PAGE */
ul.link_list_area {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

ul.link_list_area>li {
  display: grid;
  grid-template-columns: max-content 1fr 1fr max-content;
  gap: 24px;
  background: #e6f6fb;
  padding: 16px 24px 16px 16px;
  border-radius: 12px;
  align-items: center;
}

.link-wrap .search-bar select:focus-visible {
  outline: none;
}

.link_title .upper_title,
.link_catg .link_catg_title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.16px;
}

.link_title .bottom_title {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: #030303;
}

.link_btn_area a {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

@media (max-width: 575px) {
  ul.link_list_area>li {
    grid-template-columns: max-content 1fr;
  }
}

/* webinars CSS */
.webinars_img_area .set_default_lbl {
  position: absolute;
  top: 16px;
  right: 16px;
}

.Why_Stratocore_V2_area>.row {
  gap: 64px;
}

.box_pera_design .box_prea_info .box_prea_heading {
  font-size: 22px;
  line-height: 25px;
  font-weight: 500;
  color: #000;
}

.box_pera_design .box_prea_info .box_prea_detail {
  color: #000;
}

.all_patform_details p,
.all_patform_details ul {
  font-size: 18px;
  font-weight: 500;
}

.hero_slider_area {
  height: 700px;
}

.hero_slider_content {
  padding-top: 60px;
}

.all_patform_title_area p {
  font-size: 18px;
  font-weight: 500;
}


/* TEAM PAGE */
.member_detail_text ul {
  margin: 0;
}

/* EVENT PAGE */
.events_box.career_box {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
}

.event_box_img img {
  height: 100%;
}

@media (max-width: 575px) {
  .events_box.career_box {
    grid-template-columns: 1fr;
  }
}

/* Conatct page */
.contactpage_form_content .form-check-input {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 0, 0, 0.24);
  border-radius: 4px;
}

.contactpage_form_content .form-check {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #05160f;
  letter-spacing: -0.14px;
}

.contactpage_form_content .form-check label.form-check-label {
  padding: 7px 0;
}

.contactus_dasktop_wrapper {
  height: auto;
}

.contactpage_form_title_area h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.48px;
}

.contactpage_form_content .form-check-input:focus {
  box-shadow: none;
}

.contactpage_form_content .form-check-input:checked {
  background-color: #030303;
}

@media (max-width: 991px) {
  .contact_boxes_sec {
    background-color: #fff;
  }
}

/* Case-study CSS */
.blog_wrapper .card-img-two {
  height: 328px;
}

.case_study_pagenation_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.case_study_pagenation_list .case_study_pagenation_item .case_study_pagenation {
  font-size: 18px;
  font-family: var(--secondary_font_family);
  line-height: 16px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.case_study_pagenation_item.active .case_study_pagenation,
.case_study_pagenation_item .case_study_pagenation:hover {
  background: #00a5d7;
  color: #fff;
}

/* body-setting */
.website_content {
  overflow-x: hidden;
}

/* BANNER_HOME */
@media (max-width: 575px) {

  .cd-headline.slide span {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .home_banner_info h1 {
    font-size: 24px;
    line-height: 36px;
  }

  .Discover_lisiting_inner_box .lisiting_inner_box_info ul.row>li {
    padding: 0 8px;
  }

  .Discover_lisiting_inner_box .lisiting_inner_box_info a {
    font-size: 14px;
    line-height: 18px;
    height: 100%;
    padding: 10px;
  }

  .hero_slider_content {
    padding-top: 0;
  }
}


/* PS */

.custome_benefites_problem,
.custome_benefites_solution {
  max-width: 528px;
  width: 100%;
}

.custome_benefites_points_dasktop_inner {
  align-items: stretch;
}

.custome_benefites_problem_box {
  height: 100%;
  width: 100%;
}

.custome_benefites_icons {
  place-content: center;
  text-align: center;
}

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

.pb_upper_titles>span {
  display: block;
  max-width: 528px;
  width: 100%;
}

@media (max-width: 850px) {
  .pb_upper_titles>span {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .pb_upper_titles {
    display: none;
  }

  .custome_benefites_points_dasktop_inner {
    align-items: center;
  }
}

.timeline_inner_wrapper ul li:nth-child(odd) .year_wrap h2,
.timeline_inner_wrapper ul li:nth-child(odd) .year_wrap h3 {
  text-align: right;
}

@media (max-width: 575px) {
  .timeline_inner_wrapper ul li:nth-child(odd) .year_wrap h2,
  .timeline_inner_wrapper ul li:nth-child(odd) .year_wrap h3 {
    text-align: left;
  }
}

.testimonial_card_box_left_trake .testimonial-container {
  animation: RightToLeftSlider 90s linear infinite;
}

.contactpage_form_content .form-check-input {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 0, 0, 0.24) !important;
  border-radius: 4px !important;
  background: transparent !important;
}

.contactpage_form_content .form-check-input:checked {
  background-color: #030303 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3E%3C/svg%3E") !important;

}

@media (max-width: 991px) {
  header {
    padding: 15px 0;
    background: #fff;
  }

  header .navbar .navbar-collapse {
    box-shadow: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: scroll;
  }

}

/* GIF VIDEO CSS */
.gif-hover-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.gif-hover-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  transition: z-index 0.5s ease;
}

.testimoanial_box .testimonial_img_wrapper:hover .gif-hover-container {
  z-index: 0;
  transition: z-index 0.5s ease;
}

.gif-hover-container img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.gif-animated {
  display: none;
}

.gif-hover-container:hover .gif-static {
  display: none;
}

.testimoanial_box .testimonial_img_wrapper:hover .gif-hover-container .gif-animated {
  display: block;
}

.why-stratocore-block>p {
  font-size: 18px;
}

body#Events section.banner_wrapper,
body#Webinars section.banner_wrapper,
body#CaseStudies section.banner_wrapper,
body#UsefulLinks section.banner_wrapper,
body#UsefulLinks section.banner_wrapper,
body#Team section.banner_wrapper,
body#Testimonials section.banner_wrapper {
  padding: 0;
  height: 514px;
  padding-top: 60px;
}

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

.accordion-button::after {
  top: 10px;
}

body#Events section.banner_wrapper p {
  margin-bottom: 15px;
}
.pipedriveWebForms{
  display: flex;
  justify-content: center;
}

/* LEGAL-TREMS CSS */
section.legal_term_wrapper .banner_text_legal_term {
  max-width: 75% !important;
}
.legal_term_tabs_area {
  max-width: 800px;
  margin: 0 auto 40px;
}
.legal_term_tabs_area .nav-tabs {
  border: 0;
  gap: 12px;
  justify-content: center;
}
.legal_term_tabs_area .nav-tabs li button {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #030303;
  background: #fff;
  padding: 8px 24px;
  border: 1px solid #aaa;
  border-radius: 999px;
  margin-bottom: 0;
  transition: 0.5s ease;
}
.legal_term_tabs_area .nav-tabs li button.nav-link.active,
.legal_term_tabs_area .nav-tabs .nav-link:hover {
  font-weight: 700;
  color: #fff;
  background: #33b7df;
  border-color: #33b7df;
  transition: 0.5s ease;
}
.legal_term_tabs_area .nav-tabs .nav-link:focus {
  border: 1px solid #aaa;
}
.legal_terms .legal_terms_tabs_inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 32px 48px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 50px 46px 104px 0px rgba(27, 46, 104, 0.1);
}
.legal_terms .legal_terms_tabs_inner h5 {
  font-weight: 700;
  line-height: 33px;
  color: #030303;
  margin: 0;
}
.legal_terms .legal_terms_tabs_inner p {
  color: #000;
  font-family: "Inter";
  margin: 0;
}
@media (max-width: 1199px) {
  .legal_terms .legal_terms_tabs_inner {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
}
@media (max-width: 850px) {
  .legal_term_tabs_area {
    margin: 0 auto 40px;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .legal_term_tabs_area .nav-tabs {
    width: 800px;
    flex-wrap: nowrap;
  }
}
@media (max-width: 575px) {
  section.legal_term_wrapper .banner_text_legal_term {
    max-width: 95% !important;
  }
  .legal_term_tabs_area {
    margin: 0 auto 20px 12px;
  }
  .legal_term_tabs_area .nav-tabs {
    gap: 8px;
    justify-content: start;
    width: 550px;
  }
  .legal_term_tabs_area .nav-tabs li button {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    padding: 10px 16px;
  }
  .legal_terms .legal_terms_tabs_inner {
    grid-template-columns: 100%;
    gap: 16px;
    padding: 32px 24px;
  }
  .legal_terms .legal_terms_tabs_inner h5 {
    font-size: 20px;
    line-height: 30px;
  }
}


body#WhyStratocore .Why_Stratocore_V2_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
body#WhyStratocore .Why_Stratocore_V2_box>img {
  height: 48px;
}
body#WhyStratocore .Why_Stratocore_V2_box ul.Featuresiconaccodian_points {
  text-align: left;
  font-size: 16px;
}

@media (max-width: 991px) {
  body#ContactUs section.banner_wrapper {
    height: auto;
  }
  body#ContactUs section.banner_wrapper.inner_banner .row {
    gap: 0;
  }
}
@media (max-width: 575px) {
  body#Events section.banner_wrapper, body#Webinars section.banner_wrapper, body#CaseStudies section.banner_wrapper, body#UsefulLinks section.banner_wrapper, body#UsefulLinks section.banner_wrapper, body#Team section.banner_wrapper, body#Testimonials section.banner_wrapper {
    height: 350px;
    padding-top: 100px;
  }
}

#cookie-notice {
  display: none;
}

.custome_benefites_problem .custome_benefites_problem_box>h2 {
  color: var(--red);
}
.our_testimonial_card_box:hover .testimonial-container {
  animation-play-state: paused;
}

.why-stratocore-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  max-width: -webkit-fill-available;
  height: 100%;
}
.why-stratocore-block p {
  margin: 0;
  font-size: 18px;
}
.why-stratocore-img {
  place-content: center;
}
.why-stratocore-block-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.why-stratocore-block h6 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 40px;
}
.why-stratocore-block-img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

@media (max-width: 1199px) {
  .why-stratocore-block {
    min-height: 200px;
  }
  .why-stratocore-block-inner-content > .row {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .why-stratocore-block {
    min-height: auto;
  }
  .why-stratocore-block h6 {
    margin: 0;
  }
}
footer .footer_newsletter form .form-group .btn_primary:hover {
  background: var(--primary);
}
.contact_boxes_content>.row {
  gap: 30px 0;
}
.contact_boxes {
  display: flex;
  gap: 15px;
  align-items: center;
}
.contact_loaction_area>.row {
  gap: 40px 0;
}

@media (max-width: 991px) {
  body#ContactUs section.banner_wrapper.inner_banner .row {
    gap: 30px;
  }
  .contact_boxes_content {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  body#ContactUs .banner_text_contact {
    padding: 0;
  }
}

.popup-content {
  width: 100%;
  max-width: 900px;
  padding: 0;
  border-radius: 0;
}

.close-btn {
  color: #fff;
}

/* video-auto play */
.play-btn {
  z-index: 1;
}
.video-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.hover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* Hidden by default */
}

.video-container:hover .hover-video {
  display: block; /* Show video on hover */
}
button.video_btn {
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
}
.testimoanial_box_video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  display: none;
  border-radius: 12px;
}
.testimoanial_box_video.active {
  display: block;
  z-index: 100;
}
.testimoanial_box_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box_prea_img_area {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  place-content: center;
}
body#Features .Streamline_two_list .box_prea_img_area {
  width: 48px;
  height: 48px;
}
@media (max-width: 575px) {
  .common_banner_content h1 {
    font-size: 34px;
    line-height: 44px;
  }
}

@media (max-width: 575px) {
  .cd-headline.slide .cd-words-wrapper {
    overflow-x: visible;
    overflow-y: clip;
  }

  .cd-words-wrapper b {
    white-space: pre-wrap;
  }
}

@media (max-width: 991px) {
  .map_content_area {
    padding-top: 80px;
  }
}
span.timeline_upper_heading {
  font-size: 20px;
  line-height: 26px;
}
.timeline_inner_wrapper ul li .timeline_text_wrap h4 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
header .navbar .navbar-collapse .navbar-nav .nav-item.has_children {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .navbar .navbar-collapse .navbar-nav .nav-item.has_children .nav-link:before {
  all: unset;
}
button.dropdown-toggle-btn {
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 7px;
  background: url(../images/down-arrow.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  transition: 0.5s ease;
  border: 0;
  padding: 0;
  margin-bottom: -7px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0 !important;
}

header .navbar .navbar-collapse .navbar-nav .nav-item {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  header .navbar .navbar-collapse {
    margin-left: 15px;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item {
    gap: 6px;
    padding: 0 8px;
  }
}
@media (max-width: 991px) {
  header .navbar .navbar-collapse {
    margin-left: 0;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item {
    padding: 14px 15px;
  }
}
.testimoanial_box .testimonial_text_wrap,
.testimoanial_box .testimonial_text_wrap:before {
  all: unset;
}
.testimoanial_box .testimonial_text_wrap {
  position: absolute;
  z-index: 5;
  bottom: 0;
}

.testimoanial_box .testimonial_text_wrap .testi_user_wrap {
  position: relative;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  align-items: flex-start;
  font-family: var(--primary_font_family);
  color: #fff;
}

.testimoanial_box .testimonial_text_wrap .testi_user_wrap .testi_text {
  width: -webkit-fill-available;
}

.testimoanial_box
.testimonial_text_wrap
.testi_user_wrap
.testimonial_text_upper_title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
  font-family: var(--primary_font_family);
  margin: 0;
}

.testimoanial_box
.testimonial_text_wrap
.testi_user_wrap
.testimonial_text_upper_info {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.14px;
  color: #fff;
}
.testimoanial_box .testimonial_text_wrap .testi_user_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: -1;
}
.testimoanial_box:hover .video-container {
  z-index: 6;
}
.testimoanial_box .testimonial_text_wrap .testi_user_wrap .testi_text span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: -0.14px;
}
.testimoanial_box .testimonial_text_wrap .testi_user_wrap .testi_text > p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.12px;
}
.video-container::after {
  content: "";

  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 106px;
  height: 41px;
  z-index: 0;
}
.testimoanial_box:hover .video-container::after {
  z-index: 2;
  background-image: url(../images/play_img.png);
}
