body {
  font-family: "Poppins", "sans-serif";
  background: #fff;
  margin: 0;
  padding: 0;
  position: relative;
}

html:has(body .case-study-content){
  margin-top: 65px !important;
}

body .case-study-content *{
    font-family: 'Poppins' !important;
}

.case-study-content .cs_detail_link{
  color: #4D77D2;
  font-weight: 600;
}

.case-study-content .cs_detail_link:hover{
  color: #2f4d8f;
}

.cs_detail_heading_wrapper {
  color: #333333;
  position: relative;
  margin: 0;
  display: inline-block;
}
.cs_detail_heading_wrapper::after {
  content: " ";
  background-color: #ffecc0;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  z-index: -1;
  animation: zoomInOut 2.2s infinite alternate ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media only screen and (max-width: 1280px){
  .cs_detail_heading_wrapper::after{
    top: -3px;
    animation: zoomInOut 1.5s infinite alternate ease-in-out;
  }

  @keyframes zoomInOut {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
}

@media only screen and (max-width: 767px){
  .cs_detail_heading_wrapper::after{
    left: -5px;
    top: -8px;
  }

  @keyframes zoomInOut {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
}

.cs_detail_paragraph_font {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_paragraph_font {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_paragraph_font {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_paragraph_font {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_paragraph_font {
    font-size: 10px;
  }
}

.cs_detail_section_heading_font {
  font-weight: 600;
  font-size: 40px;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_section_heading_font {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_section_heading_font {
    font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_section_heading_font {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_section_heading_font {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .cs_detail_section_heading_font {
    font-size: 20px;
  }
}

.cs_detail_cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: auto;
  padding: 10px 20px;
  border-radius: 50px;
  border: 0;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1280px) {
  .cs_detail_cta_btn {
    padding: 8px 15px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_btn {
    padding: 5px 12px;
  }
}
.cs_detail_cta_btn img {
  width: 30px;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .cs_detail_cta_btn img {
    width: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_btn img {
    width: 20px;
  }
}
.cs_detail_cta_btn span {
  font-weight: 500;
  font-size: 24px;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_cta_btn span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_cta_btn span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_btn span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_cta_btn span {
    font-size: 12px;
  }
}

.cs_detail_hero_section {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: #000;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .cs_detail_hero_section {
    height: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section {
    flex-direction: column;
    justify-content: end;
  }
}
.cs_detail_hero_section .cs_detail_container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -50px;
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section .cs_detail_container {
    top: 0;
    margin-top: unset;
    background-color: #000;
    padding-bottom: 10px;
  }
}
.cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content {
    width: calc(50% - 50px);
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content {
    width: 100%;
    row-gap: 0;
    padding-top: 12px;
  }
}
.cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content .logo_image {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content .logo_image {
    width: 100px;
    margin-bottom: 10px;
  }
}
.cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content .logo_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content h1 {
  font-weight: 600;
  font-size: 30px;
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content h1 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content .cs_detail_paragraph_font {
  color: #dbeeff;
  margin-bottom: 15px;
  font-size: 18px;
}

@media only screen and (max-width: 1440px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content .cs_detail_paragraph_font {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content .cs_detail_paragraph_font {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content .cs_detail_paragraph_font {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content .cs_detail_paragraph_font {
    font-size: 10px;
  }
}

.cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content button {
  width: fit-content;
  height: 46px;
  background-color: #5e798d;
  border: 0;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding: 5px 15px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  background-image: linear-gradient(to right, #5e798d, #343741, #282323);
}
@media only screen and (max-width: 1440px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content button {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content button {
    font-size: 12px;
    height: 40px;
  }
}
.cs_detail_hero_section .cs_detail_container .cs_detail_hero_section_content button:hover {
  background-color: rgba(255, 255, 255, 0.151);
  color: #fff;
  background-image: linear-gradient(45deg, #00000061, #4e4e4e);
  transform: scale(1.02);
}
.cs_detail_hero_section .cs_details_hero_bg_img {
  width: 50%;
  height: 100%;
  background-blend-mode: normal, darken;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .cs_detail_hero_section .cs_details_hero_bg_img {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_hero_section .cs_details_hero_bg_img {
    width: 100%;
    height: 50%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 22.5%, #000000 100%), url(../../../Technource/asset/images/case-study/mvv-hero-img.png);
    background-blend-mode: normal, darken;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.cs_details_business_stats {
  display: flex;
  align-items: stretch;
  gap: 2px;
  background-color: #aebcc6;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .cs_details_business_stats {
    flex-wrap: wrap;
    max-width: 650px;
    position: unset;
    transform: none;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .cs_details_business_stats {
    max-width: 350px;
  }
}
.cs_details_business_stats .stats_box {
  padding: 15px 30px;
  background-color: #5e798d;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .cs_details_business_stats .stats_box {
    width: 40%;
  }
}
.cs_details_business_stats .stats_box .stats_value {
  font-weight: 600;
  font-size: 26px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .cs_details_business_stats .stats_box .stats_value {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_details_business_stats .stats_box .stats_value {
    font-size: 20px;
  }
}
.cs_details_business_stats .stats_box p {
  font-weight: 300;
  font-size: 12px;
  color: #fff;
}

.cs_details_project_snapshot_wrapper {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .cs_details_project_snapshot_wrapper {
    margin-top: 70px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .cs_details_project_snapshot_wrapper {
    row-gap: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .cs_details_project_snapshot_wrapper {
    width: fit-content;
  }
}
.cs_details_project_snapshot_wrapper .cs_details_project_snapshot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 110px;
}
@media only screen and (max-width: 991px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot {
    flex-direction: column;
    height: unset;
    align-items: start;
  }
}
.cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box {
  padding: 20px;
  border-left: 1px solid #c7c7c7;
  width: 25%;
  min-height: -webkit-fill-available;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box {
    width: 100%;
  }
}

.project_snapshot_box:hover{
  transform: scale(1.1);
}

.cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box .project_snapshot_subheading {
  font-weight: 600;
  font-size: 24px;
  color: #333333;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1440px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box .project_snapshot_subheading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box .project_snapshot_subheading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box .project_snapshot_subheading {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box .project_snapshot_subheading {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .cs_details_project_snapshot_wrapper .cs_details_project_snapshot .project_snapshot_box .project_snapshot_subheading {
    font-size: 12px;
  }
}

.cs_details_client_overview {
  align-items: center;
  margin: 70px auto;
}
.cs_details_client_overview .client_overview_content .cs_detail_heading_wrapper {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .cs_details_client_overview .client_overview_content .cs_detail_heading_wrapper {
    margin-bottom: 30px;
  }
}
.cs_details_client_overview .client_overview_image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

.cs_detail_key_features {
  background-color: #343741;
  padding: 20px;
  border-radius: 30px;
  margin: auto;
  align-items: center;
  min-height: 500px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cs_detail_key_features {
    row-gap: 40px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 575px) {
  .cs_detail_key_features {
    border-radius: 15px;
    padding: 20px 12px;
  }
}
.cs_detail_key_features .key_features_heading {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  width: fit-content;
  border-radius: 15px;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media only screen and (max-width: 1024px) {
  .cs_detail_key_features .key_features_heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_key_features .key_features_heading {
    position: unset;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_key_features .key_features_heading {
    font-size: 18px;
  }
}
.cs_detail_key_features .key_feature_image_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

@media only screen and (max-width: 767px){
  .cs_detail_key_features .key_feature_image_wrapper{
    min-height: unset;
  }
}

.cs_detail_key_features .key_feature_image_wrapper .key_feature_image {
  width: 70%;
  height: auto;
  margin: 40px auto 0;
  padding: 20px 0;
}
@media only screen and (max-width: 991px) {
  .cs_detail_key_features .key_feature_image_wrapper .key_feature_image {
    margin: 40px auto 40px;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_key_features .key_feature_image_wrapper .key_feature_image {
    width: 90%;
    margin: 30px auto 30px;
  }
}
.cs_detail_key_features .key_feature_image_wrapper .key_feature_image img {
  width: 100%;
  height: auto;
  min-height: 450px;
  max-height: 450px;
  object-fit: contain;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  opacity: 1;
  transform: scale(1);
}

@media only screen and (max-width: 767px){
  .cs_detail_key_features .key_feature_image_wrapper .key_feature_image img{
    max-height: 300px;
    min-height: 300px;
  }
}

.cs_detail_key_features .key_feature_image_wrapper .key_feature_image img.fade-zoom-out {
  opacity: 0;
  transform: scale(0.5);
}

.cs_detail_key_features .key_feature_image_wrapper .key_feature_image img.fade-zoom-in {
  opacity: 1;
  transform: scale(1);
}

.cs_detail_key_features .key_feature_image_wrapper .key_feature_image img.initial-zoom-in {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomFadeIn 0.5s forwards ease-in-out;
}

@keyframes zoomFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cs_detail_key_features .key_feature_accordion .accordion {
  background-color: transparent;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item {
  border-radius: 15px;
  margin-bottom: 12px;
  background-color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.cs_detail_key_features .key_feature_accordion .accordion .accordion-item:hover{
  transform: scale(1.02);
}

.cs_detail_key_features .key_feature_accordion .accordion .accordion-item:has(.accordion-button.collapsed) {
  background-color: transparent;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item:has(.accordion-button.collapsed) .accordion-button {
  color: #fff;
  padding: 16px 20px;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item:has(.accordion-button.collapsed) .accordion-button::after {
  background-image: url(https://www.technource.com/wp-content/uploads/2025/09/accordion_plus_img.webp);
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 500;
  font-size: 20px;
  color: #333;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  padding-bottom: 5px;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
  }

  .cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button[aria-expanded="false"]:after{
    content: "";
  }
  
  .cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button[aria-expanded="true"]:after{
    content: "";
    left: 5px;
  }
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  background-color: transparent;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: transparent;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(https://www.technource.com/wp-content/uploads/2025/09/accordion_minus_img.webp);
  background-repeat: no-repeat;
  background-size: 25px;
  width: 25px;
  height: 25px;
  transform: unset;
  margin-left: auto;
  top: 0;
  right: 0;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-collapse .accordion-body {
  padding-top: 0;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-collapse .accordion-body .accordion_content_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-collapse .accordion-body .accordion_content_wrapper .key_feature_bullet {
  width: 15px;
  height: auto;
  margin-top: 2px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px){
  .cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-collapse .accordion-body .accordion_content_wrapper .key_feature_bullet{
  align-items: flex-start;
  }
}

.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-collapse .accordion-body .accordion_content_wrapper .key_feature_bullet img {
  width: 100%;
  height: auto;
}
.cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-collapse .accordion-body .accordion_content_wrapper p {
  font-weight: 400;
  font-size: 16px;
  color: #333;
  margin: 0;
  word-wrap: break-word;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-collapse .accordion-body .accordion_content_wrapper p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_key_features .key_feature_accordion .accordion .accordion-item .accordion-collapse .accordion-body .accordion_content_wrapper p {
    font-size: 12px;
  }
}

.cs_detail_cta_wrapper {
  filter: drop-shadow(0px 20px 24px rgba(0, 0, 0, 0.25));
}
@media only screen and (max-width: 575px) {
  .cs_detail_cta_wrapper {
    padding: 0 12px;
  }
}
.cs_detail_cta_wrapper .cs_detail_cta_content {
  background-color: #317864;
  padding: 40px 55px;
  text-align: center;
  margin-top: 70px;
  color: #fff;
  border-radius: 50px;
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_wrapper .cs_detail_cta_content {
    padding: 25px 35px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_cta_wrapper .cs_detail_cta_content {
    border-radius: 25px 25px 0 0;
  }
}
.cs_detail_cta_wrapper .cs_detail_cta_content .cs_detail_section_heading_font {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_wrapper .cs_detail_cta_content .cs_detail_section_heading_font {
    font-size: 20px;
  }
}
.cs_detail_cta_wrapper .cs_detail_cta_content .cs_detail_paragraph_font {
  margin-bottom: 30px;
}
.cs_detail_cta_wrapper .cs_detail_cta_content .cs_detail_cta_btn:hover {
  filter: sepia(0.3);
}
.cs_detail_cta_wrapper .cs_detail_cta_content .cs_detail_cta_btn span {
  color: #317864;
}
.cs_detail_cta_wrapper .cs_detail_cta_stats {
  max-width: 80%;
  margin: auto;
  background-color: #317864;
  color: #fff;
  border-radius: 0 0 50px 50px;
  padding: 0 15px 15px 15px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_wrapper .cs_detail_cta_stats {
    border-radius: 0 0 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_cta_wrapper .cs_detail_cta_stats {
    row-gap: 20px;
    max-width: unset;
    border-radius: 0 0 25px 25px;
    padding: 0 15px 25px 15px;
  }
}
.cs_detail_cta_wrapper .cs_detail_cta_stats .cta_stats_content {
  text-align: center;
  border-right: 1px solid #bfbfbf;
}

.cs_detail_cta_wrapper .cs_detail_cta_stats .cta_stats_content:last-of-type{
  border-right: 0;
}

@media only screen and (max-width: 767px) {
  .cs_detail_cta_wrapper .cs_detail_cta_stats .cta_stats_content:nth-child(2) {
    border: 0;
  }
}
.cs_detail_cta_wrapper .cs_detail_cta_stats .cta_stats_content:last-child {
  border: 0;
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_wrapper .cs_detail_cta_stats .cta_stats_content .cs_detail_section_heading_font {
    font-size: 22px;
  }
}
.cs_detail_cta_wrapper .cs_detail_cta_stats::after {
  content: "";
  background-image: url(../../../Technource/asset/images/case-study/cta_stats_rounded_corner_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  display: inline-block;
  position: absolute;
  right: -34px;
  top: 0;
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_wrapper .cs_detail_cta_stats::after {
    width: 24px;
    height: 24px;
    right: -24px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_cta_wrapper .cs_detail_cta_stats::after {
    content: unset;
  }
}
.cs_detail_cta_wrapper .cs_detail_cta_stats::before {
  content: "";
  background-image: url(../../../Technource/asset/images/case-study/cta_stats_rounded_corner_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  display: inline-block;
  position: absolute;
  left: -34px;
  top: 0;
  transform: scaleX(-1);
}
@media only screen and (max-width: 991px) {
  .cs_detail_cta_wrapper .cs_detail_cta_stats::before {
    width: 24px;
    height: 24px;
    left: -24px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_cta_wrapper .cs_detail_cta_stats::before {
    content: unset;
  }
}

.cs_detail_project_goal {
  margin: 70px auto;
}
.cs_detail_project_goal .cs_detail_heading_wrapper {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1280px) {
  .cs_detail_project_goal .cs_detail_heading_wrapper {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_project_goal .cs_detail_heading_wrapper {
    margin-bottom: 30px;
  }
}
.cs_detail_project_goal .project_goal_image {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .cs_detail_project_goal .project_goal_image {
    height: 250px;
  }
}
.cs_detail_project_goal .project_goal_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
}
@media only screen and (max-width: 991px) {
  .cs_detail_project_goal .project_goal_image img{
    border-radius: 20px;
  }
}
.cs_detail_project_goal .project_goal_content_wrapper {
  padding: 28px 30px;
  border-radius: 30px;
  height: 100%;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1280px) {
  .cs_detail_project_goal .project_goal_content_wrapper {
    padding: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_project_goal .project_goal_content_wrapper {
    padding: 20px;
    border-radius: 20px;
  }
}
  
.cs_detail_project_goal .project_goal_content_wrapper:hover{
  transform: scale(1.02) translate(-5px,-5px);
  box-shadow: 4px 4px 10px 0px rgba(51, 51, 51, 0.15);
}

.cs_detail_project_goal .project_goal_content_wrapper.green {
  background-color: #f1ffed;
}
.cs_detail_project_goal .project_goal_content_wrapper.yellow {
  background-color: #fff9e7;
}
.cs_detail_project_goal .project_goal_content_wrapper.blue {
  background-color: #edf5ff;
}
.cs_detail_project_goal .project_goal_content_wrapper.purple {
  background-color: #fbf0ff;
}
.cs_detail_project_goal .project_goal_content_wrapper .project_goal_subheading {
  font-weight: 600;
  font-size: 26px;
  color: #333;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_project_goal .project_goal_content_wrapper .project_goal_subheading {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_project_goal .project_goal_content_wrapper .project_goal_subheading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs_detail_project_goal .project_goal_content_wrapper .project_goal_subheading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_project_goal .project_goal_content_wrapper .project_goal_subheading {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_project_goal .project_goal_content_wrapper .project_goal_subheading {
    font-size: 14px;
  }
}
.cs_detail_project_goal .project_goal_content_wrapper .cs_detail_paragraph_font {
  color: #555;
}

.cs_detail_challenges_solution_wrapper .cs_detail_heading_wrapper {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1280px) {
  .cs_detail_challenges_solution_wrapper .cs_detail_heading_wrapper {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .cs_detail_heading_wrapper {
    margin-bottom: 30px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item {
  padding: 30px;
  border-radius: 60px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1440px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item {
    position: sticky;
    position: -webkit-sticky;
    top: 84px;
    margin-bottom: unset;
  }
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item:nth-child(2) {
    top: 100px;
  }
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item:nth-child(3) {
    top: 115px;
  }
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item:nth-child(4) {
    top: 130px;
  }
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item:nth-child(5) {
    top: 145px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item {
    border-radius: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item {
    padding: 20px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item.bg_green {
  background-color: #acffd1;
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item.bg_pink {
  background-color: #efbfff;
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item.bg_cream {
  background-color: #ffe7cc;
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item.bg_violet {
  background-color: #bca3fc;
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item.bg_blue {
  background-color: #cce2ff;
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper {
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper {
    margin-bottom: 20px;
    gap: 10px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_number {
  font-weight: 400;
  font-size: 60px;
  color: #555555;
  background-color: rgba(255, 255, 255, 0.6);
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_number {
    font-size: 54px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_number {
    font-size: 50px;
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_number {
    font-size: 44px;
    width: 90px;
    height: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_number {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_number {
    font-size: 22px;
    width: 65px;
    height: 65px;
    border-radius: 25px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_item_title {
  font-weight: 500;
  font-size: 48px;
  color: #444444;
  line-height: 1.2;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_item_title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_item_title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_item_title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_item_title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_top .challenges_solution_item_title_wrapper .challenges_solution_item_title {
    font-size: 17px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 1080px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom {
    gap: 20px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content {
    border-radius: 20px;
  }
}

@keyframes boxanim {
      0% {
        box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.5);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(51, 51, 51, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(51, 51, 51, 0);
      }
    }

.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content:hover{
  animation: boxanim 1.4s infinite;
  transform: scale(1.01);
}

.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .challenges_solution_subheading {
  font-weight: 500;
  font-size: 30px;
  color: #444444;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1280px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .challenges_solution_subheading {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .challenges_solution_subheading {
    font-size: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .challenges_solution_subheading {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .challenges_solution_subheading {
    font-size: 18px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .cs_detail_paragraph_font {
  font-size: 16px;
  color: #555;
}
@media only screen and (max-width: 1024px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .cs_detail_paragraph_font {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .cs_detail_paragraph_font {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_content .cs_detail_paragraph_font {
    font-size: 10px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_image_wrapper {
  border: 20px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  grid-row: span 2;
}
@media only screen and (max-width: 1080px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_image_wrapper {
    min-height: 400px;
    max-height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_image_wrapper {
    min-height: 250px;
    max-height: 250px;
  }
}
.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_image_wrapper .challenges_solution_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.cs_detail_challenges_solution_wrapper .challenges_solution_list .challenges_solution_item .challenges_solution_bottom .challenges_solution_image_wrapper .challenges_solution_image img{
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.cs_detail_tech_stack {
  margin: 70px auto;
}
.cs_detail_tech_stack .cs_detail_heading_wrapper {
  width: fit-content;
  margin: auto;
}
.cs_detail_tech_stack .tech_stack_tabs_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  row-gap: 15px;
  margin: 40px 0;
  border: 0;
}
@media only screen and (max-width: 767px) {
  .cs_detail_tech_stack .tech_stack_tabs_wrapper {
    margin: 30px 0;
  }
}
.cs_detail_tech_stack .tech_stack_tabs_wrapper .tech_stack_tabs_btn {
  padding: 10px 20px;
  border: 1px solid #9c9c9c;
  border-radius: 50px;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  color: #9c9c9c;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .cs_detail_tech_stack .tech_stack_tabs_wrapper .tech_stack_tabs_btn {
    padding: 5px 15px;
    font-size: 14px;
  }
}
.cs_detail_tech_stack .tech_stack_tabs_wrapper .tech_stack_tabs_btn:hover {
  background-color: #546978;
  color: #fff;
  border-color: #546978;
}
.cs_detail_tech_stack .tech_stack_tabs_wrapper .tech_stack_tabs_btn.active {
  background-color: #546978;
  color: #fff;
  border-color: #546978;
}
.cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content {
  padding: 30px 25px;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  max-width: 170px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 575px) {
  .cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content {
    max-width: calc(33.3333333333% - 16px);
    padding: 10px;
  }
}

.cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content:hover{
  transform: scale(1.02);
  box-shadow: 0px 0px 5px 1px rgba(51, 51, 51, 0.15);
}

.cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_stack_tab_logo_img {
  width: 70px;
  height: 70px;
}
@media only screen and (max-width: 575px) {
  .cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_stack_tab_logo_img {
    width: 55px;
    height: 55px;
  }
}
.cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_stack_tab_logo_img img {
  width: 100%;
  height: auto;
}
.cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_stack_tab_text {
  font-weight: 500;
  font-size: 16px;
  color: #3b3c3d;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_stack_tab_text {
    font-size: 12px;
  }
}

.cs_detail_tech_stack .tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_stack_link_wrapper{
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.cs_detail_live_experience .cs_detail_live_experience_heading {
  font-weight: 500;
  font-size: 36px;
  color: #fff;
  text-align: center;
  background-color: #343741;
  padding: 10px 25px;
  border-radius: 30px 30px 0 0;
  width: fit-content;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_live_experience .cs_detail_live_experience_heading {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_live_experience .cs_detail_live_experience_heading {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs_detail_live_experience .cs_detail_live_experience_heading {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_live_experience .cs_detail_live_experience_heading {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_live_experience .cs_detail_live_experience_heading {
    font-size: 22px;
    width: 100%;
    border-radius: 30px 30px 0 0;
    padding-top: 20px;
  }
}
.cs_detail_live_experience .cs_detail_live_experience_heading::after {
  content: "";
  background-image: url(../../../Technource/asset/images/case-study/le_rounded_corner.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  display: inline-block;
  position: absolute;
  right: -30px;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .cs_detail_live_experience .cs_detail_live_experience_heading::after {
    content: unset;
  }
}
.cs_detail_live_experience .cs_detail_live_experience_heading::before {
  content: "";
  background-image: url(../../../Technource/asset/images/case-study/le_rounded_corner.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  display: inline-block;
  position: absolute;
  left: -30px;
  bottom: 0;
  transform: scaleX(-1);
}
@media only screen and (max-width: 767px) {
  .cs_detail_live_experience .cs_detail_live_experience_heading::before {
    content: unset;
  }
}
.cs_detail_live_experience .live_experience_links_wrapper {
  background-color: #343741;
  border-radius: 60px;
  padding: 20px;
  width: fit-content;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 991px) {
  .cs_detail_live_experience .live_experience_links_wrapper {
    gap: 15px;
    padding: 15px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_live_experience .live_experience_links_wrapper {
    border-radius: 0 0 30px 30px;
    padding-bottom: 25px;
  }
}
.cs_detail_live_experience .live_experience_links_wrapper .live_experience_link {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid #dfdfdf;
  backdrop-filter: blur(5px);
  border-radius: 90px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 20px 10px 10px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .cs_detail_live_experience .live_experience_links_wrapper .live_experience_link {
    gap: 10px;
  }
}
.cs_detail_live_experience .live_experience_links_wrapper .live_experience_link:hover {
  transition: all ease-in-out 0.4s;
  cursor: pointer;
}

.cs_detail_live_experience .live_experience_links_wrapper .live_experience_link.website:hover{
  background-color: #f6d17aa4;
  border-color: #f6d17aa4;
}

.cs_detail_live_experience .live_experience_links_wrapper .live_experience_link.android_app:hover{
  background-color: #32DE84;
  border-color: #32DE84;
}

.cs_detail_live_experience .live_experience_links_wrapper .live_experience_link.ios_app:hover{
  background-color: #007AFF;
  border-color: #007AFF;
}

.cs_detail_live_experience .live_experience_links_wrapper .live_experience_link .live_experience_icon_wrapper {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}
@media only screen and (max-width: 991px) {
  .cs_detail_live_experience .live_experience_links_wrapper .live_experience_link .live_experience_icon_wrapper {
    width: 30px;
    height: 30px;
  }
}
.cs_detail_live_experience .live_experience_links_wrapper .live_experience_link .live_experience_icon_wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cs_detail_live_experience .live_experience_links_wrapper .live_experience_link .live_experience_link_text {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
}
@media only screen and (max-width: 1280px) {
  .cs_detail_live_experience .live_experience_links_wrapper .live_experience_link .live_experience_link_text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs_detail_live_experience .live_experience_links_wrapper .live_experience_link .live_experience_link_text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_live_experience .live_experience_links_wrapper .live_experience_link .live_experience_link_text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_live_experience .live_experience_links_wrapper .live_experience_link .live_experience_link_text {
    font-size: 14px;
  }
}

.cs_detail_second_cta_wrapper {
  background-color: #ffecc0;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  padding: 40px;
  margin: 70px auto;
}
@media only screen and (max-width: 991px) {
  .cs_detail_second_cta_wrapper {
    border-radius: 30px;
    padding: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_second_cta_wrapper {
    padding: 25px;
  }
}
.cs_detail_second_cta_wrapper .second_cta_heading {
  font-weight: 600;
  font-size: 42px;
  color: #333333;
  margin: 0;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_second_cta_wrapper .second_cta_heading {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_second_cta_wrapper .second_cta_heading {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1024px) {
  .cs_detail_second_cta_wrapper .second_cta_heading {
    font-size: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_second_cta_wrapper .second_cta_heading {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_second_cta_wrapper .second_cta_heading {
    font-size: 24px;
  }
}
.cs_detail_second_cta_wrapper .second_cta_paratgraph {
  font-weight: 400;
  font-size: 26px;
  color: #333333;
  margin: 15px 0 30px;
}
@media only screen and (max-width: 1440px) {
  .cs_detail_second_cta_wrapper .second_cta_paratgraph {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1280px) {
  .cs_detail_second_cta_wrapper .second_cta_paratgraph {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .cs_detail_second_cta_wrapper .second_cta_paratgraph {
    font-size: 20px;
    margin: 10px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_second_cta_wrapper .second_cta_paratgraph {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .cs_detail_second_cta_wrapper .second_cta_paratgraph {
    font-size: 14px;
  }
}
.cs_detail_second_cta_wrapper .cs_detail_cta_btn {
  margin: 0;
  background-color: #333;
  animation: borderAnim 1.4s infinite;
}

@keyframes borderAnim {
      0% {
        box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.9);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(51, 51, 51, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(51, 51, 51, 0);
      }
    }


.cs_detail_second_cta_wrapper .cs_detail_cta_btn:hover {
  background-color: #724f3f;
}
.cs_detail_second_cta_wrapper .cs_detail_cta_btn span {
  color: #ffecc0;
}

.cs_detail_more_case_studies{
  margin-bottom: 70px;
}

.cs_detail_more_case_studies .cs_detail_heading_wrapper {
  margin-bottom: 60px;
  font-family: "Poppins", "sans-serif" !important;
}
@media only screen and (max-width: 1280px) {
  .cs_detail_more_case_studies .cs_detail_heading_wrapper {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_more_case_studies .cs_detail_heading_wrapper {
    margin-bottom: 30px;
  }
}
.cs_detail_more_case_studies .more_case_studies_content_wrapper {
  justify-content: space-between;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper {
    justify-content: center;
    gap: 30px;
  }
}
.cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px;
  width: calc(33.3333333333% - 30px);
  height: 300px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item {
    width: 100%;
    height: 350px;
  }
}
@media only screen and (max-width: 575px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item {
    height: 300px;
  }
}

.cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item .mcs_hover_content_wrapper {
  position: absolute;
  top: calc(100% - 50px);
  left: 12px;
  right: 12px;
  transition: all 0.5s ease-in-out;
}
.cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item .mcs_hover_content_wrapper .mcs_content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item .mcs_hover_content_wrapper .mcs_content .mcs_text_right_arrow {
  width: 34px;
  height: 34px;
  object-fit: cover;
}
.cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item .mcs_hover_content_wrapper .mcs_content .mcs_content_heading {
  font-family: "Poppins", "sans-serif" !important;
  font-weight: 600;
  font-size: 28px;
  color: #ffffff;
}
.cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item .mcs_hover_content_wrapper .mcs_hover_content {
  font-family: "Poppins", "sans-serif" !important;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 991px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item .mcs_hover_content_wrapper .mcs_hover_content {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item .mcs_hover_content_wrapper .mcs_hover_content {
    font-size: 12px;
  }
}
.cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item:hover .mcs_hover_content_wrapper {
  top: 38%;
}
@media only screen and (max-width: 991px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item:hover .mcs_hover_content_wrapper {
    top: 44%;
  }
}
@media only screen and (max-width: 767px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item:hover .mcs_hover_content_wrapper {
    top: 51%;
  }
}
@media only screen and (max-width: 575px) {
  .cs_detail_more_case_studies .more_case_studies_content_wrapper .mcs_content_item:hover .mcs_hover_content_wrapper {
    top: 49%;
  }
}

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