/* Global class css */
body {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body.testi-no-overflow {
  overflow: hidden;
}
.phone_number p {
  display: none;
}
.mobile-image-eci {
  display: none;
}
.h3 {
  font-size: 24px;
  font-weight: 600;
}

/*====== Snowfall and snowcap CSS ======*/

/* #snowCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
.sticky-footer:after {
  content: "";
  width: 100%;
  display: block;
  height: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(/assets/images/SnowCap.svg);
  z-index: 99999999;
  background-size: contain;
  background-position: bottom;
} */

/*====== Snowfall and snowcap CSS Ends ======*/


/* ===== Scrollbar CSS ===== */
/* Firefox */
/* * {
  scrollbar-width: thin;
  scrollbar-color: #f6114a #ffffff;
} */

.mt_70 {
  margin-top: 70px;
}
.mb_100 {
  margin-bottom: 100px;
}
.main-blog-details ol li {
  list-style: unset;
  margin-bottom: 10px;
  line-height: 1.5rem;
}
.Thanks-head h1 {
  text-align: center;
  font-size: 45px;
  color: #f6114a;
  margin-bottom: 10px;
}
img.case-study-bottom-img {
  border-radius: 20px;
}
.Thanks-para p {
  text-align: center;
  margin-top: 10px;
}
.max-width-2000 {
  max-width: 1920px;
  margin: auto;
}


/* Cookie Consent Styling */

.cookie-consent-wrapper {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: transparent    linear-gradient(96deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%    no-repeat padding-box;
}
.cookie-consent-accept {
  display: flex;
  gap: 20px;
}
.cookie-consent-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}


/* Casetudy Mockup Styling */

.mockup-container-fixed {
  position: fixed;
  top: 50%;
  right: calc(50% - 450px);
  transform: translateY(-50%);
  width: 320px;
  height: 650px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mockup-device-wrapper {
  position: relative;
  width: 315px;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-device-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.mockup-screens-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.mockup-screen {
  position: absolute;
  max-width: 285px;
  border-radius: 45px;
  object-fit: cover;
  background: #fff;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
}

.fade-in-up {
  animation: fadeInUp 0.7s forwards;
  z-index: 3;
}
.fade-out-up {
  animation: fadeOutUp 0.7s forwards;
  z-index: 2;
}
.fade-in-down {
  animation: fadeInDown 0.7s forwards;
  z-index: 3;
}
.fade-out-down {
  animation: fadeOutDown 0.7s forwards;
  z-index: 2;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-60px);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(60px);
  }
}

.scroll-wrapper {
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  position: relative;
  scrollbar-width: none;
}

.scroll-section-ms {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  scroll-snap-align: start;
  position: relative;
  z-index: 1;
  /* padding-left: 10vw;
  padding-right: 40vw; */
}

.scroll-section-ms .section-text-ms {
  opacity: 0;
}

.background-fade-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #00000060;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.background-fade-in {
  opacity: 1;
}

.background-fade-out {
  opacity: 0;
}

.test-scroll-section.bg-img-sec {
  padding: 0 !important;
}

.mockup-section-container {
  overflow-x: hidden;
}

.mockup-section-container h3 {
  color: #000;
  text-align: start;
}

@media (max-width: 900px) {
  .mockup-container-fixed {
    right: auto;
    left: 50%;
    transform: translate(-50%, -35%);
  }

  .scroll-section-ms {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    justify-content: start;
    align-items: center;
  }

  .scroll-section-ms .section-text-ms {
    margin-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .cs-product-listing {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .mockup-device-wrapper {
    width: 240px;
    height: 500px;
  }
  .mockup-screens-container {
    width: 90%;
  }
  .mockup-container-fixed {
    transform: translate(-50%, -35%);
  }
  .mockup-screen {
    border-radius: 20px;
  }
  .mockup-section-container {
    padding: 20px 0;
  }

  /* @media(max-width: 400px) {
  .mockup-device-wrapper {
    width: 180px;
    } */
}

/* .test-old-reference .beforeafter-image-before {
  filter: sepia(0.6);
} */

/* --- Casestudy --- */

.cs-m-t {
  margin-top: 34px;
}
.cs-summery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cs-summery span {
  display: flex;
  gap: 20px;
}
.cs-summery span img {
  max-width: 30px;
}
.cs-competetor {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.cs-competetor img {
  /* max-height: 40px;
  max-width: 150px; */
  max-height: 30px;
  max-width: 140px;
  filter: grayscale(1);
  transition: all 0.5s;
}
.cs-competetor img:hover {
  filter: grayscale(0);
}
.cs-solution {
  display: flex;
  gap: 50px;
  /* flex-wrap: wrap; */
}
.cs-solution span {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cs-solution img {
  max-width: 120px;
}
.cs-solution span.width-33 {
  width: 33%;
}
/* --- Tooltip --- */
span.tooltip {
  position: relative;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.tooltiptext {
  width: max-content;
  color: #fff;
  position: absolute;
  font-family: sans-serif;
  bottom: 50px;
  left: 50%;
  right: -25px;
  padding: 7px 10px;
  z-index: 1;
  font-size: 13px;
  border-radius: 6px;
  background: #f7577d;
  visibility: hidden;
  opacity: 0;
  -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateX(-50%);
}
.website_development_main_div .tooltiptext,
.digital_marketing_main_div .tooltiptext {
  bottom: 40px;
}
.tooltiptext::after {
  content: "";
  position: absolute;
  top: 98%;
  left: 47%;
  margin-left: -5px;
  border-width: 9px;
  border-style: solid;
  border-color: #f7577d transparent transparent transparent;
  transform: rotate(360deg);
  border-left-width: 7px;
  border-right-width: 7px;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 1000;
  transition: all 0.4s ease;
}

.whatsapp-float img {
  width: 60%;
  height: 100%;
  /* border-radius: 50%; */
  position: absolute;
  right: 12px;
}
@media (max-width: 768px) {
  .tooltiptext {
    display: none;
  }
  .tooltiptext::after {
    display: none;
  }
  .submit-container #loader {
    width: 10%;
  }
  .whatsapp-float img {
    right: 8px;
  }
  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 20px;
  }
}

/* about page - employee images */
.employees_img img {
  max-width: 255px;
  /* height: 263px; */
}

.employees_img p {
  max-width: 255px;
}

.employees_img {
  align-items: flex-start !important;
}
.employees_img p span.employee-details {
  margin-top: 10px;
  font-weight: 300;
  font-size: 16px;
}

/* --- Pointer Style --- */

#cursor {
  position: fixed;
  top: -3px;
  left: -3px;
  width: 5px;
  height: 5px;
  background-color: #f6114a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
}

.w-33 {
  width: 31% !important;
  height: 52px;
}
.w-50 {
  width: 47% !important;
}
.select-container .select2-container {
  width: 100%;
}
.select-container {
  display: flex;
  /* gap: 10px; */
  width: 75%;
  justify-content: space-between;
  align-items: baseline;
}
.filter_btn {
  width: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.apply_filter_btn {
  border: 1px solid #f6114a;
  border-radius: 30px;
}
.apply_filter_btn:hover {
  color: #fff;
}
.select-container
  .select2-container
  .select2-search--inline
  .select2-search__field {
  height: 25px;
  margin-bottom: 10px;
}
.select-container .select2-container--default .select2-selection--multiple {
  padding: 0;
}
.select-container .select2-container--default .select2-selection--multiple {
  border-radius: 50px !important;
  padding: 5px 20px;
  height: 52px;
  overflow: hidden;
}
.select-container .select2-container {
  display: table-cell;
}
.filter-container .filter_form {
  display: flex;
  /* gap: 20px; */
  justify-content: space-between;
  /* align-items: center; */
}
.fade:not(.show) {
  opacity: 1;
}
/* .filter-container .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
  border-radius: 0 !important;
  height: 52px;
  overflow: hidden;
} */
/* .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0; 
   border-top-right-radius: 0;
}  */
.filter-container .select2-search {
  display: none;
}

#cursor-border {
  --size: 30px;
  position: fixed;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #f6114a;
  pointer-events: none;
  transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
    height 0.15s ease-out, background-color 0.15s ease-out;
  z-index: 999;
}
.cursor-back {
  background-color: #f6114a67;
  box-shadow: none !important;
}

/* --- Testimonial Page Styling --- */

/* .testimonial-list .testimonial-list-inner {
    display: flex;
    align-items: center;
    gap: 5%;
    flex-wrap: wrap;
    row-gap: 20px;
} */

/*------ Testimonial Logo Hover ------*/

.clients-table td img {
  transition: all 0.3s linear;
  filter: grayscale(1);
}
.clients-table td:hover img {
  transition: all 0.3s linear;
  filter: grayscale(0);
}
.testimonial-list
  .testimonial-list-inner
  .testimonial-box
  .testimonial-box-inner
  img {
  filter: grayscale(1);
  transition: all 0.3s linear;
}
.testimonial-list
  .testimonial-list-inner
  .testimonial-box:hover
  .testimonial-box-inner
  img {
  filter: grayscale(0);
}
/* .clients-table td.jkyll-hyde:hover img {
    content: url("https://ecareinfoway.com/assets/images/Jkyll&hyd Color Logo.svg");
}
.clients-table td.telcom-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/Telcom Color Logo.svg");
}
.clients-table td.eu-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/EU Color Logo.svg");
}
.clients-table td.im-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/IM Logo Color.svg");
}
.clients-table td.moxi-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/Moxi Works Color Logo.svg");
}
.clients-table td.lv-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/LV Color Logo.svg");
}
.clients-table td.bobby-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/Bobby  Color Logo.svg");
}
.clients-table td.actc-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/ACTC Logo Color.svg");
}
.clients-table td.samraj-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/Samraj  Color Logo.svg");
}
.clients-table td.juliette-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/Julliette Foster Logo Color.svg");
}
.clients-table td.hba-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/HBA  Color Logo.svg");
}
.clients-table td.boxall-logo:hover img {
    content: url("https://ecareinfoway.com/assets/images/Boxall Color Logo.svg");
} */

/* .testimonial-list .testimonial-list-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 15px;
    gap: 13px;
    column-gap: 50px;
    row-gap: 1px;
    grid-auto-flow: dense;
}

.testimonial-list .testimonial-list-inner .testimonial-box {
    max-height: fit-content;
    height: 100%;
    position: relative;
    box-sizing: border-box;
} */

.testimonial-popup.popup-opened .testi-popup-inner .auth-details a,
.pic_testi a {
  text-decoration: none;
  color: #f6114a;
  position: relative;
}
.testimonial-popup.popup-opened .testi-popup-inner .auth-details a:after,
.pic_testi a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  background-color: currentColor;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.testimonial-popup.popup-opened .testi-popup-inner .auth-details a:hover:after,
.pic_testi a:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.testimonial-list .testimonial-list-inner {
  column-count: 2;
  column-gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-list .testimonial-list-inner .testimonial-box {
  border: 1px solid #d2d2d2;
  margin-bottom: 50px;
  display: inline-block;
  width: 100%;
  line-height: 150%;
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s linear;
}

.testimonial-list .testimonial-list-inner .testimonial-box:hover {
  border-color: #f6114a;
}
.testimonial-list
  .testimonial-list-inner
  .testimonial-box
  .testimonial-box-inner {
  padding: 40px;
  padding-bottom: 70px;
  cursor: pointer;
}
.testimonial-list
  .testimonial-list-inner
  .testimonial-box
  .testimonial-box-inner
  h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}
.testimonial-list
  .testimonial-list-inner
  .testimonial-box
  .testimonial-box-inner
  p {
  /* font-size: 18px;
    line-height: 28px; */
  font-weight: 300;
}
.testimonial-list
  .testimonial-list-inner
  .testimonial-box
  .testimonial-box-inner
  a {
  color: #d2d2d2;
  position: absolute;
  right: -1px;
  border: 1px solid #d2d2d2;
  bottom: -1px;
  padding: 15px;
  display: flex;
  transition: all 0.3s linear;
  border-right: none;
  border-bottom: none;
}
.testimonial-list
  .testimonial-list-inner
  .testimonial-box
  .testimonial-box-inner
  img,
.testimonial-popup .testi-popup-logo-close img {
  max-width: 160px;
  max-height: 85px;
}
.testimonial-list
  .testimonial-list-inner
  .testimonial-box:hover
  .testimonial-box-inner
  a {
  color: #f6114a;
  border-color: #f6114a;
}

.clients-table .testimonial-text span.anim-line {
  opacity: 0;
}
.clients-table .testimonial-text span {
  font-size: 50px;
  color: #f41046;
  font-weight: 600;
}
.clients-table .testimonial-text .animation_text_rotate {
  /* padding: 0; */
  height: 70px;
}

.clients-table {
  width: 100%;
  margin: 60px auto;
  border-collapse: collapse;
  text-align: center;
}

.clients-table td {
  padding: 80px 40px;
  vertical-align: middle;
  border: 1px solid #dedede;
}
.clients-table td.testimonial-text {
  padding: 80px 0;
}

.clients-table img {
  max-width: 170px;
  width: 100%;
  max-height: 90px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.clients-table img:hover {
  opacity: 1;
}

.testimonial-text h2 {
  font-size: 50px;
  line-height: 100%;
  font-weight: bold;
  color: #ff004f;
  white-space: nowrap;
}

/*------ Testimonial Popup ------*/

.testimonial-popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background: #0000008f;
  transition: all 0.2s linear;
}
.testimonial-popup.popup-opened {
  opacity: 1;
  visibility: visible;
  overflow: auto;
}
.testimonial-popup.popup-opened .testi-popup-inner {
  transform: translateY(-50%) scale(1);
}
.testimonial-popup .testi-popup-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  z-index: 999;
  max-height: 80%;
  height: fit-content;
  width: 80%;
  max-width: 841px;
  margin: auto;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  padding: 50px;
  transition: all 0.2s linear;
  /* font-size: 18px;
    line-height: 25px; */
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: auto;
}
.testimonial-popup .testi-popup-inner::-webkit-scrollbar {
  display: none;
}
.testimonial-popup .testi-popup-logo-close a.close-popup img {
  max-width: 20px;
  max-height: 20px;
}
.testimonial-popup .testi-popup-logo-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-popup.popup-opened::-webkit-scrollbar {
  width: 0;
}
.testimonial-popup .testi-popup-inner .auth-details p {
  margin: 0;
  font-size: 16px;
}
.testimonial-popup .testi-popup-inner .auth-details p strong {
  font-weight: 600;
}
.testimonial-popup .testi-popup-inner .auth-details p:nth-child(2) {
  max-width: 250px;
}

/* --- Internship --- */
.white-no-wrap {
  white-space: nowrap;
}
.accordion-item {
  line-height: 21px;
}
.degree-list ul li {
  margin: 10px 0;
  list-style-image: url(../assets/images/Ellipse-1614.svg);
  padding-left: 10px;
  line-height: 21px;
}
.hte-why-choose-wrapp .degree-list ul li {
  margin: 10px 0 20px 0;
}
.degree-list-wrap {
  margin-top: 50px;
  margin-bottom: 50px;
}
.degree-list {
  overflow: auto;
  padding: 0 20px;
}
.black-background {
  background-color: #000;
  color: #fff;
  padding: 70px 0;
}
.black-background h2 {
  color: #fff !important;
}
.opertunity_wrap ul li {
  margin: 10px 0;
  list-style-image: url(../assets/images/Ellipse-1614.svg);
  padding-left: 10px;
  line-height: 21px;
}
.opertunity-lists {
  margin-top: 50px;
  justify-content: space-around !important;
}

.ecare_map iframe {
  border-radius: 40px;
  max-width: 400px;
}
.intern-map-sec {
  margin: 80px 0;
}
ul.list-color {
  margin-left: 20px;
}
.list-color li {
  color: #f6154d;
  font-weight: 600;
  margin: 5px 0;
  list-style: disc;
  line-height: 21px;
}
.intern-wrap {
  margin: 70px 0;
}
.intern_doc-list p {
  line-height: 21px;
}
.intern_doc-list a:hover {
  color: #f6154d;
}

.accordian-wrap {
  margin: 50px 0;
}
.accordion {
  max-width: 750px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid #eaeaea;
}
.accordion-header {
  padding: 30px 30px 30px 10px;
  cursor: pointer;
  color: #333;
  font-size: 18px;
  position: relative;
}
.accordion-header span.icon {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.accordion-content {
  padding: 0px 10px 20px 10px;
  display: none;
}
.accordion-content p {
  line-height: 25px;
}
.icon {
  float: right;
  font-size: 30px;
  font-weight: 300;
}

/* Footer List */

.search-foot-main .search-foot-head {
  font-size: 25px;
  /* margin: 5px 0; */
  color: #f6114a;
}

.search-foot-wrapp.padding_box {
  margin: 25px 0 30px 0;
}

.search-foot-list {
  color: #fff;
}
.search-foot-list a {
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  line-height: 18px !important;
}

/* swiper slider */

.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

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

.color-white {
  color: #fff;
}

.box-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px 15px;
  width: 100%;
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 415px;
  margin-bottom: 35px;
  max-width: 100%;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  min-height: 300px;
  -webkit-transition: transform 1s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0.2, 0.2, 1);
  backface-visibility: hidden;
}

.flip-box-front {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  outline: 1px solid transparent;
  perspective: inherit;
  z-index: 2;
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}

.flip-box-header a {
  color: #fff;
}

.flip-box-header {
  font-size: 24px;
}

.swiper_slider_sec {
  margin-top: 80px;
}

.swiper-wrapper {
  margin-top: 50px;
}

.button-container a {
  background-color: white;
  padding: 10px 15px;
  border-radius: 21px;
  text-decoration: none;
  font-size: 16px;
  color: #000;
}

/* Machine-learning CSS */

.inverted-box-wrapper {
    max-width: 100%;
}

.inverted-box-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.inverted-box-card {
    display: flex;
    align-items: flex-end;
    border: 1px solid #4E4E4E;
    width: calc(90% / 4);
    margin-bottom: 3%;
    position: relative;
    border-radius: 20px;
    background: #fff;
}

.inverted-box-card-content {
    padding: 20px;
    max-width: 70%;
    /* height: -webkit-fill-available; */
}

.inverted-box-card-content img {
    max-width: 32px;
    max-height: 32px;
    width: 100%;
    height: 100%;
}

.inverted-box-card-content h3 {
    font-size: 18px;
    line-height: 30px;
}

.inverted-box-card-btn {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background-color: #fff;
    padding: 13px 0 0 13px;
    border-top: 1px solid #4E4E4E;
    border-left: 1px solid #4E4E4E;
    border-top-left-radius: 33px;
}

.inverted-box-card-btn:after,
.inverted-box-card-btn:before {
    content: "";
    height: 20px;
    width: 15px;
    display: block;
    position: absolute;
    top: -31px;
    right: 0px;
    border-right: 1px solid #4E4E4E;
    border-bottom: 1px solid #4E4E4E;
    padding: 5px;
    background-color: #fff;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px #fff;
}

.inverted-box-card-btn a {
    border: 1px solid #4E4E4E;
    border-radius: 50%;
    padding: 7px;
    height: 30px;
    width: 30px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #000;
    transition: all 0.3s linear;
}

.inverted-box-card-btn:before {
    bottom: 0;
    left: -26px;
    top: auto;
}

.inverted-box-card-btn a {
    border: 1px solid #4E4E4E;
    border-radius: 50%;
    padding: 7px;
}

.inverted-box-card:hover a {
    background-color: #F41046;
    color: #fff;
    transform: scale(1.15);
}

.all-service-btn {
    margin: 20px 0;
}

.all-service-btn {
    text-align: center;
}

.mega_menu_item ul.mmenu-mt-48 {
  margin-top: 47px;
}


/* Machine-learning CSS */


@media (min-width: 1024px) {
  .flip-box:hover .flip-box-front {
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .flip-box:hover .flip-box-back {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .button-container {
    display: none;
  }
}
@media (max-width: 1024px) {

  .mobile-none {
    display: none;
  }
  .button-container {
    display: block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .swiper-container {
    width: 90%;
    margin: 0 auto;
  }
  .employees_img p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* swiper slider */

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

.sticky-course::-webkit-scrollbar-track {
  background: transparent;
}
.sticky-course::-webkit-scrollbar-thumb {
  background-color: #a8a5a5;
  /* background: linear-gradient(to right, white 0px, white 30px, red 30px, red calc(100% - 30px), white calc(100% - 30px), white 100%); */
  border-radius: 10px;
  border: 3px solid #ffffff;
}
.sticky-course::-webkit-scrollbar {
  height: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #f6114a;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
.small_container {
  max-width: 941px;
  margin: 0 auto;
}
.headContainer {
  max-width: 1344px;
  margin: 0 auto;
}
header.padding_box {
  position: relative;
  z-index: 999999;
}
.align_left h2,
.align_left p {
  text-align: left !important;
  width: auto !important;
  margin: 0 !important;
  margin-bottom: 18px !important;
}
.padding_box {
  padding: 0px 33px 0px 33px;
}
.display_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headings_top h2 {
  text-align: center;
  font: normal normal bold 40px/50px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  opacity: 1;
  margin: 0;
  /* position: relative; */
}

.headings_top p,
.new_about_part {
  text-align: center;
  font: normal normal normal 16px/25px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  opacity: 1;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 70px;
}
/* .headings_top p.home-max-width-custom {
  max-width: 900px;
} */
.headings_top p.home-max-width-custom {
    max-width: 900px;
    padding-left: 25px;
    padding-right: 25px;
    text-align: left;
}
.new_testimonial_part {
  font: normal normal 300 16px/25px Outfit;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.btn {
  text-align: center;
  font: normal normal 300 16px/20px Outfit;
  letter-spacing: 0px;
  color: #f6114a;
  opacity: 1;
  text-decoration: none;
  cursor: pointer;
  padding: 15px 40px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  background: transparent;
}
/* .btn:hover {
  background: transparent
    linear-gradient(94deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box !important;
} */
.btn::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: transparent
    linear-gradient(94deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: -12;
  -moz-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
}
.btn::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: transparent
    linear-gradient(94deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  -webkit-transition: all 0.94s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -moz-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -o-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
}
.btn:hover::after {
  opacity: 1;
  width: 120%;
}
.btn:hover::before {
  opacity: 1;
  width: 116%;
}
.btn_back_fff {
  border: 2px solid #fff;
  border-radius: 93px;
  color: #fff;
}
.white_btn_back {
  background-color: #f6114a;
  border-radius: 93px;
  color: #fff;
}
.color_red_span span {
  text-decoration: underline;
  letter-spacing: 0px;
  color: #f41046 !important;
}
.btn_link_underline {
  /* opacity: 1;
  opacity: 1;
  font: normal normal 300 16px/20px Outfit;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  position: relative;
  padding: 0px 0;
  text-transform: capitalize;
  text-decoration: none;
  -webkit-transition: all 0.94s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -moz-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -o-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99); */
  position: relative;
  display: inline-block;
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-bottom: 2px solid rgb(255, 255, 255); /* Initial color: black */
  transition: border-color 0.3s ease-out; /* Add transition effect for color change */
}
.btn_link_underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px; /* Adjust the height of the underline as needed */
  background: transparent
    linear-gradient(94deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box; /* Initial color: black */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.btn_link_underline:hover::after {
  transform: scaleX(1); /* On hover: visible */
  transform-origin: bottom left;
  background: transparent
    linear-gradient(94deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box;
}

/* a.btn_link_underline::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 100%;
  border-bottom: 2px solid;
  left: 0;
  transform: scaleX(1);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
a.btn_link_underline:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
} */
.btn_back {
  background: #f6114a 0% 0% no-repeat padding-box;
  border-radius: 93px;
  color: #fff;
}

ul li a:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
ul li a::after {
  text-decoration: none !important;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.without_back_ground ul li a::after {
  background-color: #1c1c1c;
}
ul li a {
  font: normal normal normal 16px/21px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
  /* text-transform: capitalize; */
  position: relative;
}
.position_relative {
  position: relative;
}
.footer ul h3 {
  margin-top: 10px;
  margin-bottom: 5px;
}
.margin_full {
  margin-top: 100px;
  margin-bottom: 100px;
}
.animated-banner{
  margin-bottom: 100px;
  margin-top: 100px;
}

.slick-slide img {
  display: block;
  width: auto;
  height: auto;
}
img {
  width: auto;
  height: auto;
}
.left_align {
  text-align: left !important;
  width: auto !important;
}
.margin_b {
  margin-bottom: 100px;
}
label {
  margin-bottom: 10px;
  display: block;
  text-align: left;
  font: normal normal normal 16px/25px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  width: 100%;
  margin-top: 16px;
}
input,
select {
  height: 50px;
  width: 100%;
  background: #f8f8f8 0% 0% no-repeat padding-box;
  opacity: 1;
  outline: none;
  border: none;
  margin-bottom: 15px;
  padding-left: 20px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Outfit";
}
/* select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
} */
input::placeholder,
textarea::placeholder,
select::placeholder {
  text-align: left;
  /* font: normal normal medium 16px/21px Outfit; */
  letter-spacing: 0px;
  color: #696969;
  opacity: 1;
  text-transform: capitalize;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 500;
}
textarea {
  height: 120px;
  background: #f8f8f8 0% 0% no-repeat padding-box;
  opacity: 1;
  width: 100%;
  padding-left: 20px;
  box-sizing: border-box;
  border: none;
  padding-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}
.display_none {
  display: none;
}

.margin_top {
  margin-top: 90px;
}
/* endglobalcss */
.head_section_top {
  /* background-image: url("../assets/images/banner___top.webp"); */
  width: 100%;
  background-size: cover;
}
.background_overlay {
  background: transparent linear-gradient(93deg, black -20%, #6d17f29e 100%) 0%
    0% no-repeat padding-box;
}
/* header {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
} */
ul#menu-main-menu {
  gap: 44px;
  margin: 0 !important;
  padding: 0;
}
/* .right_head img {
  width: 80%;
} */
.left_head {
  gap: 40px;
}
.banner_top {
  padding-bottom: 180px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.image_banner img {
  width: 90%;
}
.image_banner {
  text-align: right;
}
.main_text h1 {
  font: normal normal bold 67px/81px Outfit;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  font-weight: 800;
  margin: 0;
  margin-bottom: 30px;
}
.home-page-headings.sub_text p,
.engage-page p {
  max-width: 810px;
}
.sub_text p {
  text-align: left;
  font: normal normal 300 16px/25px Outfit;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  margin: 0;
}
p.sub_text span {
  display: block;
}
.banner_btn {
  gap: 50px;
  justify-content: flex-start;
  margin-top: 65px;
}
.text_side span {
  background-color: transparent;
  position: absolute;
  bottom: -30px;
  font-size: 14px;
  width: 100%;
  left: 0;
  left: 6px;
  color: #fff;
  opacity: 1;
  font: normal normal 300 12px/20px Outfit;
}
ul#menu-main-menu li {
  list-style: none;
}
.section_div {
  flex-wrap: wrap;
  column-gap: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .images_section_width {
  text-align: center;
  margin-bottom: 60px;
  cursor: pointer;
} */
.images_section_width {
  text-align: center;
  /* margin-bottom: 60px; */
  cursor: pointer;
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 70vh; */
  position: sticky;
  /* top: 275px; */
  top: 205px;
  /* top: 320px; */
  /* box-shadow: 0 -1px 3px rgba(0,0,0,0.1), 0 -1px 2px rgba(0,0,0,0.25); */
  font-size: 10rem;
}

/* .case_study_image .images_section_width{
  top: 275px;
} */

.case_study_image .images_section_width {
  top: 285px;
}

.images_section_width img.fade.intro_fade {
  border-radius: 25px;
  /*margin-bottom: 20px;*/
}
.images_section_width img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 65px;
}
.images_section_width img:first-child {
  margin: 0;
}
.privacy-container h1,
.privacy-container h2,
.privacy-container h3,
.privacy-container h4 {
  margin-bottom: 0;
  margin-top: 30px;
}
.privacy-container ol,
.privacy-container ul {
  margin-top: 0;
}

/* homepageslider */
@media (min-width: 1023px) {
  .privacy-container {
    max-width: 960px;
    margin: 0 auto;
  }
  .load-animate-2 .testimonial-top .main_text {
    opacity: 1;
    -webkit-transform: translateX(0%) translateY(0);
    transform: translateX(0%) translateY(0);
  }
  .load-animate-2 .testimonial-fade img {
    opacity: 1;
    -webkit-transform: translateX(0%) translateY(0);
    transform: translateX(0%) translateY(0);
  }
  .testimonial-fade img {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(2rem);
    transform: translateX(0%) translateY(2rem);
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, transform 2000ms ease;
    transition: opacity 2000ms ease, transform 2000ms ease,
      -webkit-transform 2000ms ease;
  }
  .testimonial-top .main_text {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(2rem);
    transform: translateX(0%) translateY(2rem);
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, transform 2000ms ease;
    transition: opacity 2000ms ease, transform 2000ms ease,
      -webkit-transform 2000ms ease;
  }
  .navbar .left_head {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(-2rem);
    transform: translateX(0%) translateY(-2rem);
    -webkit-transition: opacity 750ms ease, -webkit-transform 750ms ease;
    transition: opacity 750ms ease, -webkit-transform 750ms ease;
    transition: opacity 750ms ease, transform 750ms ease;
    transition: opacity 750ms ease, transform 750ms ease,
      -webkit-transform 750ms ease;
  }
  .load-animate-2 .navbar .left_head {
    opacity: 1;
    -webkit-transform: translateX(0%) translateY(0);
    transform: translateX(0%) translateY(0);
  }
  .banner_top .main_text {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(2rem);
    transform: translateX(0%) translateY(2rem);
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, transform 2000ms ease;
    transition: opacity 2000ms ease, transform 2000ms ease,
      -webkit-transform 2000ms ease;
  }
  .load-animate-2 .banner_top .main_text {
    opacity: 1;
    -webkit-transform: translateX(0%) translateY(0);
    transform: translateX(0%) translateY(0);
  }

  .head_section_top {
    background-size: 0%;
    -webkit-transition: opacity 3000ms ease, -webkit-transform 3000ms ease;
    transition: opacity 3000ms ease, -webkit-transform 3000ms ease;
    transition: opacity 3000ms ease, transform 3000ms ease;
    transition: opacity 3000ms ease, transform 3000ms ease,
      -webkit-transform 3000ms ease;
  }
  .load-animate-2 .head_section_top {
    background-image: url(../assets/images/front.jpg);
    background-size: cover !important;
  }
}

.color_000 {
  color: #4e4e4e;
}
.btn_link_underline.color_000 {
  border-color: #4e4e4e;
}
.slider_animated_div .slick-slide.slick-current.slick-active {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.slider_animated_div .slick-slide:has(+ .slick-active) {
  opacity: 0;
  transform: scale3d(0.3, 0.3, 0.3);
}
.slider_animated_div .slick-initialized .slick-slide {
  display: block;
}
.slider_animated_div .slider_animated .slick-slide {
  margin: 10px 30px;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.slick-slide.slick-active {
  opacity: 1 !important;
  transform: scale3d(1, 1, 1) !important;
}
.slider_animated_div .slick-initialized .slick-slide {
  display: block;
}
.slider_animated_div {
  width: 56%;
  position: absolute;
  right: 0;
  top: 0;
}
.inner_block {
  width: 106% !important;
  height: 500px !important;
}
.padding_box.display_flex.slider_arrow_div {
  height: 520px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.slider_arrow_div {
  margin-top: 50px !important;
}
.slider_animated_div .slick-list {
  padding: 0px 60% 0 0 !important;
}
.disable_pre,
.disable_next {
  opacity: 0.5;
}
/* button.slick-arrow {
  display: none !important;
} */
ul.slick-dots {
  display: none !important;
}
.trigger_buttons button {
  cursor: pointer;
  border: none;
  border-radius: 24px;
  padding: 4px;
  width: 50px;
  height: 50px;
  /* font-size: 25px; */
  background-color: transparent;
}
.trigger_buttons_left {
  background-position: 1px 649px;
}
.trigger_buttons button {
  width: 53px;
  height: 50px;
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
}
.trigger_buttons_right {
  background-position: -57px 649px;
}
.trigger_buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 35px;
}
.slider_arrow_div .headings_top {
  max-width: 360px;
  margin-bottom: 70px;
}
.slider_arrow_div p {
  width: -webkit-fill-available;
}
.section_div.slider_animated {
  width: 100%;
  position: initial;
}
/* home slider endcss */
.full_width_background {
  background-color: #f5f5f5;
  padding: 100px 0px;
}
.padding_more {
  padding: 100px 0px;
}
.main {
  font-family: Arial;
  width: 500px;
  display: block;
  margin: 0 auto;
}
.inner_block h3 {
  font: normal normal 800 36px/43px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  opacity: 1;
  text-decoration: none;
  border: none;
  margin: 0;
  margin-top: 23px;
  text-transform: capitalize;
  -webkit-transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  -moz-transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  -o-transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
}
a.service-box {
  text-decoration: none;
}
.img-box {
  display: inline-block;
  -moz-transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  -o-transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  height: 90px;
}
.section_div img {
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
}
.section_div.hte-sec img {
  background-image: none;
}
img.ai_ml_services{
  width: 85px;
    height: 88px;
    background-position: 220px -17px;
    margin: 0 !important;
}
img.creative_design {
  width: 85px;
  height: 88px;
  background-position: 4px -17px;
  margin: 0 !important;
}
img.Website_Development {
  width: 118px;
  height: 88px;
  background-position: -81px -17px;
  margin: 0 !important;
}
img.Mobile_App_Development {
  width: 114px;
  height: 104px;
  background-position: -197px 0px;
  margin: 0 !important;
}
img.Digital_Marketing {
  width: 116px;
  height: 100px;
  background-position: -301px 0px;
  margin: 0 !important;
}
.img-box {
  padding-top: 40px;
}
.slider_animated .slick-slide {
  margin: 10px 30px;
}
.inner_block p {
  text-align: left;
  font: normal normal normal 16px/27px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  opacity: 1;
  margin-top: 25px;
  margin-bottom: 10px;
  height: 81px;
  -webkit-transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  -moz-transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  -o-transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
  transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 0s;
}
span.read-more-btn {
  font: normal normal bold 18px/23px Outfit;
  letter-spacing: 0px;
  color: #f6114a;
  position: relative;
  display: inline-block;
  opacity: 0;
  margin-top: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.inner_block:hover span.read-more-btn {
  opacity: 1;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}
.inner_block:hover span.read-more-btn:after {
  width: 100%;
}
span.read-more-btn:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 0;
  left: 0%;
  right: 0;
  bottom: -2px;
  font-weight: 400;
  background-color: transparent;
  color: #f13c31;
  border-bottom: 2px solid #f13c31;
  transition: all 0.3s ease-in-out;
  transform: translate(0%, 0) translateZ(0);
  -webkit-transform: translate(0%, 0) translateZ(0);
}

.inner_block:hover p,
.inner_block:hover .img-box {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
.inner_block {
  opacity: 1;
  padding: 45px;
  border-radius: 40px;
  box-sizing: border-box;
  cursor: pointer;
  background: #fef3f6 0% 0% no-repeat padding-box;
}
.slick-slide[data-slick-index="1"] .inner_block,
.slick-slide[data-slick-index="3"] .inner_block {
  background: #f2eafe 0% 0% no-repeat padding-box;
}
.slick-slide[data-slick-index="1"] .inner_block .read-more-btn,
.slick-slide[data-slick-index="3"] .inner_block .read-more-btn {
  color: #6d17f2;
}
.slick-slide[data-slick-index="1"] .inner_block span.read-more-btn:after,
.slick-slide[data-slick-index="3"] .inner_block span.read-more-btn:after {
  border-bottom: 2px solid #6d17f2;
}
.section_width {
  max-width: 1400px;
  margin: 100px auto 60px;
}
.video_blocks {
  gap: 30px;
}
.inner_video_block {
  width: 50%;
  border-radius: 42px;
  position: relative;
  background: #000;
  display: flex;
}
.information_tags {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
img.video_link_tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  /* left: 8px; */
  width: 63px;
  cursor: pointer;
  transition: transform 1s;
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
  background-repeat: no-repeat;
  height: 60px;
  background-position: -186px -111px;
  transition: all ease 0.3s;
  border-radius: 50%;
}
/* img.video_link_tag:hover {
  box-shadow: 0 0 0 4px #f6114a, 0 0 0 3px #f6114a;
  border-radius: 50%;
} */
.inner_video_block:hover .video_link_tag {
  box-shadow: 0 0 0 4px #f6114a, 0 0 0 3px #f6114a;
  border-radius: 50%;
}
img.video_open {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 63px !important;
  cursor: pointer;
  transform: translate(-50%, 50%);
  /* transition: transform 1s; */
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
  background-repeat: no-repeat;
  background-position: -186px -110px;
  transition: all ease 0.6s;
  border-radius: 50%;
  z-index: 9999;
}
.phots_videos_block1:hover img.video_open {
  /* transform: scale(1.2) translate(-30%, 50%); */
  border-radius: 50%;
  box-shadow: 0 0 0 4px #f6114a, 0 0 0 3px #f6114a;
}
/* .phots_videos_block1:hover::after {
  background-color: #f6114a;
  content: "";
  width: 100%;
  position: absolute;
  display: block;
  height: 99%;
  top: 0;
  opacity: 0.2;
} */
.phots_videos_block1 {
  /* cursor: pointer; */
  z-index: 9999999;
}

.phots_videos_block1::after {
  transition: ease-in-out 0.9s;
  background-color: transparent;
  content: "";
  width: 100%;
  position: absolute;
  display: block;
  height: 99%;
  top: 0;
  opacity: 0.2;
}

.phots_videos_block1 img:nth-child(1) {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.phots_videos_block2 img:nth-child(1) {
  border-top-right-radius: 20px;
}
.phots_videos_block2 img:nth-child(2) {
  border-bottom-right-radius: 20px;
}
/* @keyframes ring {
  0% {
    width: 63px;
    height: 63px;
    opacity: 1;
  }
  100% {
    width: 63px;
    height: 63px;
    opacity: 0;
  }
} */

.coures_back {
  padding-bottom: 100px;
  padding-top: 100px;
  overflow: hidden;
}
/* rotaing text */
[data-words] {
  overflow: hidden;
}
[data-words]:after {
  display: none !important;
}
.text-anim-item {
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate3d(0, -120%, 0);
  transform: translate3d(0, -120%, 0);
}
.text-anim-item.anim-in {
  -webkit-transform: translate3d(-50%, -120%, 0);
  transform: translate3d(-50%, -120%, 0);
  -webkit-animation: textAnimInCenter 0.6s 0.3s forwards;
  animation: textAnimInCenter 0.6s 0.3s forwards;
}
.text-anim-item.anim-out {
  -webkit-transform: translate3d(-50%, 0%, 0);
  transform: translate3d(-50%, 0%, 0);
  -webkit-animation: textAnimOutCenter 0.6s forwards;
  animation: textAnimOutCenter 0.6s forwards;
}
.testimonial-clients .text-anim-item.anim-out {
  -webkit-transform: translate3d(-50%, 0%, 0);
  transform: translate3d(-50%, 0%, 0);
  -webkit-animation: textAnimOutCenterTesti 0.7s forwards;
  animation: textAnimOutCenterTesti 0.7s forwards;
}
@-webkit-keyframes textAnimIn {
  0% {
    -webkit-transform: translate3d(0, -120%, 0);
    transform: translate3d(0, -120%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
}
@keyframes textAnimIn {
  0% {
    -webkit-transform: translate3d(0, -120%, 0);
    transform: translate3d(0, -120%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
}
@-webkit-keyframes textAnimOut {
  0% {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 120%, 0);
    transform: translate3d(0, 120%, 0);
  }
}
@keyframes textAnimOut {
  0% {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 120%, 0);
    transform: translate3d(0, 120%, 0);
  }
}
@-webkit-keyframes textAnimInCenter {
  0% {
    -webkit-transform: translate3d(-50%, -120%, 0);
    transform: translate3d(-50%, -120%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 10%, 0);
    transform: translate3d(-50%, 10%, 0);
  }
}
@keyframes textAnimInCenter {
  0% {
    -webkit-transform: translate3d(-50%, -120%, 0);
    transform: translate3d(-50%, -120%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 10%, 0);
    transform: translate3d(-50%, 10%, 0);
  }
}
@-webkit-keyframes textAnimOutCenter {
  0% {
    -webkit-transform: translate3d(-50%, 0%, 0);
    transform: translate3d(-50%, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(-50%, -20%, 0);
    transform: translate3d(-50%, -20%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 120%, 0);
    transform: translate3d(-50%, 120%, 0);
  }
}
@keyframes textAnimOutCenter {
  0% {
    -webkit-transform: translate3d(-50%, 0%, 0);
    transform: translate3d(-50%, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(-50%, -20%, 0);
    transform: translate3d(-50%, -20%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 120%, 0);
    transform: translate3d(-50%, 120%, 0);
  }
}

@-webkit-keyframes textAnimOutCenterTesti {
  0% {
    -webkit-transform: translate3d(-50%, 0%, 0);
    transform: translate3d(-50%, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(-50%, -20%, 0);
    transform: translate3d(-50%, -20%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 250%, 0);
    transform: translate3d(-50%, 250%, 0);
  }
}
@keyframes textAnimOutCenterTesti {
  0% {
    -webkit-transform: translate3d(-50%, 0%, 0);
    transform: translate3d(-50%, 0%, 0);
  }
  50% {
    -webkit-transform: translate3d(-50%, -20%, 0);
    transform: translate3d(-50%, -20%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 250%, 0);
    transform: translate3d(-50%, 250%, 0);
  }
}

.anim-line {
  left: auto;
}
.anim-line {
  position: absolute;
  width: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  margin: 0 auto;
  border-radius: 5px;
  background: #6d17f2;
  -webkit-transition: opacity 0.3s linear, width 0.3s 0.4s;
  transition: opacity 0.3s linear, width 0.3s 0.4s;
}
.anim-line.line-active {
  opacity: 1;
}
.animation_text_rotate {
  text-decoration: none;
  position: relative;
  padding: 0px 0px 54px 0px;
  display: block;
  top: 0px;
  margin: 0 auto;
}
/* .slidingVertical span {
  animation: topToBottom 12.5s linear infinite 0s;
  -ms-animation: topToBottom 12.5s linear infinite 0s;
  -webkit-animation: topToBottom 12.5s linear infinite 0s;
  color: #00abe9;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  text-transform: capitalize;
}
.slidingVertical {
  display: inline;
  text-indent: 8px;
}
@-moz-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -moz-transform: translateY(-50px); }
    10% { opacity: 1; -moz-transform: translateY(0px); }
    25% { opacity: 1; -moz-transform: translateY(0px); }
    30% { opacity: 0; -moz-transform: translateY(50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@-webkit-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -webkit-transform: translateY(-50px); }
    10% { opacity: 1; -webkit-transform: translateY(0px); }
    25% { opacity: 1; -webkit-transform: translateY(0px); }
    30% { opacity: 0; -webkit-transform: translateY(50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -ms-transform: translateY(-50px); }
    10% { opacity: 1; -ms-transform: translateY(0px); }
    25% { opacity: 1; -ms-transform: translateY(0px); }
    30% { opacity: 0; -ms-transform: translateY(50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
.slidingVertical span:nth-child(2) {
  animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}
.slidingVertical span:nth-child(3) {
  animation-delay: 5s;
  -ms-animation-delay: 5s;
  -webkit-animation-delay: 5s;
}.slidingVertical span:nth-child(4) {
  animation-delay: 7.5s;
  -ms-animation-delay: 7.5s;
  -webkit-animation-delay: 7.5s;
}
.slidingVertical span:nth-child(5) {
  animation-delay: 10s;
  -ms-animation-delay: 10s;
  -webkit-animation-delay: 10s;
}
h2:has(.slidingVertical) {
  margin-left: -310px; 
  max-width: 542px;
  margin: 0 auto;
  text-align: left;
} */
/* @keyframes shake {
  0%, 100% { transform: translateY(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateY(-5px); }
  20%, 40%, 60%, 80% { transform: translateY(5px); }
}

.coures_back img {
  animation: shake 0.5s ;
} */

/* .full_width_background.coures_back.position_relative img {
  width: 200px;
} */
.positon_0 {
  position: absolute;
  top: -117px;
  z-index: 0;
  left: -5%;
  opacity: 0.3;
  width: 300px;
}
.positon_1 {
  position: absolute;
  top: 122px;
  left: 3%;
  opacity: 0.3;
  width: 150px;
}

.positon_2 {
  position: absolute;
  top: 20px;
  left: 16%;
  opacity: 0.3;
  width: 100px;
}
.positon_3 {
  position: absolute;
  top: -90px;
  right: 0%;
  opacity: 0.3;
  width: 300px;
}
.positon_4 {
  position: absolute;
  top: 90px;
  right: 8%;
  opacity: 0.3;
  width: 200px;
}
.positon_5 {
  position: absolute;
  top: 222px;
  right: 9%;
  opacity: 0.3;
  width: 100px;
}
.positon_6 {
  position: absolute;
  top: 330px;
  right: 5%;
  opacity: 0.3;
  width: 200px;
}
.positon_7 {
  position: absolute;
  top: 251px;
  left: 14%;
  opacity: 0.3;
  width: 130px;
}
.numbering_all p {
  text-align: center;
  font: normal normal bold 80px/90px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  position: relative;
  margin: 0;
  width: 220px;
}
.numbering_all p::after {
  display: block;
  font: normal normal normal 16px/25px Outfit;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
}
.numbering_all .counter_container:nth-child(1) p::after {
  content: "Clients Across the Globe";
}
.numbering_all .counter_container:nth-child(2) p::after {
  content: "Projects Delivered";
}
.numbering_all .counter_container:nth-child(3) p::after {
  content: "Years on the Market";
}
.numbering_all span {
  text-align: center;
  font: normal normal normal 16px/25px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0%);
}
.numbering_all p:nth-child(2) {
  border-left: 2px solid;
  border-right: 2px solid;
}
span.color_change {
  color: #6d17f2;
  text-decoration: underline;
}
.numbering_all {
  margin: 0 auto;
  justify-content: center;
}
.information_tags p {
  text-align: left;
  font: normal normal bold 21px/25px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  margin: 0;
}
.information_tags h3 {
  font: normal normal normal 16px/19px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
img.rating_img {
  width: 50%;
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
  background-repeat: no-repeat;
  height: 19px;
  background-position: 0px -179px;
  width: 106px;
}

.footer_flex {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(6, 1fr);
  padding-top: 160px;
  padding-bottom: 45px;
}
.footer_banner img {
  width: 65px;
  transition: transform 1s;
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
  background-repeat: no-repeat;
  height: 79px;
  background-position: -117px -98px;
}
.para_tag img {
  width: 30px;
  height: 20px;
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
  background-repeat: no-repeat;
  background-position: -438px -327px;
}
.section_one p {
  text-align: left;
  font: normal normal normal 16px/28px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  max-width: 403px;
}
.section_one {
  grid-column: 1/4;
}
.footer h3 {
  text-align: left;
  font: normal normal bold 16px/25px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}
.copyright_div p {
  text-align: left;
  font: normal normal normal 12px/24px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  margin: 0;
}
.copyright_div {
  border-top: 1px solid #ffffff4d;
  opacity: 1;
  padding: 0;
  margin: 0 33px;
  padding: 20px 0px;
}
ul.social_links {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
ul.tc-list li {
  list-style: disc !important;
  line-height: 28px;
}
ul.tc-list {
  padding-left: 35px;
  padding-top: 12px;
}
ul.tc-list li b {
  font-weight: 500;
}
p.tc-subHeadings {
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 25px;
}
@media (max-width: 1022px) {
  .tc-wrap {
    width: 95%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .clients-table td.testimonial-text {
    padding: 40px 0;
  }
  .cs-product-listing {
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
  .tc-wrap {
    width: 90%;
    margin: 0 auto;
  }
  .filter-container .filter_form {
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
  .filter-container .filter_form p {
    width: 100%;
    line-height: 0;
  }
  .select-container {
    width: 90%;
    flex-direction: column;
    row-gap: 20px;
  }
  .w-33 {
    width: 100% !important;
  }
  .filter_btn {
    width: 90%;
    justify-content: space-between;
    gap: 20px;
    display: none;
  }
  .filter_button_container {
    display: block;
  }
  .open_filter {
    /* display: block; */
    border: 1px solid #ccc;
    text-decoration: none;
    color: #000;
    padding: 15px 30px;
    line-height: 1;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .sd-multiSelect .ms-drop.bottom {
    width: 95%;
  }
  .sd-multiSelect .placeholder {
    padding-left: 10px;
  }
  .filter_button_container .w-20 {
    width: 60%;
  }
  .filter_button_container {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .filter_dropdown_container {
    width: 100% !important;
    row-gap: 20px;
    display: flex;
    flex-direction: column;
    display: none;
  }
  .case_study_image .images_section_width {
    top: 235px;
  }
  .filter-container {
    top: -22px;
  }
}
/* How To Engage CSS */
.table-overflow {
  overflow-x: auto;
  /* padding-bottom: 0px; */
}

.degree-list.why-choose-hte {
  max-width: 450px;
}

.why-choose-section p {
  margin-bottom: 0;
}

.table-hte {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.table-hte td,
.table-hte th {
  padding: 20px 25px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
}

.table-hte th {
  background-color: #e5e5e5;
  color: #000000;
}

.hte-infographs ul {
  margin-top: 30px;
}

.hte-infographs ul li {
  margin-bottom: 5px;
  list-style: disc;
  margin-left: 20px;
  color: #4e4e4e;
}

.table-hte tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
/* How to engage Ends */

.tc-wrap p.content_line_height {
  padding-top: 6px;
}
.section_one img {
  width: 300px;
}
.footer_banner {
  position: absolute;
  background: transparent
    linear-gradient(96deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box;
  border-radius: 122px;
  opacity: 1;
  width: 100%;
  padding: 12px 59px;
  top: -70px;
  max-width: 1200px;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: transform 0.6s;
}

/* .footer_banner:hover {
  transform: scale(1.1) translate(-45%, 0%);
} */
.discus_p p {
  font: normal normal bold 48px/60px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  margin: 0;
  /* border-bottom: 3px solid #ffffff; */
  opacity: 1;
  display: inline;
  position: relative;
}
.discus_p p::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 100%;
  border-bottom: 4px solid;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.footer_banner:hover .discus_p p::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.coures_back .headings_top span {
  color: #6d17f2;
  font: normal normal bold 40px/50px Outfit;
}
.coures_back .headings_top span a {
  text-decoration: none;
  color: #6d17f2;
}
.testimonial_btn .btn,
.more_blog_btn .btn {
  font: normal normal 600 16px/20px Outfit;
}
/* .footer_banner img:hover {
  transform: scale(1.5);
} */
.footer_banner div {
  width: 33%;
}
.footer_banner div:nth-child(2) {
  text-align: center;
}
.footer_banner div:nth-child(3) {
  text-align: right;
}
footer {
  background-color: #1c1c1c;
  position: relative;
  margin-top: 170px;
}
.para_tag span {
  display: block;
}
.para_tag p {
  font: normal normal normal 26px/30px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}
.footer a,
.footer li {
  text-align: left;
  font: normal normal normal 16px/32px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  cursor: pointer;
  text-decoration: none;
}
.container {
  max-width: 960px;
  margin: 0 auto;
}
.brands {
  position: relative;
  overflow: hidden;
  height: 8.5rem;
}
.brands:hover .brands__wrapper,
.brands:hover .brands__preWrapper {
  animation-play-state: paused;
}
.brands__preWrapper {
  position: relative;
  width: 100vw;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.brands__wrapper {
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  animation: scrollText 20s infinite linear;
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  width: 250%;
}
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

button.slick-next.slick-arrow,
.slick-prev {
  display: none !important;
}
.testimonial button.slick-next.slick-arrow,
.testimonial .slick-prev.slick-arrow {
  display: unset !important;
}
.slick-next {
  right: 45% !important;
}
.slick-prev {
  left: 40% !important;
}
.slick-next,
.slick-prev {
  top: unset !important;
  bottom: -70px;
  width: 30px !important;
  height: 30px !important;
}
.slick-next:before,
.slick-prev:before {
  font-size: 40px !important;
  color: #000000 !important;
}
div#gallery {
  margin: 15px 0px;
  width: 100%;
  display: inline-block;
  overflow: hidden;
}

.sprite_logo_client {
  background-image: url(../assets/images/ECI-Client-Logos.svg);
  background-repeat: no-repeat;
  display: block;
}
.Clients_around .ACTC_log {
    background-position: 5px 0px;
    width: 58px;
    height: 57px;
}
.Clients_around .im_logo {
    background-position: -87px 2px;
    width: 123px;
    height: 66px;
}
.Clients_around .tele_com_logo {
    background-position: -247px 0px;
    width: 115px;
    height: 57px;
}
.Clients_around .jeklyn_hyd_logo {
    background-position: -395px 0px;
    width: 93px;
    height: 57px;
}
.Clients_around .moxi_works_logo {
    background-position: -522px 0px;
    width: 144px;
    height: 57px;
}
.Clients_around .Prakash_logo {
    background-position: -698px 0px;
    width: 81px;
    height: 64px;
}
.Clients_around .kingdom_sweet_logo {
    background-position: -814px 0px;
    width: 86px;
    height: 60px;
}

.ACTC_log {
  background-position: 1px 0px;
  width: 54px;
  height: 57px;
}
.im_logo {
  background-position: -86px 2px;
  width: 115px;
  height: 66px;
}
.tele_com_logo {
  background-position: -230px 0px;
  width: 115px;
  height: 57px;
}
.jeklyn_hyd_logo {
  background-position: -378px 0px;
  width: 77px;
  height: 57px;
}
.moxi_works_logo {
  background-position: -491px 0px;
  width: 137px;
  height: 57px;
}
.Prakash_logo {
  background-position: -662px 0px;
  width: 77px;
  height: 64px;
}
.kingdom_sweet_logo {
  background-position: -771px 0px;
  width: 86px;
  height: 60px;
}
.lV_logo {
  background-position: -1114px 0px;
  width: 130px;
  height: 57px;
}
.Yoho_life_logo {
  background-position: -1276px 0px;
  width: 84px;
  height: 57px;
}
.ecare_logo {
  background-position: -1392px 0px;
  width: 100px;
  height: 57px;
}
.HBA_logo {
  background-position: -890px 0px;
  width: 191px;
  height: 57px;
}
.two_steps_logo {
  background-position: -1524px 0;
  width: 102px;
  height: 57px;
}
.yellow_ex_logo {
  background-position: -1662px 0px;
  width: 150px;
  height: 57px;
}
.dovetail_logo {
  background-position: -1847px 0px;
  width: 126px;
  height: 57px;
}
.activePipe_logo {
  background-position: -2008px 0px;
  width: 126px;
  height: 57px;
}
.projectManda_logo {
  background-position: -2166px 0px;
  width: 160px;
  height: 57px;
}
.wellnessGreen_logo {
  background-position: -2360px 0px;
  width: 155px;
  height: 57px;
}
.kathryn_logo {
  background-position: -2549px 0px;
  width: 160px;
  height: 57px;
}
.rateMyAgent_logo {
  background-position: -2742px 0px;
  width: 127px;
  height: 57px;
}
.modusEngineering_logo {
  background-position: -2903px 0px;
  width: 126px;
  height: 57px;
}
.highPerformanceFather_logo {
  background-position: -3063px 0px;
  width: 140px;
  height: 57px;
}

.slick-track {
  display: flex;
  align-items: center;
}

img.video_img {
  width: 100%;
  height: auto;
  border-radius: 40px;
}

div#login-modal,
div#login-modal2,
div#login-modal3 {
  background-color: transparent;
  box-shadow: none;
  max-width: 700px;
}

div#login-modal iframe,
div#login-modal2 iframe,
div#login-modal3 iframe {
  width: 100%;
  border-radius: 40px;
  border: none;
}
a.close-modal {
  background-image: url("../assets/images/cross-icon%20(1.html).svg") !important;
}
.testimonial p {
  font: normal normal normal 21px/30px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  opacity: 1;
  padding-right: 120px;
}
.testimonial_section_top {
  margin-top: 100px;
}
.slick-slide img {
  margin: 0 auto;
}
.hte-sec .slick-slide img {
  margin: 0;
}
.testimonial {
  width: 49%;
}
.phots_videos {
  width: 49%;
}
.testimonial_section {
  display: flex;
  align-items: flex-start !important;
  justify-content: space-between;
  gap: 40px;
}
.phots_videos {
  width: 49%;
  gap: 20px;
}
.phots_videos_block1 {
  width: 55%;
  position: relative;
}
.phots_videos_block2 {
  width: 64%;
}

.phots_videos_block1 img,
.phots_videos_block2 img {
  width: 100%;
  height: auto;
}
.testimonial_btn {
  display: block;
  text-align: center;
  margin-top: 50px;
}

.more_blog_btn {
  display: block;
  text-align: center;
}
.testimonial_section_top .headings_top {
  margin-bottom: 60px !important;
  width: 700px;
  text-align: center;
  margin: 0 auto;
}
.phots_videos_block2 img:first-child {
  margin-bottom: 10px;
}
.pic_testi h3 {
  font: normal normal bold 16px/20px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  opacity: 1;
  margin: 0;
}
.pic_testi {
  position: relative;
  padding-left: 0px !important;
  padding: 40px;
  display: flex;
  width: auto !important;
  align-items: center;
  gap: 10px;
}
.pic_testi img {
  /* position: absolute; */
  width: 80px;
  margin: 0;
  /* left: 0;
  top: 50%; */
  /* transform: translate(0%, -50%); */
}
.pic_testi h4 {
  font: normal normal normal 16px/16px Outfit;
  letter-spacing: 0px;
  color: #696969;
  opacity: 1;
  margin: 0;
  margin-top: 8px;
}
.slick-dots li {
  margin: 0 0px !important;
}
.slick-dots li.slick-active button:before {
  color: #f3146b !important;
}
.slick-dots li button:before {
  font-size: 12px !important;
}
.slick-dots li button:before {
  opacity: 1 !important;
  color: #696969 !important;
}
.slick-dots {
  bottom: -55px !important;
}
.social_links img,
.sociallinks_hed {
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
  background-repeat: no-repeat;
}
img.icon_testi {
  margin: inherit;
  width: 70px;
  width: 67px;
  background-repeat: no-repeat;
  background-position: 3px -201px;
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
}
.facebook_ {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: 3px -275px;
  padding-bottom: 2px;
}
.Twitter_ {
  background-image: unset !important;
  width: 20px;
  height: 25px;
  background-repeat: no-repeat;
  /* background-position: -35px -275px; */
}
.instagram_ {
  width: 20px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: -79px -275px;
}
.linkin_ {
  width: 20px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: -120px -275px;
}
.youtube_ {
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: -160px -275px;
}
div#gallery .slick-track {
  display: flex !important;
  align-items: center;
}
.slick-slide div {
  width: 100%;
}

/* Contactus page css  get in touch*/

.without_back_ground .main_text {
  margin-top: 40px;
}
.submit_btn {
  width: auto !important;
  height: auto;
  margin-top: 16px;
}
.without_back_ground ul li a {
  color: #1c1c1c;
}
.without_back_ground .right_head img {
  width: 100%;
}
.without_back_ground h1,
.without_back_ground p {
  color: #1c1c1c;
  width: auto;
}
.form_flex {
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 20px;
}
#submit-form option {
  font-size: 16px;
  margin-top: 20px;
  font-family: "Outfit";
}
.form_flex div {
  width: 49%;
  /* margin-top: 30px; */
}
span.color_red {
  color: #f41046;
  text-decoration: underline;
}
input[type="file"] {
  /* visibility: hidden; */
  display: none;
}
/* about us */

/* .employees_img p:hover {
  transform: scale(1.3);
} */
.custom-space {
  margin: 80px auto !important;
}
.new_about_h2 {
  text-align: center;
}
.new_about_part {
  margin-bottom: 30px !important;
}
.new_p {
  font: normal normal normal 16px/25px Outfit;
  color: #4e4e4e;
}
.about_new_sec {
  background-color: #f5f5f5;
  padding: 20px 0 10px 0;
}
.new_about h2,
.new-h2,
.new_about_h2 {
  font-size: 40px;
  line-height: 50px;
}
.about_us {
  margin-bottom: 180px;
}
.employees_img p {
  transition: 1s;
}
.employees_img {
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  /* margin-bottom: 100px; */
}
.employees_img span {
  width: 100%;
  display: block;
  /* text-align: center; */
  font-weight: 600;
  line-height: 22px;
  font-size: 18px;
}
.display_flex.all_pic_group {
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
/* .Vision_about {
  margin-top: 60px;
} */
.brand_text_para h1,
.brand_text_para p {
  text-align: left;
  width: auto;
  padding-right: 60px;
  margin-bottom: 0px;
}
.brand_logo {
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 43px;
  row-gap: 25px;
  width: 60%;
}
.brand_logo img {
  background-image: url(../assets/images/ecareinfoway-client-logo-sprite.svg);
  background-repeat: no-repeat;
}
.brand_text_para.headings_top {
  width: 45%;
}
.visit-site-link {
  text-align: center;
}
a.site-url {
  display: inline-block;
  color: #f6114a;
  /* text-decoration: none; */
  line-height: 40px;
  transition: all 0.7s ease;
}
a.site-url:hover {
  transform: scale(1.1) !important;
  /* color: #bf02bf; */
}
a.site-url img,
.visit-site-link img {
  max-height: 18px;
  margin-bottom: -5px;
  margin-left: 0px;
}
.image_ecare_group img {
  width: 100%;
  height: auto;
  border-radius: 40px;
}
.image_text_left_right_reverse .display_flex:nth-child(even) {
  flex-direction: row-reverse;
}
.top_minus_margin img {
  width: 100%;
}
.top_minus_margin {
  margin-top: -230px;
  position: relative;
}
.image_text_left_right {
  align-items: center;
}
.width_right img {
  width: 100%;
  border-radius: 40px;
}
.width_right {
  width: 42%;
}
.top_minus_margin img {
  clip-path: inset(0% 0% 100%);
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.intro_fade.top_minus_margin img {
  clip-path: inset(0% 0% 0%);
}
a.details_view::after {
  content: "-";
  width: 8px;
  height: 5px;
  opacity: 1;
  margin-left: 7px;
  background-image: url(../assets/images/arrow_svg.svg);
}
.width_left {
  width: 48%;
}
.top_text_not_center {
  padding-top: 1px;
  height: 460px;
}
.toogle_text_on_view_details {
  display: none;
}
.yes_show_details {
  display: block;
}
.details_apply {
  display: flex;
  align-items: center;
  gap: 30px;
}
.image_ecare_group_full {
  /* height: 616px; */
  overflow: hidden;
  text-align: center;
}
.cs_container {
  background: #f5f5f5;
  padding: 40px;
}
.cs_text_container {
  text-align: center;
}
.cs_text_container h2 {
  font-size: 40px;
  margin: 0;
}
.cs_text_container p {
  line-height: 25px !important;
  color: #1c1c1c;
  font-size: 16px !important;
  font-weight: 400 !important;
  margin: 0;
  padding: 15px 0;
}
.top_minus_margin .image_ecare_group img {
  width: 100%;
  height: auto;
  object-position: 0px -100px;
}
.top_minus_margin_head h2 {
  width: 53% !important;
}
.image_text_left_right {
  margin-top: 100px;
  margin-bottom: 100px;
}
.image_text_left_right_reverse .image_text_left_right:nth-child(1) {
  margin-top: 100px !important;
}
.image_text_left_right_reverse .image_text_left_right:last-child {
  margin-bottom: 100px !important;
}
.border_red {
  border: 2px solid #f41046;
  color: #f41046;
}
.border_red:hover {
  color: #fff;
}
.banner_btn.banner_btn_applyNow.display_flex {
  margin-top: 50px;
}
.apply_now_row,
.toogle_text_on_view_details {
  background-color: #f8f8f8;
  margin-bottom: 0px;
}
.apply_now_row {
  padding: 10px 70px;
}
.toogle_text_on_view_details {
  padding: 30px 70px;
}
.toogle_text_on_view_details b {
  margin: 30px 0 15px 0;
  display: block;
}
.toogle_text_on_view_details p {
  font: normal normal normal 16px/25px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  /* width: 90%; */
  margin: 0 auto;
}
.job-responsibility li,
.job-requirement li {
  list-style: disc;
  margin-left: 20px;
}
span.btn.btn_back.applyNow_submit_btn {
  margin-top: 15px;
}
.currnt_opening .apply_now_row_even {
  background-color: #fff;
}

.apply_now_row_even + div {
  background-color: #fff !important;
}
a.details_view::after {
  content: "";
  width: 8px;
  height: 5px;
  display: inline-block;
  opacity: 1;
  margin-left: 7px;
  background-image: url(../assets/images/arrow_svg.svg);
  background-repeat: no-repeat;
  position: relative;
  top: -2px;
}
.infromation_para {
  text-align: center;
  font: normal normal bold 16px/25px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  opacity: 1;
  margin: 0;
  margin-top: 40px;
}
p.course_name {
  font: normal normal bold 16px/25px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  opacity: 1;
  margin: 0;
}
.details_view {
  font: normal normal normal 24px/30px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  opacity: 1;
}
.details_view {
  font: normal normal normal 17px/30px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  opacity: 1;
  margin: 0;
  cursor: pointer;
}
.details_apply .btn {
  font-size: 17px;
}
.current_opening_box .headings_top {
  margin-bottom: 70px;
}
.current_opening_box .inner_block {
  height: 180px;
  text-align: center;
  padding: 80px 40px;
  width: 250px;
}
.Vision_about h2 {
  text-align: left;
  font: normal normal bold 40px/103px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  opacity: 1;
  margin: 0;
}
.align_items_baseline {
  align-items: baseline;
}
.Vision_about p {
  text-align: left;
  font: normal normal normal 16px/25px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  opacity: 1;
  margin: 0;
  padding-right: 35px;
}
.cources_logo span {
  display: block;
  text-align: center;
}
.gap_flex {
  gap: 50px;
}

/* service_1 Page */
.large_width_logo {
  max-width: inherit !important;
}
.cources_logo {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 30px;
  margin-top: 60px !important;
  max-width: 537px;
  margin: 0 auto;
  column-gap: 86px;
  row-gap: 0 !important;
}
/* casestudy css */
span.display_flex.milestone_div {
  gap: 55px;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 40px;
}
.milestone_div span {
  width: 45%;
}
.milestone_div strong {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.gap_case_study h2 {
  width: 35% !important;
}
.top_minus_margin_head h2 {
  width: 53% !important;
}
.gap_case_study h2 {
  line-height: 44px;
}
.case_study_social_media_right_side {
  width: 563px;
}
.case_study_social_media_left_side {
  width: 286px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.case_study_social_media_left_side img,
.case_study_social_media_right_side img {
  width: 100%;
}
.case_study_social_media_gap {
  gap: 25px;
}
.case_study_position_overflow_hidden {
  overflow: hidden;
}
.left_right_images .small_img:nth-child(even) {
  text-align: right;
}
.case_study_social_media_right_side iframe {
  width: 100%;
  height: 284px;
  margin-bottom: 22px;
  border-radius: 15px;
}
.display_flex.case_study_social_media_gap.display_4_in_row {
  flex-wrap: wrap;
  gap: 20px;
}
.display_flex.case_study_social_media_gap.display_4_in_row img {
  max-width: 47.6%;
}
.case_study_social_media_left_right_side {
  margin-top: 60px;
  margin-bottom: 120px;
}

.gap_case_study p {
  width: 60% !important;
}
.align_items_flex_start {
  align-items: flex-start;
}
.left_right_images {
  margin-bottom: 120px;
}
a.btn_cas {
  font-size: 13px;
  text-align: left;
  font: normal normal normal 13px/17px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
}
.tabs_brand ul li a::after {
  display: none;
}
.tabs_brand ul {
  display: flex;
  align-items: center;
}
.images_banner img {
  width: 100%;
}
.tabs_brand li a {
  color: #1c1c1c;
  background: #e5e5e5 0% 0% no-repeat padding-box;
  border-radius: 30px;
  padding: 11px 50px;
}
.tabs_brand ul {
  display: flex;
  align-items: center;
  gap: 30px;
  row-gap: 45px;
  margin-top: 55px;
  flex-wrap: wrap;
}
img.full_image {
  width: 100%;
  margin-bottom: 35px;
}
.btn_case {
  text-align: center;
}
.side_images img:nth-child(odd) {
  position: absolute;
  left: -88px;
}
.side_images img:nth-child(even) {
  position: absolute;
  right: -88px;
}
.side_images img:nth-child(1) {
  top: 200px;
}
.side_images img:nth-child(2) {
  top: 600px;
}
.side_images img:nth-child(3) {
  top: 1000px;
}
.side_images img:nth-child(4) {
  bottom: 1000px;
}
.side_images img:nth-child(5) {
  bottom: 600px;
}

/* Casestudy before-after slider */

.before-after-main {
  display: grid;
  place-items: center;
}

.beforeafter-container {
  place-content: center;
  position: relative;
  overflow: hidden;
  --position: 50%;
  width: 100%;
}

.beforeafter-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.beforeafter-image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  filter: sepia(0.6);
}

.beforeafter-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.beforeafter-slider:focus-visible ~ .beforeafter-slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.beforeafter-slider-line {
  position: absolute;
  inset: 0;
  width: 0.2rem;
  height: 100%;
  background-color: #afafaf;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.beforeafter-slider-button {
  position: absolute;
  color: black;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* services Page */

.sprite_image_all {
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
}
.icon_services {
  width: 68px !important;
  height: 66px !important;
}
.service_research_icon {
  background-position: 3px -306px;
}
.service_personal_devlopment_icon {
  background-position: -64px -306px;
}
.service_Data_Science_icon {
  background-position: -135px -306px;
}
.service_brand_positioning_icon {
  background-position: -201px -306px;
}
.service_Systematic_icon {
  background-position: -270px -306px;
}
.service_Social_Behaviour_icon {
  background-position: -338px -306px;
}
.service_Market_Analysis_icon {
  background-position: -408px -306px;
}
.service_Concept_Development_icon {
  background-position: -480px -306px;
}

.service_branding_icon {
  background-position: 3px -376px;
}
.service_user_interface_icon {
  background-position: -64px -376px;
}
.service_web_designicon_icon {
  background-position: -135px -376px;
}
.service_Product_Design_icon {
  background-position: -201px -376px;
}
.service_User_Experience_icon {
  background-position: -270px -376px;
}
.service_Information_Architecture_icon {
  background-position: -343px -376px;
}
.service_Interaction_Design_icon {
  background-position: -414px -376px;
}
.service_Calligraphy_icon {
  background-position: -484px -376px;
}
.service_Digital_icon {
  background-position: -560px -376px;
}

.service_creative_copywriting_icon {
  background-position: 3px -444px;
}
.service_photography_icon {
  background-position: -68px -444px;
}
.service_illustration_icon {
  background-position: -135px -444px;
}
.service_Animation_icon {
  background-position: -208px -444px;
}
.service_Storytelling_icon {
  background-position: -280px -444px;
}
.service_Video_Production_icon {
  background-position: -348px -444px;
}
.service_Search_Engine_icon {
  background-position: -420px -444px;
}
.service_Social_Behavior_icon {
  background-position: -490px -444px;
}

.service_front_end_development_icon {
  background-position: 3px -513px;
}
.service_e_Commerce_icon {
  background-position: -68px -513px;
}
.service_webGL_icon {
  background-position: -135px -513px;
}
.service_Back_End_Development_icon {
  background-position: -208px -513px;
}
.service_CMS_CMF_icon {
  background-position: -280px -513px;
}
.service_Mobile_Web_icon {
  background-position: -349px -513px;
}
.service_Native_OS_icon {
  background-position: -418px -513px;
}
.service_Version_Control_System_icon {
  background-position: -418px -513px;
}
.adobe_xd_icon {
  background-position: 20px -649px;
}
.adobe_xd_icon:hover {
  background-position: 20px -852px;
}
.Figma_icon {
  background-position: -119px -649px;
}
.Figma_icon:hover {
  background-position: -119px -852px;
}
.Invasion_icon {
  background-position: -260px -649px;
}
.Invasion_icon:hover {
  background-position: -260px -852px;
}
.photoshop_icon {
  background-position: -50px -649px;
}
.photoshop_icon:hover {
  background-position: -50px -852px;
}
.illustrator_icon {
  background-position: -190px -649px;
}
.illustrator_icon:hover {
  background-position: -190px -852px;
}

.Vanilla_icon_tech {
  background-position: 0px -584px;
}
.Vanilla_icon_tech:hover {
  background-position: 0px -790px;
}
.Laravel_icon_tech {
  background-position: -156px -584px;
}
.Laravel_icon_tech:hover {
  background-position: -156px -790px;
}
.Shopify_icon_tech {
  background-position: -284px -584px;
}
.Shopify_icon_tech:hover {
  background-position: -284px -790px;
}
.Python_icon_tech {
  background-position: -432px -584px;
}
.Python_icon_tech:hover {
  background-position: -432px -790px;
}
.Flutter_icon_tech {
  background-position: -504px -584px;
}
.Flutter_icon_tech:hover {
  background-position: -504px -790px;
}
.React_icon_tech {
  background-position: -83px -584px;
}
.React_icon_tech:hover {
  background-position: -83px -790px;
}
.WordPress_icon_tech {
  background-position: -219px -584px;
}
.WordPress_icon_tech:hover {
  background-position: -219px -790px;
}
.WooCommerce_icon_tech {
  background-position: -352px -584px;
}
.WooCommerce_icon_tech:hover {
  background-position: -352px -790px;
}
.Node_icon_tech {
  background-position: -568px -584px;
}
.Node_icon_tech:hover {
  background-position: -568px -790px;
}

.scroll_section_horizontal_flex {
  display: flex;
  align-items: baseline;
  column-gap: 50px;
  overflow: auto;
}
.scroll_section_horizontal_margin {
  margin: 100px 0 100px auto;
  max-width: 1400px;
}
.scroll_section_horizontal_flex_top span {
  font: normal normal bold 92px/45px Outfit;
  letter-spacing: 0px;
  color: #f4e2e6;
  opacity: 1;
}
.scroll_section_horizontal p {
  width: 360px;
}
.scroll_section_horizontal_flex .slick-list.draggable {
  padding: 0 61% 0 0 !important;
}
.scroll_section_horizontal img {
  margin: auto 0;
  margin-bottom: 25px !important;
  max-width: 560px;
}
.scroll_section_horizontal h3 {
  font: normal normal bold 28px/30px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  opacity: 1;
  margin: 0;
}
.scroll_section_horizontal p {
  font: normal normal normal 16px/25px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  opacity: 1;
  margin-bottom: 50px;
}
.scroll_section_horizontal_flex {
  margin-top: 60px;
}
.scroll_section_horizontal_flex_top {
  justify-content: flex-start;
  gap: 60px;
}
.scroll_section_horizontal_flex_top p {
  width: 415px;
}
.display_flex.scroll_section_horizontal_flex_top h2 {
  font: normal normal bold 40px/50px Outfit;
  margin-bottom: 20px !important;
}
.full_width_background .scroll_section_horizontal_margin {
  margin: 0 0 0 auto;
}

.left_right_images .small_img img {
  max-width: 558px;
  cursor: pointer;
}
.align_right {
  text-align: right;
}

/* Hire page */
span.btn.btn_back {
  padding: 0;
}

.form_heading span.btn.btn_back {
  padding: 0;
}
input.submit_btn {
  margin: 0;
  height: 100%;
  padding: 15px 40px;
  background-color: transparent !important;
  cursor: pointer;
  font: normal normal bold 16px/20px Outfit;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1 !important;
}
.form_heading {
  width: 36%;
}
.top_left_form_banner label {
  margin-top: 5px;
  margin-bottom: 6px;
}
.banner_top_form .text_side {
  width: 50%;
}
.form_heading label {
  color: #fff;
}
.form_heading input,
.form_heading textarea {
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.3) 0% 0% no-repeat padding-box;
}
.form_heading .btn_back {
  background: #f6114a 0% 0% no-repeat padding-box;
  border-radius: 93px;
  color: #fff;
  opacity: 1;
  /* margin-top: 20px !important; */
}
.banner_top_form {
  padding-bottom: 90px;
}
.cources_logo img {
  background-image: url(../assets/images/ecareinfoway-sprite02.svg);
  background-repeat: no-repeat;
  width: 66px;
  height: 74px;
  margin: 0 auto;
  display: block;
}

.cources_logo .tech_height_width {
  width: 83px;
  height: 80px;
  margin: 0 auto;
  display: block;
}
img.Adobe {
  background-position: 11px -644px;
}
img.Figma {
  background-position: -57px -650px;
}
img.Invasion {
  background-position: -119px -650px;
}
img.Photoshop {
  background-position: -178px -644px;
}
img.Illustrator {
  background-position: -242px -646px;
}
.bac_img {
  background: url(../assets/images/bac_ground_image.jpg);
  padding-bottom: 19px;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 1px;
}
.bac_img .headings_top h2,
.bac_img .headings_top p {
  color: #fff;
}
.bac_img .headings_top p {
  color: #fff;
  margin-bottom: 60px;
  line-height: 20px;
  margin-top: 14px;
}
.text_left_heading {
  width: 44%;
}
.text_right_para {
  width: 50%;
}
.text_left_heading p {
  font: normal normal bold 16px/20px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  text-align: right;
  /* width: 300px; */
}
.tabs_brand_hire li {
  background: #e5e5e5 0% 0% no-repeat padding-box;
  border-radius: 30px;
  color: #1c1c1c;
  padding: 10px 20px;
  font: normal normal normal 13px/17px Outfit;
  letter-spacing: 0px;
}
.tabs_brand_hire ul {
  flex-wrap: wrap;
  gap: 15px;
  justify-content: end;
}
.display_flex.tabs_brand_hire {
  align-items: baseline;
  gap: 60px;
  margin-top: 30px;
}
.text_right_para p {
  font: normal normal normal 16px/24px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
}
.why_should_hire img {
  width: 38px;
  height: 41px;
  background-image: url(../assets/images/ecareinfoway-sprite.svg);
  background-repeat: no-repeat;
}
.Sureness img {
  background-position: 0px -724px;
}
.Sublime img {
  background-position: -42px -724px;
}
.Customize img {
  background-position: -91px -724px;
}
.Security img {
  background-position: -139px -724px;
}
.Experience img {
  background-position: -190px -724px;
}
.Installation img {
  background-position: -240px -725px;
}

.why_should_hire {
  max-width: 690px;
  margin: 20px auto;
}
.why_should_hire li {
  width: 240px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: left;
  justify-content: flex-start;
  line-height: 18px;
}
.bg-rmv img {
  background-image: unset;
}
.bg-rmv ul {
  gap: 20px;
}
.f-blog {
  position: fixed;
  width: 300px;
  right: -300px;
  top: 20%;
  z-index: 9999;
  background: white;
  padding: 15px 15px 25px 26px;
  box-shadow: 0 1px 9px -3px #0000003b;
  border-radius: 30px 0 0 30px;
  transition: transform 0.7s ease, right 0.7s ease;
  transform: translateX(100%);
  max-height: 100%;
  height: 300px;
}

.fblog-popup-title {
  margin-top: 54px;
  line-height: 36px;
  font-weight: 400;
  font-size: 30px;
}

.f-blog a {
  text-decoration: none;
}

p.popup-excerpt {
  color: #6b6b6b;
}

.popup_close {
  float: right;
  cursor: pointer;
  margin: 10px;
}
/* .p-link img {
  width: 24px;
  background: #EAEAEA;
  padding: 15px 13px;
  border-radius: 50%;
} */
.contact_now {
  width: fit-content;
  background: #eaeaea;
  padding: 11px;
  border-radius: 30px;
  display: flex;
  transition: all 0.5s ease;
  align-items: center;
  gap: 10px;
}
.contact_now img {
  width: 20px;
  height: 20px;
}
.contact_now span {
  color: #f41046;
  display: none;
  line-height: 20px;
}

.p-link:hover .contact_now {
  box-shadow: 0 1px 8px -3px #f41046c7;
  background: #fff;
}

/* .p-link:hover .contact_now span{
  display: block;
  
}
/* .p-link:hover .contact_now {
  padding: 11px 36px;
} */
*/ li.Sureness,
li.Security {
  width: 180px;
}

/* mobile_bar_css */
.right_head.logo_fade {
  position: absolute;
  z-index: 9999;
}
.fixed_logo {
  position: fixed;
  display: flex;
  z-index: 99;
}
nav#header-container {
  justify-content: end;
}

.mobile_nav,
.wmobile_nav {
  text-align: center;
  top: -30px;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0%);
  height: 100vh;
  width: 100%;
}
a.custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.mobile_bar_nav {
  width: 20px !important;
  opacity: 0;
  height: 3.75rem;
  top: 0;
  position: absolute;
  -webkit-transition: opacity 250ms ease, right 250ms ease;
  transition: opacity 250ms ease, right 250ms ease;
  width: 3.25rem;
  z-index: 1;
  cursor: pointer;
}

.newClass .mobile_bar_nav {
  opacity: 1;
  right: 1.2rem;
  -webkit-transition: opacity 250ms ease 75ms, right 250ms ease 75ms;
  transition: opacity 250ms ease 75ms, right 250ms ease 75ms;
}

.navbar .right_head {
  z-index: 99;
  border-radius: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Scroll_down_burger_seen .right_head,
.Scroll_down_burger_seen .navbar {
  opacity: 0;
}
.right_head.newClass {
  opacity: 1 !important;
  position: fixed;
  background-color: #6d17f2;
  /* background: transparent linear-gradient(94deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0% no-repeat padding-box !important; */
  width: 97px !important;
  border-radius: 61px;
  padding-right: 20px;
  gap: 10px;
}
.body_scroll_no {
  overflow-y: hidden;
}
.right_head.fixed_logo {
  width: 63px;
  transition: 0.5s;
  border-radius: 61px;
}
span.show_mobile.mobile_bar_nav icon-inner:before {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 0.063rem;
  top: calc(50% - 7px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 1.375rem;
  background-color: #fff;
  content: "";
  height: 2px;
  position: absolute;
  -webkit-transition: background-color 250ms ease, top 250ms ease,
    width 250ms ease, -webkit-transform 250ms ease;
  transition: background-color 250ms ease, top 250ms ease, width 250ms ease,
    -webkit-transform 250ms ease;
  transition: background-color 250ms ease, transform 250ms ease, top 250ms ease,
    width 250ms ease;
  transition: background-color 250ms ease, transform 250ms ease, top 250ms ease,
    width 250ms ease, -webkit-transform 250ms ease;
}
span.show_mobile.mobile_bar_nav icon-inner:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 0.063rem;
  top: calc(50% + 7px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 1.375rem;
  background-color: #fff;
  content: "";
  height: 2px;
  position: absolute;
  -webkit-transition: background-color 250ms ease, top 250ms ease,
    width 250ms ease, -webkit-transform 250ms ease;
  transition: background-color 250ms ease, top 250ms ease, width 250ms ease,
    -webkit-transform 250ms ease;
  transition: background-color 250ms ease, transform 250ms ease, top 250ms ease,
    width 250ms ease;
  transition: background-color 250ms ease, transform 250ms ease, top 250ms ease,
    width 250ms ease, -webkit-transform 250ms ease;
}
icon-inner {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 0.063rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 1.375rem;
  background-color: #fff;
  height: 2px;
  position: absolute;
  -webkit-transition: background-color 250ms ease, width 250ms ease;
  transition: background-color 250ms ease, width 250ms ease;
}
.open_menu span.show_mobile.mobile_bar_nav icon-inner:before {
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  width: 1.375rem;
}
.open_menu span.show_mobile.mobile_bar_nav icon-inner:after {
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  width: 1.375rem;
}
.open_menu icon-inner {
  background-color: rgba(255, 255, 255, 0);
  width: 1.375rem;
}

.mobile_menu.Open_bar {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mobile_menu {
  background-color: #fff;
  background: transparent linear-gradient(93deg, #6d17f2 0%, #6d17f29e 100%) 0%
    0% no-repeat padding-box;
  min-width: 20rem;
  overflow: hidden;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: background-color 1.5s ease, -webkit-transform 750ms ease;
  transition: background-color 1.5s ease, -webkit-transform 750ms ease;
  transition: transform 750ms ease, background-color 1.5s ease;
  transition: transform 750ms ease, background-color 1.5s ease,
    -webkit-transform 750ms ease;
  z-index: 55;
}

.newClass .text_remove_log {
  display: none;
}
.right_head .small_logo_for_menu {
  width: 32%;
  position: absolute;
  left: 0;
}
.newClass .small_logo_for_menu {
  opacity: 1;
  width: 34%;
  left: 22px;
  top: 7px;
}
.newClass_nav .left_head {
  opacity: 0 !important;
}
.mobile_nav h3,
.wmobile_nav h3 {
  color: #fff;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 4px;
}
.mobile_nav li,
.wmobile_nav li {
  margin-top: 0px;
}
.mobile_menu ul.social_links {
  justify-content: center;
  margin-top: 16px;
}
.logo_mobile {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.logo_mobile img {
  width: 140px;
}
.mobile_menu a {
  color: #fff !important;
  font-size: 2.25rem;
  text-transform: capitalize;
  line-height: 4rem;
}
/* mobile_bar_css */
.inner_mobile_menu_back {
  background: transparent linear-gradient(93deg, #6d17f2 0%, #6d17f29e 100%) 0%
    0% no-repeat padding-box;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.image_change_about,
.image_Service_hover,
.image_work_hover,
.image_Careers_hover {
  background-image: url(../assets/images/front-bg.jpg) !important;
  background-size: cover !important;
  opacity: 1;
  transition: 0.7s;
}
.image_Service_hover {
  /* background-image: url(../assets/images/banner___top.webp)  !important; */
  background-image: url(../assets/images/front-bg.jpg) !important;
  background-size: cover !important;
  opacity: 1;
  transition: 0.7s;
}

.cs-logo-img img {
  max-width: 30px;
  width: 100%;
}
.cs-logo-img {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  flex-direction: row !important;
}

/* .full_width_background .scroll_section_horizontal_margin {
  padding-top: 60px;
  padding-bottom: 60px;
} */
.margin_100 {
  margin-top: 100px;
}
.fade {
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 1s, transform 1s;
}
.fade-transform-1.fade {
  opacity: 0;
  transform: translateY(1%);
  transition: opacity 1s, transform 1s;
}
.fade-transform-1.intro_fade {
  opacity: 1;
  transform: translateY(0);
}
.intro_fade {
  opacity: 1;
  transform: translateY(0);
}

/* marque logo css */

.client-logo-listing {
  overflow: hidden;
  height: 115px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.client-logo-listing ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.js-marquee-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.client-logo-listing ul li {
  padding: 0px 50px;
  display: block;
}
.client-logo-listing .brands-marquee {
  padding: 25px 0;
}
.client-logo-listing .js-marquee-wrapper:hover ul li a:hover,
.client-logo-listing .js-marquee-wrapper:hover ul li div:hover {
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);
}
.client-logo-listing .js-marquee-wrapper:hover ul li a,
.client-logo-listing .js-marquee-wrapper:hover ul li div {
  -webkit-transition: all 500ms linear 0s;
  -moz-transition: all 500ms linear 0s;
  -o-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}

img[data-modal="#login-modal3"] {
  position: relative;
  z-index: 999;
}

/* BlogsStyle */
.blg_list_blocks .blog-item img {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.main-blog-details h2 {
  margin: 30px 0 15px 0;
  font-size: 28px;
  line-height: 33px;
  color: #333;
}
.main-blog-details .content a {
  color: #f41046;
  transition: 0.5s;
}
.main-blog-details .content a:hover {
  color: #fff;
  background-color: #f41046;
}
.main-blog-details h3 {
  font-size: 23px;
  font-weight: 500;
  margin: 20px 0 10px 0;
  color: #333;
}
.main-blog-details p {
  color: #333;
}
.main-blog-details ul li {
  list-style: disc;
  margin-bottom: 10px;
  margin-left: 20px;
}
.blg_list_blocks div img {
  width: 100%;
  border-radius: 20px;
}
.blg_list_blocks li a::after {
  display: none;
}
.blg_list_blocks a {
  text-decoration: none;
  color: #000;
  font: normal normal normal 16px/25px Outfit;
  letter-spacing: 0px;
  color: #4e4e4e;
  width: 33%;
}
.blg_list_blocks {
  margin-top: 30px;
  width: 100%;
  gap: 0 !important;
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}
.blg_list_blocks .fade:hover {
  /* background-color: #fff; */
  transition: ease-in-out 0.5s;
}
.blg_list_blocks .blog-list-img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  padding: 0;
  margin-bottom: 0;
}
.blg_list_blocks .blog-list-img img {
  width: 100%;
  height: -webkit-fill-available;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: none;
}
.blg_list_blocks .fade:hover img,
.blog-item:hover img {
  transform: scale(1.1);
}
.blg_list_blocks_div,
.margin_padding_bottom {
  margin-bottom: -170px;
  padding-bottom: 170px;
}
.blg_list_blocks div {
  /* width: 33%; */
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.home_blog div {
  width: 33%;
}
.blg_list_blocks h3 {
  text-align: left;
  font: normal normal 600 16px/25px Outfit;
  letter-spacing: 0px;
  color: #f41046;
  opacity: 1;
  margin: 0;
  margin-top: 6px;
}
.blg_list_blocks p {
  text-align: left;
  font: normal normal 500 20px/23px Outfit;
  letter-spacing: 0px;
  color: #1c1c1c;
  opacity: 1;
  margin: 6px 0px;
  height: auto;
}
/* blogslisting */

ul#tabs-nav {
  margin: 0px 10px;
  border-bottom: 1px solid #bec0ca;
}
.images_section_width a {
  width: 100%;
}

p.home_top_btns {
  display: flex;
  gap: 65px;
}

/* carousel-imgs in case study */

.carousel-img-container {
  padding: 25px;
}

.carousel-imgs {
  position: relative;
  max-width: 941px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-imgs img {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  display: none;
}

.carousel-imgs img.active {
  display: block;
  opacity: 1;
}

/* strategic-marketing */

.strategic-marketing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

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

.marketing-frame video {
  width: 90%;
}

.marketing-posts img {
  height: auto;
  max-width: 620px;
  width: 100%;
}

/* insta-reels */

.reel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 941px;
  margin: 50px auto;
  gap: 25px;
  padding: 0 20px;
}

.reel-container .reel video {
  position: relative;
  max-width: 300px;
  width: 100%;
}

/* animated-banner */
.animated-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
}
.banner video {
  max-width: 941px;
  width: 100%;
}

/* purpose-section */
.purpose-section-container {
  padding: 0 25px;
}
.purpose-section {
  max-width: 941px;
  display: flex;
  justify-content: end;
  align-items: center;
  margin: auto;
  padding: 150px 0px;
  gap: 76px;
}
.purpose-section p{
  font-size: 18px;
}
.purpose-section .section-tag {
  text-transform: uppercase;
  color: #8d8d8d;
}
.purpose-section .section-title {
  font-size: 40px;
  margin: 0;
}
.purpose-section .section-info {
  color: #424D5C;
}
.purpose-bg, .purpose-bg .section-tag, .purpose-bg .section-info{
  color: white;
}
.purpose-bg{
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 900px){
.purpose-section{
  flex-direction: column;
  text-align: center;
  gap: 30px;
  padding: 70px 0px;
}
}

@media (max-width: 768px) {
  .strategic-marketing,
  .reel-container {
    gap: 15px;
  }
}

@media (max-width: 450px) {
  .strategic-marketing,
  .reel-container {
    flex-direction: column;
  }
}

@media screen and (min-width: 1921px) {
  .scroll_section_horizontal_margin {
    max-width: 1700px;
  }
}
@media screen and (min-width: 1520px) {
  .footer_banner {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1520px) {
  .scroll_section_horizontal_margin {
    max-width: 1150px !important;
  }
  .slider_animated_div .slick-list {
    padding: 0px 46% 0 0 !important;
  }
  .headContainer {
    max-width: 1280px;
  }
  .slider_animated_div {
    width: 55%;
  }
  .footer_banner {
    width: 89%;
  }
  .section_div {
    gap: 20px;
  }
  .discus_p p {
    font: normal normal bold 40px/68px Outfit;
  }
}
@media (max-width: 1500px) and (min-width: 1351px) {
  .scroll_section_horizontal_margin {
    max-width: 1250px !important;
  }
}

@media (max-width: 1439px) {
  .clients-table .testimonial-text span {
    font-size: 45px;
  }
}

@media screen and (max-width: 1350px) {
  .clients-table .testimonial-text span {
    font-size: 40px;
  }
  .slider_animated_div .slick-list {
    padding: 0px 32% 0 0 !important;
  }
  /*.scroll_section_horizontal_margin {
    max-width: 870px !important;
  }*/
  .scroll_section_horizontal img {
    width: 93%;
  }
  .scroll_section_horizontal_flex img {
    width: auto;
  }
  .scroll_section_horizontal_flex .slick-list.draggable {
    padding: 0 56% 0 0 !important;
  }
  .scroll_section_horizontal_margin {
    margin: 80px 0 80px auto;
  }
  .testimonial p {
    font: normal normal normal 18px/30px Outfit;
  }
  .full_width_background .scroll_section_horizontal_margin {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .headContainer {
    max-width: 1200px;
  }
  div#gallery .slick-track {
    gap: 90px;
    text-align: center;
  }
  .slider_animated_div {
    width: 50%;
  }
  .slider_arrow_div .headings_top {
    width: 40%;
  }
}

@media (min-width: 1201px) {
  .mobile-show {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .inverted-box-card {
    width: calc(90% / 3);
  }
  td.mobile-none {
    display: none;
  }
  .mobile-show {
    display: table row;
  }
  .animation_text_rotate {
    padding: 0px 0px 45px 0px;
  }
  .blg_list_blocks p {
    font: normal normal 500 20px/23px Outfit;
  }
  /* .blg_list_blocks div {
    width: 50%;
  } */
  .position {
    display: none;
  }
  .scroll_section_horizontal_flex_top span {
    font: normal normal bold 60px/45px Outfit;
    margin: 10px 0px;
  }
  .display_flex.scroll_section_horizontal_flex_top h2 {
    font: normal normal bold 33px/38px Outfit;
    margin-bottom: 15px !important;
    margin-top: 15px;
  }
  .scroll_section_horizontal h3 {
    font: normal normal bold 22px/30px Outfit;
  }
  .scroll_section_horizontal p {
    font: normal normal normal 16px/25px Outfit;
    width: 322px;
  }
  .banner_top {
    padding-bottom: 60px;
  }
  header {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .form_heading form {
    width: 90%;
  }
  .headContainer {
    max-width: 1015px;
  }
  p.main_text {
    font: normal normal bold 55px/60px Outfit;
  }
  .margin_full {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .animated-banner{
  margin-bottom: 70px;
    margin-top: 70px !important;
}

  .cs_img {
    /* margin-top: unset !important; */
    margin-bottom: 60px;
    position: relative;
    /* margin-top: -260px !important; */
  }
  .footer_banner {
    width: 85%;
  }
  .para_tag p {
    font: normal normal normal 25px/30px Outfit;
  }
  .discus_p p {
    font: normal normal bold 30px/67px Outfit;
  }
  .headings_top h2,
  .coures_back .headings_top span,
  .new_about h2,
  .new-h2,
  .new_about_h2 {
    font: normal normal bold 38px/40px Outfit;
  }
  .section_one p {
    font: normal normal normal 16px/26px Outfit;
    max-width: 390px;
  }
  .section_one {
    grid-column: 1/3;
  }
  .footer_flex {
    grid-template-columns: repeat(5, 1fr);
  }
  .testimonial_btn {
    /* margin-bottom: 140px; */
    margin-top: 75px;
  }

  .blg_list_blocks_div .testimonial_btn {
    margin-bottom: 120px;
    margin-top: 45px;
  }
  .phots_videos_block2 img:first-child {
    margin-bottom: 0px;
  }
  .phots_videos {
    gap: 12px;
  }

  div#gallery .slick-track {
    gap: 50px;
  }
  img.icon_testi {
    margin-left: 1px;
  }
  .inner_block {
    width: 106% !important;
    height: 450px !important;
  }
  .padding_box.display_flex.slider_arrow_div {
    height: 470px;
  }
  .inner_block p br {
    display: none;
  }
  .scroll_section_horizontal_margin {
    max-width: 1050px !important;
  }
}
@media screen and (max-width: 1125px) {
  .scroll_section_horizontal_margin {
    max-width: 980px !important;
  }
}
@media screen and (max-width: 1022px) {
  header {
    padding-bottom: 15px !important;
    padding-top: 15px !important;
  }
  .scroll_section_horizontal_margin {
    max-width: 900px !important;
  }
  .case_study_social_media_left_side {
    width: 314px;
  }
  .case_study_social_media_right_side {
    width: 555px;
  }
  .padding_box.display_flex.slider_arrow_div {
    margin-top: 0px;
  }
  .scroll_section_horizontal_flex .slick-list.draggable {
    padding: 0 54% 0 0 !important;
  }
  .scroll_section_horizontal p {
    font: normal normal normal 16px/25px Outfit;
    width: 270px;
  }
  .scroll_section_horizontal_flex_top p br {
    display: none;
  }
  .scroll_section_horizontal_flex_top p {
    width: 370px !important;
    margin-bottom: 0px;
  }
  .Vision_about h2 {
    font: normal normal bold 40px/80px Outfit;
  }
  .Vision_about {
    margin-top: 15px;
  }
  .banner_btn {
    margin-top: 40px;
  }
  .images_section_width img {
    width: 90%;
    margin-top: 40px;
  }
  .main_text h1 {
    font: normal normal bold 44px/50px Outfit;
    margin-bottom: 15px;
  }
  .coures_back {
    padding-bottom: 90px;
    padding-top: 90px;
  }
  .right_head img {
    width: auto;
  }
  .apply_now_row {
    display: flex !important ;
    padding: 6px 35px;
  }

  .footer_flex {
    grid-template-columns: repeat(3, 1fr);
  }
  .section_one {
    grid-column: 1/3;
    margin-bottom: 40px;
  }
  .section_three {
    grid-column: 1/3;
  }
  .section_one p {
    font: normal normal normal 16px/26px Outfit;
    max-width: 423px;
  }
  p.main_text {
    font: normal normal bold 37px/50px Outfit;
    margin-bottom: 10px;
  }
  .show_dextop {
    display: none !important;
  }

  .top_section {
    display: flex !important ;
    gap: 20px;
  }
  .image_banner {
    margin-top: 70px;
    text-align: center;
  }
  div#gallery {
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .image_banner img {
    width: 80%;
  }
  .img-box {
    width: auto !important;
  }
  span.read-more-btn {
    margin-top: 13px;
  }

  .information_tags p {
    font: normal normal bold 18px/10px Outfit;
  }
  .information_tags h3 {
    font: normal normal normal 16px/14px Outfit;
    margin-top: 8px;
    margin-bottom: 5px;
  }
  .inner_block p {
    font: normal normal normal 16px/23px Outfit;
  }
  .inner_block h3 {
    font: normal normal 800 23px/24px Outfit;
  }
  .inner_block h3 {
    font: normal normal 800 25px/27px Outfit;
  }
  .footer_banner {
    width: 90%;
    padding: 10px 34px;
    top: -50px;
  }
  .para_tag p {
    font: normal normal normal 20px/20px Outfit;
  }
  .discus_p p {
    font: normal normal bold 22px/67px Outfit;
  }
  .footer_flex {
    padding-top: 70px;
  }
  .testimonial p {
    font: normal normal normal 18px/23px Outfit;
    padding-right: 10px;
  }
  .pic_testi {
    /* padding-left: 80px !important; */
  }
  .pic_testi img {
    width: 70px;
  }
  .testimonial_section {
    gap: 0px;
  }
  /* .testimonial_btn {
    margin-bottom: 100px;
    margin-top: 89px;
  } */
  .headings_top h2,
  .coures_back .headings_top span,
  .new_about h2,
  .new-h2,
  .new_about_h2 {
    font: normal normal bold 30px/34px Outfit;
  }
  .headings_top p {
    font: normal normal normal 16px/24px Outfit;
    margin-top: 10px;
  }
  .testimonial_section_top .headings_top {
    width: auto;
  }
  .tabs_brand li a {
    color: #1c1c1c;
    background: #e5e5e5 0% 0% no-repeat padding-box;
    border-radius: 30px;
    padding: 11px 25px;
  }
  .form_heading form {
    width: 100%;
  }
  .form_heading {
    width: 45%;
  }
  .display_flex.tabs_brand_hire {
    gap: 38px;
  }

  .slider_animated_div .slick-list {
    padding: 0px 15% 0 0 !important;
  }
}
@media screen and (max-width: 992px) {
  #cursor {
    display: none !important;
  }
  #cursor-border {
    display: none !important;
  }
  .degree-list-wrap.display_flex {
    flex-direction: column-reverse;
  }
  .hte-why-choose-wrapp .degree-list-wrap.display_flex {
    flex-direction: unset;
  }
  .hte-why-choose-wrapp .degree-list-wrap.display_flex {
    row-gap: 30px;
  }
  .intern-wrap.display_flex {
    flex-direction: column;
  }
  .scroll_section_horizontal_margin {
    max-width: 800px !important;
  }
  .inverted-box-card {
    width: calc(96% / 2);
  }
  .challenge-box-wrapp{
    margin-top: 30px !important;
  }
}
@media (max-width: 880px) {
  .cookie-consent-inner {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  .cookie-consent p {
    line-height: 1.5;
  }
}
@media screen and (max-width: 850px) {
  .scroll_section_horizontal_margin {
    max-width: 700px !important;
  }
}
@media screen and (max-width: 800px) {
  .hte-why-choose-wrapp .degree-list-wrap.display_flex {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 767px) {
.testimonial_section .inner_video_block{
  margin-top: 70px;
}
  .mobile_banner {
    display: none;
  }
  p.mobile-map {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  p.home_top_btns {
    gap: 25px;
  }
  .testimonial-text h2 {
    font-size: 28px;
  }

  .testimonial-text .animation_text_rotate {
    top: 0;
  }
  .testimonial-list .testimonial-list-inner {
    column-count: 1;
  }

  .clients-table .testimonial-text span {
    font-size: 20px !important;
  }

  .clients-table .testimonial-text .animation_text_rotate {
    padding: 0px 0px 0px 0px;
    height: 50px;
  }

  .clients-table img {
    max-width: 100px;
    width: 100%;
    max-height: 50px;
  }

  .clients-table td {
    padding: 5%;
  }
  td.mobile-none {
    display: none;
  }
  .testimonial-popup .testi-popup-inner {
    padding: 30px;
  }
  .desktop_banner {
    display: none !important;
  }
  .mobile_banner {
    display: block !important;
  }
  .ecare_map {
    display: none;
  }
  .degree-wrap .degree-list-wrap .width_right {
    width: 80%;
  }
  .degree-head.headings_top, .intern-map-sec .intern-map-head {
    width: 80%;
    margin: 0 auto;
  }
  .intern-wrap {
    margin: 30px 0 70px 0;
  }
  .gap_case_study h2 {
    width: 100% !important;
  }
  .case_study_social_media_left_side {
    width: 33%;
  }
  .case_study_social_media_left_right_side {
    margin-top: 39px;
    margin-bottom: 70px;
  }
  .case_study_social_media_right_side {
    width: 63%;
  }
  .case_study_social_media_right_side iframe {
    height: 190px;
  }
  .display_flex.case_study_social_media_gap.display_4_in_row img {
    max-width: 46.6%;
  }
  .footer h3::after {
    content: "+";
    font-size: 21px;
    float: right;
    padding-right: 12px;
    font-weight: 100;
    cursor: pointer;
  }
  /* .footer ul {
    display: none;
  } */
  .footer ul.footer-none {
    display: none;
  }
  h3.open_full_minus::after {
    content: "-";
  }
  ul.open_full h3::after {
    display: none;
  }

  .footer ul.open_full {
    display: block;
  }
  ul.social_links {
    display: flex;
  }
  .gap_case_study {
    display: block;
  }
  .animation_text_rotate {
    top: -25px;
  }
  img.full_image {
    margin-bottom: 0px;
  }
  .gap_case_study p {
    width: 100% !important;
  }
  .tabs_brand li a {
    border-radius: 0;
    display: block;
  }
  .slider_arrow_div.align_left p {
    font-size: 14px;
  }
  .scroll_section_horizontal_margin {
    padding: 0px 0px 0 25px;
  }
  .scroll_section_horizontal_flex_top {
    justify-content: flex-start;
    gap: 20px !important;
  }
  .scroll_section_horizontal_flex_top p {
    width: auto !important;
    padding-right: 100px;
  }
  .scroll_section_horizontal p {
    width: 85%;
  }
  .scroll_section_horizontal_flex .slick-list.draggable {
    padding: 0 33% 0 0 !important;
  }
  .small_img img {
    width: 100%;
  }
  .numbering_all span {
    font: normal normal normal 12px/25px Outfit;
  }
  .main_text h1 br,
  .sub_text h1 br,
  .sub_text p br {
    display: none;
  }
  .headings_top h2 br {
    display: none;
  }
  .main_text h1 {
    font: normal normal bold 45px/53px Outfit;
  }
  .sub_text p {
    font: normal normal 300 16px/25px Outfit;
  }
  .numbering_all p {
    font: normal normal bold 60px/75px Outfit;
    width: 140px;
  }
  .coures_back {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .casestudy_page .headings_top p {
    width: auto;
    text-align: left !important;
    margin: 14px auto;
  }
  .images_banner {
    margin-bottom: 30px;
    margin-top: 40px;
  }
  .change_align {
    width: auto !important;
  }
  .tabs_brand ul {
    margin-top: 25px;
    gap: 5px;
    flex-wrap: wrap;
  }
  .margin_top {
    margin-top: 50px;
  }
  .tabs_brand ul li {
    margin-top: 0px;
  }
  .display_flex.im_images_flex {
    gap: 6px;
    margin-bottom: 26px;
  }
  .details_apply {
    gap: 7px;
    justify-content: space-between;
    margin-top: 20px;
  }
  .apply_now_row {
    display: block !important;
  }
  .top_section {
    display: block !important ;
    margin-top: 25px;
  }
  p.course_name {
    font: normal normal bold 16px/15px Outfit;
  }
  .details_view {
    font: normal normal normal 16px/25px Outfit;
  }
  .current_opening_box .inner_block {
    height: 153px;
    padding: 48px 28px !important;
    max-width: 70%;
  }
  .apply_now_row {
    padding: 20px 12px;
  }
  .details_apply .btn {
    font-size: 14px;
    padding: 7px 14px;
  }
  .margin_full {
    margin-top: 32px;
  }
  .animated-banner{
  margin-top: 32px;
}
  .contact_image {
    width: 100%;
    text-align: center;
  }
  .form_heading {
    width: 100%;
    text-align: left;
    margin-top: 30px;
  }
  .contact_image img {
    width: 80%;
  }
  .form_heading form {
    width: 100%;
  }
  .form_heading h1 {
    text-align: center !important;
  }
  .contact_image p {
    font: normal normal bold 16px/30px Outfit;
  }
  header {
    padding: 9px 14px;
  }
  p.main_text {
    font: normal normal bold 36px/40px Outfit;
    margin-bottom: 23px;
  }
  .sub_text {
    font: normal normal normal 16px/22px Outfit;
  }
  .padding_box {
    padding: 0px 25px 0px 25px;
  }
  .btn {
    font: normal normal 300 16px/15px Outfit;
    padding: 15px 40px;
  }
  .banner_btn {
    gap: 25px !important;
  }
  .btn_link_underline {
    font: normal normal 300 16px/26px Outfit;
    /* padding: 15px 40px; */
  }
  .form_heading label {
    font-size: 14px;
    line-height: 16px;
  }
  .text_side a span {
    bottom: -25px;
    font: normal normal 300 10px/20px Outfit;
  }
  .image_banner img {
    width: 100%;
  }
  footer {
    margin-top: 100px;
  }

  div#gallery {
    margin-top: 0px;
    margin-bottom: 36px;
  }
  .headings_top h2,
  .coures_back .headings_top span,
  .new_about h2,
  .new-h2,
  .new_about_h2 {
    font: normal normal bold 30px/40px Outfit;
  }
  .headings_top p {
    width: auto;
    font: normal normal normal 16px/25px Outfit;
  }
  .section_div {
    margin-top: 30px;
  }

  .inner_block h3 {
    font: normal normal 800 26px/32px Outfit;
    margin-top: 20px;
  }
  .inner_block p {
    font: normal normal normal 16px/25px Outfit;
    margin-top: 20px;
  }
  .video_blocks {
    display: block;
  }
  .inner_video_block {
    width: 100%;
    margin-bottom: 12px;
  }
  .testimonial {
    width: 100%;
  }
  .phots_videos {
    width: 100%;
  }
  .testimonial_section {
    gap: 50px;
    flex-direction: column-reverse;
  }
  .footer_banner div:nth-child(1),
  .footer_banner div:nth-child(3) {
    display: none;
  }
  .footer_banner div {
    width: 100%;
  }
  .footer_banner {
    width: 75%;
  }
  .footer_flex {
    display: block;
    text-align: center;
  }
  .section_three {
    margin-top: 20px;
  }
  .copyright_div {
    display: block;
  }
  .section_one p,
  .footer h3,
  .footer a,
  .footer li {
    text-align: left;
    max-width: initial;
  }
  .copyright_div p {
    text-align: center;
    font: normal normal normal 12px/32px Outfit;
    margin-bottom: 20px;
  }
  .copyright_div {
    display: block;
    padding: 0px;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .stickyHeader ul.social_links,
  .wstickyHeader ul.social_links {
    /* padding-left: 33px; */
    /* position: fixed; */
    /* bottom: 50px; */
  }
  .section_one img {
    width: 155px;
    margin-top: 70px;
  }
  .footer_banner {
    padding: 12px 33px;
    top: -23px;
  }
  .discus_p p {
    font: normal normal bold 18px/23px Outfit;
  }
  .testimonial p {
    font: normal normal normal 22px/28px Outfit;
    padding-right: 20px;
  }
  .pic_testi h4 {
    font: normal normal normal 16px/16px Outfit;
  }
  .section_one p {
    font: normal normal normal 16px/26px Outfit;
    text-align: center;
  }
  .footer a,
  .footer li {
    font: normal normal normal 16px/26px Outfit;
  }
  .footer h3 {
    margin-bottom: 6px;
  }
  .pic_testi {
    /* padding: 35px; */
  }
  .testimonial_section_top .testimonial_btn {
    margin-bottom: 60px;
    margin-top: 50px;
  }

  .slick-dots li button:before {
    font-size: 10px !important;
  }
  .testimonial_section_top .headings_top {
    margin-bottom: 26px !important;
  }
  .information_tags p {
    font: normal normal bold 13px/10px Outfit;
  }
  .information_tags {
    right: 12px;
    bottom: 10px;
  }
  .information_tags h3 {
    font: normal normal normal 13px/14px Outfit;
    margin-top: 5px;
    margin-bottom: 0px;
  }
  img.video_link_tag {
    left: 12px;
  }
  .modal {
    width: 100% !important;
    padding: 15px 5px !important;
  }
  .modal a.close-modal {
    right: -4.5px !important;
    width: 18px !important;
  }
  .headings_top p {
    margin-bottom: 40px;
  }

  span.read-more-btn {
    display: inline;
  }
  span.read-more-btn {
    font: normal normal bold 16px/20px Outfit;
  }
  .image_block {
    width: 100%;
  }
  .image_block p {
    padding: 0px 0px;
  }
  .service_page .margin_full {
    margin-top: 50px;
  }
  .display_flex {
    flex-wrap: wrap;
    gap: 10px;
  }

  .image_text_left_right {
    flex-direction: column;
  }
  .image_text_left_right .width_left,
  .image_text_left_right .width_right {
    width: 100%;
  }
  .brand_text_para h1,
  .brand_text_para p {
    text-align: center;
    width: auto;
    padding-right: 0;
  }
  .brand_text_para h1 br {
    display: none;
  }
  .phots_videos.display_flex {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .display_flex.all_pic_group img {
    width: -webkit-fill-available;
  }
  .coures_back,
  .display_flex.all_pic_group {
    padding-left: 20px;
    padding-right: 20px;
  }
  .form_flex div {
    width: 100%;
    margin-top: 0px;
  }
  .scroll_section_horizontal_flex {
    margin-top: 24px;
  }
  .text_side {
    width: 100% !important;
  }
  .form_heading input,
  .form_heading select {
    height: 40px;
  }
  .form_heading .btn {
    height: 45px;
  }
  .banner_top_form {
    padding-bottom: 50px;
    margin-top: 30px;
  }
  .text_right_para {
    width: 100%;
  }
  .text_left_heading {
    width: 100%;
  }
  .tabs_brand_hire ul {
    gap: 12px;
    justify-content: flex-start;
  }
  .display_flex.tabs_brand_hire {
    margin-bottom: 0px;
    margin-top: 0;
  }
  .text_left_heading p {
    text-align: left;
  }
  .headings_top h2 {
    margin-bottom: 20px !important;
  }
  .display_flex.tabs_brand_hire {
    gap: 0px;
  }
  .responsive_margin {
    margin-bottom: 10px;
  }
  .cources_logo {
    margin-top: 0px !important;
    max-width: unset;
  }
  .cources_logo img {
    width: 100px;
  }
  .brand_logo {
    width: 100%;
  }
  .about_us .brand_logo{
    gap:40px;
  }
  img.Adobe {
    background: url(../assets/images/sprite_courses_log.png) -246px -189px;
  }
  img.Illustrator {
    background: url(../assets/images/sprite_courses_log.png) -246px -10px;
  }
  img.Photoshop {
    background: url(../assets/images/sprite_courses_log.png) -246px -99px;
  }
  img.Invasion {
    background: url(../assets/images/sprite_courses_log.png) -54px -10px;
  }
  img.Figma {
    background: url(../assets/images/sprite_courses_log.png) -54px -188px;
  }
  .bac_img .headings_top h2,
  .bac_img .headings_top p {
    text-align: left;
  }
  .bac_img .headings_top p br {
    display: none;
  }
  .why_should_hire ul {
    gap: 14px;
  }
  .Vision_about h2 {
    font: normal normal bold 30px/24px Outfit;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .Vision_about p {
    font: normal normal normal 16px/25px Outfit;
    padding-right: 0px;
  }
  .brand_text_para.headings_top {
    width: 100%;
  }
  .slider_arrow_div .headings_top {
    width: 100%;
  }
  .slider_animated_div {
    width: 100%;
    position: relative;
  }
  .padding_box.display_flex.slider_arrow_div {
    height: auto;
  }
  .slider_arrow_div .headings_top {
    margin-bottom: 0;
  }
  .trigger_buttons {
    bottom: -76px;
    left: 23px;
  }
  .slider_animated_div .slider_animated .slick-slide {
    margin: 3px 4px;
  }
  .inner_block {
    width: 94% !important;
    height: 422px !important;
  }
  .inner_block a {
    text-decoration: none;
  }
  .slider_animated_div .slick-list {
    padding: 0px 34% 0 0 !important;
  }
  .slider_arrow_div .headings_top {
    max-width: 420px;
  }
  .misson_section .Vision_about {
    margin-top: 0;
  }
  /* creative-designing*/
  .overview_image:before,
  .brand_identity_image::before,
  .print_design_bgimg::before,
  .graphic_design_image::before,
  .content_marketing_img::before,
  .seo_img::before,
  .ppc_campaign_img::before,
  .enterprise_solution_img::before,
  .e_commerce_img::before,
  .mobile_api_img::before,
  .cm_sytem_img::before,
  .web_dev_img::before,
  .ios_dev_img::before,
  .android_dev_img::before,
  .crosspltfm_app_img::before,
  .madriven_app_img::before,
  .hybrid_app_img::before {
    display: none;
  }
  .rightDiv {
    text-align: center;
  }

  .rightDiv img {
    width: 90%;
  }
  .div_container {
    padding: 0 40px;
    gap: 30px;
  }
  .course_overview {
    gap: 30px !important;
  }
  .form_heading .btn_back {
    margin-top: 20px !important;
  }
}
@media only screen and (max-width: 680px) {
  .opertunity-lists {
    flex-direction: column;
  }
  .opertunity-lists div {
    width: 80%;
  }
  .opertunity-lists div:first-child {
    margin-bottom: -19px !important;
  }
}
@media only screen and (max-width: 600px) {
  .intern_doc-list {
    width: 80%;
  }
  .ecare_map {
    width: 80%;
  }
  .ecare_map iframe {
    width: 100%;
  }
  .degree-list {
    width: 80%;
  }
  .degree-list.why-choose-hte,
  .degree-wrap.hte-why-choose-wrapp .degree-list-wrap .width_right {
    width: 88%;
  }
  .search-foot-list a {
    white-space: nowrap;
  }
  .milestone_div strong {
    font-size: 40px;
    margin-top: 20px;
  }
  .milestone_div span {
    width: 100%;
  }
  span.display_flex.milestone_div {
    gap: 26px;
    margin-top: 30px;
  }
  .case_study_social_media_left_right_side {
    margin-top: 46px;
    margin-bottom: 90px;
    flex-direction: column-reverse;
  }
  .case_study_social_media_right_side {
    width: 100%;
  }
  .tabs_brand li a {
    border-radius: 0;
    display: block;
    padding: 11px 4px;
  }
  .tabs_brand ul li {
    width: 49%;
  }
  .tabs_brand li a {
    text-align: center;
  }
  .padding_box.display_flex.slider_arrow_div {
    margin-top: 31px;
  }
  .slidingVertical span {
    transform: translate(-50%, 50%);
    left: 0%;
    width: 100%;
  }
  h2:has(.slidingVertical) {
    text-align: center;
    height: 86px;
  }
  .slidingVertical {
    display: block;
  }
  .banner_top {
    margin-bottom: 30px !important;
  }
  /* .images_section_width {
    margin-bottom: 20px;
  } */
  .padding_more {
    padding: 70px 0px;
  }
  .left_right_images .small_img {
    margin-bottom: 0px;
  }
  .client-logo-listing {
    overflow: hidden;
    margin: 40px 0px;
  }
  .small_img {
    margin-top: 5px;
  }
  .case_study_social_media_left_right_side {
    margin-top: 36px;
    margin-bottom: 70px;
  }
  .case_study_social_media_left_side {
    width: 100%;
  }
  .case_study_social_media_left_side img {
    width: 46%;
  }
  /* .inverted-box-card {
    width: calc(100% / 1);
  } */
  .inverted-box-card-btn{
    display: none;
  }
  .inverted-box-card-content{
   height: 75%;
  }
}
@media only screen and (max-width: 400px) {
  .testimonial-list .testimonial-list-inner {
    grid-template-columns: unset;
  }
  .case_study_social_media_left_side img {
    width: 100%;
  }
  .case_study_social_media_left_side {
    width: 100%;
    margin-top: 15px;
  }
  .display_flex.case_study_social_media_gap.display_4_in_row img {
    max-width: 45.6%;
  }
  .cookie-consent-accept a {
    font-size: 14px;
}
}
@media only screen and (max-width: 492px) {
  span.mob_none {
    display: none;
  }
  .testimonial-list
    .testimonial-list-inner
    .testimonial-box
    .testimonial-box-inner {
    padding: 30px;
    padding-bottom: 70px;
  }
  .cs-solution {
    flex-wrap: wrap;
  }
  .desktop-image-eci {
    display: none;
  }
  .mobile-image-eci {
    display: block;
    margin: auto;
  }
  .blg_list_blocks div {
    width: 100%;
    margin-bottom: 20px;
  }
  img.video_link_tag {
    bottom: 14px;
    width: 40px;
    height: 40px;
    background-position: -252px -113px;
  }
  .margin_b {
    margin-bottom: 70px;
  }
  .misson_section {
    gap: 0;
  }
  img.video_open {
    width: 40px !important;
    height: 40px;
    background-position: -252px -113px;
  }
  img.icon_testi {
    width: 67px;
    background-position: -81px -208px;
    height: 41px;
  }
  .animation_text_rotate {
    padding: 0px 0px 45px 0px;
    top: -12px;
  }
  /* .employees_img img {
    width: 225px;
  } */
  .text_side span {
    left: -4px;
  }
  .headings_top h2 {
    margin-bottom: 20px !important;
  }
  .brand_text_para h1,
  .brand_text_para p {
    text-align: left;
  }
  .btn_link_underline {
    padding: 5px 0px;
  }
  .scroll_section_horizontal_flex_top p {
    padding-right: 20px;
  }
  .scroll_section_horizontal h3 {
    font: normal normal bold 24px/25px Outfit;
    padding-right: 35px;
  }
  .scroll_section_horizontal_flex .slick-list.draggable {
    padding: 0 18% 0 0 !important;
  }
  .img-box {
    padding-top: 20px;
  }
  .slider_animated_div .slick-list {
    padding: 0px 8% 0 0 !important;
  }
  .scroll_section_horizontal p {
    width: 90%;
  }
  .display_flex.brand_logo img {
    display: block;
    margin: 6px auto;
  }
  .display_flex.brand_logo {
    width: 84%;
    text-align: center;
    margin: 0 auto;
  }

  .headings_top p {
    font: normal normal normal 16px/25px Outfit;
  }
  .images_section_width img {
    margin-top: 18px;
  }
  .numbering_all p:nth-child(2) {
    border-left: 0px solid;
    border-right: 0px solid;
  }
  .numbering_all.display_flex {
    display: block;
    text-align: center;
  }
  .numbering_all p {
    font: normal normal bold 60px/75px Outfit;
    width: 200px;
    margin: 30px auto;
  }
  .numbering_all span {
    font: normal normal normal 16px/25px Outfit;
  }
  div#gallery .slick-track {
    gap: 0px;
  }
  /* #gallery .slick-list.draggable {
    padding: 0 50% 0 0 !important;
  } */
  .contact_image p {
    font: normal normal bold 16px/22px Outfit;
  }
  div#gallery {
    margin: 5px 0px;
  }
  div#testimonial .slick-list.draggable {
    padding: 0% !important;
  }
  .inner_block {
    padding: 23px;
    border-radius: 15px;
  }
  .animation_text_rotate span {
    font: normal normal bold 25px/40px Outfit !important;
  }
  .headings_top h2,
  .coures_back .headings_top span {
    font: normal normal bold 30px/35px Outfit;
  }
  a.btn_link_underline::after {
    bottom: -2px;
    /* transform: scaleX(1); */
    /* background: transparent; */
  }
  span.read-more-btn {
    opacity: 1;
    margin-top: 35px;
  }
  span.read-more-btn:after {
    width: 100%;
  }
  .inner_block p {
    height: 109px;
  }
  .employees_img {
    display: block !important;
    text-align: center !important;
  }
  .employees_img span {
    margin-top: unset;
  }
  .blg_list_blocks a {
    width: 100% !important;
  }
  .mobile_nav.visible nav,
  .wmobile_nav.wvisible nav {
    max-height: 72vh !important;
    /* height: auto; */
    overflow: auto;
    width: 91% !important;
  }
  .mobile_nav:before,
  .wmobile_nav:before {
    width: 91%;
  }
  .mobile_nav:after,
  .wmobile_nav:after {
    width: 10%;
  }
}

@media screen and (min-device-width: 493px) and (max-device-width: 767px) {
  .numbering_all .counter_container:nth-child(1) p::after,
  .numbering_all .counter_container:nth-child(3) p::after {
    bottom: -42px !important;
  }
}
@media only screen and (max-width: 350px) {
  .cs-solution span.width-33 {
    width: 100%;
  }
  .inner_block h3 {
    font: normal normal 800 22px/25px Outfit;
  }
  .inner_block p {
    font: normal normal normal 16px/20px Outfit;
  }
  .btn {
    font: normal normal 300 16px Outfit;
    padding: 10px 18px;
  }
  .text_side span {
    display: none;
  }
  .mobile_menu.Open_bar {
    width: 214px;
    padding: 22px;
  }
  .mobile_nav.visible nav,
  .wmobile_nav.wvisible nav {
    overflow: overlay;
    max-height: 500px;
    width: 91% !important;
  }
  .dropdown-content a {
    font-size: 14px !important;
  }
  .mobilestick_nav li a,
  .wmobilestick_nav li a,
  .mobilestick_nav li p,
  .wmobilestick_nav li p {
    font-size: 18px;
    line-height: 42px;
  }
  *::-webkit-scrollbar {
    width: 0px !important; /* Set the width as needed */
  }
  .mobile_nav::-webkit-scrollbar-thumb {
    background-color: transparent; /* Set the color as needed */
  }
  .phots_videos.display_flex {
    gap: 9px;
  }
  .phots_videos_block2 img:first-child {
    margin-bottom: 0px;
  }
  .hire_btn {
    padding: 5px 40px !important;
  }
}
@media only screen and (max-width: 300px) {
  .mobile_nav.visible nav,
  .wmobile_nav.wvisible nav {
    overflow: overlay;
    max-height: 400px;
  }
  img.video_img {
    border-radius: 20px;
  }
  .captchafields {
    flex-direction: column;
    gap: 15px !important;
  }
}

/*---------------------------------------Blog-details.blade.php---------------------------------------------*/
.second-div {
  background-color: #f5f5f5;
  height: 971px;
}

.more-blog-button {
  background-color: #f41046;
  color: white;
  font-size: 16px;
  border-radius: 93px;
  padding: 15px 40px;
  border: none;
}

.more-blog {
  margin-top: 47px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .fade.fade-delay-1 {
    transition-delay: 0.3s;
  }

  .fade.fade-delay-2 {
    transition-delay: 0.6s;
  }

  .main-blog-details {
    margin-bottom: -173px;
  }

  .hero_div_heading {
    width: 100%;
    max-width: 625px;
    margin-left: auto;
    padding-left: 8%;
  }

  .leftDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding-left: 57px; */
    width: 40%;
    max-width: 625px;
    margin-left: auto;
    padding-left: 8%;
  }

  .rightDiv {
    width: 100%;
    max-width: 50%;
  }

  .leftDiv .h4 {
    font-size: 22px !important;
    font-weight: 400;
    /* padding-top: 88px; */
  }

  .leftDiv p,
  .leftDiv h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    margin-top: 10px;
    margin-bottom: 0px;
    /* padding: 30px 0 90px 0; */
  }
  /* .first_div_container{
    background-color: #f5f5f5;
  } */
  .firstDiv {
    display: flex;
    flex-direction: row;
    height: 503px;
    background-color: #f5f5f5;
    width: 100%;
  }

  .date {
    font-size: 16px !important;
  }

  .rightDiv img {
    border-radius: 0px 0px 0px 40px;
    width: 100%;
    height: 535px;
    object-fit: cover;
  }

  .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 134px;
    margin-bottom: 100px;
  }

  .paragraph span {
    font-size: 30px;
    font-weight: 600;
  }

  p.singleParagraph-content,
  .paragraph {
    font-size: 16px;
    line-height: 1.5rem;
  }
  .singleParagraph {
    margin-top: 0px;
  }

  .singleParagraph-content span {
    font-weight: 600;
  }

  .content {
    width: 875px;
  }

  /* .singleParagraph-content {
    padding-bottom: 30px;
  } */

  /* .contentWithSpan{
  padding-top: 20px;
} */

  .image {
    margin-top: 30px;
  }

  .content-image {
    width: 875px;
    /* height: 343px; */
    height: 450px;
    border-radius: 15px;
  }

  .paragraph {
    padding-top: 17px;
    line-height: 1.5rem;
  }

  /*--------SECOND DIV----------*/

  .second-div {
    background-color: #f5f5f5;
    height: 841px;
  }
  .secondDiv-heading h1 {
    padding: 40px 0;
  }

  .cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 26px;
  }

  .card-content {
    width: 325px;
  }

  .card-content .h4,
  .leftDiv .h4 {
    font-size: 14px;
    color: #f41046;
    margin: 0;
  }

  .card-content p {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 600;
    margin: 0;
    line-height: 23px;
  }
  .review_container {
    margin-top: 100px;
  }
  .image_ecare_group_full img {
    width: 65%;
    border-radius: 40px;
  }
  .numbering_all .counter_container:nth-child(2) .count {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
  #particles-js {
    height: 90%;
  }
}

@media screen and (max-device-width: 768px) {
  .dropdown-content {
    position: relative;
    z-index: 999;
  }
  .stickyHeader_hamburger div:nth-child(2),
  .wstickyHeader_hamburger div:nth-child(2) {
    width: 15px;
  }
  a.mob_heading {
    font-size: 26px !important;
  }
  .sub-menu li {
    line-height: 36px;
  }
  li.mobile_list {
    margin-bottom: 30px;
    margin-left: 10px;
  }
  ul.sub-menu {
    margin-left: 20px;
    margin-top: 10px;
  }
  .mob_icon_left {
    margin-left: 10px;
  }
  .sub-menu li a {
    white-space: nowrap;
    z-index: 4;
    font-size: 20px;
  }
  .background_overlay {
    background: #6d17f2;
  }
  .phone_number::after,
  .wphone_number::after {
    width: 26px;
    position: relative;
    transition: all 0.3s ease-in-out;
    bottom: 0;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    z-index: 999;
  }
  .phone_number::after {
    background: url(../assets/images/phone_icon_white.svg);
    background-size: cover;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M6.719 1.472a1.61 1.61 0 0 0-2.278 0L2.416 3.498a4.834 4.834 0 0 0-1.299 4.476l.002.007c.6 2.52 2.154 6.598 6.229 10.674s8.153 5.63 10.674 6.226l.006.002a4.827 4.827 0 0 0 4.472-1.297c.686-.682 1.468-1.463 2.028-2.024a1.608 1.608 0 0 0 0-2.277l-3.85-3.852a1.61 1.61 0 0 0-2.278 0l-2.408 2.409a.536.536 0 0 1-.64.09 24.655 24.655 0 0 1-4.024-3.258 24.396 24.396 0 0 1-3.247-4.014.534.534 0 0 1 .084-.65c.648-.652 1.694-1.699 2.404-2.409a1.612 1.612 0 0 0 0-2.278L6.72 1.472Zm-.76.76 3.851 3.85c.21.21.21.55 0 .76C9.1 7.553 8.051 8.6 7.403 9.254a1.608 1.608 0 0 0-.234 1.973 25.785 25.785 0 0 0 7.602 7.609l.015.01a1.61 1.61 0 0 0 1.965-.245l2.408-2.409c.21-.209.55-.209.76 0l3.85 3.852a.538.538 0 0 1 0 .76c-.56.559-1.34 1.339-2.027 2.02l-.002.002a3.755 3.755 0 0 1-3.474 1.01c-2.402-.57-6.279-2.06-10.159-5.94-3.88-3.881-5.37-7.759-5.943-10.16a3.76 3.76 0 0 1 1.01-3.479L5.2 2.231a.538.538 0 0 1 .76 0Z' clip-rule='evenodd'/%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='m18.028 24.883-.003-.001h-.002c-2.522-.597-6.6-2.151-10.675-6.227C3.273 14.58 1.72 10.502 1.12 7.981l-.001-.007a4.834 4.834 0 0 1 1.298-4.476L4.44 1.472a1.61 1.61 0 0 1 2.278 0l3.85 3.851a1.612 1.612 0 0 1 0 2.278c-.71.71-1.756 1.757-2.404 2.41l-.001.001a.534.534 0 0 0-.083.648c.55.861 1.634 2.4 3.248 4.014a24.651 24.651 0 0 0 4.022 3.257c.21.117.471.08.64-.09l2.41-2.408a1.61 1.61 0 0 1 2.277 0l3.85 3.852a1.61 1.61 0 0 1 0 2.277c-.56.561-1.341 1.342-2.028 2.024a4.827 4.827 0 0 1-4.472 1.297Zm6.854-5.952a2.111 2.111 0 0 1 0 2.985c-.56.56-1.342 1.342-2.03 2.024a5.327 5.327 0 0 1-4.95 1.427c-2.595-.615-6.758-2.209-10.907-6.358C2.843 14.856 1.25 10.69.633 8.097L.63 8.091.63 8.084a5.334 5.334 0 0 1 1.432-4.94L4.088 1.12a2.11 2.11 0 0 1 2.985 0l3.85 3.85c.824.825.824 2.161 0 2.986-.698.698-1.72 1.72-2.37 2.374v.002l-.036.035a.034.034 0 0 0-.006.038c.54.843 1.598 2.343 3.171 3.916a24.168 24.168 0 0 0 3.919 3.177.036.036 0 0 0 .037-.008l2.409-2.41a2.11 2.11 0 0 1 2.984 0l3.85 3.852ZM5.96 2.231a.538.538 0 0 0-.76 0L3.176 4.257a3.76 3.76 0 0 0-1.01 3.478c.572 2.402 2.062 6.28 5.942 10.16 3.88 3.882 7.757 5.372 10.16 5.94 1.253.281 2.564-.1 3.474-1.009l.001-.001a686.374 686.374 0 0 0 2.027-2.022.539.539 0 0 0 0-.76l-3.85-3.85a.538.538 0 0 0-.76 0L16.752 18.6a1.61 1.61 0 0 1-1.965.244l-.016-.009a25.78 25.78 0 0 1-7.61-7.622 1.608 1.608 0 0 1 .242-1.96c.648-.653 1.696-1.7 2.407-2.412.21-.21.21-.55 0-.76L5.96 2.231Zm-.356.351a.038.038 0 0 0-.024-.008.038.038 0 0 0-.026.01L3.528 4.612a3.26 3.26 0 0 0-.876 3.012c.556 2.328 2.007 6.116 5.809 9.92 3.802 3.803 7.59 5.254 9.917 5.805a3.255 3.255 0 0 0 3.01-.875l.002-.003a684.258 684.258 0 0 0 2.025-2.02.038.038 0 0 0 .011-.027c0-.009-.004-.019-.01-.026l-3.85-3.85a.038.038 0 0 0-.053-.001l-2.408 2.409a2.11 2.11 0 0 1-2.575.32l-.01-.007h-.002A26.284 26.284 0 0 1 6.75 11.5l-.005-.008-.014-.022A2.108 2.108 0 0 1 7.05 8.9c.649-.653 1.697-1.7 2.408-2.412a.038.038 0 0 0 0-.052L5.604 2.582Zm8.924 16.691-.002-.001.002.001Z' clip-rule='evenodd'/%3E%3C/svg%3E"); */
  }
  .wphone_number::after {
    background: url(../assets/images/phone_icon_black.svg);
    background-size: cover;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none'%3E%3Cpath fill='%23FF1B1C' fill-rule='evenodd' d='M6.719 1.472a1.61 1.61 0 0 0-2.278 0L2.416 3.498a4.834 4.834 0 0 0-1.299 4.476l.002.007c.6 2.52 2.154 6.598 6.229 10.674s8.153 5.63 10.674 6.226l.006.002a4.827 4.827 0 0 0 4.472-1.297c.686-.682 1.468-1.463 2.028-2.024a1.608 1.608 0 0 0 0-2.277l-3.85-3.852a1.61 1.61 0 0 0-2.278 0l-2.408 2.409a.536.536 0 0 1-.64.09 24.655 24.655 0 0 1-4.024-3.258 24.396 24.396 0 0 1-3.247-4.014.534.534 0 0 1 .084-.65c.648-.652 1.694-1.699 2.404-2.409a1.612 1.612 0 0 0 0-2.278L6.72 1.472Zm-.76.76 3.851 3.85c.21.21.21.55 0 .76C9.1 7.553 8.051 8.6 7.403 9.254a1.608 1.608 0 0 0-.234 1.973 25.785 25.785 0 0 0 7.602 7.609l.015.01a1.61 1.61 0 0 0 1.965-.245l2.408-2.409c.21-.209.55-.209.76 0l3.85 3.852a.538.538 0 0 1 0 .76c-.56.559-1.34 1.339-2.027 2.02l-.002.002a3.755 3.755 0 0 1-3.474 1.01c-2.402-.57-6.279-2.06-10.159-5.94-3.88-3.881-5.37-7.759-5.943-10.16a3.76 3.76 0 0 1 1.01-3.479L5.2 2.231a.538.538 0 0 1 .76 0Z' clip-rule='evenodd'/%3E%3Cpath fill='%23FF1B1C' fill-rule='evenodd' d='M1.117 7.974a4.834 4.834 0 0 1 1.299-4.476L4.44 1.472a1.61 1.61 0 0 1 2.278 0l3.85 3.851a1.612 1.612 0 0 1 0 2.278 1068.366 1068.366 0 0 0-2.405 2.411.534.534 0 0 0-.083.648c.55.861 1.634 2.4 3.248 4.014a24.655 24.655 0 0 0 4.022 3.257c.21.117.471.08.64-.09l2.41-2.408a1.61 1.61 0 0 1 2.277 0l3.85 3.852a1.61 1.61 0 0 1 0 2.277c-.56.561-1.342 1.342-2.028 2.024a4.827 4.827 0 0 1-4.472 1.297l-.004-.001h-.002c-2.521-.597-6.599-2.151-10.674-6.227-4.075-4.076-5.629-8.153-6.229-10.674l-.002-.007Zm-.484.123L.63 8.091.63 8.084a5.334 5.334 0 0 1 1.433-4.94L4.088 1.12a2.11 2.11 0 0 1 2.984 0l3.851 3.85c.824.825.824 2.161 0 2.986-.698.698-1.721 1.72-2.37 2.374v.002l-.036.035a.034.034 0 0 0-.006.038 24.176 24.176 0 0 0 7.09 7.093.036.036 0 0 0 .037-.008l2.409-2.41a2.11 2.11 0 0 1 2.984 0l3.85 3.852a2.11 2.11 0 0 1 0 2.985m0 0c-.56.56-1.341 1.342-2.028 2.024a5.327 5.327 0 0 1-4.95 1.427c-2.596-.615-6.76-2.209-10.909-6.358C2.843 14.856 1.25 10.69.633 8.097m-.003-.01Zm4.973-5.505a.038.038 0 0 0-.023-.008.038.038 0 0 0-.026.01L3.528 4.612a3.26 3.26 0 0 0-.877 3.012c.556 2.328 2.008 6.116 5.81 9.92 3.802 3.803 7.59 5.254 9.917 5.805a3.255 3.255 0 0 0 3.009-.875l.003-.003a684.462 684.462 0 0 0 2.025-2.02.038.038 0 0 0 .011-.027c0-.009-.004-.019-.01-.026l.353-.353a.538.538 0 0 1 0 .76l-.305.304a686.17 686.17 0 0 1-1.722 1.717l-.002.001a3.755 3.755 0 0 1-3.474 1.01c-2.402-.57-6.279-2.06-10.159-5.94-3.88-3.881-5.37-7.759-5.943-10.16a3.76 3.76 0 0 1 1.01-3.479L5.2 2.231a.538.538 0 0 1 .76 0l3.85 3.851c.21.21.21.55 0 .76C9.1 7.553 8.051 8.6 7.403 9.254a1.608 1.608 0 0 0-.234 1.973 25.785 25.785 0 0 0 7.602 7.609l.008.005.007.004a1.61 1.61 0 0 0 1.965-.244l2.408-2.409c.21-.209.55-.209.76 0l3.85 3.852-.354.353-3.85-3.85a.038.038 0 0 0-.052-.001l-2.408 2.409a2.11 2.11 0 0 1-2.575.32l-.01-.007h-.002A26.283 26.283 0 0 1 6.75 11.5l-.005-.008-.014-.022A2.108 2.108 0 0 1 7.05 8.9c.649-.653 1.696-1.7 2.407-2.412a.038.038 0 0 0 0-.052L5.604 2.582Zm8.925 16.691c.002.002 0 0-.003-.001l.003.001Z' clip-rule='evenodd'/%3E%3C/svg%3E"); */
  }
  .phone_number,
  .wphone_number {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    position: absolute;
    right: 90px;
    top: 30px;
  }
  .overview_image img,
  .content_marketing_img img,
  .enterprise_solution_img img,
  .mobile_api_img img,
  .web_dev_img img,
  .ios_dev_img img,
  .crosspltfm_app_img img,
  .hybrid_app_img img,
  .ux_cx_image img,
  .brand_identity_image img,
  .graphic_design_image img,
  .seo_img img,
  .e_commerce_img img,
  .cm_sytem_img img,
  .android_dev_img img,
  .madriven_app_img img,
  .print_design_bgimg img,
  .ppc_campaign_img img {
    width: 100% !important;
  }
}

@media screen and (max-device-width: 425px) {
  /* .images_section_width{
    height: 25vh;
  }  */
}
@media screen and (max-device-width: 300px) {
  .phone_number {
    right: 80px;
  }
  li.mobile_list {
    margin-left: 0px;
  }
  ul.sub-menu {
    margin-left: 10px;
  }
  .sub-menu li a {
    font-size: 18px;
  }
}
@media screen and (min-device-width: 426px) and (max-device-width: 767px) {
  /* .images_section_width{
    height: 45vh;
  } */
}
@media screen and (min-device-width: 556px) and (max-device-width: 767px) {
  .phots_videos.display_flex {
    gap: 20px;
  }
  .phots_videos_block2 img:first-child {
    margin-bottom: 15px !important;
  }
}
/*----------------Mobile-view-------------------*/

@media screen and (max-device-width: 768px) {
  .main {
    max-width: 90%;
    margin: 0 auto;
  }
  .headingWithPara,
  .singleParagraph {
    padding: 10px 30px;
  }
  .headingWithPara .paragraph {
    margin: 0;
  }
  .singleParagraph:last-child {
    margin-bottom: 20px;
  }
  /* .singleParagraph-content {
    padding-bottom: 20px;
  } */
  .singleParagraph-content span {
    font-weight: 600;
  }
  .singleParagraph-content {
    margin: 0;
  }
  .image {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }

  .sticky-course-wrapper {
    display: none !important;
  }
  .content-image {
    width: 350px;
    border-radius: 20px;
    padding: 10px 0;
  }
  .cards {
    flex-direction: row;
    margin: 0 auto;
    display: flex;
    width: 90%;
    flex-wrap: wrap;
  }

  .card-image img {
    width: 100% !important;
  }

  .secondDiv-heading {
    text-align: center;
  }
  .card-content h4,
  .leftDiv p.h4 {
    font-size: 24px !important;
    color: #f41046;
    margin: 0;
  }
  /* .firstDiv{
    padding: 50px 0px;
  } */
  .card-content p,
  .leftDiv p {
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 600;
  }

  .leftDiv p,
  .leftDiv h1 {
    font-size: 40px !important;
    line-height: 45px;
    margin: 0;
    padding: 10px 0 0 0;
    /* padding-top: 20px  */
  }
  .leftDiv {
    padding: 40px 25px 0px;
  }

  .leftDiv .date {
    font-size: 16px !important;
    padding-bottom: 10px;
  }
  .rightDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .rightDiv img {
    width: 90% !important;
    height: auto !important;
    border-radius: 40px;
    margin-bottom: 60px;
    /* padding-top: 25px; */
  }

  .toogle_text_on_view_details {
    padding: 10px 40px;
  }
  /* creative-designing*/
  .overview_image:before,
  .brand_identity_image::before,
  .print_design_bgimg::before,
  .graphic_design_image::before,
  .content_marketing_img::before,
  .seo_img::before,
  .ppc_campaign_img::before,
  .enterprise_solution_img::before,
  .e_commerce_img::before,
  .mobile_api_img::before,
  .cm_sytem_img::before,
  .web_dev_img::before,
  .ios_dev_img::before,
  .android_dev_img::before,
  .crosspltfm_app_img::before,
  .madriven_app_img::before,
  .hybrid_app_img::before {
    display: none;
  }
  .hero_div_heading {
    margin-left: unset !important;
  }
  .hero_div_heading h1 {
    font-size: 34px !important;
    line-height: 42px !important;
  }
  p.content_line_height {
    font-size: 16px !important;
    margin: 0;
    padding: 15px 0 15px 0;
  }
  .course_overview_content ul {
    font-size: 16px;
  }

  .course_overview_content ul li {
    list-style-type: "-";
  }
  .div_container {
    padding: 0 40px;
  }
  .course_overview {
    gap: 25px !important;
    /* display: block !important; */
    margin-top: 60px !important;
    flex-direction: column;
  }
  .course_overview img {
    width: 100%;
  }

  .column_reverse {
    flex-direction: column-reverse !important;
  }
  .mobile_margin_top {
    /* margin-top: 30px; */
    display: flex;
    flex-direction: column;
  }

  .course_overview_content {
    width: 100% !important;
  }
  .custom_margin_bottom {
    margin-bottom: 60px !important;
  }
  .div_container {
    padding: 0 20px;
  }
  .slider_div {
    margin: 50px 0 70px 0 !important;
    padding: 0 20px;
  }
  .slider_heading h3 {
    margin: 0;
    line-height: 35px;
    font-size: 24px !important;
  }

  .technology_logo p {
    width: 150px;
  }
  .slider_div .slick-slide img {
    width: 90vw;
    margin: unset !important;
  }
  /* .graphic_design_image, .brand_identity_image{
    margin-top: 50px;
  } */
  /* .course_overview_content {
    margin-top: 50px;
   } */
  .sub_heading_size {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .course_overview_content {
    line-height: 30px;
  }
  .technology_logo {
    column-gap: 18px !important;
  }
  .business_client_logo {
    width: 100% !important;
  }
  .dropdown-content {
    display: flex;
    flex-direction: column;
  }
  .dd-service {
    color: #fff !important;
    font-size: 2.25rem;
    text-transform: capitalize;
    line-height: 4rem;
    margin: 0;
  }
  .dropdown-content a {
    font-size: 24px;
  }
  .cs_text_container h2 {
    line-height: 40px;
    font-size: 30px;
  }
  .more_blog_btn {
    margin-bottom: 100px;
    margin-top: 18px;
  }
  /*mobile header*/
  .mobile_nav.visible,
  .wmobile_nav.wvisible {
    z-index: 99;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    padding-top: 110px;
  }
  .mobile_nav.visible {
    /* background: #6d17f2; */
    background: #6f17f200;
  }
  .wmobile_nav.wvisible {
    /* background: #fff; */
    background: #6f17f200;
  }
  .open,
  .wopen {
    z-index: 9999;
  }
  .mobile_nav.visible,
  .wmobile_nav.wvisible {
    /* display: block !important; */
    overflow-y: auto;
    height: 100%;
    visibility: visible;
  }
  /* .mobilestick_nav li a, .mobilestick_nav li p, .wmobilestick_nav li a, .wmobilestick_nav li p{
    font: normal normal normal 30px/60px Outfit;
  } */
  .dropdown-content a {
    line-height: 36px !important;
  }
  .mobilestick_nav li p,
  .wmobilestick_nav li p {
    width: fit-content;
  }
  .mobilestick_nav,
  .wmobilestick_nav {
    text-align: start;
    position: relative;
    left: 25px;
  }
  .stickyHeader,
  .wstickyHeader {
    padding: 25px 0 !important;
  }
  .sticky,
  .wsticky {
    padding: 15px 0 !important;
  }
  .banner_top {
    padding-bottom: 170px;
    /* height: 60vh; */
  }
  .mobile_bmargin {
    margin-bottom: 140px !important;
  }
  .stickyHeader ul.social_links,
  .wstickyHeader ul.social_links {
    /* padding-left: 33px; */
    /* position: fixed; */
    /* bottom: 130px; */
    z-index: 999;
    position: relative;
    justify-content: flex-start;
    margin-top: 25px;
  }
  .main_text h1 {
    font: normal normal bold 45px/53px Outfit;
  }
  .employees_img {
    margin-bottom: 70px !important;
  }
  .full_width_background {
    padding: 70px 0 !important;
    margin-top: 20px;
  }
  .about_us .full_width_background {
    margin-top: 0px;
  }
  .home_hire_head_paragraph {
    padding: 0 25px;
  }
  .image_ecare_group_full img {
    width: 90%;
  }
  .custom_bottom_padding {
    padding-bottom: 170px !important;
  }
  .mobile_nav.visible:before,
  .wmobile_nav.wvisible:before {
    left: 0;
  }
  /* .mobile_nav:before {
    width: 51% !important;
  }
  .mobile_nav:before {
    content: '';
    background: #6d17f2;
    left: -55%;
    top: 0;
    width: 50%;
    height: auto;
    bottom: 0;
    position: absolute;
    transition: left .35s ease !important;
  } */
  .mobile_nav.visible:after,
  .wmobile_nav.wvisible:after {
    right: 0;
  }
  .mobile_nav.open,
  .wmobile_nav.wopen {
    opacity: 1;
    display: block;
    overflow: hidden;
  }
  /* .mobile_nav:after {
    content: '';
    background: #6d17f2;
    right: -55%;
    top: 0;
    width: 50%;
    height: auto;
    bottom: 0;
    position: absolute;
    transition: all .35s ease !important;
  } */
  .mobile_nav:before,
  .wmobile_nav:before {
    width: 51%;
  }
  .mobile_nav:before,
  .wmobile_nav:before {
    content: "";
    left: -91%;
    top: 0;
    /* width: 61%; */
    width: 91%;
    height: auto;
    bottom: 0;
    position: absolute;
    transition: left 0.35s ease;
  }
  .mobile_nav:before {
    background: #6d17f2;
  }
  .wmobile_nav:before {
    background: #fff;
  }
  .mobile_nav nav,
  .wmobile_nav nav {
    opacity: 0;
    /* left: -100%; */
  }
  .mobile_nav:after,
  .wmobile_nav:after {
    content: "";
    right: -55%;
    top: 0;
    /* width: 40%; */
    width: 10%;
    height: auto;
    bottom: 0;
    position: absolute;
    transition: all 0.35s ease;
  }
  .mobile_nav:after {
    background: #6d17f2;
  }
  .wmobile_nav:after {
    background: #fff;
  }
  .mobile_nav.visible nav,
  .wmobile_nav.wvisible nav {
    opacity: 1;
    transition: all ease 0.5s;
  }
  .wmobilestick_nav::-webkit-scrollbar,
  .mobilestick_nav::-webkit-scrollbar {
    width: 0px;
  }
  .dropdown-container {
    padding-right: 40px;
  }
  .dropdown-container #blog-filter {
    width: 90%;
  }
  .blg_list_blocks a {
    width: 50%;
  }
  /* .phots_videos_block2 img:first-child {
    margin-bottom: 10px;
  } */
  /* .blg_list_blocks{
    justify-content: space-evenly;
  } */
  /* .firstDiv{
    margin-bottom: 70px;
  } */
  #particles-js {
    height: 90%;
  }
  .headingWithPara .heading {
    margin-bottom: 10px !important;
  }
  .captchafields {
    gap: 35px;
    align-items: center !important;
  }
}

@media screen and (min-device-width: 351px) and (max-device-width: 768px) {
  .phots_videos_block2 img:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (min-device-width: 300px) and (max-device-width: 767px) {
  .mobilestick_nav li p,
  .wmobilestick_nav li a,
  .wmobilestick_nav li p {
    font: normal normal normal 20px/21px Outfit;
  }
  .dropdown-content a {
    font-size: 18px !important;
  }
}
@media screen and (min-device-width: 769px) and (max-device-width: 1024px) {
  .website_development_main_div > div:first-child,
  .creative_design_main_div > div:first-child,
  .digital_marketing_main_div > div:first-child {
    padding: 25px 0;
  }
  .captchafields {
    gap: 20px !important;
    align-items: center !important;
  }
}
/*----------------Tablet-view-------------------*/
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .case_study_image .images_section_width {
    /* top: 320px; */
    top: 330px;
  }
  .headingWithPara,
  .singleParagraph {
    padding: 10px 30px;
  }
  .headingWithPara h2.heading {
    margin: 0;
  }
  /* .singleParagraph-content {
    padding-bottom: 20px;
  } */
  p.singleParagraph-content {
    margin: 0;
  }
  .singleParagraph-content span {
    font-weight: 600;
  }
  .image {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }

  .content-image,
  .rightDiv img {
    width: 90%;
    border-radius: 20px;
    height: auto;
    object-fit: fill;
  }
  .secondDiv-heading {
    text-align: center;
    padding: 30px 0;
  }

  .cards {
    width: 90%;
    display: flex;
    flex-wrap: wrap !important;
    margin: 0 auto;
    gap: 20px;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
  }

  .card-content h4,
  .card-content p {
    width: 100%;
  }
  .card-content .h4,
  .leftDiv p.h4 {
    font-size: 22px;
    color: #f41046;
    margin: 0;
  }

  .card-content p,
  .leftDiv p {
    font-size: 40px;
    color: #1c1c1c;
    font-weight: 600;
    line-height: 50px;
    margin: 0;
  }
  .card-content p {
    font-size: 18px;
  }

  .rightDiv {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .firstDiv {
    /* margin-top: 30px; */
    display: flex;
    /* flex-direction: column-reverse; */
    /* padding: 50px 0px; */
  }

  .leftDiv {
    padding: 25px 35px 0;
  }

  .leftDiv .date {
    font-size: 16px !important;
  }

  /* creative-designing*/
  .overview_image:before,
  .brand_identity_image::before,
  .print_design_bgimg::before,
  .graphic_design_image::before,
  .content_marketing_img::before,
  .seo_img::before,
  .ppc_campaign_img::before,
  .enterprise_solution_img::before,
  .e_commerce_img::before,
  .mobile_api_img::before,
  .cm_sytem_img::before,
  .web_dev_img::before,
  .ios_dev_img::before,
  .android_dev_img::before,
  .crosspltfm_app_img::before,
  .madriven_app_img::before,
  .hybrid_app_img::before {
    display: none;
  }
  .course_overview {
    gap: 30px !important;
  }
  /* .course_overview_content{
    width: 40% !important;
  } */
  .slider_div .slick-slide img {
    width: 90vw;
    margin: 0;
  }
  .sticky-course a,
  .wsticky-course a {
    font-size: 14px !important;
  }
  .cs_text_container h2 {
    line-height: 40px;
    font-size: 30px;
  }
  .full_width_background {
    padding: 70px 0 !important;
    margin-top: 20px;
  }
  .about_us .full_width_background {
    margin-top: 0px;
  }
  .custom_bottom_padding {
    padding-bottom: 140px !important;
  }
  .dropdown-container {
    padding-right: 40px;
  }
  .sticky-course {
    width: 80% !important;
  }
  #particles-js {
    height: 90%;
  }
  .filter-container .filter_form {
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
  .select-container {
    width: 90%;
    justify-content: center;
  }
  .filter_btn {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .stickyHeader_nav_bar,
  .wstickyHeader_nav_bar {
    padding: 0 33px;
  }
  .firstDiv {
    gap: 20px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .main-blog-details {
    margin-bottom: -173px;
  }

  .firstDiv {
    display: flex;
    flex-direction: row;
    height: 503px;
    background-color: #f5f5f5;
    gap: 20px;
    /* margin-top: 50px; */
  }

  .leftDiv p {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    /* padding: 30px 0 90px 0; */
    margin-top: 10px;
    margin-bottom: 0px;
  }

  .rightDiv {
    width: 55% !important;
  }

  .leftDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 42px;
    width: 40% !important;
  }
  .sub_heading_size {
    font-size: 36px !important;
  }
  .course_overview_content {
    width: 40% !important;
  }
  .sticky-course {
    width: 85% !important;
  }
}

@media (min-width: 1440px) {
  .firstDiv {
    justify-content: space-between;
    gap: 20px;
  }
  .rightDiv {
    width: 100%;
    max-width: 50%;
  }
}

/* creative-design */
.hero_div {
  background-color: #f5f5f5;
  height: 500px;
}

.hero_div_content {
  max-width: 1344px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  height: 500px;
}

.hero_div {
  background-repeat: no-repeat;
  background-position: right;
}

.hero_div_heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin-left: 40px;
  width: 100%;
  max-width: 50%; */
}

.hero_div_heading h1 {
  font-size: 67px;
  margin: 0;
  line-height: 81px;
  color: #1c1c1c;
}
/* reusable content  */
.remove_margin {
  margin: 0;
}

.sub_heading_size {
  font-size: 40px;
  color: #1c1c1c;
  line-height: 50px;
}

.content_line_height {
  line-height: 25px !important;
  color: #4e4e4e;
  font-size: 16px !important;
  font-weight: 400 !important;
  margin: 0;
  padding: 15px 0 0 0;
}

.website_development_main_div p.content_line_height,
.digital_marketing_main_div p.content_line_height,
.creative_design_main_div p.content_line_height {
  max-width: 600px;
}

.heading_content h1 {
  line-height: 81px;
}

.heading_content p {
  line-height: 25px;
}

.hire_btn {
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 30px;
  background: no-repeat;
  border: 2px solid #f41046;
  color: #f41046;
  margin-top: 15px;
  cursor: pointer;
  font-weight: 400;
}

.hire_btn:hover {
  /* background-color:#F41046 ; */
  color: #ffffff;
}

/* reusable content end  */
.course_overview {
  display: flex;
  justify-content: center;
  gap: 75px;
  margin-top: 100px;
}

#ui_ux,
#eCommerce,
#ios_dev,
#seo {
  margin-top: 185px;
}

.course_overview_content {
  width: 35%;
}
.overview_image,
.content_marketing_img,
.enterprise_solution_img,
.mobile_api_img,
.web_dev_img,
.ios_dev_img,
.crosspltfm_app_img,
.hybrid_app_img {
  position: relative;
}
.overview_image img,
.content_marketing_img img,
.enterprise_solution_img img,
.mobile_api_img img,
.web_dev_img img,
.ios_dev_img img,
.crosspltfm_app_img img,
.hybrid_app_img img,
.ux_cx_image img {
  z-index: 1;
  position: relative;
  border-radius: 40px;
  width: 370px;
  max-width: 100%;
}
.overview_image:before {
  background-image: url(../assets/images/Adobe_XD_CC_icon.png);
}

.content_marketing_img::before {
  background-image: url(../assets/images/content.webp);
}

.web_dev_img::before {
  background-image: url(../assets/images/Web_Development_icon.webp);
}

.enterprise_solution_img::before {
  background-image: url(../assets/images/Enterprise_icon.webp);
}

.ios_dev_img::before {
  background-image: url(../assets/images/Ios_Dev.webp);
}
.mobile_api_img::before {
  background-image: url(../assets/images/api-management.webp);
}
.crosspltfm_app_img::before {
  background-image: url(../assets/images/flutter.webp);
}
.print_design_bgimg,
.ppc_campaign_img {
  position: relative;
}
.print_design_bgimg img,
.ppc_campaign_img img {
  z-index: 1;
  position: relative;
  border-radius: 40px;
  width: 370px;
  max-width: 100%;
}
/* .overview_image:before, .print_design_bgimg::before, .content_marketing_img::before, .ppc_campaign_img::before, .enterprise_solution_img::before, .mobile_api_img::before, .web_dev_img::before, .ios_dev_img::before, .crosspltfm_app_img::before, .hybrid_app_img::before{
  content: "";
  position: absolute;
  top: -85px;
  left: -130px;
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
} */

.print_design_bgimg::before {
  background-image: url(../assets/images/Adobe_Illustrator_CC_icon_right.webp);
}

.ppc_campaign_img::before {
  background-image: url(../assets/images/click.webp);
}

.hybrid_app_img::before {
  background-image: url(../assets/images/flutter.webp);
}
.brand_identity_image,
.graphic_design_image,
.seo_img,
.e_commerce_img,
.cm_sytem_img,
.android_dev_img,
.madriven_app_img {
  position: relative;
}
.brand_identity_image img,
.graphic_design_image img,
.seo_img img,
.e_commerce_img img,
.cm_sytem_img img,
.android_dev_img img,
.madriven_app_img img {
  z-index: 1;
  position: relative;
  border-radius: 40px;
  width: 370px;
  max-width: 100%;
}

/* .brand_identity_image::before, .graphic_design_image::before, .seo_img::before, .e_commerce_img::before, .cm_sytem_img::before, .android_dev_img::before, .madriven_app_img::before{
  content: "";
  position: absolute;
  top: -85px;
  left: 290px;
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
} */

.brand_identity_image::before {
  background-image: url(../assets/images/Adobe_Illustrator_CC_icon.png);
}

.graphic_design_image::before {
  background-image: url(../assets/images/Adobe_Photoshop_CC_icon.png);
}

.seo_img::before {
  background-image: url(../assets/images/seo.webp);
}
.e_commerce_img::before {
  background-image: url(../assets/images/Shopify.webp);
}
.cm_sytem_img::before {
  background-image: url(../assets/images/content-management-system.webp);
}
.madriven_app_img::before {
  background-image: url(../assets/images/JS.webp);
}
.android_dev_img::before {
  background-image: url(../assets/images/andriod.webp);
}
.owl-carousel {
  width: 70%;
  margin: auto;
}

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

.slider_div {
  margin: 100px 0;
}

.slider_heading h3 {
  text-align: center;
  font-size: 28px;
  margin: 0;
}

.slide {
  width: 896px;
  position: relative;
  overflow: hidden;
  margin: 0 15px;
}

.slide img {
  max-width: 100%;
  position: relative;
  transition: all 1s ease-out;
}

.slide.slick-center img {
  transition: all 1s ease-out;
  opacity: 1;
}

.slide:before {
  content: "";
  display: block;
}

.slide figure:before,
.slide figure:after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  bottom: 0;
  left: 0;
}

.slide figure:before {
  top: 0;
  background: transparent;
  z-index: 1;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}

.slider_div .slick-slide img {
  border-radius: 20px;
}

.slider_div .slick-dots {
  display: none !important;
}

.technology_logo {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 30px;
  margin-top: 60px !important;
  max-width: 537px !important;
  margin: 0 auto;
  column-gap: 70px;
  row-gap: 0 !important;
}

.technology_logo p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.business_client_logo {
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 43px;
  row-gap: 25px;
  width: 60%;
}
.business_client_logo img {
  width: unset;
  height: unset;
}

.course_overview_content ul {
  line-height: 30px;
  color: #4e4e4e;
  font-weight: 500;
  /* white-space: nowrap; */
  padding: 15px 0 0 15px;
}

.course_overview_content ul li {
  list-style: disc;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}
.dd-service {
  color: #fff !important;
  font-size: 28px;
  text-transform: capitalize;
  line-height: 21px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.wh-service {
  color: #000 !important;
}
.dropdown-content a {
  /* font-size: 18px !important; */
  width: fit-content;
}

/* .review_container{
  margin-top: 150px;
} */

/* creative-design end */

/* white header */
.header_dropdown {
  position: relative;
  display: inline-block;
}

.header_dropdown-content {
  display: none;
  position: absolute;
  background: #ffffff 0% 0% no-repeat padding-box;
  min-width: 160px;
  box-shadow: 0px 0px 20px #00000078;
  z-index: 1;
  opacity: 1;
  border-radius: 12px;
  width: 200px;
  right: 0;
  left: -75px;
}
/*.header_dropdown-content::after {
  content: "";
  position: absolute;
  top: -8%;
  left: 107px;
  margin-left: -5px;
  border-width: 9px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: rotate(180deg);
  border-left-width: 7px;
  border-right-width: 7px;
}*/
.header_dropdown-content a {
  color: black !important;
  padding: 12px 0px 1px;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  width: fit-content;
}
.header_dropdown-content a::after {
  text-decoration: none !important;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: transparent
    linear-gradient(96deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.header_dropdown-content a:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
/* .header_dropdown-content a::after{
  display: none !important;
} */
.header_dropdown-content {
  padding: 20px;
}
.header_dropdown:hover .mega_menu {
  display: block;
}

p.mh_service {
  color: white;
}

p .wmh_service {
  color: #000;
}

.dd-service.active i {
  transform: rotate(180deg);
}
/* white header end */

/* sticky footer */
#sticky-course-wrapper {
  position: fixed;
  z-index: 99999;
  /* bottom: 40px; */
  bottom: 60px;
  display: none;
  width: 100%;
  /* background-color: #031F4A; */
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: normal;
  color: #fff;
  text-align: center;
  cursor: pointer;
  max-width: 90%;
  margin: 0 auto;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0px 3px 16px #00000029;
  max-width: 950px;
}

.sticky-course {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  color: #1c1c1c;
  margin: 0 auto;
  padding: 24px 36px;
  overflow-x: auto;
  max-width: 100%;
  width: 85%;
}
.sticky-course a {
  color: #1c1c1c;
  font-size: 16px;
  text-decoration: none;
  font-family: "Outfit";
  line-height: 24px;
  white-space: nowrap;
}

.sticky-course a.active {
  color: #f41046;
  text-decoration: underline;
}

.active {
  color: #f41046;
}

.sticky-course a:hover {
  color: #f41046;
  text-decoration: underline;
}

.hide_slider {
  display: none !important;
}

/*sticky header*/
.sticky,
.wsticky {
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  padding: 10px 0 !important;
  transition: 0.4s linear;
}
.sticky {
  background: #6d17f2;
}
.wsticky {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.stickyHeader header,
.wstickyHeader header {
  /* background: transparent linear-gradient(93deg, #6d17f2 0%, #6d17f29e 100%) 0% 0% no-repeat padding-box; */
  padding: 0 25px;
  text-align: center;
  color: white;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.stickyHeader,
.wstickyHeader {
  padding: 60px 0;
}

.stickyHeader_nav,
.wstickyHeader_nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stickyHeader_nav .stickyHeader-ul,
.wstickyHeader_nav .stickyHeader-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  margin-right: 20px;
  white-space: nowrap;
}

.stickyHeader_logo,
.wstickyHeader_logo {
  display: flex;
}
.stickyHeader_logo img:nth-child(1),
.wstickyHeader_logo img:nth-child(1) {
  z-index: 9999;
}
.stickyHeader_nav li,
.wstickyHeader_nav li {
  margin: 0 15px;
}

.stickyHeader_hamburger,
.wstickyHeader_hamburger {
  display: none;
  position: absolute;
  top: 25px;
  right: 40px;
  cursor: pointer;
  z-index: 999;
}

.stickyHeader_hamburger div,
.wstickyHeader_hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}
.wstickyHeader_hamburger div {
  background-color: #000 !important;
}
.stickyHeader_nav_bar,
.wstickyHeader_nav_bar {
  display: flex;
  justify-content: space-between;
}

.stickyHeader_nav_bar a,
.wstickyHeader_nav_bar a {
  color: white;
}
.mobile_nav,
.wmobile_nav {
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
}

@media only screen and (max-width: 768px) {
  .stickyHeader_nav,
  .wstickyHeader_nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 157px;
    left: 0;
    width: 100%;
    background: transparent linear-gradient(93deg, #6d17f2 0%, #6d17f29e 100%)
      0% 0% no-repeat padding-box;
  }

  .stickyHeader_nav.show,
  .wstickyHeader_nav.show {
    display: flex;
    z-index: 99;
  }

  .stickyHeader_nav ul,
  .wstickyHeader_nav ul {
    flex-direction: column;
    align-items: center;
  }

  .stickyHeader_nav li,
  .wstickyHeader_nav li {
    margin: 15px 0;
  }

  .stickyHeader_hamburger,
  .wstickyHeader_hamburger {
    display: block;
  }

  .stickyHeader_hamburger.open div:nth-child(1),
  .wstickyHeader_hamburger.wopen div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    top: 2px;
    position: relative;
  }

  .stickyHeader_hamburger.open div:nth-child(2),
  .wstickyHeader_hamburger.wopen div:nth-child(2) {
    opacity: 0;
  }

  .stickyHeader_hamburger.open div:nth-child(3),
  .wstickyHeader_hamburger.wopen div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .stickyHeader_logo img:nth-child(1),
  .wstickyHeader_logo img:nth-child(1) {
    width: 55px;
  }
  .stickyHeader_logo img:nth-child(2),
  .wstickyHeader_logo img:nth-child(2) {
    width: 90px;
  }
}
/* Desktop */
/* Desktop (your original code) */
.logo img{
  position: relative;
  max-height: 150px;
  left: -2rem;
}

.text img{
  position: relative;
  height: 6rem;
  left: -12rem;
  top: 1.5rem;
}

/* Mobile Fix */
@media screen and (max-width:768px){

  .logo img{
    left: -1rem;
    top: -rem;
    max-height: 90px;
    display: block;
    margin: auto;
  }

  .text img{
    left: -5rem;
    top: 0;
    font-size: 22px;
    text-align: center;
    max-height: 80px;
  }

}
@media screen and (max-width:882px){

  .logo img{
    left: -2rem;
    top: -0.5rem;
    max-height: 90px;
    display: block;
    margin: auto;
  }

  .text img{
    left: -5rem;
    top: 0;
    font-size: 22px;
    text-align: center;
    max-height: 80px;
  }

}


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

  .logo img{
    left: -2rem;
    top: -0.5rem;
    max-height: 90px;
    display: block;
    margin: auto;
  }

  .text img{
    left: -5rem;
    top: 0;
    font-size: 22px;
    text-align: center;
    max-height: 80px;
  }

}


.dropdown-container {
  display: flex;
  justify-content: end;
}

#blog-filter {
  width: 20%;
  background: transparent;
  border-bottom: 1px solid #4e4e4e;
}

/* Custom alert styles */
.green-alert {
  display: none;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: #dff0d8;
  color: #3c763d;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  white-space: nowrap;
}
.red-alert {
  display: none;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: #f1b8b8;
  color: #f83e31;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  white-space: nowrap;
}

#service,
#budget,
#career_position {
  background-image: url(../assets/images/down-arrow.png);
  padding: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px; /* Adjust the size of the arrow */
}
.blog-item:hover {
  /* background-color: #f5f5f5; */
  transition: ease-in-out 0.5s;
}
#loader img {
  width: 30px;
}

.home_casestudy_container {
  position: relative;
}
.home_casestudy_head {
  position: sticky;
  top: 0;
  z-index: 666;
  background-color: #fff;
  padding-top: 30px;
}
.case_study_filter {
  position: sticky;
  top: 0;
  z-index: 666;
  background-color: #fff;
  /* padding-top: 30px; */
}

/* praticle js css */

#particles-js {
  position: absolute;
  width: 100%;
  /* height: 90%; */
  background-color: transparent;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.btn_back,
.btn_back_fff,
.submit_btn,
.video_link_tag,
.footer_banner,
.hire_btn,
.video_img,
.apply_filter_btn {
  cursor: url(../assets/images/cursor.png) 12 12,
    auto !important;
}

.images_section_width:last-child img {
  margin-bottom: 0px !important;
}

.images_section_width:nth-last-child(2) {
  margin-bottom: 0px !important;
}

/* #invertedcursor {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  top: var(--y, 0);
  left: var(--x, 0);
  transform: translate(-50%, -50%);
  z-index: 0;
  mix-blend-mode: difference;
  transition: transform 0.2s;
} */

/* changes after adding new blog */
.headingWithPara .heading {
  margin-bottom: 0px;
}
.headingWithPara .paragraph {
  margin-top: 0px;
  padding-top: 0px;
}
/* .video_img{
  width: 590px !important;
    height: 336px !important;
    background-image: url(https://beta.ecareinfoway.com/assets/images/review_img01.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}
img.video_img:hover {
  -webkit-box-shadow: inset 5px -5px 11px 8px #000;
} */
/* .inner_video_block {
  background: #000;
  display: flex;
} */

.inner_video_block .video_img:hover {
  opacity: 0.3;
  transition: ease-in-out 0.5s;
}
.course_content_tech_icon {
  flex-wrap: wrap;
  display: flex;
  column-gap: 15px;
  margin: 15px 0;
}
.tech_icon_height_width {
  width: 83px !important;
  height: 70px;
  /* margin: 0 auto; */
  display: block;
}
.course_tech_icon {
  /* background-image: url(../assets/images/ecareinfoway-sprite03.svg); */
  background-repeat: no-repeat;
}
.woocommerce_icon {
  /* background-position: -352px -584px; */
  width: 43px !important;
  height: 25px;
}
.woocommerce_icon:hover {
  content: url(../assets/images/Woocommerce.svg);
}
.laravel_icon {
  /* background-position: -156px -584px; */
  width: 28px !important;
  height: 29px;
}
.laravel_icon:hover {
  content: url(../assets/images/Laravel.svg);
}
.shopify_icon {
  width: 26px !important;
  height: 29px;
}
.shopify_icon:hover {
  content: url(../assets/images/Shopify.svg);
}
.php_icon {
  width: 48px !important;
  height: 26px;
}
.php_icon:hover {
  content: url(../assets/images/Php.svg);
}
.python_icon {
  width: 30px !important;
  height: 29px;
}
.python_icon:hover {
  content: url(../assets/images/Python.svg);
}
.wordpress_icon {
  /* background-position: -219px -584px; */
  width: 30px !important;
  height: 28px;
}
.wordpress_icon:hover {
  content: url(../assets/images/Wordpress.svg);
}
.react_icon {
  width: 30px !important;
  height: 30px;
}
.react_icon:hover {
  content: url(../assets/images/react_js.svg);
}
.node_icon {
  width: 30px !important;
  height: 30px;
}
.node_icon:hover {
  content: url(../assets/images/Node_js.svg);
}
.flutter_icon {
  width: 30px !important;
  height: 30px;
}
.flutter_icon:hover {
  content: url(../assets/images/Flutter.svg);
}
.hubspot_icon {
  width: 30px !important;
  height: 30px;
}
.hubspot_icon:hover {
  content: url(../assets/images/hubspot.svg);
}
.salesforce_icon {
  width: 45px !important;
  height: 30px;
}
.salesforce_icon:hover {
  content: url(../assets/images/salesforce.svg);
}
.wp_rocket_icon {
  width: 30px !important;
  height: 30px;
}
.wp_rocket_icon:hover {
  content: url(../assets/images/wp_rocket.svg);
}
.gt_matrix_icon {
  width: 30px !important;
  height: 30px;
}
.gt_matrix_icon:hover {
  content: url(../assets/images/gt_matrix.svg);
}
.pingdom_icon {
  width: 30px !important;
  height: 30px;
}
.pingdom_icon:hover {
  content: url(../assets/images/pingdom.svg);
}
.google_page_speed_icon {
  width: 33px !important;
  height: 30px;
}
.google_page_speed_icon:hover {
  content: url(../assets/images/google_page_speed.svg);
}
.key_cnd_icon {
  width: 30px !important;
  height: 30px;
}
.key_cnd_icon:hover {
  content: url(../assets/images/key_cnd.svg);
}
.google_firebase_icon {
  width: 30px !important;
  height: 30px;
}
.google_firebase_icon:hover {
  content: url(../assets/images/google_firebase.svg);
}
.aws_icon {
  width: 35px !important;
  height: 34px;
}
.aws_icon:hover {
  content: url(../assets/images/aws.svg);
}
.microsoft_azure_icon {
  width: 30px !important;
  height: 30px;
}
.microsoft_azure_icon:hover {
  content: url(../assets/images/microsoft_azure.svg);
}
.google_api_icon {
  width: 35px !important;
  height: 30px;
}
.google_api_icon:hover {
  content: url(../assets/images/google_api.svg);
}
.ahrefs_icon {
  width: 42px !important;
  height: 30px;
}
.ahrefs_icon:hover {
  content: url(../assets/images/ahrefs.svg);
}
.google_gnalytics_icon {
  width: 35px !important;
  height: 30px;
}
.google_gnalytics_icon:hover {
  content: url(../assets/images/google_analytics.svg);
}
.google_search_console_icon {
  width: 35px !important;
  height: 30px;
}
.google_search_console_icon:hover {
  content: url(../assets/images/google_search_console.svg);
}
.lookers_studio_icon {
  width: 20px !important;
  height: 30px;
}
.lookers_studio_icon:hover {
  content: url(../assets/images/lookers_studio.svg);
}
.semrush_icon {
  width: 35px !important;
  height: 30px;
}
.semrush_icon:hover {
  content: url(../assets/images/semrush.svg);
}
.ubersuggest_icon {
  width: 76px !important;
  height: 30px;
}
.ubersuggest_icon:hover {
  content: url(../assets/images/ubersuggest.svg);
}
.ChatGPT_icon {
  width: 35px !important;
  height: 30px;
}
.ChatGPT_icon:hover {
  content: url(../assets/images/ChatGPT.svg);
}
.CapCut_icon {
  width: 35px !important;
  height: 30px;
}
.CapCut_icon:hover {
  content: url(../assets/images/CapCut.svg);
}
.Canva_icon {
  width: 35px !important;
  height: 30px;
}
.Canva_icon:hover {
  content: url(../assets/images/Canva.svg);
}
.chatbot_icon {
  width: 35px !important;
  height: 30px;
}
.chatbot_icon:hover {
  content: url(../assets/images/chatbot-smm.svg);
}
.facebook_icon {
  width: 35px !important;
  height: 30px;
}
.facebook_icon:hover {
  content: url(../assets/images/facebook-smm.svg);
}
.instagram_icon {
  width: 35px !important;
  height: 30px;
}
.instagram_icon:hover {
  content: url(../assets/images/instagram-smm.svg);
}
.linkedin_icon {
  width: 35px !important;
  height: 30px;
}
.linkedin_icon:hover {
  content: url(../assets/images/linkedIn-smm.svg);
}
.mailchimp_icon {
  width: 34px !important;
  height: 40px;
}
.mailchimp_icon:hover {
  content: url(../assets/images/mailchimp.svg);
}
.activecampaign_icon {
  width: 120px !important;
  height: 30px;
}
.activecampaign_icon:hover {
  content: url(../assets/images/activecampaign.svg);
}
.klaviyo_icon {
  width: 55px !important;
  height: 30px;
}
.klaviyo_icon:hover {
  content: url(../assets/images/klaviyo.svg);
}
.Cloudfare_icon {
  width: 68px !important;
  height: 24px;
}
.Cloudfare_icon:hover {
  content: url(../assets/images/Cloudflare.svg);
}
.Firewall_icon {
  width: 38px !important;
  height: 26px;
}
.Firewall_icon:hover {
  content: url(../assets/images/Firewall.svg);
}
.SSLSecured_icon {
  width: 48px !important;
  height: 26px;
}
.SSLSecured_icon:hover {
  content: url(../assets/images/SSLSecured.svg);
}
.Sucuri_icon {
  width: 76px !important;
  height: 34px;
}
.Sucuri_icon:hover {
  content: url(../assets/images/Sucuri.svg);
}
.Wordfence_icon {
  width: 104px !important;
  height: 35px;
}
.Wordfence_icon:hover {
  content: url(../assets/images/Wordfence.svg);
}
.Figma_white_icon {
  width: 40px !important;
  height: 40px;
}
.Figma_white_icon:hover,
.figma_icon:hover {
  content: url(../assets/images/Figma-color.svg);
}
.XD_icon {
  width: 38px !important;
  height: 40px;
}
.XD_icon:hover {
  content: url(../assets/images/XD-color.svg);
}
.Illustrator_icon {
  width: 40px !important;
  height: 40px;
}
.Illustrator_icon:hover {
  content: url(../assets/images/Illustrator-color.svg);
}
.Photoshop_icon {
  width: 40px !important;
  height: 40px;
}
.Photoshop_icon:hover {
  content: url(../assets/images/Photoshop-color.svg);
}
.Premier_icon {
  width: 40px !important;
  height: 40px;
}
.Premier_icon:hover {
  content: url(../assets/images/Premier_Pro-color.svg);
}
.Indesign_icon {
  width: 40px !important;
  height: 40px;
}
.Indesign_icon:hover {
  content: url(../assets/images/Indesign-color.svg);
}

.all_pic_group img {
  max-width: 340px;
  border-radius: 40px;
}

.top_left_form_banner {
  z-index: 1;
}
.header_dropdown {
  z-index: 3;
}

/* service page bullet points */

.padding_bottom_s {
  padding-bottom: clamp(30px, 6vw, 50px);
}
.padding_top_l {
  padding-top: clamp(45px, 6vw, 50px);
}
.padding_full {
  padding-left: clamp(15px, 6vw, 60px);
  padding-right: clamp(15px, 6vw, 60px);
}
.pre-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.hero,
.title-large,
.title-medium,
.title-small {
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 20px;
}
.title-medium {
  font-size: clamp(25px, 2.5vw, 36px);
}
.fc_columned_content {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.padding_bottom_l {
  padding-bottom: clamp(45px, 6vw, 100px);
}
.padding_top_m {
  padding-top: clamp(30px, 6vw, 25px);
}
.padding_xl {
  padding-left: max(clamp(15px, 6vw, 60px), calc(50% - 700px));
  padding-right: max(clamp(15px, 6vw, 60px), calc(50% - 700px));
}
.the_columns {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: clamp(30px, 6vw, 100px);
  width: 100%;
  justify-content: space-between;
}
.the_columns > div {
  /* border-left: 1px solid #f4104638; */
  padding: 20px 0 20px 50px;
  box-sizing: border-box;
}
.the_columns.four_cols > div {
  flex-basis: calc(33% - clamp(24px, 5.5vw, 75px));
}
.wp_content h4 {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 42px;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 400;
}
.wp_content a.arrow-link::before,
.arrow-link::before,
.down-arrow-link::before {
  position: relative;
  display: inline-block;
  width: 16px;
  min-width: 16px;
  content: "";
  height: 15px;
  background: no-repeat center / 15px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='15' fill='none'%3E%3Cpath fill='%23FF1B1C' d='M1 6.5H0v2h1v-2Zm14.707 1.707a1 1 0 0 0 0-1.414L9.343.429A1 1 0 0 0 7.93 1.843L13.586 7.5l-5.657 5.657a1 1 0 1 0 1.414 1.414l6.364-6.364ZM1 8.5h14v-2H1v2Z'/%3E%3C/svg%3E");
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
}
.wp_content a.arrow-link,
.wp_content h4 a {
  text-decoration: none;
}
.wp_content a.arrow-link,
.arrow-link {
  display: inline-flex;
  align-items: baseline;
  gap: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #13002e;
  top: 2px;
}
.wp_content p {
  margin: 10px auto 15px auto;
}
.search-foot-main .search-foot-list a:hover {
  background: transparent
    linear-gradient(94deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box;
  transition: ease-in-out 0.5s;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
@media (max-width: 1240px) {
  .the_columns.four_cols > div {
    flex-basis: calc(50% - clamp(24px, 5.5vw, 75px));
  }
}
@media only screen and (max-width: 640px) {
  .the_columns.four_cols > div {
    flex-basis: calc(100% - clamp(24px, 5.5vw, 75px));
  }
  .the_columns > div {
    border-left: none;
    /* border-bottom: 1px solid #f4104638; */
    padding: 20px 0;
  }
  .the_columns {
    display: block;
  }
  .padding_top_m {
    padding-top: clamp(0px, 0vw, 35px);
  }
  .padding_top_m {
    padding-top: clamp(10px, 1vw, 35px);
  }
  .padding_bottom_s {
    padding-bottom: clamp(0px, 0vw, 20px);
  }
}

.captchafields {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.b-font {
  margin-top: 20px !important;
}
.captchafields .form-group input::placeholder {
  color: #fff;
}
.captchafields .btn_back {
  margin-top: 35px !important;
}

.b-font .form-group input::placeholder {
  color: #000000;
}
.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reload {
  color: #fff;
  background: #f6114a;
  border: none;
  border-radius: 50%;
  padding: 6px 10px 6px 8px;
}
.captcha span img {
  border: 1px solid #ccc;
}
.submit-container {
  display: flex;
  align-items: end;
  gap: 30px;
}
@media (min-width: 768px) {
  .submit-container {
    margin-top: 35px;
  }
  input#date_time_picker {
    width: 49%;
  }
  .cs-style-guide-bott .cs-guide-main {
    gap: 70px;
  }
  .cs-style-guide-bott .cs-guide-main .guide-title {
    max-width: 31%;
    width: 100%;
  }
}
.captchafields #captcha {
  margin-bottom: unset !important;
}
#touch-submit-form .reload {
  padding: 7px 10px 7px 10px;
}
.custom-alert {
  display: none;
}

span#selected-resume-filename {
  margin-left: 10px;
  color: #f41046;
}

.mega_menu {
  /* padding-left: max(clamp(15px, 6vw, 60px), calc(50% - 700px));
  padding-right: max(clamp(15px, 6vw, 60px), calc(50% - 700px));
  padding-top: clamp(30px, 6vw, 25px); */
  display: flex;
  align-items: center;
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
  /* background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 9px -3px #0000003b; */
  display: none;
  position: absolute;
  width: 1280px;
  position: absolute;
  right: -250px;
  top: 50px;
  padding-top: 20px;
}
.mega_menu .mega-menu-inner {
  box-shadow: 0 1px 9px -3px #0000003b;
  background: #fff;
  padding-left: max(clamp(15px, 6vw, 60px), calc(50% - 700px));
  padding-right: max(clamp(15px, 6vw, 60px), calc(50% - 700px));
  padding-top: clamp(30px, 6vw, 25px);
  border-radius: 24px;
}
.mega_menu_wrap {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    /* gap: clamp(30px, 6vw, 100px); */
    row-gap: 20px;
    width: 100%;
    /* justify-content: space-between; */
    gap: 2%;
}
.mega_menu_item a {
  text-align: left;
}
.mega_menu_item {
  /* flex-basis: calc(33% - clamp(24px, 5.5vw, 75px)); */
  padding: 20px 0 20px 0px;
  width: calc(94% / 4);
  box-sizing: border-box;
}
.mega_menu h3,
.mega_menu p.bg-position {
  font-size: 20px;
  /* line-height: 42px; */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 30px;
}
.mega_menu li {
  margin: 0 auto 15px auto;
  list-style: inside;
  color: #707070;
  text-align: left;
  position: relative;
  line-height: 20px;
}
.mega_menu_item ul {
  padding-left: 35px;
  margin-top: 25px;
}
.mega_menu_item ul li::marker {
  font-size: 12px;
}
.mega_menu_item .bg-position {
  background-size: 24px;
  background-repeat: no-repeat;
  position: relative;
  background-position: center left;
  line-height: 22px;
}
.mega_menu_item .strategy {
  background-image: url(../assets/images/strategy.svg);
}
.mega_menu_item .creative {
  background-image: url(../assets/images/brainstorm.svg);
}
.mega_menu_item .web {
  background-image: url(../assets/images/coding.svg);
}
.mega_menu_item .mobile {
  background-image: url(../assets/images/mobile.svg);
}
.mega_menu_item .digital {
  background-image: url(../assets/images/megaphone.svg);
}
.mega_menu_item .ai-ml {
  background-image: url(../assets/images/AI-Ml.svg);
}
.mega_menu_item .support {
  background-image: url(../assets/images/awareness.svg);
}
.mega_menu .bg-position:after,
.mega_menu li a:after {
  background-color: #1c1c1c;
}
.mega_menu .bg-position:after,
.mega_menu ul li a:after {
  text-decoration: none !important;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
ul li .mega_menu a:hover .bg-position:after,
.mega_menu ul li:hover a:after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.mega_menu .bg-position {
  position: relative;
  width: fit-content;
  color: #000;
}

ul li .mega_menu a::after {
  display: none;
}
ul li .mega_menu ul li a::after {
  display: unset;
}
.mega_menu ul li a {
  color: #707070;
}
@media only screen and (max-width: 1440px) {
  .mega_menu {
    width: 1220px;
  }
}
@media only screen and (max-width: 1350px) {
  .mega_menu {
    width: 91.5vw;
  }
  .mega_menu_item {
    width: calc(96% / 3);
  }
}
@media only screen and (max-width: 1200px) {
  .mega_menu {
    width: 96vw;
  }
}
@media only screen and (max-width: 1024px) {
  .mega_menu_item {
    padding: 0;
  }
  .mega_menu {
    width: 95vw;
  }
  .mega_menu_wrap {
    row-gap: 40px;
  }
  .mega_menu_item {
    width: calc(98% / 2);
}
}
@media only screen and (max-width: 1023px) {
  .slick-prev {
    left: 40% !important;
  }
  .slick-next {
    right: 40% !important;
  }
  .mega_menu {
    padding: 40px 20px;
    right: -34%;
  }
}
@media only screen and (max-width: 900px) {
  .mega_menu_item {
    padding: 0;
    flex-basis: unset;
    width: 50%;
  }
  .mega_menu {
    width: 94.2vw;
  }
  .mega_menu_wrap {
    gap: 0%;
    row-gap: 40px;
  }
}
@media only screen and (max-width: 821px) {
  .mega_menu {
    width: 93.2vw;
  }
}
@media only screen and (max-width: 400px) {
  .slick-prev {
    left: 35% !important;
  }
  .slick-next {
    right: 35% !important;
  }
}
/* @media (min-width: 1350) and (max-width: 1440px){
  .mega_menu{
    max-width: 1220px;
  }
} */

/* Industry-Page CSS */
.custom_container {
  max-width: 1020px;
  margin: 100px auto;
}
.industry-list-wrapp .industry-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 80px;
  column-gap: 20px;
}
.industry-list-wrapp .industry-list .industry-box {
  width: calc(96% / 3);
  max-width: 290px;
  display: flex;
  flex-direction: column;
}
.industry-list-wrapp .industry-list .ind-title h2 {
  font-size: 35px;
  line-height: 38px;
  font-weight: 800;
  margin-bottom: 0px;
}
.industry-list-wrapp .industry-list .ind-detail-wrapp {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* justify-content: space-between; */
}
@media (max-width: 979px) {
  .industry-list-wrapp .industry-list .ind-detail-wrapp {
    justify-content: space-between;
  }
  .industry-list-wrapp .industry-list .industry-box {
    width: calc(96% / 2);
    max-width: 350px;
  }
  .industry-list-wrapp .industry-list {
    justify-content: space-evenly;
  }
}
@media (max-width: 550px) {
  .industry-list-wrapp .industry-list .industry-box {
    width: calc(96% / 1);
    max-width: 400px;
  }
  .industry-list-wrapp .industry-list {
    row-gap: 50px;
    justify-content: unset;
  }
}

/* New Hire Page  */
h2.challenges-main-head {
  font-size: 35px;
  max-width: 550px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 50px;
}
.challenges-wrapp img {
  border-radius: 30px;
  width: 100%;
}
.challenge-box-wrapp .challenge-box {
  width: calc(90% / 2);
}
.challenge-box-wrapp {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
h3.challenge-head {
  font-size: 30px;
  line-height: 40px;
  margin-top: 50px;
}
span.pink-color {
  color: #f41046;
  /* font-size: 35px; */
  font-weight: 500;
}
.challenge-box h4 {
  margin: 0;
  font-size: 22px;
  line-height: 30px;
  margin-top: 40px;
}
.second-box.challenge-box {
  padding-top: 170px;
}
.card-wrapp-hire .card-box-hire {
  width: calc(96% / 3);
  display: flex;
  flex-direction: column;
}
.card-box-hire img {
  max-width: 80px;
}

.hire-wrapp-no-slide .padding_box.display_flex.slider_arrow_div.margin_full {
  height: auto;
}
.hire-wrapp-no-slide .slider_animated_div {
  position: unset;
}
.hire-wrapp-no-slide .section_div.slider_animated {
  flex-wrap: nowrap;
}
.hire-wrapp-no-slide .slider_animated_div {
  width: 100%;
}
.hire-wrapp-no-slide .inner_block,
.hire-wrapp-no-slide .inner_block p {
  height: 100% !important;
}
.hire-wrapp-no-slide .section_div img {
  background-image: none;
}
.hire-temp-que h2.challenges-main-head {
  max-width: 100%;
  line-height: 45px;
}

.challenges-wrapp .challenge-head {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.challenges-wrapp .challenge-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(0%);
  transition: transform 1s ease-out;
}

.challenges-wrapp .challenge-head.reveal::before {
  transform: translateX(100%);
}

@media (max-width: 650px) {
  h2.challenges-main-head {
    padding-bottom: 20px;
  }
  .challenge-box-wrapp .challenge-box {
    width: calc(100% / 1);
  }
  .challenge-box-wrapp {
    flex-wrap: wrap;
  }
  .second-box.challenge-box {
    padding-top: 60px;
  }
  .challenge-box h4 {
    margin-top: 20px;
  }
}
@media (min-width: 650px) {
  .challenges-wrapp img {
    max-width: 370px;
  }
}
@media (max-width: 380px) {
  .case_study_image .images_section_width {
    top: 305px;
  }
  .inverted-box-card-content h3{
    font-size: 14px;
  }
}

/*------ Sticky Footer ------*/
.sticky-footer {
  /* display: none; */
  background: transparent
    linear-gradient(96deg, #f51049 0%, #fe648d 47%, #b05ede 100%) 0% 0%
    no-repeat padding-box;
  position: sticky;
  bottom: -2px;
  padding: 15px;
  z-index: 999;
  transform: translateY(250%);
  transition: transform 0.4s ease;
}
.sticky-footer.show {
  transform: translateY(0);
}
.sticky-footer .sticky-footer-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  /* flex-wrap: wrap; */
}
.sticky-footer .sticky-footer-inner .factDisplay.para_tag {
  color: white;
  font-size: 20px;
  text-align: center;
}
.sticky-footer .sticky-img img {
  max-width: 160px;
  width: 100%;
  max-height: 160px;
  /* height: 100%; */
  position: absolute;
  bottom: 0;
  /* transform: rotatey(180deg); */
  object-fit: contain;
}
.sticky-footer .sticky-img {
  width: 100%;
  max-width: 160px;
}
.sticky-footer .sticky-footer-inner button.hire_btn.btn {
  background-color: #f6114a;
  color: #fff;
  border-color: #fff;
  padding: 10px 30px;
  margin-top: 0;
}
.link-deco-none {
  text-decoration: none;
}
/* .sticky-footer {
  position: relative;
} */

.sticky-footer .close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  font-weight: 300;
  /* color: #fff; */
  z-index: 999;
}

.testimonial button.slick-next.slick-arrow,
.testimonial button.slick-prev.slick-arrow {
  background-color: #f5f5f5;
  border-radius: 50%;
  height: 40px !important;
  width: 40px !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.testimonial button.slick-next.slick-arrow:before,
.testimonial button.slick-prev.slick-arrow:before {
  content: none;
}
.testimonial button.slick-prev.slick-arrow {
  background-image: url("../assets/images/left-slide.svg");
}

.testimonial button.slick-next.slick-arrow {
  background-image: url("../assets/images/right-slide.svg");
}

.slick-next {
  left: 10% !important;
}
.slick-prev {
  left: 0% !important;
}

@media (max-width: 979px) {
  /* .sticky-footer .sticky-img{
    display: none;
} */
}
@media (max-width: 767px) {
  .slick-next {
    left: 45% !important;
  }
  .slick-prev {
    left: 35% !important;
  }
  .whatsapp-float {
    left: 10px;
  }
  .sticky-footer .sticky-img img {
    /* transform: unset; */
      transform: rotatey(180deg);
  }
  .sticky-footer .sticky-footer-inner {
    /* justify-content: center; */
    gap: 15px;
    flex-direction: row-reverse;
  }
  .sticky-footer .sticky-footer-inner button.hire_btn.btn {
    display: none;
  }
  /* .factDisplay.para_tag{
    font-size: 15px;
} */
}
@media (max-width: 480px) {
  .slick-next {
    left: 50% !important;
  }
}
@media (max-width: 380px) {
  .sticky-footer .sticky-img img {
    right: 0px;
  }
}

/* Case study */

.xsmall-container {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
.design-process-sec h2 {
  margin-bottom: 40px;
}
.design-process-sec .brand-design-list-wrap .bdl-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.design-process-sec .brand-design-list-wrap .bdl-list .bdl-title-sub-title h3,
.design-process-sec .brand-design-list-wrap .bdl-list .bdl-title-sub-title p {
  margin: 0;
  text-transform: uppercase;
}
.design-process-sec .brand-design-list-wrap .bdl-list .bdl-title-sub-title h3 {
  line-height: 140%;
}
.design-process-sec .brand-design-list-wrap .bdl-list .bdl-title-sub-title p {
  color: #999999;
  font-size: 14px;
  line-height: 130%;
  text-align: left;
  white-space: break-spaces;
}
.design-process-sec .brand-design-list-wrap .bdl-list .bdl-list-img {
  display: flex;
}
.design-process-sec .brand-design-list-wrap .bdl-list .bdl-list-img img {
  max-width: 60px;
  max-height: 60px;
  width: 100%;
  height: 100%;
}
.design-process-sec .brand-design-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.full-width-gallery-sec .fwg-head h2 {
  margin-bottom: 40px;
}
.full-width-gallery-sec {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.full-width-gallery-sec .fw-gallery {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.fw-gallery > div {
  flex: 1 1 calc(33.333% - 1rem);
  display: flex;
  justify-content: center;
}

.fw-gallery img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* For 3-image case: center last image if it's the only one in the last row */
.fw-gallery > div:nth-child(3):nth-last-child(1) {
  flex-basis: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* For 5-image case: make last 2 half width */
.fw-gallery > div:nth-child(4):nth-last-child(2),
.fw-gallery > div:nth-child(5):nth-last-child(1) {
  flex-basis: calc(50% - 1rem);
}

.wireframes-section .wireframe-inner {
  background-color: #fafafa;
  padding: 50px 0;
}
.wireframes-section .wireframe-head h2 {
  margin-bottom: 40px;
}
.wireframe-slider .wireframe-slider-inner > div {
  display: flex;
  justify-content: space-around;
}
.wireframe-slider .wireframe-slider-inner {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* .wireframe-slider-inner {
  overflow: hidden;
  background-color: whitesmoke;
  padding: 8em 2em;
  margin-top: 70px;
} */

.frame-slider-row {
  display: flex;
  gap: 3em;
  width: max-content;
  will-change: transform;
  animation: scroll 20s linear infinite;
  -webkit-animation: scroll 20s linear infinite;
}
.frame-slider-row2 {
  display: flex;
  gap: 3em;
  width: max-content;
  animation: revScroll 20s linear infinite;
  /* will-change: transform; */
  -webkit-animation: revScroll 20s linear infinite;
}


.frame-slider-row img,
.frame-slider-row2 img {
  object-fit: contain;
  max-height: 530px;
  max-width: 242px;
}
.guide-title h3 {
  font: normal normal bold 40px/50px Outfit;
  margin: 0;
  margin-bottom: 7px;
}
.guide-details .guide-colors .color-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 8px;
}
.guide-details .guide-colors {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guide-details .guide-colors p.color-hex {
  margin-bottom: 0 !important;
}
.guide-details {
  display: flex;
  gap: 60px;
}
.cs-style-guide .cs-style-guide-inner h2 {
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.cs-style-guide-bott .cs-guide-main > div:last-child {
  max-width: 600px;
  width: 100%;
}
.font-top-det p {
  margin-bottom: 0 !important;
}
.font-top-det .font-name p {
  font-size: 25px;
}

.font-top-det {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.font-top-det .font-variety {
  display: flex;
  gap: 50px;
}
.font-top-det .font-variety p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.font-top-det .font-variety p span:first-child {
  font-size: 50px;
}
.font-top-det .font-variety p.font-regular {
  font-weight: 400;
}
.font-top-det .font-variety p.font-semi {
  font-weight: 500;
}
.font-top-det .font-variety p.font-bold {
  font-weight: 600;
}

.cs-style-guide-bott .cs-guide-main .font-styles {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
p.font-h1 {
  font-size: 32px;
  font-weight: 600;
}
p.font-h2 {
  font-size: 25px;
  font-weight: 600;
}
p.font-h3 {
  font-size: 20px;
  font-weight: 500;
}
p.font-h4 {
  font-size: 18px;
  font-weight: 400;
}
p.font-p {
  font-size: 16px;
  font-weight: 400;
}

.guide-title {
  max-width: 240px;
}

.site-icons {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.site-icons img {
  max-height: 45px;
  height: 100%;
  max-width: 45px;
  width: 100%;
}

.cs-style-guide-bott .cs-product-listing .img-div {
  max-width: unset !important;
  width: unset !important;
}
.cs-product-listing {
  align-items: center;
  /* justify-content: center; */
  gap: 40px;
}
.cs-product-listing .guide-title {
  max-width: 550px !important;
}
.cs-product-listing .guide-title p {
  margin-bottom: 0 !important;
}

p.guide-sub-heading {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  color: #8d8d8d;
}
.cs-style-guide-bott .cs-guide-main > div:last-child img {
  width: 100%;
}
.background-sec p,
.background-sec h3 {
  color: #fff;
}
.background-sec .bg-img-sec {
  background-color: #00000060;
  background-blend-mode: overlay;
  padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-width-img img {
  width: 100%;
}
.full-width-img {
  max-width: 1920px;
  margin: 0 auto;
}

/* Keyframe animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes scroll {
  0% {
      -webkit-transform: translateX(0);
  }
  100% {
      -webkit-transform: translateX(-50%);
  }
}

@-webkit-keyframes  revScroll {
  0% {
    -webkit-transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes revScroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .fw-gallery > div {
    flex: 1 1 100%;
  }

  .fw-gallery > div:nth-child(3):nth-last-child(1),
  .fw-gallery > div:nth-child(4):nth-last-child(2),
  .fw-gallery > div:nth-child(5):nth-last-child(1) {
    flex-basis: 100%;
  }
  .wireframe-slider .wireframe-slider-inner {
    gap: 40px;
  }
  .frame-slider-row img,
  .frame-slider-row2 img {
    max-height: 400px;
  }
  .guide-details {
    gap: 10%;
  }
  .guide-details .guide-colors .color-circle {
    width: 70px;
    height: 70px;
  }
}
