@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600&display=swap");

/*----- VARIABLES CSS -----*/
:root {
  /* ----- font color ------- */
  --light: rgb(63, 71, 93);
  --main-color: #ff685a;
  --advance-color: #0aa39e;
  --purple-color: #352758;
  --sliderbg: #0c1442;

  /*----- Font and typography -----*/
  /* --font-first: 'Be Vietnam Pro', sans-serif; */
  --font-first: "Be Vietnam Pro", sans-serif;

  /*----- z index -----*/
  --z-fixed: 1000;

  /* social */
  --link-size: 40px;
  --trans-property: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*===== BASE =====*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--body-font);
}

a {
  text-decoration: none;
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-first);
}

/* ============================================== main-btn ======================================================== */

.navbar-btn {
  width: 20%;
  text-align: end;
}

.main-btn {
  width: 100px;
  padding: 15px 20px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #000;
  z-index: 1;
  text-decoration: none;
  font-family: var(--font-first);
  white-space: nowrap;
  font-weight: 600;
}

.main-btn::after,
.main-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}

.main-btn::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #ffe562;
  border-radius: 14px;
}

/* ============================================== contact form button ====================================== */

.get-in-touch-btn {
  border: none;
  color: #fff;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.get-in-touch-btn button {
  outline: none;
  border: none;
  text-align: center;
  background: transparent;
  color: #fff;
  font-family: var(--font-first);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 19px;
  max-width: 400px;
  width: 400px;
  background: #222222;
  border-radius: 3px;
  padding: 8px;
}

.get-in-touch-btn i {
  transform: rotate(45deg) translateY(43px);
  margin-left: 7px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s ease-in 0s;
}

.get-in-touch-btn button:hover i {
  transform: rotate(45deg) translateY(0px);
}

/* ================================================ swiper css =================================================== */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================================================ verticle swiper css ==============================================*/

.main-slider {
  padding: 50px 0;
}

.swiper-vertical > .swiper-wrapper {
  transition-duration: 800ms !important;
}

.slider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px !important;
}

.slider-row > .mySwipers {
  height: 100% !important;
}

.swiper-slide-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.swiper-slide-left {
  width: 50%;
}

.swiper-slide-right {
  width: 40%;
}

.slider-row .swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  top: 44%;
  transform: translate3d(0px, -50%, 0);
  left: 10px !important;
  right: 0px !important;
}

.slider-row .swiper-pagination-bullet {
  height: 20px !important;
  width: 4px !important;
  border-radius: 5px !important;
  margin-bottom: 12px !important;
}

.slider-row .swiper-pagination-bullet-active {
  background: var(--advance-color) !important;
  height: 40px !important;
  width: 4px !important;
  transition: all 1s ease;
}

.slider-row .swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  width: 12px !important;
  height: 100% !important;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  text-align: start;
}

.content p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 32px;
}

/* ================================================== left - right button ============================================== */

.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-decoration: none;
}

.cta:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b1dae7;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #234567;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #234567;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #b1dae7;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

/* ----------   Padding classes start ----------- */

/* ----------   Padding classes End ----------- */

/* ----------   Gap classes start ----------- */
.gap-8px {
  gap: 0.5rem;
}

/* ----------   Gap classes End ----------- */

/* ============================================================ header ================================================= */
/*----- HEADER -----*/
/* 
.header {
    position: absolute;
    width: 100%;
    z-index: var(--z-fixed);
}

header.navfix {
    top: 0;
    left: 0;
    margin: auto;
    position: fixed !important;
    background: white !important;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: 300ms ease-in-out fadeInDown;
    transition: all 0.3s ease;
    height: 5rem;
    border-bottom: 1px solid #dadadae8;
}



.main-menu .navbar-nav .nav-item {
    margin: 10px;
}

.main-menu .navbar-nav .nav-item .nav-link {
    padding: 10px 15px;
    font-family: var(--font-first);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1px;
    color: #fff;
    border-radius: 8px;
    transition: background-color 0.3s ease-in 0s;
}

header.navfix .main-menu .navbar-nav .nav-item .nav-link {
    color: #000;
}

.navbar-brand img {
    display: block;
    width: 60%;
}

.commen-header-img img {
    display: block;
    width: 60%;
}

.navfix .navbar-brand img {
    width: 60%;
    display: block;
}


@media screen and (min-width: 992px) {
    .navbar {
        padding: 15px 0 !important;
        background: transparent;
        height: 5rem;
    }

    .main-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
    }

    .navbar-nav {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .main-menu .navbar-nav .nav-item .nav-link:hover {
        cursor: pointer;
        color: var(--advance-color);
        transition: 0.2s ease-in 0s;
    }

    .main-menu .navbar-nav .nav-item.dropdown:hover .nav-link {
        color: var(--advance-color) !important;
    }

    .main-menu .navbar-nav .nav-item.dropdown .nav-link.show {
        color: var(--advance-color) !important;
    }

    .main-menu .dropdown:focus .dropdown-menu {
        display: none !important;
    }

    .main-menu .dropdown:hover .dropdown-menu {
        display: block !important;
    }

    .main-menu .dropdown .dropdown-menu.show {
        display: none !important;
    }

    .main-menu .dropdown:hover .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-menu {
        margin-left: 0px !important;
        padding: 15px !important;
        background: linear-gradient(203.63deg, rgba(255, 255, 255, 0.56) -0.77%, rgba(255, 255, 255, 0.72) 6.1%, rgba(255, 255, 255, 0.8) 100.71%) !important;
        backdrop-filter: blur(250px);
        border-radius: 12px !important;
        border: 1px solid rgba(208, 213, 233, 0.75) !important;
        margin-top: 0.125rem !important;
    }

    .dropdown-menu .drop-item li {
        white-space: nowrap !important;
        display: flex;
        gap: 10px;
        -webkit-box-align: center;
        align-items: center;
        padding: 0.3rem 0.5rem;
        border-radius: 5px;
    }

    .dropdown-menu .drop-item li:hover {
        background-color: rgb(249 250 255 / 38%);
        transition: 0.2s ease-in 0s;
    }

    .dropdown-menu .drop-item li:hover a {
        color: var(--advance-color);
        transition: 0.2s ease-in 0s;
    }

    .dropdown-menu .drop-item li span a {
        font-size: 14px;
        line-height: 1.5rem;
        margin: 0px;
        color: rgb(63, 71, 93);
        font-weight: 500;
        font-family: var(--font-first);
        text-decoration: none;
    }

    .main-menu .navbar-nav .nav-item.dropdown .nav-link i {
        transform: rotate(0deg);
        transition: 0.3s ease-in 0s;
    }

    .main-menu .navbar-nav .nav-item.dropdown:hover .nav-link i {
        transform: rotate(-180deg);
        transition: 0.3s ease-in 0s;
    }

}

@media screen and (max-width: 991px) {
    .navbar {
        padding: 5px 0 !important;
        background: transparent;
        height: 5rem;
    }

    .navbar-toggler {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler i {
        color: #fff;
        font-size: 24px;
    }

    header.navfix .navbar-toggler i {
        color: #000;
        font-size: 24px;
    }

    .header .navbar .container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .offcanvas-header {
        justify-content: end !important;
    }

    .offcanvas-header .close-btn {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: #5b42f3;
        width: 30px;
        height: 30px;
        text-align: center;
        border-radius: 20px;
        top: 20%;
        position: relative;
        right: 3%;
    }

    .offcanvas-header .close-btn i {
        border: none !important;
        line-height: 29px;
        color: #fff;
    }

    .main-menu .navbar-nav {
        margin-bottom: 8px !important;
    }

    .main-menu .navbar-nav .nav-item .nav-link {
        padding: 10px 15px;
        font-family: var(--font-first);
        font-size: 16px;
        font-weight: 500;
        font-style: normal;
        letter-spacing: 0.1px;
        color: #000;
        border-radius: 8px;
        transition: background-color 0.3s ease-in 0s;
    }

    .navbar-btn {
        width: 100%;
        padding: 25px;
    }

    ------- dropdown ----- 

    .dropdown-menu {
        margin-left: 0px !important;
        padding: 15px !important;
        background: linear-gradient(203.63deg, rgba(255, 255, 255, 0.56) -0.77%, rgba(255, 255, 255, 0.72) 6.1%, rgba(255, 255, 255, 0.8) 100.71%) !important;
        backdrop-filter: blur(42px);
        border-radius: 12px !important;
        border: 1px solid rgba(208, 213, 233, 0.75) !important;
        margin-top: 0.125rem !important;
    }

    .dropdown-menu .drop-item li {
        white-space: nowrap !important;
        display: flex;
        gap: 10px;
        -webkit-box-align: center;
        align-items: center;
        padding: 0.3rem 0.5rem;
        border-radius: 5px;
    }

    .dropdown-menu .drop-item li:hover {
        background-color: rgb(249 250 255 / 38%);
        transition: 0.2s ease-in 0s;
    }

    .dropdown-menu .drop-item li:hover a {
        color: var(--advance-color);
        transition: 0.2s ease-in 0s;
    }

    .dropdown-menu .drop-item li span a {
        font-size: 14px;
        line-height: 1.5rem;
        margin: 0px;
        color: rgb(63, 71, 93);
        font-weight: 500;
        font-family: var(--font-first);
        text-decoration: none;
    }

    .main-menu .navbar-nav .nav-item.dropdown .nav-link.main-toggle i {
        transform: rotate(0deg);
        transition: 0.3s ease-in 0s;
    }

    .main-menu .navbar-nav .nav-item.dropdown .nav-link.main-toggle.show i {
        transform: rotate(-180deg);
        transition: 0.3s ease-in 0s;
    }

    .main-menu .navbar-nav {
        width: 100%;
    }

    .main-menu .navbar-nav .nav-item {
        margin: 2px 10px;
    }

    .main-menu {
        overflow-y: auto !important;
    }
} */

/* ======================================================= hero banner section ======================================= */

.hero-section {
  height: 783px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section-bg {
  /* background: url(../img/home-banner/banner.jpg); */
  background: #2f2b5b;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  overflow: hidden;
}

.hero-main-box {
  padding: 10px;
}

.hero-banner-logo {
  margin-bottom: 30px;
}

.hero-banner-logo img {
  width: 56%;
}

.hero-banner-text p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  line-height: 32px;
  letter-spacing: 0.3px;
}

.hero-banner-text h1 {
  font-family: var(--font-first);
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  font-size: 38px;
  color: #fff;
  position: relative;
  padding-left: 32px;
}

.hero-banner-text h1::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 86px;
  background: linear-gradient(
    180deg,
    hsla(0, 72%, 57%, 1) 32%,
    hsla(24, 100%, 46%, 1) 59%,
    hsla(42, 75%, 60%, 1) 100%
  );
  top: calc(50% - 0px);
  left: 0px;
  transform: translateY(-50%);
  border-radius: 30px;
}

.hero-main-img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-main-img img {
  z-index: 5;
  object-fit: cover;
  width: 100%;
}

.hero-banner-shape .shape-line {
  position: absolute;
  /* width: 250px; */
  bottom: 0;
  left: 0;
  z-index: 1;
}

/* .hero-banner-shape .shape-1 {
    position: absolute;
    width: 250px;
    bottom: -92px;
    left: -118px;
}

.hero-banner-shape .shape-3 {
    position: absolute;
    width: 25px;
    top: 110px;
    right: 698px;
    transform: rotate(0deg);
    opacity: 0.2;
}

.hero-banner-shape .shape-4 {
    position: absolute;
    width: 50px;
    top: 180px;
    left: 60px;
    transform: rotate(0deg);
    opacity: 0.6;
}

.hero-banner-shape .shape-5 {
    position: absolute;
    width: 110px;
    bottom: -35px;
    right: -40px;
    transform: rotate(0deg);
    opacity: 0.4;
}

.hero-banner-shape .shape-6 {
    position: absolute;
    width: 25px;
    bottom: 80px;
    left: 700px;
    transform: rotate(-20deg);
    opacity: 0.3;
}

.hero-banner-shape .shape-7 {
    position: absolute;
    width: 50px;
    top: 20px;
    left: 20px;
    transform: rotate(-18deg);
    opacity: 0.3;
} */

/* ============================================= new who we are section =============================================== */

main {
  background: linear-gradient(
    90deg,
    rgba(255, 245, 245, 1) 0%,
    rgba(227, 243, 255, 1) 25%,
    rgba(236, 241, 255, 1) 50%,
    rgba(240, 252, 255, 1) 75%,
    rgba(255, 245, 245, 1) 100%
  );
}

.new-we-are {
  padding: 100px 0;
}

.new-mobile-scraping {
  padding: 80px 0 20px;
}

.new-we-are-content {
  margin-bottom: 50px;
}

.new-we-are-content h2 {
  font-family: var(--font-first);
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  line-height: 35px;
  text-align: start;
  margin-bottom: 20px;
}

.new-we-are-content p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 32px;
  letter-spacing: 0.3px;
}

.new-we-are-content ul {
  list-style: circle;
}

.new-we-are-content ul li {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 32px;
  letter-spacing: 0.3px;
}

.hero-icon-box {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: start;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 5;
  position: relative;
  gap: 10px;
  margin-top: 40px;
}

.hero-icon-box .partner {
  width: calc(30% - 10px);
  min-width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  height: 76px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.hero-icon-box .partner img {
  width: 95%;
}

.new-full-mobile-scraping {
  margin: 80px 0;
}

.mt-50 {
  margin-top: 50px;
  margin-bottom: 10px;
}

.new-full-content {
  margin-bottom: 30px;
  margin-top: 30px;
}

.new-full-content h2 {
  font-family: var(--font-first);
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  line-height: 35px;
  text-align: center;
  margin-bottom: 20px;
}

.new-full-content p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 28px;
  letter-spacing: 0.3px;
  text-align: center;
}

.new-full-content p strong {
  font-size: 18px;
}

.new-scraping-box {
  margin: 50px 0 40px;
  padding: 28px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 20px 80px 0px #4212801a;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.new-scraping-megabox {
  min-height: 400px;
}

.new-scraping-ultrabox {
  min-height: 450px;
}

.new-scrape-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0px 25px 40px 0px #0000002e;
}

.new-scrape-icon img {
  height: 55px;
  width: 55px;
}

.new-scrape-icon svg {
  height: 40px;
  width: 40px;
}

.new-scraping-box h3 {
  font-family: var(--font-first);
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: #332c5c;
  line-height: 28px;
  letter-spacing: 0.3px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 20px;
}

.new-scraping-box p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 26px;
  letter-spacing: 0.3px;
  text-align: center;
}

.new-full-icon-slide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 30px;
  padding: 30px 0;
}

.slide-box {
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
}

.slide-box img {
  margin-right: 10px;
  height: 46px;
  width: 46px;
}

.slide-box span {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  letter-spacing: 0.5px;
}

/* =================================================== new mas section ============================================== */

.new-mas-setion {
  padding: 110px 0 0;
  position: relative;
  overflow: hidden;
}

.new-mas-img-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-mas-img-section .new-mas-img-elementer {
  max-width: 100%;
}

.mobile-app {
  position: relative;
}

.new-mas-wrapper {
  margin-top: 50px;
}

.mobile-app > div:after,
.mobile-app > div:before {
  position: absolute;
  top: auto;
  right: auto;
  content: "";
  width: 330px;
  height: 100%;
  border-radius: 42px;
  opacity: 0;
}

/* ------- animation --------- */

.mobile-app > div:before {
  background: linear-gradient(0deg, #fb0 0, #ffcd00 100%);
  z-index: -1;
  transform: rotate(5.2deg);
  top: -26px;
  right: 120px;
}

.mobile-app > div:after {
  background: linear-gradient(180deg, #cdf 0, #9ec5ff 100%);
  z-index: -2;
  transform: rotate(-5.28deg);
  left: 120px;
  top: -60px;
}

.mobile-app.in-view > div:before {
  animation: MobileAppBefore 1s 0.2s forwards;
}

@keyframes MobileAppBefore {
  from {
    content: "";
    opacity: 0;
    right: 0;
    top: 0;
    transform: rotate(0);
  }

  to {
    content: "";
    transform: rotate(5.2deg);
    top: -26px;
    right: 120px;
    opacity: 1;
  }
}

.mobile-app > div:after {
  background: linear-gradient(180deg, #cdf 0, #9ec5ff 100%);
  z-index: -2;
  transform: rotate(-5.28deg);
  left: 180px;
  top: -50px;
}

.mobile-app.in-view > div:after {
  animation: MobileAppAfter 1s 0.2s forwards;
}

@keyframes MobileAppAfter {
  from {
    content: "";
    opacity: 0;
    left: 0;
    top: 0;
    transform: rotate(0);
  }

  to {
    content: "";
    transform: rotate(-5.28deg);
    left: 120px;
    top: -60px;
    opacity: 1;
  }
}

/* ------- animation end --------- */

.new-mas-content-data {
  max-width: 490px;
  margin: 0 auto;
}

.new-mas-content-data h4 {
  font-family: var(--font-first);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 32px;
}

/* ----- */

.new-mas-bg-section {
  background: url(../img/mas/mas-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mas-bg-height {
  padding: 80px 0;
  position: relative;
}

.new-mas-bg-content {
  margin-top: 20px;
}

.new-mas-bg-content h4 {
  font-family: var(--font-first);
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  line-height: 35px;
  text-align: center;
}

.new-mas-bg-content-data h2 {
  font-family: var(--font-first);
  font-size: 25px;
  font-weight: 500;
  font-style: normal;
  color: #000;
  line-height: 32px;
  margin-bottom: 22px;
}

.new-mas-bg-content-data p {
  position: relative;
  font-family: var(--font-first);
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 28px;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  margin-left: 2rem;
}

.new-mas-bg-content-data p::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgb(16, 190, 117);
  border-radius: 50px;
  top: calc(50% - 0px);
  left: -26px;
  transform: translateY(-50%);
}

.new-mas-bg-content-data h4 {
  font-family: var(--font-first);
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  color: #000;
  line-height: 32px;
  margin-top: 24px;
  margin-bottom: 26px;
}

.new-mas-bg-content-img {
  position: absolute;
  top: 8%;
  right: 3%;
}

/* ========================================================== key technical ================================================= */

.key-list {
  padding: 0;
}

.key-list li {
  position: relative;
  font-family: var(--font-first);
  font-size: 18px;
  font-style: normal;
  color: #000;
  padding-left: calc(12px + 1.25em);
  margin-bottom: 10px;
}

.key-list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 11px);
  left: 0;
  width: 22px;
  height: 22px;
  aspect-ratio: 1;
  background-color: #de4d3c;
  border-radius: 50%;
  margin-right: 1.25em;
}

.key-list li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  width: 11px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  margin: -1px 10px 3px 5px;
}

/* ======================================================= key section =================================================== */

.key-section {
  padding: 100px 0;
}

.key-content {
  margin-bottom: 20px;
}

.key-content h2 {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
  display: block;
  text-align: center;
}

.key-pera p {
  font-family: var(--font-first);
  font-style: normal;
  font-weight: 400;
  color: var(--light);
  font-size: 20px;
  display: block;
  text-align: center;
}

.font-red p {
  color: #de4d3c;
}

/* ======================================================= process =================================================== */

.key-main-title {
  margin: 5px 0 50px !important;
}

.key-main-title h2 {
  color: #de4d3c;
  font-size: 45px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
  display: block;
  text-align: center;
}

.key-flex {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.key-icon {
  height: 10px;
  width: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #005c97;
  padding: 12px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

.key-process-content h4 {
  margin-bottom: 0;
  margin-left: 10px;
  font-family: var(--font-first);
  font-size: 16px;
  color: var(--light);
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.2px;
}

/* ======================================================= architecture =================================================== */

.architecture {
  padding: 80px 0;
}

.architech-content h4 {
  position: relative;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.architech-content h5 {
  font-size: 18px;
  position: relative;
  color: #000;
  line-height: 1.8;
}

.tech-model-main {
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  display: flex;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
}

.tech-model {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding: 30px;
  transform: translateY(65px);
}

.tech-model.first-model {
  width: 100%;
  padding-right: calc(50% + 30px);
  transform: translateY(5px);
}

.tech-model.last-model {
  width: 100%;
  padding-left: calc(50% + 30px);
  transform: translateY(50px);
}

.tech-model span {
  margin: 25px 0 5px;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.tech-model p {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.5em;
  font-weight: 500;
  font-family: sans-serif;
  color: #69737b;
}

.tech-model-pathGraphic {
  display: block;
  position: absolute;
  top: 12px;
  left: 0px;
  z-index: -1;
  width: 93%;
  height: 100%;
  -webkit-transform: scale(1.4, 0.7) translate(-2%, -12%);
  transform: scale(1.4, 0.7) translate(-2%, -12%);
}

svg:not(:root) {
  overflow: hidden;
}

/* ======================================================= needful =================================================== */

.needful-section {
  padding: 80px 0;
  background-color: #2f2b5b;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.needful-header {
  animation: 1s ease-in-out 0s animate-from-right;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.needful-header {
  font-size: 22px;
  line-height: 65px;
  font-weight: 400;
  font-family: var(--font-first);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.needful-content {
  margin-bottom: 24px;
  max-width: 700px;
}

.needful-content p {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 200;
  font-family: var(--font-first);
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.needful-list {
  margin-top: 30px;
  display: flex;
  max-width: 700px;
  flex-wrap: wrap;
}

.needful-item {
  display: flex;
  min-height: 42px;
  align-items: center;
  width: 48%;
}

.needful-number {
  line-height: 26px;
  font-weight: 500;
  color: var(--advance-color);
  font-size: 20px;
}

.needful-label {
  max-width: 404px;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-first);
  font-weight: 400;
}

.needful-label-create {
  margin-left: 12px;
}

.needful-absolute-content {
  position: absolute;
  right: -115px;
  top: -98px;
  transform: translateY(50%);
  z-index: 5;
}

.need-absolute-img {
  width: 95%;
}

.need-absolute-main-img {
  width: 80%;
  margin: 0 auto;
}

.need-absolute-main-img img {
  width: 100%;
}

.need-square-img {
  position: absolute;
  top: 7%;
  right: 29%;
  z-index: 1;
}

.need-bottom-square-img {
  position: absolute;
  bottom: -24%;
  right: 18%;
  z-index: 1;
  transform: rotate(12deg);
}

/* ======================================================= left-right section ========================================= */

.left-right {
  padding: 40px 0;
}

.left-right .content {
  padding: 20px;
}

.left-right .content h2 {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
  margin-bottom: 15px;
}

.left-right .content p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-first);
  font-style: normal;
  color: var(--light);
  letter-spacing: 0.1px;
}

.content-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade-in {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateY(40%);
}

.fade-in.show {
  opacity: 1 !important;
  filter: blur(0);
  /* transform: translateX(0); */
  transform: translateY(0);
}

.fade-out {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateY(-10%);
}

.fade-out.show {
  opacity: 1 !important;
  filter: blur(0);
  /* transform: translateX(0); */
  transform: translateY(0);
}

.app-list {
  margin: 15px 0 30px;
}

.app-list ul {
  display: flex;
  flex-wrap: wrap;
}

.app-list ul li {
  width: 33%;
}

.app-list ul li {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 35px;
  color: rgb(78, 95, 119);
  position: relative;
}

.app-list ul li a {
  color: #005be2;
  font-family: var(--font-first);
  font-size: 15px;
  letter-spacing: 0.1px;
  font-weight: 500;
  text-decoration: none;
}

.app-list ul li a:hover {
  color: #de4d3c;
  transition: all ease 0.3s;
}

.app-list ul li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #0470c1;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  border-bottom-right-radius: 6px;
  top: calc(50% - 0px);
  left: -20px;
  transform: translateY(-50%);
}

/* ====================================================  footer ========================================================== */

.footer {
  padding: 80px 0 40px;
  background: #2f2b5b;
}

.footer-content .footer-logo {
  margin-bottom: 15px;
}

.footer-content .footer-logo img {
  width: 70%;
}

.footer-contact h3 {
  font-family: var(--font-first);
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: #ffe562;
  margin-bottom: 15px;
}

.footer-contact a {
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-first);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.3px;
  font-size: 15px;
}

.footer-contact p {
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-first);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.3px;
  font-size: 15px;
}

.footer-list-social h3 {
  font-family: var(--font-first);
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: #5b42f3;
  margin-bottom: 15px;
}

.footer-list-social {
  margin-top: 45px;
}

.new-social {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 8px;
}

.social-icon {
  margin: 8px 10px;
}

.social-icon i {
  margin: auto;
  font-size: 20px;
  color: #fff;
  z-index: 1;
  transition: var(--trans-property);
}

.social-icon.twitter i:hover {
  color: #1da1f2;
  box-shadow: none;
}

.social-icon.instagram i:hover {
  color: #e4405f;
  box-shadow: none;
}

.social-icon.facebook i:hover {
  color: #1769ff;
  box-shadow: none;
}

.social-icon.linkedin i:hover {
  color: #0a66c2;
  box-shadow: none;
}

.social-icon.pinterest i:hover {
  color: #e60023;
  box-shadow: none;
}

/*** Animations ***/

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
  transition: var(--trans-property);
}

.footer-list-social p {
  margin-top: 15px;
  display: block;
  font-family: var(--font-first);
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: 500;
  font-style: normal;
}

.copyright {
  margin-top: 45px;
  border-top: 1px solid #e5bc0017;
}

.copyright p {
  padding-top: 30px;
  display: block;
  text-align: center;
  color: #a8b4c2;
  font-family: var(--font-first);
  font-size: 13px;
  letter-spacing: 0.4px;
  font-style: normal;
  font-weight: 300;
}

/* ========================================================= testi monial ================================================= */

.testimonial {
  padding: 60px 0 40px;
}

.testimonial .swiper {
  max-width: 1650px;
  max-height: 350px;
}

.testimonial .swiper .swiper-slide {
  opacity: 0.5;
}

.testimonial .swiper .swiper-slide.swiper-slide-next {
  opacity: 1;
}

.testimonial-list {
  background-color: #ffa5a517;
  border-radius: 60px;
  border-top-right-radius: 0;
  max-width: 485px;
  margin: 0 auto;
  height: 300px;
}

.testimonial-data {
  padding: 25px;
}

.testimonial-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.testimonial-title .testimonial-img {
  height: 50px;
  width: 50px;
  margin-right: 10px;
}

.testimonial-title .testimonial-img img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-data p {
  font-size: 15px;
  font-family: var(--font-first);
  font-weight: 400;
  color: #000;
  font-style: normal;
  margin-bottom: 8px;
  padding: 0px 10px;
  letter-spacing: 0.6px;
}

.testimonial-list h4 {
  font-size: 15px;
  font-family: var(--font-first);
  font-weight: 400;
  color: #000;
  font-style: normal;
  margin-bottom: 8px;
  padding: 0px 10px;
  letter-spacing: 0.6px;
}

.testimonial-client-name h3 {
  font-size: 20px;
  font-family: var(--font-first);
  font-weight: 600;
  color: #000;
  font-style: normal;
  margin-bottom: 8px;
  padding: 0px 10px;
  letter-spacing: 0.6px;
}

.testimonial .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0px) !important;
}

.testimonial .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 0px) !important;
}

.testimonial .swiper-button-next,
.swiper-button-prev {
  height: 40px !important;
  width: 40px !important;
}

.testimonial .swiper-button-next:after,
.testimonial .swiper-button-prev:after {
  font-size: 26px !important;
  font-weight: 600;
  color: var(--main-color);
}

/* ====================================================== home contact ==================================================== */

.get-in-touch {
  padding: 50px 0;
}

.get-in-data {
  margin-bottom: 50px;
  padding: 10px;
}

.get-in-touch .get-in-data h2 {
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
  display: block;
  text-align: start;
  margin-bottom: 12px;
  line-height: 1;
}

.get-in-touch .get-in-data span {
  font-size: 45px;
}

.wave {
  animation-name: wave-animation;
  /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s;
  /* Change to speed up or slow down */
  animation-iteration-count: infinite;
  /* Never stop waving :) */
  transform-origin: 70% 70%;
  /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  /* The following five values can be played with to make the waving more or less extreme */
  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}

.get-in-touch .contact-form label {
  font-size: 16px;
  font-family: var(--font-first);
  font-weight: 500;
  color: #000;
  font-style: normal;
  margin-bottom: 8px;
  padding: 0px 10px;
}

.get-in-touch .contact-form input {
  font-size: 14px;
  font-family: var(--font-first);
  font-weight: 500;
  color: #000;
  font-style: normal;
  margin-bottom: 40px;
  border: none;
  background-color: #fafafa;
  padding: 13px 18px;
  box-shadow: none;
  width: 100%;
}

.get-in-touch .contact-form input::placeholder {
  color: #c2c2c2;
  font-weight: 300;
  letter-spacing: 1.2px;
}

.get-in-touch .contact-form select {
  font-size: 14px;
  font-family: var(--font-first);
  font-weight: 500;
  color: #000;
  font-style: normal;
  margin-bottom: 40px;
  border: none;
  background-color: #fafafa;
  padding: 13px 18px;
  box-shadow: none;
}

.get-in-touch .contact-form select::placeholder {
  color: #c2c2c2;
}

.get-in-touch .contact-form textarea {
  font-size: 14px;
  font-family: var(--font-first);
  font-weight: 500;
  color: #000;
  font-style: normal;
  margin-bottom: 40px;
  border: none;
  background-color: #fafafa;
  padding: 13px 18px;
  box-shadow: none;
}

/* ================================================  contact page ================================================== */

.contact-form-slide {
  padding: 50px 0;
  background: #2f2b5b;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-form-title h1 {
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-first);
}

.contact-form-disk,
.contact-form-title {
  margin-top: 15px;
}

.contact-form-disk p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-first);
  letter-spacing: 0.5px;
}

.contact-form {
  padding: 10px 0 100px;
  margin-top: -50px;
}

.contact-main {
  padding: 10px 5px;
}

.contact-form-img {
  transform: translateY(-80px);
}

.contact-form-img img {
  width: 100%;
}

.contact-form-box {
  display: inline-block;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  width: 100%;
  border-radius: 20px;
}

.contact-main label {
  font-size: 16px;
  font-family: var(--font-first);
  font-weight: 500;
  color: #000;
  font-style: normal;
  margin-bottom: 8px;
  padding: 0px 10px;
}

.contact-main input {
  font-size: 14px;
  font-family: var(--font-first);
  font-weight: 500;
  color: #000;
  font-style: normal;
  margin-bottom: 20px;
  border: none;
  background-color: #fafafa;
  padding: 13px 18px;
  box-shadow: none;
  width: 100%;
}

.contact-main input::placeholder {
  color: #c2c2c2;
  font-weight: 300;
  letter-spacing: 1.2px;
}

.contact-main select {
  font-size: 14px;
  font-family: var(--font-first);
  font-weight: 500;
  color: #000;
  font-style: normal;
  margin-bottom: 20px;
  border: none;
  background-color: #fafafa;
  padding: 13px 18px;
  box-shadow: none;
}

.contact-main select::placeholder {
  color: #c2c2c2;
}

.contact-main textarea {
  font-size: 14px;
  font-family: var(--font-first);
  font-weight: 500;
  color: #000;
  font-style: normal;
  margin-bottom: 40px;
  border: none;
  background-color: #fafafa;
  padding: 13px 18px;
  box-shadow: none;
}

.contact-main input:focus {
  box-shadow: none;
}

.contact-main select:focus {
  box-shadow: none;
}

.contact-main textarea:focus {
  box-shadow: none;
  background-color: #fafafa;
}

.contact-btn .main-btn {
  display: block;
  width: 100%;
  text-align: center;
}

.contact-btn {
  margin-top: 10px;
}

/* ==================================================  about us ====================================================== */

/* -------------- common banner ------------------- */

.common-hero-height {
  height: 720px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-hero-section {
  background: #2e2a5a;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  overflow: hidden;
}

.hero-about-bg {
  background-image: url(../img/about/About-Us-bg.jpg);
}

.common-hero-section h1 {
  text-align: center;
  display: block;
  color: #fff;
  font-size: 42px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
  margin-bottom: 30px;
}

.common-hero-section p {
  text-align: center;
  display: block;
  color: #fafafa;
  font-size: 18px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 400;
}

.mobileapp-banner-text h1 {
  display: block;
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: start;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

.mobileapp-banner-text p {
  display: block;
  color: #fafafa;
  font-size: 16px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 300;
  text-align: start;
  line-height: 1.6;
  letter-spacing: 0.4px;
}

@media screen and (max-width: 768px) {
  .common-hero-height {
    padding-top: 80px;
    padding-bottom: 10px;
    height: auto;
  }
}

/* --------------- */

.countdown {
  padding: 50px 0;
}

.count-title {
  margin-bottom: 30px;
}

.count-title h3 {
  text-align: center;
  display: block;
  color: var(--main-color);
  font-size: 25px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 500;
  margin-bottom: 20px;
}

.count-title p {
  text-align: center;
  display: block;
  color: #c6cbd4;
  font-size: 16px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 400;
  margin-bottom: 20px;
}

/* ========================== counter ======================= */

.countericon {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
}

.countericon .imgspan {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 -5px 3px 0 rgba(0, 128, 200, 0.08),
    0 2px 4px 0 rgba(0, 128, 200, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  width: 41.41px;
  border-radius: 100px;
  height: 41px;
  display: inline-flex;
  text-align: center;
  line-height: 39px;
  margin-right: 20px;
  justify-content: center;
  align-items: center;
  transform: translateY(4px);
}

.countericon .imgspan img {
  width: 65%;
}

.bluenumbertext {
  font-weight: bold;
  letter-spacing: 0.7px;
  font-size: 30px;
  line-height: 37px;
  color: var(--advance-color);
  font-family: var(--font-first);
}

.iconcaption {
  margin-top: -7px;
}

.iconcaption p {
  margin-left: 67px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: 0.37px;
  font-size: 16px;
  color: #474745;
  margin-top: 25px;
  font-family: var(--font-first);
}

.aboutus-content {
  padding: 50px 0;
}

.aboutus-img img {
  width: 100%;
}

.aboutus-inside-data {
  padding: 10px;
}

.aboutus-inside-data h2 {
  text-align: start;
  display: block;
  color: var(--main-color);
  font-size: 25px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 500;
  margin-bottom: 20px;
}

.aboutus-inside-data h3 {
  text-align: start;
  display: block;
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}

.aboutus-inside-data ul {
  padding-left: 0;
}

.aboutus-inside-data p {
  display: block;
  color: rgb(63, 71, 93);
  font-size: 16px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 400;
  margin-bottom: 20px;
}

.aboutus-inside-data ul li {
  display: block;
  color: rgb(63, 71, 93);
  font-size: 16px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 400;
  margin-bottom: 20px;
}

.fade:not(.show) {
  opacity: 0;
  display: none;
}

.tab-section {
  padding: 60px 0;
  background-color: #f4f9fc;
}

.api-mobile-tab {
  padding: 20px;
}

.api-mobile-tab ul.nav-tabs {
  border: none !important;
}

.api-mobile-tab .nav-tabs .nav-link {
  border: none !important;
  background-color: #f0f5f8;
  color: #000;
  padding: 20px 25px;
}

.api-mobile-tab .nav-tabs .nav-link.active {
  border: none !important;
  background-color: #fff;
  color: #000;
  box-shadow: 0 12px 40px 0 rgba(0, 128, 200, 0.15);
  position: relative;
}

.api-mobile-tab .m-tab-content {
  padding: 5px;
}

.m-title-item {
  text-align: start;
  display: block;
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 500;
  padding: 0 22px;
  margin-bottom: 10px;
}

.api-mobile-tab .m-tab-content h3 {
  text-align: start;
  display: block;
  color: var(--advance-color);
  font-size: 20px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 500;
  margin-bottom: 10px;
}

.api-mobile-tab .m-tab-content p {
  display: block;
  color: #9c9c9b;
  font-size: 16px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 400;
  margin-bottom: 0px;
}

.api-mobile-tab .nav-link.active .m-tab-content p {
  color: rgb(63, 71, 93);
}

.api-mobile-tab .tab-data {
  display: flex;
  justify-content: center;
  align-items: center;
}

.api-mobile-tab .nav-tabs .nav-link.active:before {
  content: "";
  position: absolute;
  top: 38%;
  right: -33px;
  width: 0;
  height: 0;
  border: 17px solid transparent;
  border-left: 15px solid #fff;
}

.api-mobile-tab .nav-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  top: 38%;
  right: -33px;
  width: 0;
  height: 0;
  border: 17px solid transparent;
  border-left: 15px solid #fff;
}

/* -------- */

.about-team {
  padding: 100px 0;
}

.about-team-content {
  max-width: 450px;
  margin: 0 auto;
}

.about-team-content h2 {
  text-align: start;
  display: block;
  color: #474745;
  font-size: 30px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-team-content p {
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.6px;
  font-size: 15px;
  color: #9c9c9b;
  margin-top: 8px;
  font-family: var(--font-first);
  line-height: 30px;
}

.about-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.about-box-content {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 60px 25px;
  height: 255px;
  width: 40%;
  /* margin-bottom: 30px; */
  transition: all 0.5s ease;
}

.about-icon {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 -5px 3px 0 rgba(0, 128, 200, 0.08),
    0 2px 4px 0 rgba(0, 128, 200, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  width: 41.41px;
  height: 41px;
  border-radius: 100px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon img {
  vertical-align: middle;
  height: 28px;
  width: 28px;
}

.about-box-content h3 {
  font-size: 16px;
  margin: 20px 0 10px;
  color: var(--main-color);
  font-weight: 500;
  font-style: normal;
}

.about-box-content p {
  font-size: 15px;
  color: var(--light);
  font-weight: 400;
  font-style: normal;
  margin-top: 6px;
  font-family: var(--font-first);
}

.about-box-content:hover {
  background-color: var(--main-color);
  box-shadow: 0 6px 20px 0 rgba(235, 42, 8, 0.5);
}

.about-box-content:hover h3,
.about-box-content:hover p {
  color: #fff;
}

.about-box-content:nth-child(3),
.about-box-content:nth-child(1) {
  margin-top: 50px;
}

/* ----------------------------------------------------  */

.home-box-content {
  padding: 30px 25px;
  height: 305px;
}

.about-box-content p {
  margin-bottom: 10px;
}

/* =============================================== media quary responsive ================================================= */

/* ========================================================= 1600px ================================================= */

@media screen and (max-width: 1600px) {
  .need-absolute-main-img {
    width: 82%;
    margin: 0 auto;
  }

  .testimonial-list {
    max-width: 85%;
    margin: 0 auto;
  }

  .need-absolute-img {
    width: 90%;
  }

  .need-absolute-main-img {
    width: 70%;
    margin: 0 auto;
  }

  .needful-absolute-content {
    right: -190px;
    top: -32px;
  }
}

/* ========================================================= 1400px ================================================= */

@media screen and (max-width: 1400px) {
  .hero-main-box {
    padding: 3px;
  }

  .hero-banner-logo img {
    width: 47%;
  }

  .hero-banner-text h1 {
    line-height: 50px;
    font-size: 30px;
    padding-left: 22px;
  }

  .hero-banner-text h1::after {
    width: 10px;
    height: 87px;
  }

  .new-mas-bg-content-img {
    position: absolute;
    top: 14%;
    right: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .new-mas-bg-content-img img {
    width: 80%;
  }

  .new-mas-img-elementer img {
    width: 100%;
  }

  /* ======================================================= needful =================================================== */

  .needful-list {
    max-width: 100%;
  }

  .needful-flex-left {
    display: none;
  }

  .needful-content {
    max-width: 100%;
  }
}

/* ========================================================= 1200px ================================================= */

@media screen and (max-width: 1200px) {
  .navfix .px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .navbar > .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .navbar-brand {
    width: 16%;
  }

  .navfix .navbar-brand img {
    width: 100%;
    display: block;
  }

  .new-mas-img-elementer img {
    width: 100%;
  }

  .new-mas-bg-content-img {
    position: relative;
  }

  .new-mas-bg-content-img img {
    width: 100%;
  }

  /* ========================================= hero banner section ========================================= */

  .hero-section {
    height: 655px;
  }

  /* ================================================== needful ================================================== */

  .needful-flex {
    display: flex;
    flex-direction: column;
  }

  .odr-1 {
    order: 1;
  }

  .odr-2 {
    order: 2;
  }

  .needful-absolute-content {
    position: relative;
    transform: translate(0);
  }

  .need-square-img {
    position: absolute;
    top: -63px;
    right: 0px;
    z-index: 1;
  }

  .need-bottom-square-img {
    display: none;
  }

  .needful-content {
    max-width: 100%;
  }

  .needful-list {
    max-width: 100%;
  }

  /* ========================================== = = left-right slider ========================================= */

  .swiper-slide-right-img img {
    width: 100%;
  }

  .slider-row {
    height: 420px !important;
  }

  .slider-row .swiper-pagination-vertical.swiper-pagination-bullets,
  .swiper-vertical > .swiper-pagination-bullets {
    height: 100% !important;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* ------------  */

  .about-team-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .new-mas-bg-content-img img {
    width: 100%;
  }

  .commen-header-img img {
    display: block;
    width: 100%;
  }
}

/* ========================================================= 992px ================================================= */

@media screen and (max-width: 992px) {
  .od-1 {
    order: 1;
  }

  .od-2 {
    order: 2;
  }

  .whp-bg-image .who-image-1,
  .whp-bg-image .who-image-2 {
    opacity: 0.4;
  }

  /* ========================================= hero banner section ========================================= */

  .hero-section {
    display: block;
    height: auto;
    padding: 56px 0;
  }

  .hero-banner-logo img {
    width: 36%;
  }

  .hero-main-img img {
    object-fit: initial;
  }

  .hero-banner-shape .shape-line {
    bottom: 19%;
  }

  .hero-main-box {
    margin-top: 50px;
  }

  /* ========================================= who we are new section =========================================== */

  .new-we-are-content {
    margin-bottom: 20px;
    margin-top: 50px;
  }

  .new-mas-setion {
    padding: 60px 0 0;
  }

  .new-mas-content-data {
    width: 100%;
    margin-top: 30px;
  }

  /* --------------------- */

  .mas-bg-height {
    max-height: initial;
    height: auto;
  }

  .new-mas-bg-content-data {
    max-width: 100%;
  }

  .new-mas-bg-section-content {
    margin: 20px;
  }

  .new-mas-bg-content-data h4 {
    text-align: center;
  }

  /* ---------------- */

  .new-mas-media {
    margin: 80px 0;
  }

  /* ----------------------------------- swiper left -right -------------------------------- */

  .slider-row {
    height: auto !important;
  }

  .slider-row .swiper {
    overflow: auto !important;
  }

  .slider-row .swiper .swiper-slide {
    height: auto !important;
  }

  .slider-row .swiper-pagination-vertical.swiper-pagination-bullets,
  .swiper-vertical > .swiper-pagination-bullets {
    display: none !important;
  }

  .swiper-slide-content {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .swiper-slide-content .swiper-slide-left {
    order: 2;
    width: 100%;
  }

  .swiper-slide-content .swiper-slide-right {
    order: 1;
    width: 100%;
  }

  .testimonial .swiper .swiper-slide {
    opacity: 1;
  }

  /* ==========================================  footer ========================================== */

  .footer-content .footer-logo img {
    width: 50%;
  }

  .social-icon:nth-of-type(1) {
    margin-left: 0;
  }

  .footer-list-social {
    margin-top: 12px;
  }

  .footer-content .footer-logo {
    margin-bottom: 18px;
  }

  .social-icon {
    height: 35px;
    width: 35px;
  }

  .social-icon i {
    font-size: 17px;
  }

  .footer-contact {
    margin-top: 20px;
  }

  /* ================================================  contact page ================================================== */

  .contact-form-img {
    transform: translateY(0px);
  }

  /* -----------  */

  .aboutus-img {
    margin-bottom: 20px;
  }

  .about-box {
    margin-top: 20px;
  }
}

/* ========================================================= 768px ================================================= */

@media screen and (max-width: 768px) {
  /* ---------- header ------------ */

  .navbar-brand {
    width: 25%;
  }

  /* ================================================ hero banner section ================================= */

  .hero-section {
    height: auto;
  }

  .hero-banner-text h1 {
    line-height: 44px;
    font-size: 30px;
    padding-left: 25px;
  }

  .hero-banner-text h1::after {
    width: 13px;
    height: 80px;
  }

  .mobile-app > div:after,
  .mobile-app > div:before {
    width: 340px;
  }

  .new-mas-img-section .new-mas-img-elementer {
    max-width: 80%;
    width: 60%;
  }

  .mobile-app > div:before {
    top: -26px;
    right: 0px;
  }

  .mobile-app > div:after {
    left: 0px;
    top: -50px;
  }

  /* ======================================================= left - right ============================================== */

  .content-img img {
    width: 100%;
  }

  /* ======================================================== footer ================================================== */

  .footer-contact {
    margin-top: 30px;
  }

  /* ------------ */

  .tech-model-pathGraphic {
    left: 56px;
    width: 80%;
  }

  /* -------- */

  .tab-data img {
    width: 100%;
  }

  .about-box-content {
    width: 90%;
  }
}

/* ========================================================= 500px ================================================= */

@media screen and (max-width: 500px) {
  /* =============================================================== header =============================================== */
  .navbar.px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .navbar-brand {
    width: 32%;
    margin: 0;
  }

  /* ======================================================= hero banner section =========================================== */

  .hero-banner-text h1 {
    line-height: 36px;
    font-size: 24px;
    padding-left: 20px;
  }

  .hero-banner-text h1::after {
    width: 11px;
    height: 66px;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px);
  }

  .new-we-are {
    padding: 60px 0;
  }

  .mobile-app > div:after,
  .mobile-app > div:before {
    display: none;
  }

  .new-mas-img-section .new-mas-img-elementer {
    max-width: 80%;
    width: 80%;
  }

  .new-mas-wrapper {
    margin-top: 5px;
  }

  .new-mas-setion {
    padding: 25px 0 0;
  }

  .new-mas-content-data {
    padding: 15px;
    text-align: center;
  }

  .new-mas-content-data h4 {
    font-size: 16px;
    line-height: 27px;
  }

  /* -------------------- */

  .new-mas-bg-content h4 {
    font-size: 18px;
    line-height: 30px;
  }

  .mas-bg-height {
    padding: 22px 0;
  }

  .new-mas-bg-content-data h4 {
    font-size: 16px;
    line-height: 27px;
  }

  /* ---------------- */
  .tech-model-pathGraphic {
    display: none;
  }

  .tech-model-main {
    margin-top: 16px;
  }

  .tech-model.first-model {
    width: 50%;
    padding: 30px;
    transform: translateY(0px);
  }

  .tech-model.last-model {
    width: 50%;
    padding: 30px;
    transform: translateY(0px);
  }

  .tech-model {
    transform: translateY(0px);
  }

  .tech-model-main {
    align-items: start;
  }

  .architecture {
    padding: 40px 0;
  }

  .architech-content h5 {
    font-size: 15px;
  }

  /* -------------------  */

  .needful-header {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .needful-content p {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .needful-number {
    line-height: 24px;
    font-size: 13px;
  }

  .needful-label-create {
    margin-left: 7px;
  }

  .needful-label {
    max-width: 100%;
    font-size: 13px;
    line-height: 21px;
    font-weight: 300;
  }

  /* ---------- */

  .new-mas-media {
    margin: 1px 0;
  }

  .left-right .content h2 {
    font-size: 20px;
  }

  .left-right .content p {
    font-size: 15px;
  }

  .key-flex {
    margin-bottom: 10px;
  }

  .key-process-content h4 {
    font-size: 14px;
  }

  .key-icon {
    height: 6px;
    width: 6px;
    padding: 10px;
  }

  .key-icon span {
    font-size: 12px;
  }

  /* ------------- */

  .key-list li {
    font-size: 15px;
  }

  .key-list li::before {
    top: calc(50% - 8px);
    width: 18px;
    height: 18px;
    margin-right: 1.1em;
  }

  .key-list li::after {
    top: calc(50% - 2px);
    width: 9px;
    height: 5px;
  }

  /* ----------------- */

  .key-section {
    padding: 40px 0;
  }

  .key-content h2 {
    font-size: 18px;
  }

  .key-pera p {
    font-size: 15px;
  }

  /* ----------------------------------- swiper left -right -------------------------------- */

  .content {
    margin-top: 10px;
  }

  .app-list ul li {
    width: 50%;
  }

  .main-slider {
    padding: 20px 0;
  }

  .contact-form-slide {
    height: 380px;
  }

  /* -------------------------- testimonial ------------------------- */

  .testimonial .swiper {
    max-height: 360px;
    height: auto !important;
  }

  .testimonial {
    padding: 20px 0 30px;
  }

  /* ------------------------- contact form ---------------- */

  .get-in-touch {
    padding: 20px 0;
  }

  .get-in-touch .get-in-data h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .get-in-touch .get-in-data span {
    font-size: 28px;
  }

  /* -------------------------------- footer --------------------------------------- */

  .footer {
    padding: 37px 0 8px;
  }

  .footer-content .footer-logo img {
    width: 43%;
  }

  .copyright p {
    font-size: 10px;
  }

  /* ================================================  contact page ================================================== */

  .contact-form-title h1 {
    font-size: 45px;
  }

  .contact-form-disk p {
    font-size: 16px;
  }

  .contact-form {
    padding: 10px 0 25px;
  }

  /* ---------------  */

  .about-team {
    padding: 50px 0;
  }

  .about-box-content:nth-child(3),
  .about-box-content:nth-child(1) {
    margin-top: 0px;
  }

  .about-box-content {
    margin-bottom: 20px;
  }

  .testimonial-list {
    height: auto;
  }

  .hero-banner-logo img {
    width: 57%;
  }

  .iconcaption p {
    margin-left: 0;
  }
}

.border-danger {
  border-color: rgb(220, 53, 69) !important;
}

/* ========================================================= 400px ================================================= */

@media screen and (max-width: 400px) {
  /* ------ header -------- */

  .navbar-brand {
    width: 45%;
    margin: 0;
  }

  .navbar.px-5 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }

  /* ---------- */
  .hero-banner-text h1 {
    font-size: 22px;
  }

  .hero-banner-logo {
    margin-bottom: 36px;
  }

  .whp-bg-image .who-image-1,
  .whp-bg-image .who-image-2 {
    opacity: 0.2;
  }

  .hero-icon-box .partner {
    width: calc(30% - 10px);
    min-width: 30%;
    padding: 16px;
    height: 72px;
  }

  .hero-icon-box .partner img {
    width: 98%;
  }

  .footer {
    padding: 60px 0 20px;
  }

  .new-we-are-content h2 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .new-we-are-content p {
    font-size: 15px;
    line-height: 28px;
  }

  .new-mas-content-data h4 {
    font-size: 15px;
    line-height: 26px;
  }

  .new-mas-bg-content h4 {
    font-size: 16px;
    line-height: 27px;
  }

  .new-mas-bg-content-data h4 {
    font-size: 15px;
    line-height: 26px;
  }

  .tech-model,
  .tech-model.last-model,
  .tech-model.first-model {
    width: 100%;
  }

  .tech-model-main {
    justify-content: start;
  }

  .needful-item {
    min-height: 38px;
    width: 100%;
  }

  .needful-label {
    font-size: 14px;
  }

  .need-absolute-main-img {
    width: 90%;
  }

  .needful-section {
    padding: 40px 0;
  }

  /* -------------- */

  .tech-model span {
    margin: 10px 0 5px;
  }

  .tech-model {
    padding: 15px 30px;
  }

  .key-main-title {
    margin: 5px 0 30px !important;
  }

  .iconcaption p {
    margin-left: 0;
  }
}

@media screen and (max-width: 375px) {
  .about-box-content {
    width: 90%;
    height: auto;
    padding: 40px 25px;
  }
}

#mobileapp-form .border-danger {
  border: 1px solid rgb(220, 53, 69);
}

#header-mobileapp-form .border-danger {
  border: 1px solid rgb(220, 53, 69);
}

/* ========================================= thank you =================================== */

.error-section {
  background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
}

.error-page-content-wrap {
  display: block;
  text-align: center;
}

.error-page-content-wrap h1 {
  font-size: 50px;
  font-weight: 800;
}

.error-page-content-wrap p {
  font-size: 20px;
  font-weight: 500;
  color: black;
}

@media screen and (max-width: 992px) {
  .fade-in {
    opacity: 1;
    transition: all 0s;
    filter: blur(0px);
    transform: translateY(0);
  }

  .fade-out.show {
    opacity: 1 !important;
    filter: blur(0);
    transform: translateY(0);
    transition: all 0s;
  }

  .swiper-vertical > .swiper-wrapper {
    transition-duration: 0ms !important;
    transform: none !important;
  }

  .swiper-vertical {
    touch-action: initial !important;
  }
}

/* ============================================= faqs ============================================= */

.faqs {
  padding: 60px 0;
}

.faqs-title {
  margin-bottom: 20px;
}

.faqs-title h2 {
  font-family: var(--font-first);
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  line-height: 35px;
  text-align: start;
}

.faqs-section-box {
  margin-bottom: 10px;
  padding: 8px 15px;
  border: 2px solid #ffd5d2;
  border-radius: 10px;
}

.faq-quation {
  font-family: var(--font-first);
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  line-height: 35px;
  text-align: start;
  cursor: pointer;
  letter-spacing: 0.3px;
  position: relative;
}

.faq-answer {
  display: none;
}

.faq-answer p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 28px;
  text-align: start;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.faq-answer ul li {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 28px;
  text-align: start;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.faq-answer ul {
  list-style: disc;
}

.faq-quation::after {
  content: "\f107";
  float: right;
  font-family: "Font Awesome 6 Free";
}

.faq-quation.open::after {
  content: "\f106";
  font-family: "Font Awesome 6 Free";
}

.promo-section {
  padding: 80px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: var(--font-first);
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  line-height: 35px;
  text-align: center;
  letter-spacing: 1.5;
}

.promo-single {
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -3px 40px 0 rgb(255 207 207 / 20%);
  border-radius: 12px;
  background-color: #fff;
}

.promo-img {
  margin-bottom: 20px;
}

.promo-img img {
  height: 50px;
  width: 50px;
}

.promo-info h3 {
  font-family: var(--font-first);
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  line-height: 35px;
  text-align: center;
  letter-spacing: 1.5;
}

.promo-info p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 28px;
  text-align: center;
}

.stripe {
  padding: 50px 0;
}

.stripe-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2f2b5b;
  border-radius: 15px;
  padding: 20px;
}

.stripe-content {
  padding: 10px 20px;
  width: 70%;
}

.stripe-content p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  line-height: 28px;
  margin-bottom: 0;
}

.stripe-btn {
  margin: 0 auto;
}

.stripe-btn a {
  width: 100%;
  background-color: #ffe562;
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 0;
  border-radius: 14px;
  color: #000;
  letter-spacing: 0.5px;
}

.stripe-btn a:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease;
}

/* .read-more-content {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.read-more-content.show-more {
    -webkit-line-clamp: initial;
} */

/* .read-more .read-more-btn {
    font-size: 15px;
    background: transparent;
    border: none;
    position: relative;
    color: #167df1;
    z-index: 1;
    text-decoration: none;
    font-family: var(--font-first);
    white-space: nowrap;
    font-weight: 500;
    outline: none;
    opacity: 0.8;
}

.read-more .read-more-btn::after {
    margin-left: 0.25em;
    font-size: 14px;
    vertical-align: middle;
    font-family: 'FontAwesome';
    content: '\f06e';
    position: absolute;
} */

.country-listout {
  padding: 60px 0;
}

.country-list-title {
  margin-bottom: 10px;
  margin-top: 10px;
}

.country-list-subtitle {
  margin-bottom: 10px;
  margin-top: 10px;
}

.country-list-title h2 {
  color: #2f2b5b;
  font-size: 30px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
}

.country-list-subtitle h3 {
  color: #2f2b5b;
  font-size: 20px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
}

.country-list-content {
  margin-top: 20px;
  margin-bottom: 30px;
}

.country-list-item {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.country-list-item li {
  width: 25%;
  margin-bottom: 10px;
}

.country-list-item li a {
  text-decoration: none;
  display: block;
  color: #004899;
  font-size: 16px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 400;
  text-align: start;
  line-height: 1.5;
  letter-spacing: 0.2px;
  position: relative;
  padding-left: 18px;
  display: inline-flex;
  align-items: center;
}

.country-list-item li a::before {
  font-size: 14px;
  vertical-align: middle;
  font-family: "FontAwesome";
  content: "\f14c";
  position: absolute;
  left: 0;
}

.country-list-item li a::after {
  content: "";
  height: 1px;
  width: 0%;
  left: 0px;
  bottom: 0px;
  background: #004899;
  position: absolute;
}

.country-list-item li a:hover::after {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .country-list-item li {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .country-list-item li {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .country-list-item li {
    width: 100%;
  }

  .country-list-title h2 {
    font-size: 21px;
  }

  .country-list-subtitle h3 {
    font-size: 16px;
  }

  .mobileapp-banner-text h1 {
    font-size: 24px;
  }

  .mobileapp-banner-text p {
    font-size: 14px;
  }

  .common-hero-section h1 {
    font-size: 26px;
  }

  .common-hero-section p {
    font-size: 16px;
    font-weight: 300;
  }
}

/* ====================================== carasoul slider ================================================= */
/* .slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-box {
    flex: 0 0 calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
} */

.slider-box .new-scraping-box {
  margin: 50px 12px 40px;
  box-shadow: none;
}

.slider-nav {
  margin-top: 10px;
  text-align: center;
}

.prev-btn,
.next-btn {
  padding: 8px 20px;
  background-color: #6159c6;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border-radius: 17px;
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 400;
  letter-spacing: 0.4px;
}

.new-full-tab-box {
  margin: 20px 0;
  box-shadow: 4px 4px 18px 0px rgba(137, 141, 154, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
}

.tab-data-content {
  padding: 8px;
}

.tab-data-content p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 28px;
  letter-spacing: 0.3px;
}

.scrape-tabs {
  margin-top: 30px;
  border: none !important;
  outline: none !important;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.scrape-tabs-item {
  border: none !important;
  outline: none !important;
  margin-bottom: 18px;
}

.scrape-tabs-item a {
  text-decoration: none;
  border: none !important;
  outline: none !important;
  background-color: #def2ff;
  border-radius: 10px;
}

.scrape-tabs-item a.active {
  background-color: #78caff !important;
}

.scrape-tabs-item a span {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 28px;
  letter-spacing: 0.3px;
}

@media screen and (min-width: 992px) {
  .scrape-tab-height {
    min-height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.new-detail-content {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #c0d4e65c;
  border-radius: 10px;
}

.new-detail-content h3 {
  font-family: var(--font-first);
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: #332c5c;
  line-height: 28px;
  letter-spacing: 0.3px;
  text-align: start;
  margin-bottom: 15px;
}

.new-detail-content p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 26px;
  letter-spacing: 0.3px;
  text-align: start;
}

.scrape-wrrape-content {
  margin: 20px 0;
}

.scrape-wrrape-content h2 {
  font-family: var(--font-first);
  font-size: 26px;
  font-weight: 600;
  font-style: normal;
  color: #000;
  line-height: 28px;
  letter-spacing: 0.3px;
  text-align: start;
  margin-bottom: 15px;
}

.scrape-wrrape-content p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 26px;
  letter-spacing: 0.3px;
  text-align: start;
}

/* @media screen and (max-width: 1400px) {
    .slider-box {
        flex: 0 0 calc(100% / 2);
    }
}

@media screen and (max-width: 768px) {
    .slider-box {
        flex: 0 0 calc(100% / 1);
    }
} */

.slider-container {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.slider-box {
  flex: 0 0 100%;
  /* Default to show one item */
}

@media screen and (min-width: 768px) {
  .slider-box {
    flex-basis: 50%;
    /* Show two items on iPad */
  }
}

@media screen and (min-width: 1024px) {
  .slider-box {
    flex-basis: 33.33%;
    /* Show three items on desktop */
  }
}

@media screen and (max-width: 500px) {
  .new-full-mobile-scraping {
    margin: 30px 0;
  }
}

@media screen and (max-width: 1400px) {
  .stripe-flex {
    display: block;
  }

  .stripe-btn a {
    width: auto;
    display: inline-block;
  }

  .stripe-content {
    width: 100%;
  }
}

.mobile-tab-content .tab-data img {
  width: 100%;
}

.commen-ecommerce-bg {
  background: #599af2;
  background-image: url(../img/e-commerce-mobile-app-data-scraping/Popular-E-commerce-App.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.commen-food-bg {
  background: #599af2;
  background-image: url(../img/food-delivery-mobile-app-data-scraping/food-banner.web);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.commen-grocery-bg {
  background: #599af2;
  background-image: url(../img/grocery-delivery-mobile-app-data-scraping/Grocery-Delivery-App-Data-banner.web);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .faq-quation::after {
    top: 5%;
    position: absolute;
    right: 0;
  }

  .faq-quation {
    padding-right: 18px;
    line-height: 24px;
    font-size: 14px;
  }

  .stripe-flex {
    display: flex;
    flex-direction: column;
    width: 95% !important;
    max-width: 95% !important;
    margin: 0 auto;
  }

  .stripe-content {
    margin-bottom: 20px;
  }

  .stripe-content p {
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .faqs-title h2 {
    font-size: 22px;
  }

  .new-we-are-content h2 {
    font-size: 22px;
  }

  .promo-section {
    padding: 30px 0;
  }

  .section-heading h2 {
    font-size: 22px;
    line-height: 34px;
  }
}

.tab-data-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-tab-content .tab-data .tab-data-image img {
  width: auto;
}

@media screen and (max-width: 768px) {
  .new-full-mobile-scraping img {
    width: 100%;
  }

  .scrape-order-1 {
    order: 1;
  }

  .scrape-order-2 {
    order: 2;
  }
}

.trusted-logos {
  display: flex;
  align-items: center;
  margin-top: 40px !important;
  flex-wrap: wrap;
}

.trusted-icon {
  width: 130px;
  height: auto;
  margin: 5px 20px;
}

.trusted-icon a {
  height: 100%;
  display: block;
}

/* ================================================ blog ============================================== */

.blog {
  /* padding: 100px 0; */
  background-color: #f6f6fb;
}

.blog-box {
  background-color: #fff;
  transition: all 0.4s ease;
  border-radius: 4px;
  margin-bottom: 20px;
}

.blog-box:hover {
  box-shadow: 8px 27px 36px rgba(0, 59, 103, 0.12);
}

.blog-box:hover .blog-img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  object-fit: cover;
}

.blog-box a {
  text-decoration: none;
}

.blog-img {
  display: block;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.blog-img img {
  width: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.blog-content {
  padding: 24px;
}

.blog-title {
  display: block;
  margin-bottom: 10px;
}

.blog-title h2 {
  font-family: var(--font-first);
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  color: #1e266d;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-desc {
  display: block;
}

.blog-desc p {
  font-family: var(--font-first);
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: #293c67;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-box a span {
  display: inline-block;
  font-family: var(--font-first);
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  color: #485676;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.blog-top {
  position: relative;
}

.blog-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 4px;
  background: linear-gradient(to right, #1276ff 10%, #ec4269);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-animation: border-grad 0.6s infinite linear;
  animation: border-grad 0.6s infinite linear;
  z-index: 1;
}

.blog-banner {
  height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2f2b5b;
}

.blog-banner-content h1 {
  text-align: center;
  display: block;
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-family: var(--font-first);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.blog-banner-content span {
  display: block;
  text-align: center;
  color: #fff;
  font-family: monospace;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-top: 10px;
}

.inside-blog {
  margin-top: 40px;
}

.inside-blog-content {
  padding: 10px;
}

.inside-blog-content img {
  width: 100%;
  margin: 20px 0;
}

.inside-blog-content h2 {
  margin-top: 25px;
  margin-bottom: 24px;
  font-family: var(--font-first);
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  color: #293c67;
  line-height: 35px;
}

.inside-blog-content h3 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: var(--font-first);
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  color: #293c67;
  line-height: 25px;
}

.inside-blog-content p {
  font-family: var(--font-first);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #293c67;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.blog-recent {
  padding: 30px 5px;
  position: sticky;
  top: 8%;
}

.recent-title {
  margin-bottom: 20px;
}

.recent-title h3 {
  font-family: var(--font-first);
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  color: #293c67;
  line-height: 30px;
}

.recent-blog-link {
  padding-bottom: 20px;
}

.recent-blog-link a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #1276ff;
  font-family: var(--font-first);
  font-size: 14px;
  font-weight: 400;
}

.blog-social {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(68, 87, 129, 0.0784313725);
}

.blog-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.blog-icon a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  background: #dfe8f4;
  border: 1px solid #e5ecff;
  padding: 10px 10px;
  border-radius: 5px;
  text-decoration: none;
}

.blog-icon a:hover {
  box-shadow: 2px 4px 14px rgba(0, 56, 132, 0.1);
}

.blog-icon a i {
  font-size: 18px;
  color: #485676;
}

.social-title {
  margin-bottom: 15px;
}

.social-title h3 {
  font-family: var(--font-first);
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  color: #293c67;
  line-height: 30px;
}

@media screen and (max-width: 992px) {
  .blog-icon {
    justify-content: start;
  }

  .blog-icon a {
    margin-right: 10px;
  }

  .blog-icon a:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .blog-banner-content h1 {
    font-size: 22px;
    line-height: 32px;
  }

  .inside-blog-content h2 {
    margin-top: 20px;
    margin-bottom: 16px;
    font-size: 19px;
    line-height: 28px;
  }

  .inside-blog-content h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .inside-blog-content {
    padding: 0;
  }
}

.blog-contact-form {
  margin-top: 30px;
  padding: 20px;
  border-radius: 10px;
  background-color: #e7f2ff7d;
}

.blog-contact-form .blog-input {
  font-family: var(--font-first);
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: 2px solid #a798ffa6;
  outline: none;
  padding: 6px 10px;
  border-radius: 4px !important;
  box-shadow: none !important;
  margin-bottom: 14px;
  width: 100%;
  background: none !important;
}

.blog-contact-form select {
  font-family: var(--font-first);
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: 2px solid #a798ffa6;
  outline: none;
  padding: 6px 10px;
  border-radius: 4px !important;
  box-shadow: none !important;
  margin-bottom: 10px;
  background: none !important;
}

.blog-contact-form textarea {
  font-family: var(--font-first);
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: 2px solid #a798ffa6;
  outline: none;
  padding: 6px 10px;
  border-radius: 4px !important;
  box-shadow: none !important;
  margin-bottom: 10px;
  background: none !important;
}

.blog-contact-form .blog-input:focus {
  border-color: #6146ffa6;
}

.blog-contact-form select:focus,
.blog-contact-form textarea:focus {
  border-color: #6146ffa6;
}

.blog-contact-form input::placeholder {
  font-size: 14px;
  letter-spacing: 0.4px;
}

.blog-contact-form textarea::placeholder {
  font-size: 14px;
  letter-spacing: 0.4px;
}

.blog-contact-form input::-webkit-file-upload-button {
  background: #dfe8f4;
  outline: none;
  border: none;
  border-radius: 6px;
  padding: 8px 13px;
  font-family: var(--font-family);
  font-size: 15px;
  color: rgb(74, 97, 114);
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.blog-contact-form #mobileapp-form .border-danger {
  border: 2px solid rgb(220, 53, 69);
}

.blog-contact-form #header-mobileapp-form.border-danger {
  border: 2px solid rgb(220, 53, 69);
}

.box-content {
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
}

.header-content {
  display: flex;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

.header-content li {
  position: relative;
  margin: 0.5rem;
  font-family: var(--font-first);
}

.header-content li a {
  text-decoration: none;
  color: #000000;
}

.header-content li a:hover {
  color: #0470c1;
  text-decoration: underline;
}

.fa-chevron-right {
  margin-left: 0.5rem;
}

.date-content {
  margin: 0.5rem;
  padding: 0.5rem;
}

.date-content > span {
  padding: 2px;
  margin-top: 5px;
  font-size: 16px;
  line-height: 34px;
  font-weight: 300;
  font-style: normal;
  color: #002738;
  font-family: var(--font-first);
}

.info h1 {
  font-size: 44px;
  font-weight: 400;
  color: #002738;
  line-height: 58px;
  letter-spacing: 0px;
  font-style: normal;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.new-main-blog-content p {
  display: block;
  text-align: start;
  font-size: 16px;
  line-height: 24px;
  font-weight: 100;
  font-style: normal;
  color: #141516;
  font-family: var(--font-first);
  letter-spacing: 0.5px;
}

.new-main-blog-content h2 {
  font-size: 32px;
  font-weight: 300;
  color: #002738;
  line-height: 42px;
  letter-spacing: 0px;
  font-style: normal;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}
.new-main-blog-content pre {
  background-color: #272c3d;
  padding: 5px 10px;
  border-radius: 5px;
}
.new-main-blog-content code {
  background-color: #272c3d;
  color: #fff;
  font-size: 17px;
  font-family: "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.4px;
  margin-bottom: 0;
  padding: 5px 5px;
}
.grid-detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 10px;
  padding-top: 10px;
}

.info img {
  max-width: 930px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header-content {
    display: block;
  }

  .info h1 {
    font-size: 26px;
    line-height: 38px;
  }
}

.new-dataset-detail {
  padding-bottom: 80px;
}

.first-dataset-line {
  margin-top: 25px;
}

.three-dataset-group {
  display: flex;
  justify-content: center;
}

.single-dataset {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  text-decoration: none;
  width: 250px;
  height: 250px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #ccd3d7;
  margin: 0 25px;
  position: relative;
  background-image: url("../new-img/ecommerce-app-scraping-services/Pay-per-view-and-Streaming-Apps.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.single-dataset::before {
  --background-overlay: "";
  background-color: transparent;
  background-image: url("../new-img/ecommerce-app-scraping-services/Pay-per-view-and-Streaming-Apps.png");
  background-color: transparent;
  content: var(--background-overlay);
  display: block;
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
}

.single-dataset-image h5 {
  color: var(--purple-color);
  text-align: center;
  letter-spacing: 0.8px;
  font-size: 17px;
  margin-bottom: 0;
  position: relative;
}

.new-dataset-title p {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 100;
  font-style: normal;
  margin-top: 6px;
  color: #002738;
  font-family: var(--font-first);
}

.single-dataset:hover {
  /* background-image: url('../new-img/ecommerce-app-scraping-services/Comprehensive-Product-Data-Collection-We-Gather-It-All.png'); */
  transition: all 0.5s ease-out;
  background-color: var(--font-color);
}

.single-dataset:hover .single-dataset-image h5 {
  color: #fff;
  transition: all 0.5s ease-out;
  opacity: 1;
}

.new-dataset-title h2 {
  font-size: 34px;
  line-height: 52px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 8px;
  color: var(--purple-color);
  font-family: var(--font-first);
  text-align: center;
}

.border-right-none {
  border-right: none;
}

.border-left-none {
  border-left: none;
}

.content-block {
  display: none;
  opacity: 0;
  transition: all 2s ease-in-out;
}

.content-block.active {
  display: block;
  opacity: 1;
}

.change-circle-pera p {
  color: #fff;
  padding-bottom: 25px;
}

.opacity-1 {
  opacity: 1;
  justify-content: center;
  padding-top: 30px;
}

.new-dataset-title {
  text-align: center;
}

/* =============video====================== */

.new-video-section {
  position: relative;
}

.new-video-item-img {
  height: auto;
  width: 100%;
  position: relative;
}

.new-video-item-img img {
  height: auto;
  width: 100%;
}

.new-video-item-img .youtube-icon {
  height: 74px;
  width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffffa8;
  border-radius: 50px;
}

.new-video-item-img .youtube-icon img {
  height: 40px;
  width: 40px;
}

/* -----  */

/* .new-img-relative {
    position: relative;
  } */

.new-img-relative .video-container {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  z-index: 0;
}

.new-img-relative .video-container .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: fixed;
  display: block;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.video-container.video-filter {
  backdrop-filter: saturate(100%) blur(6px);
}

.video-wrapper {
  position: relative;
  width: 800px;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
}

.video-filter .video-wrapper {
  margin: 15% auto;
}

.video-container.video-filter .video-wrapper {
  /* border: 5px solid #290660; */
  border-radius: 15px;
  transition: 0s;
}

.youtube-icon.hide {
  opacity: 0;
  pointer-events: none;
}

.video-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

.video-frame.show {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-wrapper .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  display: none;
}

.video-wrapper .close-button:hover {
  opacity: 1 !important;
}

.new-video-item-content {
  padding: 1.5rem !important;
}

.new-video-item-content h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #545454;
}

.new-video-item-content p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  color: #545454;
  line-height: 20px;
  font-weight: 500;
}

@media screen and (max-width: 992px) {
  .video-wrapper {
    max-width: 100%;
    width: 98%;
  }
}

@media screen and (max-width: 768px) {
  .video-filter .video-wrapper {
    margin: 20% auto;
  }
}

@media screen and (max-width: 500px) {
  .video-wrapper {
    height: 275px;
  }

  .video-filter .video-wrapper {
    margin: 30% auto;
  }
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: 0px;
  width: 100%;
  background: var(--font-color);
  border-radius: 50%;
  width: 30px !important;
  height: 30px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-right: 0 !important;
  top: -35px;
}
.new-box-wrapp {
  border: 1px solid #8080802b;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}
.new-video-title {
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  line-height: 30px !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  display: -webkit-box !important;
  margin-bottom: 10px;
}
.whole-content {
  display: flex !important;
  justify-content: flex-start !important;
}
.whole-content p {
  font-weight: 100 !important;
  font-style: normal !important;
  letter-spacing: 0.3px !important;
  color: #141516 !important;
  font-family: var(--font-first) !important;
  line-height: 22px !important;
  font-size: 16px !important;
  margin: 0 !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  display: -webkit-box !important;
  overflow: hidden;
}
.mfp-iframe-scaler iframe {
  border-radius: 15px !important;
}

/* --------------------------datasets-inner.php----------------------------- */

.first-container {
  height: 600px;
  background-color: rgb(37, 150, 190);
}

.first-container-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 78px 0px;
  padding-right: 20px;
}

.first-container-left h1 {
  padding-bottom: 30px;
  color: white;
  font-family: sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 50px;
}

.first-container p {
  color: white;
  font-family: sans-serif;
  font-size: 18px;
}

.second-container {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.second-container h1 {
  padding-bottom: 30px;
  font-weight: 1000;
  font-size: 35px;
}

.second-container p {
  font-size: 18px;
}

.third-container {
  height: 500px;
}

.third-container-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.third-container-list {
  display: flex;
  gap: 50px;
}

.third-container-right {
  width: 50%;
}

.fourth-container {
  height: 800px;
}

.ecommerce {
  display: flex;
}

.my-exp-content {
  width: 60%;
}

.my-experience {
  width: 40%;
}

.fifth-container {
  height: 400px;
  display: flex;

  justify-content: center;
  text-align: center;
}

/* ----------   datasets-second.php   -------------  */

.dateset-text-content button:nth-child(1) {
  padding: 1rem;
  background-color: #905d97;
  border: 0px;
  border-radius: 2rem;
  color: white;
  font-size: large;
  font-weight: 500;
}
.dateset-text-content button:nth-child(2) {
  padding: 1rem;
  border: 2px solid #905d97;
  border-radius: 2rem;
  background-color: white;
  color: #905d97;
  font-size: large;
  font-weight: 500;
}

.dataset-root {
  display: flex !important;
  justify-content: space-between !important;
  flex-direction: row !important;
  text-wrap: wrap;
}

.dataset-root button {
  margin-bottom: 0.5rem;
}

.dataset-card-root {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  font-weight: 500;
}

.dataset-card {
  flex: 1;
  text-align: center;
  /* border: 2px solid red; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 2rem;
  padding: 2rem 3rem;
}

.dataset-card h3 {
  font-weight: 800 !important;
  font-size: xx-large !important;
  margin: 0.5rem 0px;
}

.dataset-industries-section {
  text-align: center;
  margin: 5rem 2rem;
}

.dataset-industries-section h2 {
  color: #0d5fa7;
  text-align: center;
  text-decoration: underline;
  line-height: 1rem;
  text-underline-offset: 1rem;
}

.gridClass {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-content: center;
  justify-items: center;
  column-gap: 1rem;
  row-gap: 1rem;
  text-align: center;
  margin: 2rem 0px;
}

.gridItem {
  border: 2px solid #0d5fa7;
  border-bottom: 1rem solid #0d5fa7;
  max-width: 25rem !important;
  height: 18rem;
  background-color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gridItem div {
  padding: 3rem;
}

.gridItem div:nth-child(1) {
  z-index: 1;
}

.hover-content {
  background-color: #0d5fa7;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -100%;
  color: white;
}

.hover-content p {
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-style: normal;
  margin-top: 6px;
}

.hover-content button {
  color: black;
  background-color: white;
  padding: 0.4rem 1rem;
  border: 0px solid black;
  outline: none;
  border-radius: 25px;
  font-size: large;
}

.gridItem:hover .hover-content {
  cursor: pointer;
  bottom: 0;
  z-index: 2;
  transition: all 0.6s ease-in;
}

@media (min-width: 320px) and (max-width: 650px) {
  .gridClass {
    grid-template-columns: repeat(1, 1fr);
    margin: 3rem 0.2rem;
  }
  .hover-content {
    padding: 1rem;
  }
  .hover-content h3 {
    font-size: 18px;
  }
  .hover-content p {
    font-size: 14px;
  }
}

@media (min-width: 650px) and (max-width: 950px) {
  .gridClass {
    grid-template-columns: repeat(2, 1fr);
    margin: 3rem 0.4rem;
  }
}

/* ----------   datasets-second.php   -------------  */

/* New Homepage Design */

.new-homepage-design h2 {
  font-size: 2.75rem;
  font-weight: 700;
}

.new-homepage-hero-section {
  height: 100vh;
  width: 100%;
}

.new-homepage-hero-section-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.new-homepage-hero-section-carousel .carousel-images {
  display: flex;
  height: 100%;
  animation: slide 15s infinite;
}

.new-homepage-hero-section-carousel .carousel-images img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  position: relative;
}

.new-homepage-hero-section-carousel .carousel-content {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}

.new-homepage-hero-section-carousel .carousel-content h1 {
  font-size: 3.25rem;
  color: #cea6e1;
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 70px;
}
.new-homepage-hero-section-carousel .carousel-content p {
  font-size: 1.05rem;
}
.new-homepage-hero-section-carousel .carousel-content .new-style-for-h1 {
  font-family: 3rem;
  font-weight: 300;
  color: #fff;
}

.new-homepage-hero-section-carousel .new-homepage-hero-btn {
  padding: 11px 18px;
  border-radius: 9px;
  background-color: #2367aa;
  text-decoration: none;
  color: white;
  border: none;
  font-size: 15px;
  font-family: var(--font-first);
  transition: all 0.2s ease;
  margin-top: 4rem;
  margin-right: 2rem;
}
.new-homepage-hero-btn-margin {
  margin-right: 2rem;
}
.new-homepage-hero-section-carousel .new-homepage-hero-btn:hover {
  color: black;
  background-color: white;
  border: 1px solid #2367aa;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  70% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  95% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-400%);
  }
}

.new-logos-slider-width {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  /* max-width: 1200px;  */
  width: 95%;
}

.enterprise-trust-section {
  height: 60vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
  background-color: #eaf5fe;
}
.enterprise-trust-section h2 {
  color: #155488;
}
.enterprise-trust-section p {
  width: 100%;
  color: #155488;
  font-size: 1.3rem;
  margin-top: 1rem;
}
.enterprise-trust-section a {
  padding: 12px 20px;
  border-radius: 9px;
  background-color: #2367aa;
  text-decoration: none;
  color: white;
  border: none;
  font-size: 16px;
  font-family: var(--font-first);
  transition: all 0.2s ease;
  margin-top: 2rem;
}
.enterprise-trust-section a:hover {
  color: black;
  background-color: white;
  border: 1px solid #2367aa;
}
.enterprise-trust-section .container .row .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.enterprise-trust-blocks-section {
  padding: 50px 0;
  margin-top: 3rem;
}
.enterprise-trust-blocks-section h2 {
  text-align: center;
  color: #155488;
}
.enterprise-trust-blocks h3 {
  text-align: center;
  color: #155488;
}
.enterprise-trust-blocks-section p {
  color: #000;
  font-size: 1rem;
  padding: 0 10px;
  margin-top: 1rem;
}
.enterprise-trust-blocks-parent {
  justify-content: center;
  gap: 3.5rem;
  margin-top: 3rem !important;
}
.enterprise-trust-blocks {
  padding: 20px;
  width: 30.45% !important;
  border-bottom: 7px solid #155488;
  border-radius: 15px;
  box-shadow: 1px 1px 5px #e0e0e0;
  transition: 0.3s ease-in-out;
  position: relative;
}
.enterprise-trust-blocks:hover {
  color: #fff;
  background-color: #155488;
  border-bottom: 7px solid #fff;
  .color-change-on-hover {
    color: #fff;
  }
}
.enterprise-trust-blocks-img {
  position: absolute;
  top: 10%;
  left: -11%;
  height: 85px;
}

/* Scrapper, Datasets, API */
.slider-section {
  background: #091e42;
  padding: 80px 0;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.content-area h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.content-area p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.feature-list li:before {
  content: "•";
  color: #4c9aff;
  font-weight: bold;
  margin-right: 10px;
}

.phone-mockup {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-slider {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.phone-slider img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
  /* css for slick margin top */
  /* margin-top: 65px !important; */
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

@media (max-width: 768px) {
  .slider-section {
    padding: 40px 0;
  }

  .content-area h2 {
    font-size: 2rem;
  }

  .phone-mockup {
    height: 400px;
    margin-top: 40px;
  }

  .slick-prev {
    left: -20px;
  }

  .slick-next {
    right: -20px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .slick-prev,
  .slick-next {
    top: 25% !important;
    right: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1275px) {
  .slick-prev,
  .slick-next {
    top: 25% !important;
    right: 0;
  }
}

@media (min-width: 1025px) and (max-width: 1150px) {
  .new-dropdown {
    width: 1114px !important;
  }
}

.major-services-section {
  padding: 50px 0;
  margin-top: 3rem;
}
.major-services-section p {
  color: #000;
  font-size: 1rem;
}
.major-services-section h3 {
  margin-top: 2rem;
  text-align: left;
}
.major-services-blocks-parent {
  gap: 1.6rem;
  margin-top: 4rem !important;
}
.major-services-blocks {
  width: 23.5% !important;
  padding: 40px 20px 40px !important;
  position: relative;
  transition: 0.3s ease-in-out;
  background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
  border: none;
  border-radius: 10px;
  background-image: repeating-linear-gradient(
      -12deg,
      #6db9f8,
      #6db9f8 7px,
      transparent 7px,
      transparent 17px,
      #6db9f8 17px
    ),
    repeating-linear-gradient(
      78deg,
      #6db9f8,
      #bee0fc 7px,
      transparent 7px,
      transparent 17px,
      #6db9f8 17px
    ),
    repeating-linear-gradient(
      168deg,
      #6db9f8,
      #6db9f8 7px,
      transparent 7px,
      transparent 17px,
      #6db9f8 17px
    ),
    repeating-linear-gradient(
      258deg,
      #6db9f8,
      #6db9f8 7px,
      transparent 7px,
      transparent 17px,
      #91cafa 17px
    );
  color: #000;
}
.major-services-blocks:hover {
  border: none;
  color: #fff;
  background-image: none;
  background-size: cover;
  background-position: none;
  background-image: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Major-Services.png");

  .major-services-blocks-arrow {
    display: none;
  }
  .major-services-blocks-main-link {
    display: block;
  }
}

.major-services-blocks:hover .color-change-on-hover {
  color: #fff;
}

.major-services-blocks-heading-icon {
  width: 50px;
  height: 50px;
}
.major-services-blocks-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
}
.major-services-blocks-main-link {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: none;
}

.why-choose-us-section {
  padding: 60px 0;
  /* background: url("assets/new-img/new-homepage-design/Why-Choose-Us.png"); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: #fff;
}
.why-choose-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
}
.why-choose-us-section-blocks-parent {
  margin-top: 2.5rem !important;
}
.why-choose-us-section-blocks {
  padding: 70px 45px !important;
}
.why-choose-us-section-blocks h3 {
  text-align: left;
  font-weight: 600;
}
.why-choose-us-section-blocks p {
  font-size: 1.15rem;
  font-weight: 500;
}
.why-choose-us-block-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.1));
  border: none;
  margin: 2rem 0 1rem;
}
.why-choose-us-section-blocks-1 {
  background-color: #16166b;
}
.why-choose-us-section-blocks-2 {
  background-color: #1b418f;
}
.why-choose-us-section-blocks-3 {
  background-color: #2f78c4;
}

.contact-us-section {
  padding: 60px 0;
}
.contact-us-section-left {
  background-color: #a3d6ff;
  padding-right: 20px !important;
  position: relative;
  border-radius: 9rem 0 0 1rem;
}
.contact-us-section-left img {
  width: 84%;
  position: absolute;
  top: 2.75%;
}
.contact-us-section-left-btn {
  color: #0560aa;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  position: absolute;
  bottom: 6.5%;
  right: 5%;
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}
.contact-us-section-left-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: white;
  z-index: -1;
  transition: width 0.5s ease;
  transform-origin: bottom right;
}
.contact-us-section-left-btn:hover {
  color: #0560aa;
}
.contact-us-section-left-btn:hover::before {
  width: 100%;
}

.new-contact-form-block {
  background-color: #f4f5f6;
  padding: 25px 30px;
  border-radius: 0 1rem 1rem 0;
}
.new-contact-form-block form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1rem;
}
.new-contact-form-block form .new-contact-form-input-field {
  width: 49%;
}
.new-contact-form-block form .new-contact-form-input-field input {
  font-size: 1rem;
}
.new-contact-form-block form .new-contact-form-input-field-message {
  width: 100%;
}

.new-contact-form-block form .new-contact-form-input-field label {
  color: #33525f;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.comprehensive-solutions-section-heading {
  padding: 30px 0 0;
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}
.comprehensive-solutions-section-heading h2 {
  color: #155488;
}
.comprehensive-solutions-section-heading p {
  color: #000 !important;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.darkbg {
  background-color: var(--sliderbg);
}

.think_row_2 {
  display: flex;
  position: relative;
  height: 450px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  transition: all 0.45s ease-in-out;
}
.think_row_2 a {
  text-decoration: none;
}
/* .hover-new-wrapper.active1{
   background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/eCommerce-Intelligence.png") no-repeat;
  filter: grayscale(1);
} */
.think_boxed_2.active1 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/eCommerce-Intelligence.png")
    no-repeat;
  filter: grayscale(1);
}

.think_boxed_2.active2 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Social-Media-Analytics.png")
    no-repeat;
  filter: grayscale(1);
}

.think_boxed_2.active3 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Travel-and-Hospitality.png")
    no-repeat;
  filter: grayscale(1);
}

.think_boxed_2.active4 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Real-Estate-Insights.png")
    no-repeat;
  filter: grayscale(1);
}

.think_boxed_2 {
  width: calc(100% / 4 - 1px);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  margin-right: 1px;
  position: relative;
}

.think_boxed_2:last-child {
  margin-right: 0;
}

.think_boxed_2:hover {
  width: 26%;
  filter: none;
}

.think_boxed_2:hover:before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-flex;
  background: rgb(1, 40, 90);
  background: -moz-linear-gradient(
    0deg,
    rgba(1, 40, 90, 1) 20%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(1, 40, 90, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(1, 40, 90, 1) 20%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#01285a",endColorstr="#ffffff",GradientType=1);
  filter: none;
}

.think_boxed_2_link {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.think_boxed_2_inner {
  padding: 15px;
  max-width: 330px;
}

.think_boxed_2_inner p {
  display: none;
  color: #fff;
  margin-bottom: 10px;
}
.think_boxed_2_inner h4 {
  color: #fff;
}

.think_boxed_2_img {
  background-color: #fff;
  border-radius: 70px;
  width: 70px;
  height: 70px;
  padding: 8px;
  margin-bottom: 10px;
}

.think_boxed_2.hider {
  background: transparent;
}

.think_boxed_2:hover p {
  display: flex;
}

.think_boxed_2:hover .think_boxed_2_inner {
  position: absolute;
  bottom: 15px;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.15); */
  z-index: 1;
  border-radius: 15px;
}

.think_boxed_2:hover .think_boxed_2_inner:before {
  content: "";
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -20px;
  /* box-shadow: inset 0 0 500px rgba(255, 255, 255, .4); */
  filter: blur(10px);
  z-index: -1;
}

.think_boxed_2_link {
  display: flex;
  align-items: end;
}

span.think_boxed_2_btn {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #fff;
  display: inline-flex;
  border-radius: 40px;
  position: relative;
  align-items: center;
  justify-content: center;
  display: none;
  transition: all 0.4s ease-in-out;
}

span.think_boxed_2_btn:before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  display: inline-flex;
}

span.think_boxed_2_btn:after {
  content: "";
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
}

span.think_boxed_2_btn:hover {
  background-color: #fff;
}

span.think_boxed_2_btn:hover:before {
  background-color: #01285a;
}

span.think_boxed_2_btn:hover:after {
  border-color: #01285a;
}

.think_boxed_2:hover span.think_boxed_2_btn {
  display: flex;
}

.think_boxed_2:hover .think_boxed_2_link {
  justify-content: center;
}

/* .think_row_2.active1 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/eCommerce-Intelligence.png") no-repeat;
  filter: none;
}

.think_row_2.active2 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Social-Media-Analytics.png") no-repeat;
  filter: none;
}

.think_row_2.active3 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Travel-and-Hospitality.png") no-repeat;
  filter: none;
}

.think_row_2.active4 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Real-Estate-Insights.png") no-repeat;
  filter: none;
} */

.think_mob_slide {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
  .think_row_2 {
    height: 450px;
  }

  .think_boxed_2 {
    height: 450px;
  }

  .think_boxed_2_img {
    width: 60px;
    height: 60px;
  }

  .think_boxed_2_inner {
    width: 100%;
    padding: 10px;
  }

  .think_boxed_2_inner a {
    text-decoration: none;
  }
  .think_boxed_2_inner p {
    font-size: 14px;
    line-height: 1.48;
  }

  .think_boxed_2_inner span {
    width: 30px;
    height: 30px;
  }

  .think_boxed_2_inner span:before {
    width: 15px;
  }

  .think_boxed_2_inner span:after {
    width: 7px;
    height: 7px;
    right: 6.5px;
  }

  /* .think_row_2.active1 {
      background-position: center;
  }
  
  .think_row_2.active2 {
      background-position: center;
  }
  
  .think_row_2.active3 {
      background-position: center;
  }
  
  .think_row_2.active4 {
      background-position: center;
  } */
}

@media only screen and (max-width: 768px) {
  .think_row_2 {
    display: none;
  }

  .think_mob_slide {
    display: block;
    width: 100%;
    border-radius: 10px;
  }

  .think_mob_slide a {
    display: flex;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 12px;
  }
  .think_mob_slide a {
    text-decoration: none;
  }
  .think_mob_slide p {
    margin-bottom: 0 !important;
  }
  .think_mob_slide_btn {
    margin-top: 5px;
  }
  .enterprise-trust-blocks-parent {
    justify-content: start;
  }

  .think_mob_slide a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(1, 40, 90);
    background: -moz-linear-gradient(
      0deg,
      rgba(1, 40, 90, 0.8) 20%,
      rgba(255, 255, 255, 0) 100%
    );
    background: -webkit-linear-gradient(
      0deg,
      rgba(1, 40, 90, 0.8) 20%,
      rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
      0deg,
      rgba(1, 40, 90, 0.8) 20%,
      rgba(255, 255, 255, 0) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#01285a",endColorstr="#ffffff",GradientType=1);
    filter: none;
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    z-index: 99;
  }

  .think_mob_slide.active1 {
    background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/eCommerce-Intelligence.png")
      no-repeat;
    background-size: cover;
  }

  .think_mob_slide.active2 {
    background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Social-Media-Analytics.png")
      no-repeat;
    background-size: cover;
  }

  .think_mob_slide.active3 {
    background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Travel-and-Hospitality.png")
      no-repeat;
    background-size: cover;
  }

  .think_mob_slide.active4 {
    background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Real-Estate-Insights.png")
      no-repeat;
    background-size: cover;
  }

  .think_mob_slide_inner {
    position: relative;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .think_mob_slide img {
    width: 50px;
    height: 50px;
    padding: 8px;
    background-color: #fff;
    border-radius: 50px;
    margin-bottom: 10px;
  }

  .think_mob_slide p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: var(--thin);
  }
  .think_mob_slide h4 {
    color: #fff;
  }

  .think_mob_slide_btn {
    border-radius: 30px;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: rotate(-45deg);
  }

  .think_mob_slide_btn:before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #fff;
    display: inline-flex;
    position: absolute;
  }

  .think_mob_slide_btn:after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: transparent;
    display: inline-flex;
    border: none;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-left: 7px;
  }

  .think_mob_slider .slick-track {
    display: flex !important;
  }

  .think_mob_slider .think_mob_slide.slick-slide {
    height: inherit !important;
    transition: all 0.25s ease-in-out;
  }

  .think_mob_slider .slick-slide {
    margin: 0 5px;
  }

  .think_mob_slider .slick-list {
    margin: 0 -5px;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 {
    height: 200px !important;
    justify-content: start !important;
  }
}

@media only screen and (max-width: 480px) {
  .think_mob_slide img {
    width: 40px;
    height: 40px;
  }
  .think_mob_slide p {
    line-height: 1.54;
  }
}

.new-homepage-about-us-section {
  padding: 50px 0;
  margin-top: 2rem;
}
.new-homepage-about-us-section-content-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  row-gap: 1rem;
  padding-right: 25px !important;
}
.new-homepage-about-us-section-content-sec h2 {
  color: #155488;
}
.new-homepage-about-us-section-content-para {
  color: #000;
  font-size: 1.15rem;
}
.new-homepage-about-us-content-btn {
  padding: 11px 18px;
  border-radius: 9px;
  background-color: #2367aa;
  text-decoration: none;
  color: white;
  border: 1px solid #2367aa;
  font-size: 16px;
  font-family: var(--font-first);
  transition: all 0.2s ease;
}
.new-homepage-about-us-content-btn:hover {
  color: black;
  background-color: white;
  border: 1px solid #2367aa;
}

.new-homepage-design-faqs-section {
  padding: 50px 0;
  margin-top: 3rem;
}
.new-homepage-design-faqs-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new-homepage-design-faqs-section-heading-span-color {
  color: #155488;
}
.new-homepage-design-faqs-section-faqs-search-bar {
  background-color: #fcfcfc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
}
.new-homepage-design-faqs-section-faqs-search-bar
  .new-homepage-design-faqs-section-faqs-search-bar-search-inp {
  border: none;
  background: transparent;
  font-size: 1.15rem;
}
.new-homepage-design-faqs-section-faqs-search-bar
  .new-homepage-design-faqs-section-faqs-search-bar-search-icon {
  font-size: 1.35rem;
  color: #155488;
}

.new-homepage-accordian-parent {
  background: transparent;
  row-gap: 1rem;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.new-homepage-accordian-block {
  border: 1px solid #dfdfdf !important;
  border-radius: 20px !important;
}
.new-homepage-accordian-block .card-header {
  border: none !important;
}
.new-homepage-accordian-block .card-header .faq-title {
  font-size: 1.075rem !important;
}
.new-homepage-accordian-block .card-body p {
  font-size: 1rem !important;
}
.new-homepage-accordian-block .card-header .faq-title::after {
  color: #155488;
  background-color: #fff;
}
.new-homepage-accordian-block .card-header:hover {
  background: none !important;
  padding-left: 0px !important;
}

.recent-blogs-and-rr-section {
  padding: 50px 0;
  background-color: #bcd7f1;
}
.recent-blogs-and-rr-blocks-parent {
  gap: 2rem;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks {
  height: 350px;
  width: 23%;
  color: #fff;
  padding: 0;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
.recent-blogs-and-rr-blocks-content-display-on-hover {
  /* display: none; */
  font-size: 1rem;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks a {
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks a span {
  font-size: 1.1rem;
}
.recent-blogs-and-rr-blocks .recent-blogs-and-rr-blocks-icon {
  height: 50px;
}
.recent-blogs-and-rr-blocks h3 {
  margin-top: 10px;
  z-index: 100;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    115deg,
    rgba(13, 33, 174, 1) 0%,
    rgba(12, 21, 65, 1) 100%
  );
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 h2 {
  margin-left: 3rem;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks h5 {
  margin-top: 1.5rem;
  margin-left: 1rem;
  position: relative;
  z-index: 100;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks p {
  padding-right: 10px;
  margin-top: 1rem;
  margin-left: 1rem;
  position: relative;
  z-index: 100;
}
.recent-blogs-and-rr-blocks-image-animation {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks:hover::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
/* .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1::before {
  content: '';
  width: 100%;
  height: 100%;
  display: flex;
  background: #1a36ee;
  background:
  -moz-radial-gradient(circle, #1a36ee 0%, #111a79 100%);
  background: -webkit-radial-gradient(circle, #1a36ee 0%, #111a79 100%);
  background: radial-gradient(circle, #1a36ee 0%, #111a79 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a36ee",endColorstr="#111a79",GradientType=1);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
} */
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-2::before {
  content: "";
  width: 100%;
  height: 100%;
  display: flex;
  background: #d20157;
  background: -moz-radial-gradient(circle, #d20157 0%, #ad7a46 100%);
  background: -webkit-radial-gradient(circle, #d20157 0%, #ad7a46 100%);
  background: radial-gradient(circle, #d20157 0%, #ad7a46 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d20157",endColorstr="#ad7a46",GradientType=1);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-3::before {
  content: "";
  width: 100%;
  height: 100%;
  display: flex;
  background: rgb(140, 102, 65);
  background: -moz-radial-gradient(
    circle,
    rgba(140, 102, 65, 1) 0%,
    #16110f 100%
  );
  background: -webkit-radial-gradient(
    circle,
    rgba(140, 102, 65, 1) 0%,
    #16110f 100%
  );
  background: radial-gradient(circle, rgba(140, 102, 65, 1) 0%, #16110f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8C6641",endColorstr="#16110f",GradientType=1);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-4::before {
  content: "";
  width: 100%;
  height: 100%;
  display: flex;
  background: rgb(140, 102, 65);
  background: -moz-radial-gradient(
    circle,
    rgba(140, 102, 65, 1) 0%,
    #7b8237 100%
  );
  background: -webkit-radial-gradient(
    circle,
    rgba(140, 102, 65, 1) 0%,
    #7b8237 100%
  );
  background: radial-gradient(circle, rgba(140, 102, 65, 1) 0%, #7b8237 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8C6641",endColorstr="#7b8237",GradientType=1);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks:hover {
  background-color: #0c1442;
  .recent-blogs-and-rr-blocks-content-display-on-hover {
    display: block;
    z-index: 100;
  }
  .recent-blogs-and-rr-blocks-image-animation {
    z-index: -10;
    backdrop-filter: blur(15px);
  }
}

/* .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-2 {
  background-image: url("assets/new-img/new-homepage-design/Amazon-Data-Scraping-Understanding-the-Process,-Advantages,-and-Challenges.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-3 {
  background-image: url("assets/new-img/new-homepage-design/What-Problems-Can-Zomato-Food-Delivery-App-Scraping-Help-Solve-for-Food-Tech-Companies.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-4 {
  background-image: url("assets/new-img/new-homepage-design/How-Can-Zepto-Grocery-Supermarket-Data-Scraping-Enhance-Price-Comparison-Strategies.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
} */
/* .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}
.recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: -1;
} */

/* --------------- case study ------------------------- */

.explore_slider,
.explore_content_slider {
  width: 100%;
  margin: 0 auto;
}

.slick-slide img {
  width: 100%;
  display: block;
}

.explore_slide_mainbox {
  max-width: 1000px;
  margin: 0 auto;
}

.explore_slide_box {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
}

.explore_slide_cbox_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: -65px;
}

.explore_slide_cbox {
  background: rgb(1, 40, 90);
  background: linear-gradient(
    180deg,
    rgba(1, 40, 90, 1) 0%,
    rgba(12, 20, 66, 1) 100%
  );
  width: 35%;
  align-self: stretch;
  padding: 30px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.explore_slide_cbox h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.48;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.explore_slide_cbox h3 span {
  font-weight: bold;
}

.explore_slide_ibox {
  width: 65%;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}

.explore_slide_ibox img {
  width: 100%;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: all 3s ease-in-out;
  transform: scale(1.2);
}

.explore_slider .slick-next,
.explore_slider .slick-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}

.explore_slider .slick-prev {
  left: -7.5%;
}

.explore_slider .slick-next {
  right: -7.5%;
}

.explore_slider .slick-prev:before,
.explore_slider .slick-next:before {
  content: "";
  width: 25px;
  height: 2px;
  background-color: #fff;
  display: inline-flex;
}

.explore_slider .slick-prev:after,
.explore_slider .slick-next:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: transparent;
  display: inline-flex;
  border: none;
  position: absolute;
}

.explore_slider .slick-prev:after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  left: 13px;
  transform: rotate(-45deg);
}

.explore_slider .slick-next:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 13px;
  transform: rotate(45deg);
}

.explore_slider .slick-next:hover,
.explore_slider .slick-prev:hover {
  background-color: #fff;
}

.explore_slider .slick-prev:hover:before,
.explore_slider .slick-next:hover:before {
  background-color: #01285a;
}

.explore_slider .slick-prev:hover:after,
.explore_slider .slick-next:hover:after {
  border-color: #01285a;
}

.explore_slider .slick-next.slick-disabled,
.explore_slider .slick-prev.slick-disabled {
  opacity: 0.25;
}

.explore_slider .slick-next.slick-disabled:before,
.explore_slider .slick-prev.slick-disabled:before {
  opacity: 1;
}

.explore_slide_box.slick-current .explore_slide_ibox img {
  transform: scale(1);
  transition-delay: 0.5s;
}

.explore_content_slider_mainbox {
  position: relative;
  margin-top: -190px;
}

.explore_content_slide_box {
  background-color: rgba(1, 40, 90, 0.45);
  padding: 20px;
  border-radius: 10px;
  align-self: stretch;
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
  backdrop-filter: blur(5px);
}

.explore_content_slider .slick-track {
  display: flex !important;
}

.explore_content_slider .slick-slide {
  height: inherit !important;
  transform: scale(0.9);
  transition: all 0.25s ease-in-out;
}

.explore_content_slider .slick-slide.slick-current.slick-active.slick-center {
  background-color: #fff;
  transform: scale(1);
  border-radius: 10px;
  .explore_content_slide_box {
    background-color: transparent;
    backdrop-filter: blur(0px);
  }
}

.explore_content_slide_box h5 {
  color: #fff;
}

.explore_content_slide_box p {
  color: #fff;
}

.explore_content_slide_box p {
  font-size: 18px;
}

.explore_content_slide_box h5 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.18;
}

.explore_content_slide_box {
  margin: 0 10px;
}

.explore_content_slider.slick-list {
  margin: 0 -10px;
}

.explore_content_slider
  .slick-slide.slick-current.slick-active.slick-center
  h5 {
  color: #000;
}

.explore_content_slider .slick-slide.slick-current.slick-active.slick-center p {
  color: #000;
}

.explore_content_slide_box_inner a {
  display: none;
}
.white-btn {
  color: #fff;
  text-decoration: none;
}

.explore_content_slide_box .explore_content_slide_box_inner a.letitbeseen {
  display: inline-flex;
  color: #fff;
  position: relative;
  line-height: 1;
}

.explore_content_slide_box
  .explore_content_slide_box_inner
  a.letitbeseen:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #01285a;
  position: absolute;
  bottom: -4px;
  transition: all 0.15s ease-in-out;
}

.explore_content_slide_box
  .explore_content_slide_box_inner
  a.letitbeseen:hover:before {
  content: "";
  width: 100%;
}

.explore_content_slide_box.slick-current
  .explore_content_slide_box_inner
  a.letitbeseen {
  color: #01285a;
  background-color: transparent;
}

@media only screen and (max-width: 768px) {
  .explore_content_slide_box.slick-current
    .explore_content_slide_box_inner
    a.letitbeseen {
    color: #fff;
    background-color: transparent;
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1270px) {
  .explore_slider .slick-next {
    right: -3.5% !important;
  }
  .explore_slider .slick-prev {
    left: -3.5% !important;
  }
}

@media only screen and (min-width: 769px) {
  .explore_slide_mainbox {
    padding: 0 25px;
  }

  .explore_slide_cbox {
    width: 40%;
    padding: 25px;
  }

  .explore_slide_ibox {
    width: 60%;
  }

  .explore_slide_cbox h3 {
    /* font-size: 18px; */
  }

  .explore_slider .slick-next,
  .explore_slider .slick-prev {
    width: 35px;
    height: 35px;
  }

  .explore_slider .slick-prev {
    left: -6.5%;
  }

  .explore_slider .slick-next {
    right: -6.5%;
  }

  .explore_slider .slick-prev:before,
  .explore_slider .slick-next:before {
    width: 20px;
  }

  .explore_slider .slick-prev:after {
    left: 6px;
    top: 36%;
  }

  .explore_slider .slick-next:after {
    right: 6px;
    top: 36%;
  }

  .explore_content_slide_box h5 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .explore_slide_box {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .explore_slide_cbox,
  .explore_slide_ibox {
    width: 100%;
  }

  .explore_slide_cbox {
    display: none;
  }

  .explore_slide_ibox {
    border-radius: 10px;
  }

  .explore_content_slide_box_inner a {
    display: flex;
    font-size: 14px;
    padding: 8px 10px;
    background-color: #01285a;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    border-radius: 5px;
    margin-top: 10px;
    line-height: 1;
  }

  .explore_content_slider .explore_content_slide_box.slick-slide.slick-current {
    background-color: rgba(1, 40, 90, 0.45);
    transform: scale(1);
  }

  .explore_content_slider
    .explore_content_slide_box.slick-slide.slick-current
    .explore_content_slide_box_inner
    h5 {
    /* color: #fff; */
  }

  .explore_content_slider
    .explore_content_slide_box.slick-slide.slick-current
    .explore_content_slide_box_inner
    p {
    /* color: #fff; */
    font-family: var(--thin);
  }
}

@media only screen and (max-width: 379px) {
  .explore_content_slide_box {
    padding: 10px;
  }

  .explore_content_slide_box_inner h5 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .explore_content_slide_box_inner p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .explore_content_slide_box_inner a {
    margin-top: 0;
  }
}

.new-homepage-testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.new-homepage-testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.new-homepage-testimonials-title {
  font-size: 32px;
  font-weight: bold;
  max-width: 600px;
}

.new-homepage-testimonials-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 20px 0;
}

.new-homepage-testimonials-nav-buttons {
  display: flex;
  gap: 10px;
}

.new-homepage-testimonials-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-homepage-testimonials-nav-btn.next {
  background: #ff6b00;
  border: none;
  color: white;
}

.new-homepage-testimonials-slider .owl-stage-outer {
  padding: 20px 0;
}

.new-homepage-testimonials-slider .owl-item {
  opacity: 0.1;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.new-homepage-testimonials-slider .owl-item.center {
  opacity: 1;
  transform: scale(1);
}

.new-homepage-testimonials-slide {
  padding: 30px;
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
}

.new-homepage-testimonials-client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.new-homepage-testimonials-client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.new-homepage-testimonials-client-details h4 {
  margin: 0;
  font-size: 16px;
}

.new-homepage-testimonials-client-details p {
  margin: 5px 0 0;
  color: #666;
  font-size: 14px;
}

.new-homepage-testimonials-company-logo {
  margin-left: auto;
  height: 30px;
}

.new-homepage-testimonials-slider .owl-nav {
  display: none;
}

@media (min-width: 1400.9px) {
  .new-homepage-hero-section-carousel .carousel-content h1 {
    width: 75%;
  }
  .new-homepage-hero-section-carousel .carousel-content p {
    width: 65%;
  }
}
@media (max-width: 1400.9px) {
  .enterprise-trust-section p {
    width: 100%;
  }
  .major-services-blocks {
    width: 31.75% !important;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 {
    width: 100%;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-2 {
    width: 31%;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-3 {
    width: 31%;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-4 {
    width: 31%;
  }
  .new-mas-img-content-slider-images img {
    left: 15% !important;
  }
}
@media (max-width: 1200.9px) {
  /* .new-logos-slider-width {
    max-width: 768px; 
  } */

  .major-services-blocks {
    width: 31.5% !important;
  }
  .enterprise-trust-blocks {
    width: 45% !important;
  }
  .enterprise-trust-blocks-img {
    left: -8%;
  }
  .new-mas-img-content-slider-images img {
    /* left: 15% !important; */
    height: 250px !important;
  }
}
@media (max-width: 992.9px) {
  /* .enterprise-trust-blocks {
    width: 100% !important;
  } */
  .enterprise-trust-blocks-img {
    left: -7%;
    height: 65px;
  }
  .major-services-blocks {
    width: 48% !important;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-2 {
    width: 30%;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-3 {
    width: 30%;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-4 {
    width: 30%;
  }
  .new-homepage-hero-section-carousel .new-homepage-hero-btn {
    margin-top: 0.5rem;
  }
}
@media (max-width: 768.9px) {
  .new-logos-slider-width {
    bottom: 15%;
  }
  .major-services-blocks {
    width: 47% !important;
    padding: 10px 15px !important;
  }
  .display-none-on-sm {
    display: none;
  }
  .new-homepage-about-us-section-content-sec {
    padding: 0px 25px !important;
  }
  .new-contact-form-block form .new-contact-form-input-field {
    width: 100%;
  }
  .new-homepage-accordian-block .card-body {
    padding: 0 !important;
  }
  .new-homepage-accordian-block .card-body p {
    padding: 10px 20px !important;
  }
  .recent-blogs-and-rr-blocks-parent {
    padding: 0 20px;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-2 {
    width: 100%;
    height: 250px;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-3 {
    width: 100%;
    height: 250px;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-4 {
    width: 100%;
    height: 250px;
  }
  .enterprise-trust-blocks {
    width: 43% !important;
  }
  .enterprise-trust-blocks-img {
    left: -15%;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  header .main-menu .navbar-nav .nav-item .nav-link {
    font-family: var(--font-first);
    font-size: 16px;
    line-height: 1.8rem;
    color: #546e79;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.2px;
    margin-right: 10px;
    padding-right: 5px !important;
    height: 100%;
    border-bottom: 1px solid #546e79;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease-in 0s;
  }
}
@media (max-width: 600.9px) {
  /* .new-homepage-hero-section {
    height: 100vh;
  } */
  .new-homepage-hero-section-carousel .carousel-content {
    width: 80%;
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .new-mas-img-content-slider-images .slick-next {
    right: 20px !important;
  }
  .new-mas-img-content-slider-images .slick-prev {
    left: 20px !important;
  }
  .new-mas-img-content-slider-images img {
    left: 24% !important;
    height: 240px !important;
  }
}
@media (max-width: 500.9px) {
  .new-homepage-design h2 {
    font-size: 2rem;
  }
  /* .new-mas-img-content-slider-section {
    height: 105vh !important;
  } */
  /* .new-mas-img-content-slider-design {
    bottom: 0 !important;
  } */

  .think_mob_slide h4 {
    font-size: 1.25rem;
  }
  .think_mob_slide p {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .think_mob_slide a {
    text-decoration: none;
  }
  .think_mob_slide_btn {
    margin-top: 10px;
  }
  .enterprise-trust-section {
    height: auto;
    padding: 30px 15px;
  }
  .enterprise-trust-section a {
    font-size: 1.2rem;
    padding: 12px 40px 14px;
    border-radius: 25px;
    margin-top: 1.5rem;
  }
  .enterprise-trust-blocks-parent {
    padding: 0 20px;
    gap: 1.5rem;
    justify-content: start;
  }
  .enterprise-trust-blocks {
    width: 45% !important;
    border-radius: 5px;
  }
  .enterprise-trust-blocks h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
    text-align: left;
  }
  .enterprise-trust-blocks p {
    padding: 0;
    margin-top: 0.5rem;
  }
  .enterprise-trust-blocks-img {
    left: 0;
    top: 5px;
    height: 40px;
  }
  .major-services-blocks-parent {
    padding: 0 25px;
    gap: 1rem;
  }
  .new-homepage-design h2 {
    margin-bottom: 1.5rem;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 {
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 {
    height: 100px !important;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 h2 {
    margin-left: 1.5rem;
    margin-bottom: 0;
  }
  .major-services-blocks {
    width: 47% !important;
    padding: 10px 15px !important;
  }
  .major-services-blocks-heading-icon {
    height: 40px;
    width: 40px;
  }
  .major-services-section h3 {
    font-size: 1rem;
    margin-top: 1rem;
  }
  /* .new-homepage-hero-section {
    height: 125vh;
  } */
  .new-homepage-hero-section-carousel .carousel-content {
    margin-top: 2.5rem;
  }
  .new-homepage-hero-section
    .new-homepage-hero-section-carousel
    .carousel-content
    h1 {
    font-size: 2rem !important;
    line-height: 45px;
  }
  .new-homepage-hero-section
    .new-homepage-hero-section-carousel
    .carousel-content
    p {
    margin: 0;
  }
  .new-homepage-hero-section-carousel .new-homepage-hero-btn {
    margin-top: 1.5rem;
    font-size: 1rem;
    margin-right: 1rem !important;
  }
  .why-choose-us-section-blocks-parent {
    margin-top: 0 !important;
  }

  header .main-menu .navbar-nav .nav-item .nav-link {
    color: #546e79 !important;
    display: flex;

    /* font-family: var(--font-first);
    font-size: 16px;
    line-height: 1.8rem;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.2px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    transition: background-color 0.3s ease-in 0s; */

    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ccd3d7;
    border-radius: 0;
  }
  .new-homepage-about-us-section .row {
    justify-content: center;
    padding: 0 25px;
  }
  .new-homepage-about-us-section-content-sec {
    box-shadow: 1px 1px 10px #e6e6e6;
    border-radius: 10px;
    padding: 20px !important;
  }
  .slick-prev,
  .slick-next {
    /* margin-top: 110px !important; */
  }

  .new-mas-img-content-slider-images .slick-initialized .slick-slider {
    margin: -107px 0px;
  }

  .new-mas-img-content-slider-images .slick-next {
    right: 20px !important;
  }
  .new-mas-img-content-slider-images .slick-prev {
    left: 20px !important;
  }
}
@media (max-width: 450.9px) {
  /* .new-logos-slider-width {
    max-width: 320px; 
  } */

  .why-choose-us-section-blocks {
    padding: 40px 35px !important;
  }
  /* .new-homepage-design h2 {
    margin-bottom: 1.5rem;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 {
    height: 100px;
    background: transparent;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 h2 {
    margin-left: 0;
  } */
}
@media (max-width: 435.9px) {
  /* .new-logos-slider-width {
    max-width: 320px; 
  } */
  .new-homepage-hero-btn-margin {
    margin-right: 0;
  }
  .why-choose-us-section-blocks {
    padding: 25px 35px !important;
  }
}
@media (max-width: 400.9px) {
  .new-homepage-hero-section {
    height: 110vh;
  }
  .new-homepage-hero-section-carousel .carousel-content {
    width: 100%;
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 20px;
  }
}
@media (min-width: 360.9px) {
  .new-homepage-hero-btn-margin {
    margin-bottom: 1rem;
  }
}

.new-mas-testi-new-index-section {
  padding: 60px 0;
  background: #08317b;
  /* position: relative;new-mas-testi-new-index-wrapper */
}

.new-mas-testi-new-index-title {
  /* text-align: center; */
  margin-bottom: 40px;
}

.new-mas-testi-new-index-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.new-mas-testi-new-index-title p {
  color: #fff;
  /* max-width: 800px; */
  margin: 0 auto;
}

.new-mas-testi-new-index-slider {
  overflow: hidden;
  /* position: relative; */
  padding: 0 50px;
}

.new-mas-testi-new-index-wrapper {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.new-mas-testi-new-index-wrapper.slick-slider {
  display: flex;
  gap: 2rem;
  position: unset;
  transition: transform 0.5s ease;
}

.new-mas-testi-new-index-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 30px 50px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.new-mas-testi-new-index-content {
  margin-bottom: 20px;
}
.new-mas-testi-new-index-content p {
  color: #000;
}

.new-mas-testi-new-index-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.new-mas-testi-new-index-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.new-mas-testi-new-index-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-mas-testi-new-index-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.new-mas-testi-new-index-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}
.new-mas-testi-new-index-wrapper .slick-prev::before,
.new-mas-testi-new-index-wrapper .slick-next::before {
  content: "";
}

.new-mas-testi-new-index-wrapper .slick-prev,
.new-mas-testi-new-index-wrapper .slick-next {
  position: absolute;
  display: flex;
  height: 50px;
  width: 50px;
  z-index: 10;
  border-radius: 50%;
  color: #000;
  border: 1px solid lightgray;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.new-mas-testi-new-index-wrapper .slick-prev {
  left: 88%;
  top: 35px;
}

.new-mas-testi-new-index-wrapper .slick-next {
  top: 35px;
  right: 50px;
}

.new-mas-testi-new-index-wrapper .slick-prev:hover,
.new-mas-testi-new-index-wrapper .slick-next:hover {
  background: #fff;
  color: #08317b;
}

.new-mas-testi-new-index-wrapper .slick-prev svg,
.new-mas-testi-new-index-wrapper .slick-next svg {
  fill: #fff;
  height: 30px;
  transition: fill 0.3s ease;
}

.new-mas-testi-new-index-wrapper .slick-prev:hover svg,
.new-mas-testi-new-index-wrapper .slick-next:hover svg {
  fill: #08317b;
}

@media (max-width: 1400px) {
  .new-mas-testi-new-index-wrapper .slick-prev {
    left: 85%;
  }
}
@media (max-width: 1200px) {
  .new-mas-testi-new-index-wrapper .slick-prev {
    left: 83%;
  }
}
@media (max-width: 992px) {
  .new-mas-testi-new-index-wrapper .slick-prev {
    left: 85%;
  }
  .new-mas-testi-new-index-wrapper .slick-next {
    top: 90px;
    right: 57px;
  }
}
@media (max-width: 768px) {
  .new-mas-testi-new-index-wrapper .slick-prev {
    left: 85%;
    top: 25px;
  }
  .new-mas-testi-new-index-wrapper .slick-next {
    top: 80px;
    right: 57px;
  }

  .new-mas-testi-new-index-title h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .new-mas-testi-new-index-wrapper .slick-prev,
  .new-mas-testi-new-index-wrapper .slick-next {
    height: 40px;
    width: 40px;
  }
  .new-mas-testi-new-index-wrapper .slick-prev svg,
  .new-mas-testi-new-index-wrapper .slick-next svg {
    height: 20px;
  }
  .new-mas-testi-new-index-wrapper .slick-prev {
    left: 85%;
    top: 25px;
  }
  .new-mas-testi-new-index-wrapper .slick-next {
    top: 80px;
    right: 42px;
  }
}
@media (max-width: 450px) {
  .new-mas-testi-new-index-title h2,
  .new-mas-testi-new-index-title p {
    text-align: center;
    margin-left: 2rem;
  }
  .new-mas-testi-new-index-slider .new-mas-testi-new-index-wrapper button {
    display: none !important;
  }
  .new-mas-testi-new-index-slide {
    height: 400px;
  }
}

/* --------------------------------- */
.new-mas-img-content-slider-section {
  padding: 50px 0;
  background: #002a77;
  color: white;
  /* height: 90vh; */
  /* position: relative; */
}
.new-mas-img-content-slider-content-parent {
  height: auto !important;
  margin-top: 2rem;
}
.new-mas-img-content-slider-section h2 {
  font-size: 2.5rem;
}
.new-mas-img-content-slider-section p {
  font-size: 16px;
  line-height: 1.8;
}
.new-mas-img-content-slider-content ul {
  list-style-type: disc;
}
.new-mas-img-content-slider-content-btn {
  padding: 11px 18px;
  border-radius: 9px;
  background-color: #fff;
  text-decoration: none;
  color: #091e42;
  border: 1px solid #fff;
  font-size: 15px;
  font-family: var(--font-first);
  transition: all 0.2s ease;
  margin-top: 1.5rem;
}
.new-mas-img-content-slider-content-btn:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.new-mas-img-content-slider-design {
  /* position: absolute !important; */
  bottom: 10%;
  right: 5%;
  background-color: #0470c1;
  padding: 50px;
}

.new-mas-img-content-slider-section .slick-arrow {
  color: white !important;
  font-size: 24px;
  z-index: 2;
}
.new-mas-img-content-slider-images button.slick-arrow {
  font-size: 0;
}
.new-mas-img-content-slider-images button.slick-arrow::before {
  font-family: "slick";
  font-size: 70px;
  opacity: 1;
  color: white;
}
.new-mas-img-content-slider-images .slick-prev,
.new-mas-img-content-slider-images .slick-next {
  top: 57% !important;
  transform: translateY(-40%);
  z-index: 2;
}
.new-mas-img-content-slider-images .slick-prev {
  left: 0px;
  z-index: 2;
}

.new-mas-img-content-slider-images .slick-next {
  right: 0px;
  z-index: 2;
}
.new-mas-img-content-slider-images .slick-prev::before {
  content: "\2039";
  position: relative;
}
.new-mas-img-content-slider-images .slick-next::before {
  content: "\203A";
  position: relative;
}

.new-mas-img-content-slider-images {
  height: 325px;
}
.new-mas-img-content-slider-images img {
  position: relative;
  top: 0;
  left: 25%;
  height: 340px;
  width: auto;
  z-index: 100;
}

@media (max-width: 992.9px) {
  .new-mas-testi-new-index-nav {
    top: -60px;
    right: 15px;
  }

  .new-mas-testi-new-index-button {
    width: 40px;
    height: 40px;
  }

  .new-mas-testi-new-index-title h2 {
    font-size: 24px;
  }
  .new-mas-img-content-slider-design {
    /* position: absolute !important; */
    /* bottom: 10%;
    left: 50%; */
    /* transform: translate(-50%); */
    /* right: 5%; */
    margin-top: 8rem !important;
    background-color: transparent;
    padding: 50px;
  }
  .new-mas-img-content-slider-images img {
    left: 28% !important;
    height: 300px !important;
  }
  .new-mas-img-content-slider-images .slick-prev,
  .new-mas-img-content-slider-images .slick-next {
    top: 30% !important;
    transform: translateY(-30%);
    z-index: 2;
  }
  .new-mas-img-content-slider-images .slick-prev {
    left: -10px;
    z-index: 2;
  }

  .new-mas-img-content-slider-images .slick-next {
    right: -10px;
    z-index: 2;
  }
}
@media (max-width: 768.9px) {
  .new-mas-img-content-slider-design {
    /* position: absolute !important; */
    /* bottom: 5%; */
    /* left: 50%; */
    /* width: 73% !important; */
    /* top: 72%; */
    /* transform: translate(-50%); */
    /* right: 5%; */
    width: 100% !important;
    background-color: transparent;
    padding: 20px;
  }
  .new-mas-img-content-slider-images img {
    left: 30% !important;
    height: 270px !important;
  }
  .new-mas-img-content-slider-images .slick-prev,
  .new-mas-img-content-slider-images .slick-next {
    top: 30%;
    transform: translateY(-30%);
    z-index: 2;
  }
  .new-mas-img-content-slider-images .slick-prev {
    left: -10px;
    z-index: 2;
  }

  /* @media (min-width: 500px) and (max-width: 768px) {
    .new-mas-img-content-slider-images img {
      position: relative;
      top: 5px;
      left: 5%;
      height: 340px;
      width: auto;
      z-index: 100;
  }
  } */

  /* @media (min-width: 0px) and (max-width:500px ) {
    .new-mas-img-content-slider-images img {
      position: relative;
      top: 69px;
      left: 9%;
      height: 340px;
      width: 275px;
      z-index: 100;
      height: auto !important;
  }
  } */

  @media (min-width: 1025px) and (max-width: 1440) {
    .new-mas-img-content-slider-images img {
      position: relative;
      top: 0;
      left: 6%;
      height: 340px;
      width: auto;
      z-index: 100;
    }
  }

  .new-mas-img-content-slider-images .slick-next {
    right: -10px;
    z-index: 2;
  }
}
@media (max-width: 600.9px) {
  .new-mas-img-content-slider-images button.slick-arrow::before {
    font-size: 50px;
  }
}
@media (max-width: 500.9px) {
  .new-mas-img-content-slider-images img {
    height: 225px !important;
    left: 25% !important;
    top: 3px !important;
  }
}
@media (max-width: 375.9px) {
  .new-mas-img-content-slider-design {
    /* position: absolute !important; */
    /* bottom: 0%; */
    /* left: 50%; */
    /* transform: translate(-50%); */
    /* right: 5%; */
    background-color: #0470c1;
    padding: 20px;
  }
}

/* -------------------- */
.case-study-section-deading {
  padding: 15px 25px;
  transition: 0.3s ease-in-out;
  position: relative;
  transition: 0.3s ease-in-out;
}
.view-more-case-studies-btn {
  /* display: none; */
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: absolute;
  top: 90%;
  left: 78%;
  transform: translate(-50%, -35%);
}
.case-study-section-deading:hover .view-more-case-studies-btn {
  display: block;
}

.slick-dots {
  top: 110% !important;
}
.slick-dots li button:before {
  color: #ffff !important;
}

@media (max-width: 1200px) {
  .slick-arrow {
    display: none !important;
  }
}
@media (max-width: 768.9px) {
  .view-more-case-studies-btn {
    left: 50%;
    top: 98%;
  }
}
@media (max-width: 500.9px) {
  .case-study-section-deading {
    margin-bottom: 2rem;
  }
  .view-more-case-studies-btn {
    left: 50%;
    top: 100%;
  }

  /* side corner mobile view */

  /* .new-popup-open-btn {
    position: fixed !important;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    z-index: 999;
  } */
  #slidebar-contact {
    height: 200px;
    width: 45px;
    position: fixed;
    top: 86% !important;
    right: 0;
    left: 45% !important;
    transform: translate(0%, -50%);
    background-color: #2c63a6 !important;
    opacity: 1;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 11px 18px -8px rgb(41 6 96 / 60%);
    transform: rotate(90deg) !important;
  }

  .new-mas-testi-new-index-wrapper.slick-slider .slick-track {
    height: 440px !important;
  }
  #slidebar-contact {
    top: 83.5% !important;
  }

  .slick-slide img {
    margin-bottom: 80px;
  }

  .enterprise-trust-section .row .col-12.align-left-mob-view {
    display: flex !important;
    flex-direction: column !important;
    justify-content: start !important;
    align-items: start !important;
  }
  .enterprise-trust-section
    .row
    .col-12.align-left-mob-view
    .learn-more-button {
    margin-top: 2rem;
  }
}

@media (max-width: 376px) {
  #slidebar-contact {
    top: 82.5% !important;
  }
}

/* blog study table start */
.table_key_insights th,
td {
  text-align: center !important;
  padding: 0.75rem;
  border: 1px solid #0c1442 !important;
}
.table_key_insights table {
  width: 100%;
  margin: 20px 0px;
}
.table_head th {
  background-color: #2367aa;
  color: #fff;
  text-align: center !important;
}
/* blog study table end */

.testing {
  color: red;
}

.new-cross-btn {
  color: #000;
}

.btn-close {
  box-sizing: content-box !important;
  width: 1em !important;
  height: 1em !important;
  padding: 0.25em 0.25em !important;
  color: #000 !important;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586l6.293-6.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center / 1em auto no-repeat !important;
  border: 0 !important;
  border-radius: 0.375rem !important;
  opacity: 0.5 !important;
}

/* --------------------------------------------Testimonial-------------------------------------------------------------- */

.case-testimonial {
  border-radius: 10px;
  border: 1px solid black;
  background-image: linear-gradient(#1c6bb5, white);
  padding: 2rem;
  width: 100%;
}

.testimonial-content {
  display: flex;
  flex-direction: row;
}
.case-testimonial-img img {
  width: 134px !important;
  height: 134px;
  margin-right: 33px;
  background-color: white;
  border-radius: 50%;
}

.main-case-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.new-h2 {
  font-size: 29px !important;
  font-weight: 600;
}
.testimonial-para {
  font-weight: 500;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .case-testimonial {
    width: 710px;
  }
}

@media (max-width: 1199px) {
  .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .case-testimonial {
    width: auto;
  }
}
/* --------------------------------------------Testimonial-------------------------------------------------------------- */

/* ----------------------------------header-solution---------------------------------- */
.sol-container {
  display: flex;
  flex-direction: row;
  /* gap: 50px; */
  /* padding: 0px 133px; */
}
.sol-sub-tab {
  width: 342px;

  height: 58px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sol-sub-tab:hover {
  /* background-color: #f1f1f1; */
  background-color: #e6f0f9;
  transition: 0.3s ease;
  cursor: pointer;
}
.sol-sub-tab.active {
  color: #68417e;
}
.sol-line {
  background-color: #808080;
  height: 1px;
  /* margin-top: 20px; */
}

.sol-sub-container {
  margin-top: 20px;

  gap: 60px;
  justify-content: center;
  align-items: center;
}
.sol-sub-container a {
  text-decoration: none;
  color: black;
}

.sol-sub-content {
  width: 325px;
  height: 150px;
  /* background-color: #f9fafb; */
  border-radius: 10px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sol-sub-content:hover {
  background-color: #fdf2f6;
  /* color: #68417e; */
  color: var(--purple-color);
  transition: 0.3s ease;
  /* transform: translateY(-4px); */
}

.sol-sub-text {
  display: flex;
  flex-direction: column;
  justify-content: left;
  color: #45616d;
  text-align: start;
}
.sol-sub-text p {
  color: #45616d;
  font-size: 15px;
  text-align: start;
  margin-right: 10px;
}
.sol-sub-text h5 {
  font-size: 18px;
}
.sol-sub-text:hover {
  color: var(--purple-color);
}
.sol-sub-text p:hover {
  color: var(--purple-color);
}

.drop-item-sol-icon {
  width: 56px;
  height: 56px;
  margin: 15px;
  display: flex;
  background-color: #eefaff;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 10px;
}
.drop-item-sol-icon img {
  width: 30px;
  height: 30px;
}
.drop-item-sol-tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.drop-item-sol-tab img {
  width: 25px;
  height: 25px;
  margin: 10px;
  display: flex;
}
.drop-item-sol-tab p {
  justify-content: center !important;
  align-items: center;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #393c40;
}

.sol-latest-content {
  display: none;
  margin-right: 0;
}
.sol-latest-content.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sol-sub-tab.active .drop-item-sol-tab p {
  /* font-weight: bold; */
  color: var(--purple-color);
}
.new-sol-section {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
}
.sol-sub-tab {
  border-bottom: 1px solid gray;
}
.sol-sub-tab.active {
  border-bottom: 2px solid purple;
  transition: none;
}

@media (max-width: 1200px) {
  .sol-container {
    flex-direction: column;
    gap: 1px;
    padding: 0px 14px;
  }
  .new-sol-section {
    flex-direction: column;
    gap: 12px;
    padding: 0 5px;
  }
  .sol-sub-content.sol-sub-content-mob {
    height: 0px !important;
  }
  .sol-latest-content.active {
    flex-direction: row;
  }
  .sol-sub-content {
    width: auto;
    height: 221px;
    flex-direction: column;
  }
  .sol-sub-text {
    align-items: center;
    padding: 0 18px;
  }
  .drop-item-sol-icon {
    width: 44px;
    height: 48px;
    margin: 8px 0px;
  }
  .drop-item-sol-tab img {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 372px) {
  .sol-sub-content {
    width: 135px;
    height: 213px;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .sol-sub-text p {
    display: none;
  }
  .sol-sub-content {
    height: 90px;
  }
  .sol-sub-text h5 {
    font-size: 14px;
    text-align: center;
  }
  .header-datset-detail li {
    display: none;
  }
  .header-datset-detail .dataset-link {
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .sol-sub-tab {
    height: 50px;
  }
  .sol-latest-content.active {
    align-items: start;
  }
  .new-sol-section a :nth-child(3) {
    align-items: center;
  }
}

/* ----------------------------------header-solution---------------------------------- */
/* ----------------------------------New Footer---------------------------------- */
.ft-row1 {
  justify-content: center;
}
.ft-row2 {
  justify-content: space-evenly !important;
}

.ft-border-class {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-get-data {
  display: flex;
  flex-direction: row;
  gap: 20px;
  /* margin-bottom: 20px; */
}
.get-in-link {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px;
  border-radius: 8px;
  max-height: 100%;
  /* max-width: 316px; */
  transition: 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
/* .get-in-link:hover {
  border: 1px solid #fff;
  background-color: #fff;
 
  
} */
.get-in-link:hover i {
  color: #062e4e;
}
/* .get-in-link:hover a{
  color: #062e4e;
 
  
}
.get-in-link:hover address{
  color: #062e4e;
 
  
} */
/* .get-in-link:hover.get-in-link i{
  border: 1px solid #fff;

  color: #062e4e;
  
} */

.get-in-link a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}
.get-in-link i {
  text-decoration: none;
  color: #fff;
}
.get-btn-section {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.get-btn-section i {
  width: 35px;
  height: 35px;
  font-size: 25px; /* Optional: Adjust size of the icon */
  display: inline-block; /* Ensures the element is treated as a block for width/height */

  text-align: center; /* Centers the icon horizontally */
}
.get-btn-section h5 {
  font-size: 17px;
  font-weight: 500;
}

.get-in-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trusted-company-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.new-social-list {
  display: flex;
  flex-direction: row;
  /* gap: 20px; */
  margin-bottom: 15px;
}
.ft-map-image img {
  width: 600px;
  max-width: 100%;
  height: 320px;
  max-height: 100%;
}
.social-inside-icon {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1200px) and (max-width: 1650px) {
  .footer-get-data {
    flex-direction: column;
  }
}
@media (max-width: 1600px) {
  /* .footer-get-data{
flex-wrap: wrap;
justify-content: center;
align-items: center;

  } */
  .get-in-content {
    align-items: center;
  }
}

/* @media (max-width:1200px) {
  .get-in-link{
 
 height: auto;
 width: auto;
 max-width: 50%;
}
.ft-map-image img{
  height: 100%;
}
.new-social-list{
 
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.social-inside-icon{
display: flex;
flex-direction: row;
gap: 10px;
justify-content: center;
align-items: center;
}
.ft-map-section{
  gap: 45px;
}

} */
@media (max-width: 1400px) {
  .ft-country-info h5 {
    left: 10% !important;
  }
  .ft-country-info p {
    left: 10% !important;
  }
}

@media (max-width: 1200px) {
  .ft-map-section {
    flex-wrap: wrap;
  }
  .module-disription h2 {
    text-align: left !important;
  }
  .module-disription p {
    text-align: left !important;
  }
  .map-dot-small {
    width: 37px !important;
    top: 141px !important;
    left: -133px !important;
    transform: rotate(179deg) !important;
  }
  .ft-country-info p {
    top: 111% !important;
    left: 25% !important;
  }
  .ft-country-info h5 {
    top: 102% !important;
    left: 25% !important;
  }
  .map-dot-big {
    width: 160px !important;
    top: 77px !important;
    left: -127px !important;
  }
  .ft-map-sub h3 {
    margin-top: 95px;
  }
}
@media (max-width: 768px) {
  .get-in-link {
    height: auto;
    width: auto;
    max-width: 100%;
  }
  .footer-get-data {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (min-width: 500px) and (max-width: 600px) {
  .ft-country-info p {
    right: 27% !important;
    left: 12% !important;
  }
  .ft-country-info h5 {
    top: 101% !important;
    left: 12% !important;
  }
}

@media (max-width: 500px) {
  .ft-map-image img {
    height: auto;
  }
  .map-dot-section {
    top: 61% !important;
  }
  .ft-get-data {
    /* display: flex; */
    flex-direction: column !important;
  }
  .get-in-info {
    justify-content: start !important;
  }
  .ft-call-data {
    border-right: 1px solid transparent !important;
  }
  .ft-map-sub h3 {
    margin-top: 7rem;
  }
  .map-dot-big {
    width: 107px !important;
    top: 56px !important;
    left: -84px !important;
  }
  .map-dot-small {
    width: 29px !important;
    top: 99px !important;
    left: -92px !important;
  }
  .ft-country-info h5 {
    top: 105% !important;
    left: 2% !important;
  }
  .ft-country-info p {
    top: 120% !important;
    left: 2% !important;
    right: 48% !important;
  }
  /*.ft-map-sub h3{
  margin-top: 80px;
} */
}
@media (max-width: 425px) {
  .get-in-link {
    height: auto;
  }
  .ft-call-data {
    border-right: 1px solid transparent !important;
  }
  .ft-get-data {
    /* display: flex; */
    flex-direction: column !important;
    gap: 0px !important;
  }
  .get-in-info {
    justify-content: start !important;
    font-size: 14px;
  }
  .map-dot-section {
    top: 62% !important;
    left: 72% !important;
  }
  .ft-country-info h5 {
    top: 107% !important;
    left: 2% !important;
  }
  .ft-country-info p {
    top: 123% !important;
    left: 2% !important;
    right: 51% !important;
    font-size: 12px;
  }
  .ft-map-sub h3 {
    margin-top: 7rem !important;
  }
  .ft-map-image img {
    height: auto;
  }
  .get-btn-section h5 {
    font-size: 14px;
  }
  .get-btn-section i {
    width: 30px;
    height: 25px;
    font-size: 15px;
  }
  .get-in-link a {
    font-size: 12px;
  }
  .get-in-link address {
    font-size: 12px;
  }

  .map-dot-big {
    width: 107px !important;
    top: 56px !important;
    left: -84px !important;
  }
  .map-dot-small {
    top: 99px !important;
    left: -92px !important;
  }
  /* .footer-get-data {
  gap:12px;
} */
  .new-social-list img {
    height: 22px;
    word-wrap: 22px;
  }
}

.ft-map-section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.ft-map-content {
  display: flex;
  flex-direction: column;
}
.get-in-data-link {
  display: flex;
  flex-direction: column;
}
.get-in-data-link a {
  text-decoration: none;
  color: #fff;
}
.get-in-data-link address {
  color: #fff;
}

.ft-get-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.ft-call-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  border-right: 1px solid #fff;
  padding-right: 15px;
}
.ft-map-sub h3 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 36px;
}
.ft-map-sub span {
  color: #cea6e1;
  font-weight: 500;
}
.ft-map-sub h5 {
  color: #fff;
  margin-top: 45px;
  line-height: 36px;
}

.effect-5 .social-inside-icon a {
}
.effect-5 .social-inside-icon a:hover {
  /* border-color: #fff; */
  box-shadow: 0 0 10px #fff;
  /* transform: translateY(-8px); */
}
.effect-5 .social-inside-icon a:hover img {
  /* filter:  drop-shadow(0 0 6px rgba(255, 255, 255, 0.8)); */
}

.child-dropdown-content a:hover {
  color: #fff;
}
.get-in-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.map-dot-section {
  position: absolute;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background-color: #a00fff;
  top: 61%;
  left: 72%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-map-image {
  position: relative;
}
.map-dot-big {
  height: 2px;
  width: 174px;
  background-color: #fff;
  transform: rotate(128deg);
  position: absolute;
  top: 82px;
  left: -138px;
}

.map-dot-small {
  height: 2px;
  width: 37px;
  background-color: #fff;
  transform: rotate(177deg);
  position: absolute;
  top: 151px;
  left: -141px;
}
.ft-country-info h5 {
  position: absolute;
  top: 105%;
  left: 20%;
}
.ft-country-info p {
  position: absolute;
  top: 117%;
  right: 27%;
  left: 20%;
}

/* Ripple circles */
.ripple {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  /* background-color: rgba(255, 0, 0, 0.4);  */
  border: 1px solid rgba(255, 255, 255, 1);
  animation: rippleEffect 3s infinite;
  z-index: -1;
}

/* Delayed ripple waves */
.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 2s;
}

@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(4); /* Bigger size = bigger ripple */
    opacity: 0;
  }
}
/* .new-aff-box{
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
border: 1px solid white;
background-color: transparent;
justify-content: space-between;
align-items: center;
border-radius: 10px;
padding: 10px;
}
.new-aff-box img{
width: 80px;
height: 80px;

} */
.new-aff-box {
  border: 1px solid white;
  background-color: transparent;
  border-radius: 10px;
  padding: 10px;
}

.aff-title {
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #c1a6e1;
}

.aff-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.aff-logos img {
  width: 80px;
  height: 80px;
}

.swiper-wrapper .swiper-slide :nth-child(5) {
  border: 1px dashed #99a8af;
}

@media (min-width: 993px) {
  .swiper-wrapper .swiper-slide :nth-child(2) {
    border-bottom: none;
  }
  .swiper-wrapper .swiper-slide :nth-child(5) {
    border-left: none;
    border-right: none;
  }
}
@media (max-width: 992px) {
  .swiper-wrapper .swiper-slide :nth-child(4) {
    border-bottom: none;
  }
}
@media (min-width: 1651px) {
  .get-in-link {
    min-width: 580px;
  }
}

/* ----------------------------------New Footer---------------------------------- */

.think_row_2 {
  display: flex;
  position: relative;
  height: 450px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  transition: all 0.45s ease-in-out;
}
.think_row_2 a {
  text-decoration: none;
}
/* .hover-new-wrapper.active1{
   background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/eCommerce-Intelligence.png") no-repeat;
  filter: grayscale(1);
} */
.think_boxed_2.active1 {
  background: url("../new-img/new-homepage-design/design/1.webp") no-repeat;
  filter: grayscale(1);
}

.think_boxed_2.active2 {
  background: url("../new-img/new-homepage-design/design/enterprise-app-crawling.webp")
    no-repeat;
  filter: grayscale(1);
}

.think_boxed_2.active3 {
  background: url("../new-img/new-homepage-design/design/android app scraping service.webp")
    no-repeat;
  filter: grayscale(1);
}

.think_boxed_2.active4 {
  background: url("../new-img/new-homepage-design/design/2.webp") no-repeat;
  filter: grayscale(1);
}
.think_boxed_2.active5 {
  background: url("../new-img/new-homepage-design/design/web-scraping-with-ai.webp")
    no-repeat;
  filter: grayscale(1);
}
.think_boxed_2.active6 {
  background: url("../new-img/new-homepage-design/design/live-crawler.webp")
    no-repeat;
  filter: grayscale(1);
}
.think_boxed_2.active7 {
  background: url("../new-img/new-homepage-design/design/Deep-and-dark-web-scraping.webp")
    no-repeat;
  filter: grayscale(1);
}
.think_boxed_2.active8 {
  background: url("../new-img/new-homepage-design/design/web-data-mining.webp")
    no-repeat;
  filter: grayscale(1);
}

.think_boxed_2 {
  width: calc(100% / 4 - 1px);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  margin-right: 1px;
  position: relative;
}

.think_boxed_2:last-child {
  margin-right: 0;
}

.think_boxed_2:hover {
  width: 26%;
  filter: none;
}

.think_boxed_2:hover:before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-flex;
  background: rgb(1, 40, 90);
  background: -moz-linear-gradient(
    0deg,
    rgba(1, 40, 90, 1) 20%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(1, 40, 90, 1) 20%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(1, 40, 90, 1) 20%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#01285a",endColorstr="#ffffff",GradientType=1);
  filter: none;
}

.think_boxed_2_link {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.think_boxed_2_inner {
  padding: 15px;
  max-width: 330px;
}

.think_boxed_2_inner p {
  display: none;
  color: #fff;
  margin-bottom: 10px;
}
.think_boxed_2_inner h4 {
  color: #fff;
}

.think_boxed_2_img {
  background-color: #fff;
  border-radius: 70px;
  width: 70px;
  height: 70px;
  padding: 8px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.think_boxed_2.hider {
  background: transparent;
}

.think_boxed_2:hover p {
  display: flex;
}

.think_boxed_2:hover .think_boxed_2_inner {
  position: absolute;
  bottom: 15px;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.15); */
  z-index: 1;
  /* border-radius: 15px; */
}

.think_boxed_2:hover .think_boxed_2_inner:before {
  content: "";
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -20px;
  box-shadow: inset 0 0 500px rgba(255, 255, 255, 0.4);
  filter: blur(10px);
  z-index: -1;
}

.think_boxed_2_link {
  display: flex;
  align-items: end;
}

span.think_boxed_2_btn {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #fff;
  display: inline-flex;
  border-radius: 40px;
  position: relative;
  align-items: center;
  justify-content: center;
  display: none;
  transition: all 0.4s ease-in-out;
}

span.think_boxed_2_btn:before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  display: inline-flex;
}

span.think_boxed_2_btn:after {
  content: "";
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
}

span.think_boxed_2_btn:hover {
  background-color: #fff;
}

span.think_boxed_2_btn:hover:before {
  background-color: #01285a;
}

span.think_boxed_2_btn:hover:after {
  border-color: #01285a;
}

.think_boxed_2:hover span.think_boxed_2_btn {
  display: flex;
}

.think_boxed_2:hover .think_boxed_2_link {
  justify-content: center;
}

/* REMOVED - These row-level background classes are no longer needed */
/* .think_row_2.active1 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/eCommerce-Intelligence.png") no-repeat;
  filter: none;
}

.think_row_2.active2 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Social-Media-Analytics.png") no-repeat;
  filter: none;
}

.think_row_2.active3 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Travel-and-Hospitality.png") no-repeat;
  filter: none;
}

.think_row_2.active4 {
  background: url("https://www.mobileappscraping.com/assets/new-img/new-homepage-design/Real-Estate-Insights.png") no-repeat;
  filter: none;
} */

/* ADDED - New class to make background images visible across ALL 8 boxes when hovering individual boxes */
.blue-full-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
  pointer-events: none;
  z-index: -10;
}

.blue-container-wrapper {
  position: relative;
  z-index: 1;
  padding: 0 !important;
}

.blue-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
  pointer-events: none;
  z-index: -1;
}

/* Show background on hover for any active1 box in any row */
.blue-container-wrapper:has(.think_boxed_2.active1:hover)
  .blue-overlay-bg.blue-bg-1,
.blue-container-wrapper:has(.think_boxed_2.active2:hover)
  .blue-overlay-bg.blue-bg-2,
.blue-container-wrapper:has(.think_boxed_2.active3:hover)
  .blue-overlay-bg.blue-bg-3,
.blue-container-wrapper:has(.think_boxed_2.active4:hover)
  .blue-overlay-bg.blue-bg-4,
.blue-container-wrapper:has(.think_boxed_2.active5:hover)
  .blue-overlay-bg.blue-bg-5,
.blue-container-wrapper:has(.think_boxed_2.active6:hover)
  .blue-overlay-bg.blue-bg-6,
.blue-container-wrapper:has(.think_boxed_2.active7:hover)
  .blue-overlay-bg.blue-bg-7,
.blue-container-wrapper:has(.think_boxed_2.active8:hover)
  .blue-overlay-bg.blue-bg-8 {
  opacity: 1;
}

.blue-bg-1 {
  background-image: url("../new-img/new-homepage-design/design/Web-Scraping-Services.png");
}

.blue-bg-2 {
  background-image: url("../new-img/new-homepage-design/design/Enterprise-App-Crawling.png");
}

.blue-bg-3 {
  background-image: url("../new-img/new-homepage-design/design/live-crawler.png");
}

.blue-bg-4 {
  background-image: url("../new-img/new-homepage-design/design/App-data-scraping-service.png");
}

/* .blue-bg-5 {
  background-image: url("../new-img/new-homepage-design/design/web-scraping-with-ai.webp");
}

.blue-bg-6 {
  background-image: url("../new-img/new-homepage-design/design/live-crawler.webp");
}

.blue-bg-7 {
  background-image: url("../new-img/new-homepage-design/design/Deep-and-dark-web-scraping.webp");
}

.blue-bg-8 {
  background-image: url("../new-img/new-homepage-design/design/web-data-mining.webp");
} */

.think_mob_slide {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
  .think_row_2 {
    height: 450px;
  }

  .think_boxed_2 {
    height: 450px;
  }

  .think_boxed_2_img {
    width: 60px;
    height: 60px;
  }

  .think_boxed_2_inner {
    width: 100%;
    padding: 10px;
  }

  .think_boxed_2_inner a {
    text-decoration: none;
  }
  .think_boxed_2_inner p {
    font-size: 14px;
    line-height: 1.48;
  }

  .think_boxed_2_inner span {
    width: 30px;
    height: 30px;
  }

  .think_boxed_2_inner span:before {
    width: 15px;
  }

  .think_boxed_2_inner span:after {
    width: 7px;
    height: 7px;
    right: 6.5px;
  }

  /* REMOVED - Tablet media query background positioning rules */
  /* .think_row_2.active1 {
      background-position: center;
  }
  
  .think_row_2.active2 {
      background-position: center;
  }
  
  .think_row_2.active3 {
      background-position: center;
  }
  
  .think_row_2.active4 {
      background-position: center;
  } */
}

@media only screen and (max-width: 768px) {
  .think_row_2 {
    display: none;
  }

  .think_mob_slide {
    display: block;
    width: 100%;
    border-radius: 10px;
  }

  .think_mob_slide a {
    display: flex;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 12px;
  }
  .think_mob_slide a {
    text-decoration: none;
  }
  .think_mob_slide p {
    margin-bottom: 0 !important;
  }
  .think_mob_slide_btn {
    margin-top: 5px;
  }
  .enterprise-trust-blocks-parent {
    justify-content: start;
  }

  .think_mob_slide a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(1, 40, 90);
    background: -moz-linear-gradient(
      0deg,
      rgba(1, 40, 90, 0.8) 20%,
      rgba(255, 255, 255, 0) 100%
    );
    background: -webkit-linear-gradient(
      0deg,
      rgba(1, 40, 90, 0.8) 20%,
      rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
      0deg,
      rgba(1, 40, 90, 0.8) 20%,
      rgba(255, 255, 255, 0) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#01285a",endColorstr="#ffffff",GradientType=1);
    filter: none;
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    z-index: 99;
  }

  .think_mob_slide.active1 {
    background: url("../new-img/new-homepage-design/design/web scraping service.webp")
      no-repeat;
    background-size: cover;
  }

  .think_mob_slide.active2 {
    background: url("../new-img/new-homepage-design/design/enterprise-app-crawling.webp")
      no-repeat;
    background-size: cover;
  }

  .think_mob_slide.active3 {
    background: url("../new-img/new-homepage-design/design/android app scraping service.webp")
      no-repeat;
    background-size: cover;
  }

  .think_mob_slide.active4 {
    background: url("../new-img/new-homepage-design/design/ios-app-scraping-service.webp")
      no-repeat;
    background-size: cover;
  }
  .think_mob_slide.active5 {
    background: url("../new-img/new-homepage-design/design/web-scraping-with-ai.webp")
      no-repeat;
    background-size: cover;
  }
  .think_mob_slide.active6 {
    background: url("../new-img/new-homepage-design/design/live-crawler.webp")
      no-repeat;
    background-size: cover;
  }
  .think_mob_slide.active7 {
    background: url("../new-img/new-homepage-design/design/Deep-and-dark-web-scraping.webp")
      no-repeat;
    background-size: cover;
  }
  .think_mob_slide.active8 {
    background: url("../new-img/new-homepage-design/design/web-data-mining.webp")
      no-repeat;
    background-size: cover;
  }

  .think_mob_slide_inner {
    position: relative;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .think_mob_slide img {
    width: 50px;
    height: 50px;
    padding: 8px;
    background-color: #fff;
    border-radius: 50px;
    margin-bottom: 10px;
  }

  .think_mob_slide p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: var(--thin);
  }
  .think_mob_slide h4 {
    color: #fff;
  }

  .think_mob_slide_btn {
    border-radius: 30px;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: rotate(-45deg);
  }

  .think_mob_slide_btn:before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #fff;
    display: inline-flex;
    position: absolute;
  }

  .think_mob_slide_btn:after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: transparent;
    display: inline-flex;
    border: none;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-left: 7px;
  }

  .think_mob_slider .slick-track {
    display: flex !important;
  }

  .think_mob_slider .think_mob_slide.slick-slide {
    height: inherit !important;
    transition: all 0.25s ease-in-out;
  }

  .think_mob_slider .slick-slide {
    margin: 0 5px;
  }

  .think_mob_slider .slick-list {
    margin: 0 -5px;
  }
  .recent-blogs-and-rr-blocks-parent .recent-blogs-and-rr-blocks-1 {
    height: 200px !important;
    justify-content: start !important;
  }
}

@media only screen and (max-width: 480px) {
  .think_mob_slide img {
    width: 40px;
    height: 40px;
  }
  .think_mob_slide p {
    line-height: 1.54;
  }
}
.new-mas-img-content-slider-images .slick-next.slick-arrow {
  display: inline-block !important;
}

.new-mas-img-content-slider-images .slick-prev.slick-arrow {
  display: inline-block !important;
}

.explore_slider_inner .slick-prev,
.slick-next {
  top: 45%;
  margin-top: 0px !important;
}

@media (max-width: 1200px) {
  .explore_slider_inner .slick-prev,
  .slick-next {
    display: none !important;
  }
}

/* New country wise tab section */
.country-main-container {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  /* background-color: #2367aa; */
  /* min-height: 100vh; */
  padding: 0px 0 81px 0;
}

.country-header {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.country-search-container {
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
}

.country-search-input {
  border-radius: 25px;
  padding: 12px 50px 12px 20px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.country-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #4a90e2;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.country-tabs-section {
  background: white;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.country-tabs-wrapper {
  position: relative;
  overflow: hidden;
}

.country-tabs-container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #2367aa #f1f1f1;
  padding: 10px;
}

.country-tabs-container::-webkit-scrollbar {
  height: 6px;
}

.country-tabs-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.country-tabs-container::-webkit-scrollbar-thumb {
  background: #4a90e2;
  border-radius: 10px;
}

.country-tab-btn {
  flex: 0 0 auto;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country-tab-btn.active {
  background-color: #2367aa;
  color: white;
  border-color: #2367aa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.country-content-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.country-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.country-data-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.country-data-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.country-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.country-card-description {
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.country-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.country-page-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country-page-btn:hover {
  background: #e9ecef;
}

.country-page-btn.active {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
}

.country-page-info {
  color: #6c757d;
  font-size: 0.9rem;
}

.ft-border-class .footer-column {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .country-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .country-content-section {
    padding: 20px;
  }

  .country-pagination {
    flex-wrap: wrap;
  }
  .country-card-title {
  }
  .country-data-card {
    padding: 17px;
  }
}

@media (max-width: 576px) {
  .country-tab-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}
/*---------------------------------------- New country wise tab section ----------------------------------------*/
.explore-home-date {
  color: #fff;
}
@media (max-width: 1400px) {
  .explore_slide_cbox_inner {
    margin-top: -130px;
  }
}
@media (max-width: 1200px) {
  .explore_slide_cbox_inner {
    margin-top: -177px;
  }
  .explore_slide_cbox h3 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  /* .new-homepage-hero-section{
     height: 90vh;
  } */
}

@media (max-width: 425px) {
  .country-tabs-section {
    padding: 1px;
    margin-bottom: 12px;
  }
  .country-cards-grid {
    gap: 10px;
    margin-bottom: 15px;
  }
  .country-cards-grid {
    grid-template-columns: 1fr;
  }
  .country-search-container {
    margin: 0 auto 12px;
  }
  .country-data-card {
    padding: 8px;
    text-align: center;
  }
  .country-header {
    margin-bottom: 10px;
  }
}

/* --------------new class--------- */

.think_row_2:hover .think_boxed_2_inner h4 {
  display: none;
}

.think_boxed_2:hover .think_boxed_2_inner h4 {
  display: block;
}

@media (max-width: 576px) {
  .footer-item-title {
    margin-top: 20px;
  }
  .footer-item-title {
    margin-top: 20px;
  }

  .ft-border-class .footer-column {
    width: 100%;
  }
  .ft-border-class .footer-column {
  flex: 0 0 100%;
}
}

.image-size-change {
  height: 45px;
  width: 45px;
}
