/* .site-content {
  margin-top: 0;
}
.site-header {
  background: transparent;
  border-bottom: 0;
  transition: all 0.4s ease-in-out;
} */
.site-header.smaller {
  background: linear-gradient(90deg, #344abf 0%, #6578dc 100%);
  border-bottom: 1px solid #4451b3;
  transition: all 0.4s ease-in-out;
}
.home-banner {
  /* background: linear-gradient(90deg, #344abf 0%, #6578dc 100%); */
  /* padding: 237px 0 60px; */
  position: relative;
  background: #f4f4f4;
  color: #000;
}
/* .home-banner .square-orange-btn.hvr-bounce-to-right:before {
  background: #fff;
}
.home-banner .hvr-bounce-to-right:hover,
.home-banner .hvr-bounce-to-right:focus {
  color: #ee7455;
}
.home-banner * {
  color: #fff;
} */
.home-banner .slider-item {
  /* padding: 237px 0 100px; */
  padding: 80px 0 100px;
}
.banner-detail {
  /* padding-top: 40px; */
  padding-bottom: 80px;
}
/* .home-banner h2{
    font-weight: 500;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
} */
.home-banner h2 {
  font-weight: 600;
  font-size: 44px;
  line-height: 60px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 8px;
}
/* .home-banner h2 span {
  text-transform: uppercase;
  font-weight: 700;
} */
.home-banner .glassbox {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 13px 18px;
  max-width: 457px;
  margin-bottom: 10px;
}
.home-banner .glassbox .heading-four {
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 14px 0 0;
}
.gitex-info-list {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0px 4px 79px rgba(31, 38, 91, 0.45);
  backdrop-filter: blur(4.5px);
  margin-bottom: 50px;
}
.gitex-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gitex-info-list li:first-child {
  padding-right: 32px;
  border-right: 1px solid #fff;
  margin-right: 32px;
}
.gitex-info-list li span {
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
}
.client-marquee {
  width: 100%;
  margin: 40px 0 0;
}
.marquee-view {
  overflow: hidden;
  width: 100%;
}
.marquee-container {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-animation: marquee 35s linear infinite alternate;
  animation: marquee 35s linear infinite alternate;
}
.marquee-container .logo-box {
  -ms-flex-preferred-size: 20%;
  flex-basis: 25%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  text-align: center;
}
.logo-box img {
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  margin: 0 auto;
}
.logo-box:hover img {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.home__arrows {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
  position: absolute;
  bottom: 120px;
  /* left: 8.33%; */
  left: 3.6%;
}
.slick-slide .blue-btn img,
.slick-slide .white-btn img {
  display: inline-block;
}
.home-banner .slick-track {
  display: flex !important;
}
.home-banner .slick-slide {
  height: inherit !important;
}

/* Fading animation */
/* .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    0%{
        opacity: .4;
    }
    50%{
        opacity: .7;
    }
    100%{
        opacity: 1;
    }
  } */

/* experience section */
.experience-sec {
  padding: 80px 0;
}
.experience-sec .img-grid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.img-grid .logo-block {
  width: auto;
  padding: 0 12px 24px;
}
/* service technologies */
.service-box-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px -12px 0;
}
.service-box-col {
  width: 33.33%;
  padding: 0 12px 24px;
}
.service-box {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.service-box .service-img img {
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.service-box .white-btn {
  width: fit-content;
}
.service-box:hover .service-img img {
  transform: scale(1.15);
  transition: all 0.4s ease-in-out;
}
.service-box:hover .white-btn::before {
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.service-box-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 32.62%,
    rgba(0, 0, 0, 0.9) 100%
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s ease-in-out;
}
.service-box:hover .service-box-content {
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.4s ease-in-out;
}
.service-box-content span:hover:before {
  width: 36px;
}
.service-box p {
  margin-bottom: 8px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.service-box h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}
.service-box h3 a::after {
  content: url(../images/icon_arrow_next_blue.svg);
  position: absolute;
  right: 0;
  transition: all 0.4s;
}
.service-box h3 a:hover::after {
  right: -5px;
  transition: all 0.4s;
}
.tech-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin: 0;
}
.tech-list li {
  width: 20%;
  margin-bottom: 20px;
}
.tech-list a img {
  width: 60px;
  margin: 0 auto 10px auto;
  position: relative;
  top: 0;
  transition: all 0.4s ease-in-out;
}
.tech-list a:hover img {
  top: -5px;
  transition: all 0.4s ease-in-out;
}
.tech-list li p {
  color: #2e3280;
  text-transform: capitalize;
}
/* achivment sec */
.achivment-sec {
  padding: 80px 0;
}
.achivment-img-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  padding-top: 20px;
}
.achivment-img-grid .img-block {
  padding: 0 12px 24px;
}
.counter-row {
  display: flex;
  justify-content: flex-end;
}
.counter-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}
.counter-box {
  margin: 0 0 20px;
  min-width: 150px;
  width: 100%;
  padding: 0 20px 20px;
  border-bottom: 1px dashed #d8d8d8;
}
.counter-box:last-child {
  margin-bottom: 0;
}
.counter-box .heading-one {
  color: #ee7455;
  margin: 0;
  letter-spacing: normal;
}
.counter-box h5 {
  line-height: normal;
  margin: 0;
  color: #2e3280;
}
/* why choose us */
.whychooseus {
  padding: 0 0 80px;
  margin-top: 80px;
  background: linear-gradient(90deg, #faf6fd 0%, #f3e5fa 100%);
}
.whychooseus-box {
  position: relative;
  width: 100%;
  height: 100%;
  top: -80px;
  left: 0;
  background: linear-gradient(270deg, #ee5e55 42.09%, #eb7f64 98.89%);
}
.whychooseus-box * {
  color: #fff;
}
.whychooseus-box-inner {
  padding: 60px 60px 60px 30px;
}
.workwithus-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.workwithus-col {
  width: 33.33%;
  padding: 0 12px 24px;
}
.workwithus-box {
  height: 100%;
}
.workwithus-col:last-child .workwithus-box {
  background-color: #fff;
  padding: 30px;
  display: flex;
  align-items: center;
}
.workwithus-col:last-child .workwithus-box p {
  color: #ee7455;
}
.workwithus-col:last-child .workwithus-box h3,
.workwithus-col:last-child .workwithus-box img {
  display: none;
}
.workwithus-box img {
  margin-bottom: 20px;
}
/* ==================
Recent Blog - 10-05-2023
=====================*/

.recent-blog {
  padding: 80px 0 0;
}
ul.recent-posts {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 -12px;
}
ul.recent-posts li {
  padding: 0 12px;
  width: 33.33%;
}
.recent-blog-img {
  width: 100%;
  background-color: #efefef;
  margin-bottom: 25px;
  max-width: 780px;
  padding: 15px;
  border-radius: 6px;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.recent-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
  position: absolute;
  top: 0;
  left: 0;
}
.recent-blog-content span {
  color: #a9a9a9;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: block;
}
.recent-blog-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  margin: 0;
}
.recent-blog-content h3 {
  margin-bottom: 12px;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.recent-blog-content h3 a {
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.recent-blog-content h3 a:hover {
  color: #ee7455;
}

/* London Tech Event */
.event-logo {
  background: url(../images/event_logo.png) no-repeat;
  width: 92px;
  height: 85px;
  margin-bottom: 16px;
  display: inline-block;
}
/* .home-slider .slider-item:first-child h2 span {
  display: block;
}
.home-slider .slider-item:first-child p {
  line-height: 24px;
  max-width: 480px;
  margin-bottom: 30px;
}
.home-slider .slider-item:first-child p:last-of-type {
  margin-bottom: 0;
} */
/* .home-slider .slider-item .event-date {
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid #39eaed;
  display: block;
  color: #39eaed;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600 !important;
} */
.home-slider .slider-item .event-date sup {
  color: #39eaed;
}
/* .home-slider .slider-item:first-child .banner-side-img {
  position: absolute;
  width: 50%;
  bottom: 0;
  right: 0;
} */
/* MWC Banner */
.booth-text {
  border-radius: 5px;
  background: linear-gradient(270deg, #ee5e55 42.09%, #eb7f64 98.89%);
  display: inline-flex;
  padding: 4px 11px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}
.mwc-modal .modal-dialog {
  max-width: 770px;
  padding: 0 12px;
  background: transparent;
}
.mwc-modal .modal-content {
  background-image: url(../images/popupBG_london_techWeek.png) !important;
  background-position: center !important;
  background-color: #2e3280;
  border-radius: 0;
  border: none;
  text-align: center;
}
.mwc-modal .modal-header {
  padding: 0;
  border: none;
  border-radius: 0;
}
.mwc-modal .booth-text {
  font-size: 34px;
}
.mwc-modal .modal-body {
  padding: 0;
  padding-top: 38px;
}
.mwc-modal .modal-body .label-text {
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.48px;
  margin-bottom: 14px;
}
.mwc-modal .modal-content .btn-close {
  position: absolute;
  right: 20px;
  top: 38px;
  padding: 0;
  margin: 0;
  filter: brightness(100) invert(1);
  border: none;
  border-radius: 0;
  opacity: 1;
  width: 24px;
  height: 24px;
}
.border-line {
  width: 1px;
  height: 24px;
  background: #fff;
  display: block;
  margin: 12px auto;
}
.modal-event-date {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin-bottom: 40px;
}
.mwc-modal .es-form-field-container {
  max-width: 387px;
  margin: 0 auto;
}
.mwc-modal .es-form-field-container .es-email {
  border: none;
  border-bottom: 1px solid #d8d8d8;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.32px;
  padding: 15px 0;
  height: auto;
}
.mwc-modal .es-form-field-container .es-email::placeholder {
  color: rgb(255 255 255 / 54%);
}
.mwc-modal form[data-form-id="1"] .es-form-field-container .gjs-row {
  margin-bottom: 0;
}
.mwc-modal #isww1 {
  margin-top: 44px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #e77354;
  border-radius: 6px;
  width: auto;
  padding: 12px 26px;
  height: auto;
  position: relative;
  transition: 0.4s;
}
.mwc-modal #isww1:hover {
  background: #455ac9;
  transition: 0.4s;
}
.mwc-modal .es_spinner_image {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mwc-modal form[data-form-id="1"] .es-form-field-container {
  padding: 0;
}
.mwc-modal .es_subscription_message.success {
  color: #fff;
}
/* .mwc-title {
  max-width: 550px;
} */
/* MWC Banner */

/* Leap Event 2025 */
.home-slider .slider-item .event-date {
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 2px solid #ffffff;
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400 !important;
}
/* Leap Event 2025 End */

/* 14/8/2025 Start */
.home-banner {
  overflow: hidden;
  background-color: #f4f4f4;
  z-index: 0;
}
i {
  display: flex;
  align-items: center;
  justify-content: center;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
.icon-start {
  mask-image: url(../images/icon-start.svg);
  -webkit-mask-image: url(../images/icon-start.svg);
  background-color: #4835ff;
  height: 40px;
  width: 40px;
  margin-bottom: 16px;
}

.mwc-title span {
  color: #4835ff;
}
.home-banner::after {
  content: url(../images/bg-circles.svg);
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(10%);
  z-index: -1;
}
.home-banner::before {
  content: url(../images/home-bg-astrix.svg);
  position: absolute;
  bottom: -150px;
  right: -140px;
  z-index: 1;
}
.home-slider {
  z-index: 2;
}
.home-banner .heading-three {
  color: #000;
  margin-bottom: 16px;
}
.banner-detail p {
  font-size: 22px;
  line-height: 28px;
  max-width: 500px;
  color: #000;
  margin-bottom: 50px;
}
.banner-detail .square-blue-btn {
  /* border-radius: 16px; */
  text-transform: capitalize;
  font-size: 18px;
  line-height: 21px;
  padding: 14px 20px;
  font-weight: 500;
}
/* .banner-detail .square-blue-btn::before {
  border-radius: 16px;
} */
.logo-box img {
  opacity: 1;
  filter: brightness(0);
}
/* 14/8/2025 End */
/* 18/8/2025 */
.home__arrows .new__arrow {
  border-color: #4836ff;
  z-index: 2;
}
.home__arrows .new__arrow path {
  stroke: #4836ff;
}
.home-slider::after{
   content: '';
    position: absolute;
    left: -100px;
    bottom: -110px;
    height: 200px;
    width: 200px;
    background: radial-gradient(#4836ff47, transparent);
    filter: blur(22px);
    -webkit-filter: blur(22px);
    z-index: -1;
}
/* Casestudy section */
.casestudy-statistics-container {
  background: white;
  border-radius: 4px;
  padding: 20px;
  height: 100%;
}
.casestudy-statistics-container ul {
  list-style: none;
  margin-bottom: 0;
}
.casestudy-statistics-container ul li {
  display: flex;
  align-items: start;
  gap: 12px;
}
.casestudy-statistics-container ul li:not(:last-of-type) {
  margin-bottom: 18px;
}
.statistic-desc span {
  color: #e77354;
  font-weight: 500;
}
.statistics-img-container{
    border-radius: 4px;
    background: linear-gradient(270deg, #ee5e55 42.09%, #eb7f64 98.89%);
    padding: 6px;
    width: 32px;
    aspect-ratio: 1;
    height: 32px;
}
.casestudy-slider-container,
.home-casestudy-slider,
.casestudy-slider-container .slick-list,
.casestudy-slider-container .slick-track{
  height: 100%;
}
.home-casestudy-slider-arrows{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  margin-bottom: 0;
}
.home-casestudy-slider-arrows .new__arrow{
  border-color: #fff;
}
.home-casestudy-slider-arrows .new__arrow path {
    stroke: #fff;
}
.home-casestudy-slider .slick-list{
  margin: 0 -12px;
}
.home-casestudy-slider .service-box {
  position: relative;
  min-height: 360px;
  max-height: 360px;
  height: 100%;
  margin: 0 12px;
  border-radius: 4px;
  transition: all 0.4s ease;
}
.home-casestudy-slider .service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180.1% 67.74% at 50% 10.79%, #21212300, #212123);
  z-index: 0;
}
.home-casestudy-slider .service-box::after {
  content: "";
  position: absolute;
  inset: -24px;
  transition: opacity 0.3s ease-in-out;
  background: linear-gradient(0deg, #121213cc 0% 100%);
  opacity: 0;
  z-index: -1;
}
.home-casestudy-slider .service-box:hover::after {
  opacity: 0.8;
}
.home-casestudy-slider .service-box:hover .service-img img {
  transform: none;
}
.home-casestudy-slider .service-box:hover {
  filter: brightness(0.9);
}
.home-casestudy-slider .service-box .white-btn {
  width: fit-content;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.home-casestudy-slider .service-box:hover .white-btn {
  max-height: 100%;
  margin-top: 12px;
}
.statistics-detail h3{
  line-height: 28px;
  margin-bottom: 8px;
}
.marquee-container .logo-box{
  flex-basis: 20%;
}
.casestudy-section-title-wrapper {
  margin-bottom: 35px;
}
/* Casestudy section */
/* 18/8/2025 */

/* =====================
    Media Query
========================*/

@media (max-width: 1400px) {
  /* .banner-detail {
    padding-bottom: 110px;
  } */
  .home-banner .slider-item {
    /* padding: 200px 0 100px; */
    padding: 60px 0;
  }
  .home__arrows {
    bottom: 40px;
  }
  .client-marquee {
    margin-top: 40px;
  }
  /* .home-slider .slider-item:first-child .banner-side-img {
    width: 60%;
    right: -5%;
  } */

  /* 14/8/2025 */
  .home-banner::before {
    scale: 0.8;
  }
  .home-banner::after {
    scale: 0.7;
    right: -130px;
  }
  .home-banner h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 6px;
  }
}
@media (max-width: 1199px) {
  /* .home-banner {
    background-position: 95% center !important;
  }
  .home-banner .slider-item {
    padding: 180px 0 80px 12px;
  }
  .home__arrows {
    left: 12px;
  } */
  .home-banner .row {
    margin: 0 -12px;
  }
  .client-marquee {
    margin: 30px 0 0;
  }
  /* .banner-detail {
    padding-top: 0;
    padding-bottom: 60px;
  } */
  /* .gitex-info-list{padding: 16px;}
    .gitex-info-list li:first-child{padding-right: 16px; margin-right: 16px;}
    .gitex-info-list li span{font-size: 16px;} */
  .home-banner h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 10px;
  }
  .experience-sec .img-grid {
    justify-content: center;
  }
  .counter-col {
    width: 60%;
  }
  .whychooseus-box-inner {
    padding: 0 24px;
  }
  .whychooseus-box {
    padding: 24px;
  }
  /* 14/8/2025 */
  .home-banner .slider-item {
    padding: 50px 0;
  }
  .icon-start {
    height: 30px;
    width: 30px;
  }
  h3,
  .heading-three {
    font-size: 24px;
    line-height: 28px;
  }
  .banner-detail p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 40px;
  }
  .banner-detail .square-blue-btn {
    padding: 12px 18px;
  }
  .home-banner::after {
    scale: 0.6;
    right: -170px;
  }
  .home-banner::before {
    scale: 0.6;
  }
  /* 14/8/2025 */

  /* 18/8/2025 */
  .home-casestudy-slider .service-box-content{
    padding: 20px;
  }
  .home-casestudy-slider .service-box{
    min-height: 320px;
    max-height: 100%;
  }
}
@media (max-width: 991px) {
  .home-banner {
    background-position: 85% center !important;
  }
  /* .gtext-title-img{max-width: 280px;} */
  .home-banner h2 {
    font-size: 32px;
    /* line-height: 48px; */
    line-height: 38px;
    margin-bottom: 16px;
  }
  .home-banner .slider-item {
    /* padding: 100px 0 80px 12px; */
    padding-inline: 12px;
  }
  /* .gitex-info-list{margin-bottom: 20px; padding: 12px 16px;}
    .gitex-info-list li span{font-size: 14px; line-height: 14px;}
    .home-banner .square-orange-btn{font-size: 14px; line-height: 28px; padding: 7px 26px;}
    .banner-detail{padding-bottom: 30px;} */
  .experience-sec,
  .achivment-sec {
    padding: 60px 0;
  }
  .marquee-container .logo-box {
    flex-basis: 33.33%;
  }
  .service-box .service-box-content {
    padding: 20px;
  }
  .tech-list li {
    width: 25%;
  }
  .counter-col {
    width: 90%;
  }
  .whychooseus-box {
    top: -60px;
  }
  .workwithus-col:last-child .workwithus-box {
    padding: 20px;
  }
  .whychooseus {
    padding: 0 0 60px;
    margin-top: 60px;
  }
  .recent-blog-img {
    height: 350px;
  }
  ul.recent-posts li {
    width: 50%;
    margin-bottom: 40px;
  }
  /* 14/8/2025 */
  .banner-detail {
    margin-bottom: 24px;
    padding-bottom: 0;
  }
  .home-banner::after {
    scale: 0.7;
    right: -130px;
    transform: translateY(80%);
  }
  .home-banner .slick-slide img {
    margin: auto;
  }
  .home-banner .slider-item {
    padding-bottom: 90px;
  }
  .home__arrows {
    justify-content: center;
    width: 100%;
    left: 0;
  }
  /* 18/8/2025 */
  .casestudy-statistics-container{
    padding: 12px;
  }
  .statistics-img-container{
    height: 28px;
    width: 28px;
  }
  .home-casestudy-slider .service-box .white-btn{
    max-height: 100%;
    margin-top: 12px;
  }
  /* 18/8/2025 */
}
@media (max-width: 767px) {
  .home-banner {
    background-position: 0 center !important;
  }
  .home-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
  }
  /* .banner-detail{text-align: center; padding-top: 10px;}
    .gitex-info-list{display: flex; max-width: fit-content; margin: 0 auto 20px;}
    .gitex-info-list li img{max-width: 20px;}
    .home-banner .banner-side-img{max-width: 400px;} */
  .home-banner h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .experience-sec,
  .achivment-sec {
    padding: 40px 0;
  }
  .whychooseus {
    padding: 0 0 40px;
    margin-top: 40px;
  }
  .home-slider .row {
    flex-wrap: wrap-reverse;
  }
  .client-marquee {
    margin: 10px 0 0;
  }
  .experience-sec .img-grid {
    justify-content: flex-start;
  }
  .service-box-col {
    width: 50%;
  }
  .tech-list li {
    width: 20%;
  }
  .counter-col {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .counter-box {
    width: 50%;
    border-right: 1px dashed #d8d8d8;
    border-bottom: 0;
  }
  .counter-box:nth-child(even) {
    border-right: 0;
  }
  .counter-box:last-child {
    margin-bottom: 20px;
  }
  .whychooseus-box img {
    display: none;
  }
  .whychooseus-box-inner {
    padding: 0;
  }
  .workwithus-col {
    width: 50%;
  }
  .home-banner .slider-item {
    /* padding: 130px 0 60px 12px; */
    /* padding: 80px 0 60px 12px; */
    background-position: left !important;
  }
  /* .home-banner .slider-item:nth-child(3) {
    background-image: url(../images/mobile-bg.jpg) !important;
    background-position: center !important;
  }
  .home-banner .slider-item:nth-child(4) {
    background-image: url(../images/mobile-bg-blockchain.png) !important;
    background-position: center !important;
  }
  .home-banner .slider-item:nth-child(3) .side-img {
    margin-bottom: 0 !important;
  }
  .home-banner .slider-item:nth-child(4) .side-img {
    margin-bottom: 0 !important;
  } */
  .recent-blog-img {
    height: 250px;
  }

  /* MWC Banner */
  .mwc-modal .modal-content {
    padding: 30px;
  }
  .mwc-modal .booth-text {
    font-size: 26px;
  }
  .modal-event-date {
    margin-bottom: 30px;
  }
  .mwc-modal .modal-content .btn-close {
    right: 10px;
    top: 18px;
    width: 20px;
    height: 20px;
  }
  .mwc-modal #i8esg {
    margin-top: 34px;
  }
  .mwc-modal .modal-body .label-text {
    font-size: 22px;
  }
  /* MWC Banner */
   /* 14/8/2025 */
  .banner-detail {
    order: 2;
  }
  .banner-detail p {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 20px;
  }
  .home__arrows {
    bottom: 20px;
  }
  .home-banner .slider-item {
    padding-bottom: 80px;
  }

  /* 18/8/2025 */
  .casestudy-statistics-container {
    margin: 24px 0;
    height: auto;
  }
  .casestudy-slider-container, 
  .home-casestudy-slider, 
  .casestudy-slider-container .slick-list, 
  .casestudy-slider-container .slick-track {
    height: auto;
  }
  .home-casestudy-slider-arrows {
    margin-top: 24px;
    margin-bottom: 0;
    justify-content: center;
  }
  .casestudy-section-title-wrapper {
    margin-bottom: 0;
  }
  /* 18/8/2025 */

}
@media (max-width: 640px) {
  /* .home-banner .banner-side-img{max-width: 350px;} */
  .home__arrows {
    margin-top: 20px;
  }
  .workwithus-col {
    width: 100%;
  }
  .whychooseus-box {
    padding: 24px 12px;
  }
  .service-box .service-box-content {
    padding: 12px;
  }
  .service-box-content {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 5%,
      rgba(0, 0, 0, 0.9) 100%
    );
  }
  .home-banner .slider-item {
    /* padding: 100px 0 60px 12px; */
    /* padding: 50px 0 60px 12px; */
  }
  .home-banner .glassbox {
    max-width: 100%;
  }
  ul.recent-posts li {
    width: 100%;
  }
  /* .home-slider .slider-item:first-child .banner-side-img {
    width: 75%;
  } */

  /* MWC Banner */
  .mwc-modal .modal-content {
    padding: 20px;
  }
  .mwc-modal .booth-text {
    font-size: 20px;
  }
  .modal-event-date {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .mwc-modal #i8esg {
    margin-top: 24px;
    font-size: 14px;
    padding: 10px 20px;
  }
  .mwc-modal .modal-body .label-text {
    font-size: 18px;
  }
  /* MWC Banner */
  .home-slider .slider-item .event-date {
    margin-bottom: 20px;
  }
  .home-slider .slider-item:first-child p {
    margin-bottom: 20px;
  }
  .home-banner h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .home-banner .heading-three {
    font-size: 22px;
    line-height: 24px;
  }
  .home-banner::before,
  .home-banner::after {
    display: none;
  }
  .banner-detail .square-blue-btn {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 575px) { 
  ul.recent-posts {
    margin: 0 !important;
  }
}
@media (max-width: 480px) {
  /* .home-banner .banner-side-img{max-width: 280px;} */
  .gitex-info-list {
    padding: 10px;
  }
  .gitex-info-list li:first-child {
    padding-right: 8px;
    margin-right: 8px;
  }
  .gitex-info-list li {
    gap: 5px;
  }
  .gitex-info-list li span {
    font-size: 12px;
    line-height: 12px;
  }
  .marquee-container .logo-box {
    flex-basis: 40%;
  }
  .img-grid .logo-block {
    width: 50%;
  }
  .tech-list li {
    width: 33.33%;
  }
  .counter-box {
    min-width: auto;
    padding: 0 12px 0 0;
  }
  .counter-box:nth-child(even) {
    padding: 0 0 0 12px;
  }
  .service-box-col {
    width: 100%;
  }
  .home-banner .glassbox {
    max-width: 290px;
  }
  /* .home-slider .slider-item:first-child .banner-side-img {
    width: 80%;
  } */
  /* .home-slider .slider-item:first-child p:last-of-type {
    margin-bottom: 0;
  }
  .client-marquee {
    margin: 0;
  } */
  .home-slider .slider-item .event-date {
    margin-bottom: 16px;
  }
}
