/*
Theme Name: Graphinet WP Theme
Theme URI: https://www.graphinetmedia.com/
Author: Graphinet Solutions
Author URI: https://www.graphinetmedia.com/
Description: A powerful Bootstrap 5 WordPress Starter Theme with WooCommerce Support. This theme gives you full control whatever you do and the full freedom to design whatever you want.
Version: 1.0.1
Requires PHP: 7.2
Text Domain: gswptheme
*/

/* 
All style editing is done via scss/_bscore_custom.scss
*/

:root {
  --primary: #008CFF;
  --black-50: #00000080;
  --black-secondary: #4F5558;
}

.text-primary {
  color: var(--primary) !important;
}

.text-black-50 {
  color: var(--black-50) !important;
}

.text-black-secondary {
  color: var(--black-secondary) !important;
}

header {

  --nav-link-font-size: 16px;
  --nav-link-line-height: 20px;
  --nav-link-letter-spacing: 0px;
  --nav-link-margin-left: 0;
  --nav-link-border-radius: 11px;
  --nav-link-background-color: #0000000D;
  --nav-link-margin-right: 10px;
  --nav-link-m-margin-right: 0px;
  --header-logo-width: 130px;
  --header-logo-height: auto;
  --header-navbar-collapse-bg: #fff;

  --header-cta-nav-button-bg: var(--bs-primary);
  --header-cta-nav-button-border-color: var(--bs-primary);
  --header-cta-nav-button-color: var(--bs-white);
  --header-cta-nav-button-padding: 21px 30px;
  --header-cta-nav-button-text-transform: uppercase;

  --header-nav-border-top: 1px solid #ababab;
  --header-nav-padding-block: 0rem;
}

body {
  font-family: "Poppins-Regular";
  line-height: 137%;
  font-size: 20px;
  /* background-image: linear-gradient(180deg, #E6EAFF 0%, #FFFFFF 100%); */
  background-repeat: no-repeat;

}

@font-face {
  font-family: "Poppins-Regular";
  src: url("assets/fonts/Poppins-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Syne-Bold";
  src: url("assets/fonts/Syne-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("assets/fonts/Poppins-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("assets/fonts/Poppins-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Bold";
  src: url("assets/fonts/Poppins-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-ExtraBold";
  src: url("assets/fonts/Poppins-ExtraBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Black";
  src: url("assets/fonts/Poppins-Black.ttf");
  font-display: swap;
}

.font-syne-bold {
  font-family: "Syne-Bold" !important;
  font-weight: 700 !important;
}

.font-Poppins-Regular {
  font-family: "Poppins-Regular" !important;
  font-weight: 400 !important;
}

.font-Poppins-Medium {
  font-family: "Poppins-Medium" !important;
  font-weight: 500 !important;
}

.font-Poppins-SemiBold {
  font-family: "Poppins-SemiBold" !important;
  font-weight: 600 !important;
}

.font-Poppins-Bold {
  font-family: "Poppins-Bold" !important;
  font-weight: 700 !important;
}

.font-Poppins-ExtraBold {
  font-family: "Poppins-ExtraBold" !important;
  font-weight: 900 !important;
}

.font-Poppins-Black {
  font-family: "Poppins-Black" !important;
}

.bg-blur-gradient {
  background: linear-gradient(95.85deg, #050C21 12.79%, #0A1C57 96.17%) !important;

}

.text-blue-gradinet-2 {
  background: linear-gradient(90deg, #00294A 50%, #008CFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-up-sub-heading {
  border: 1px solid #008CFF80;
  border-radius: 38px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--primary);
  font-size: 14px;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 30px !important;
}

.top-up-sub-heading::before {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  background-color: #2FC1FF;
  border-radius: 50%;
}

.btn-outline {
  border: 1px solid #00000033 !important;
  font-size: 16px;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  background-color: #fff;
  transition: all 0.3s;
  border-radius: 5px;
  padding: 10px 20px;
  transition: all 0.3s;
  /* display: inline-block; */
}

.loop-element-sec {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: transparent;
  /* important */
}

/* GLOW ELEMENT */
.loop-element-sec::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 227px;
  display: block !important;
  background: rgba(41, 170, 225, 0.8);

  /* USE ONLY THIS */
  filter: blur(220px);

  /* DO NOT USE backdrop-filter */
  /* backdrop-filter: blur(301px); */

  z-index: 0;
  pointer-events: none;

  animation: spread-loop 22s linear infinite;
}

/* CONTENT ABOVE */
.loop-element-sec>* {
  position: relative;
  z-index: 1;
}

@keyframes spread-loop {
  0% {
    top: 0;
    left: 0;
    transform: translate(-40%, -40%);
  }

  25% {
    top: 0;
    left: 100%;
    transform: translate(-60%, -40%);
  }

  50% {
    top: 100%;
    left: 100%;
    transform: translate(-60%, -60%);
  }

  75% {
    top: 100%;
    left: 0;
    transform: translate(-40%, -60%);
  }

  100% {
    top: 0;
    left: 0;
    transform: translate(-40%, -40%);
  }
}


.js-arrow-btn svg {
  transition: transform 0.2s ease;
}

.js-arrow-btn:hover svg {
  transform: translateX(4px);
  stroke: #fff;
}

.btn-outline:hover {
  color: #fff;
  box-shadow: 0px 4px 4px 0px #0000004D;
  background-color: #1D9DD4 !important;
}

.btn-gradient {
  padding: 10px 20px;
  background: linear-gradient(95.7deg, #1D1C58 -21.32%, #135D8F 73.3%, #16B9FF 135.01%, #0400FF 263.92%);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  line-height: var(--nav-link-line-height);
  display: inline-block;
  transition: all 0.3s;
}

.btn-gradient:hover {
  background: linear-gradient(96.46deg, #1D1C58 -85.62%, #135D8F -71.4%, #16B9FF -23.8%, #0B0A3B 113.6%);
  box-shadow: 0px 4px 4px 0px #0000004D;
}

h2 {
  font-size: 48px;
  font-family: "Poppins-SemiBold";
  font-weight: 600;
}

.lh-100 {
  line-height: 100%;
}

.lh-110 {
  line-height: 110%;
}

.lh-120 {
  line-height: 120%;
}

.lh-130 {
  line-height: 130%;
}

.lh-140 {
  line-height: 140%;
}

.lh-150 {
  line-height: 150%;
}

.lh-160 {
  line-height: 160%;
}

.lh-170 {
  line-height: 170%;
}

.lh-180 {
  line-height: 180%;
}

.lh-190 {
  line-height: 190%;
}

.lh-200 {
  line-height: 200%;
}

.bg-gradient-sky-light-blue {
  background: linear-gradient(180deg, #E6EAFF 0%, #FFFFFF 100%);
  background-repeat: no-repeat;
}

@media(min-width:620px) {
  .gswp-testimonial .slick-initialized.slick-slider {
    margin-left: calc(-1 * var(--testimonial-slider-bw-space));
    margin-right: calc(-1 * var(--testimonial-slider-bw-space));

  }

  .gswp-testimonial .slick-initialized.slick-slider .slick-slide {
    margin-left: var(--testimonial-slider-bw-space);
    margin-right: var(--testimonial-slider-bw-space);
  }

  .wpicms-services .slick-initialized.slick-slider {
    margin-left: calc(-1 * var(--services-slider-bw-space));
    margin-right: calc(-1 * var(--services-slider-bw-space));

  }

  .wpicms-services .slick-initialized.slick-slider .slick-slide {
    margin-left: var(--services-slider-bw-space);
    margin-right: var(--services-slider-bw-space);
  }

  .wpicms-products .slick-initialized.slick-slider {
    margin-left: calc(-1 * var(--products-slider-bw-space));
    margin-right: calc(-1 * var(--products-slider-bw-space));

  }

  .wpicms-products .slick-initialized.slick-slider .slick-slide {
    margin-left: var(--products-slider-bw-space);
    margin-right: var(--products-slider-bw-space);
  }
}

.team-col-margin-bottom {
  margin-bottom: 30px;
}

.testimonial-col-margin-bottom {
  margin-bottom: 30px;
}

.services-col-margin-bottom {
  margin-bottom: 50px;
}

.products-col-margin-bottom {
  margin-bottom: 30px;
}

.primary-hover:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

.primary-hover:hover svg path {
  fill: #fff;
}

@media (min-width: 1400px) {
  .col-with-padd-top {
    padding-top: 145px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .col-with-padd-top {
    padding-top: 100px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    /* max-width: 1275px; */
    max-width: 1350px;
  }
}

.line-h-normal {
  line-height: normal !important;
}

.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-4 {
  -webkit-line-clamp: 4;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;

}

a {
  text-decoration: none;
}

.common-banner-sec {
  position: relative;
  z-index: +1
}

.common-banner-sec::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #00012880;
  z-index: -1;
}

/* .common-banner-sec .banner-img {
  height: 450px;
  width: 100%;
  object-fit: cover;
} */

.common-banner-content-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.common-banner-sec .banner-title {
  font-size: 50px;
  line-height: 60px;
  color: #fff;
}

.breadcrumb-sec .breadcrumb .breadcrumb-item a {
  color: #1d2130;
}

.breadcrumb-sec .breadcrumb .breadcrumb-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #1d2130;
}

.breadcrumb-sec .breadcrumb .breadcrumb-item.active {
  font-weight: 700;
}

#nav-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}

.headroom--pinned #nav-main {
  display: block;
}

.headroom--unpinned #nav-main {
  display: none;
}

.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}



/* css for common header end here */

@media (max-width:991px) {

  /* css for common start here  */
  .offcanvas-header {
    justify-content: end !important;
  }

  .offcanvas-header .offcanvas-title {
    display: none;
  }

  .offcanvas-header button {
    opacity: 1;
    box-shadow: none !important;
  }

  .header-actions button {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    opacity: 1;
  }

  .header-actions button i {
    font-size: 30px;
    color: var(--bs-black) !important;
  }

  .navbar-collapse ul {
    text-align: center;
    margin-top: 50px;
  }

  .navbar-collapse ul li {
    margin-bottom: 35px;
  }

  /* css for common end here  */
}

header#mastheader.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffffe8;
  z-index: 9999;
}

body.no-scroll {
  overflow-y: hidden;
}

@media (max-width:767px) {

  .job-openings .job-opening {
    padding: 30px 20px !important;
    /* background: #F6F7FA; */
    border-radius: 16px !important;
  }

  .job-openings .job-opening .left-side {
    width: 79%;
  }

  .vc_column_container>.vc_column-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .font-popins-SemiBold-mobile {
    font-family: "Poppins-SemiBold" !important;
    font-weight: 600 !important;
  }

  .lh-160 {
    line-height: normal;
  }

  .sec-padd-b-120 {
    padding-bottom: 70px !important;
  }

  .sec-padd-b-100 {
    padding-bottom: 80px !important;
  }

  #talk-to-us .btn-close,
  #demo .btn-close {
    right: 0 !important;
    top: -38px;
  }

  .footer-container {
    padding: 0 !important;
  }

  .work-flow-tabs .wpb_single_image img {
    /* height: 187px; */
    /* object-fit: cover; */
    /* object-position: center; */
    border-radius: 18.03px !important;
  }

  .work-flow-tabs {
    display: flex;
    flex-direction: column-reverse;
  }

  .common-banner-sec .banner-title {
    font-size: 40px;
  }

  /* .common-banner-sec .banner-img {
    height: 350px;
  } */

  .sec-padd-b-150 {
    padding-bottom: 80px !important;
  }

  .sec-padd-t-150 {
    padding-top: 80px !important;
  }

  .sec-padd-t-60 {
    padding-top: 40px !important;
  }

  .sec-padd-b-60 {
    padding-bottom: 40px !important;
  }

  .sec-padd-t-80 {
    padding-top: 50px !important;
  }

  .sec-padd-b-80 {
    padding-bottom: 50px !important;
  }

  .sec-padd-t-100 {
    padding-top: 60px !important;
  }
}


.row.mar-gutters-15 {
  margin-right: -7.5px;
  margin-left: -7.5px;
}

.row.mar-gutters-15>[class^="col"],
.row.mar-gutters-15>[class^="col-"],
.row.mar-gutters-15>[class*=" col-"] {
  padding-right: 7.5px;
  padding-left: 7.5px;
}

.row.mar-gutters-25 {
  margin-right: -12.5px;
  margin-left: -12.5px;
}

.row.mar-gutters-25>[class^="col"],
.row.mar-gutters-25>[class^="col-"],
.row.mar-gutters-25>[class*=" col-"] {
  padding-right: 12.5px;
  padding-left: 12.5px;
}

.row.mar-gutters-50 {
  margin-right: -25px;
  margin-left: -25px;
}

.row.mar-gutters-50>[class^="col"],
.row.mar-gutters-50>[class^="col-"],
.row.mar-gutters-50>[class*=" col-"] {
  padding-right: 25px;
  padding-left: 25px;
}

.row.mar-gutters-10 {
  margin-right: -10px;
  margin-left: -10px;
}

.row.mar-gutters-10>[class^="col"],
.row.mar-gutters-10>[class^="col-"],
.row.mar-gutters-10>[class*=" col-"] {
  padding-right: 10px;
  padding-left: 10px;
}

.row.undefined {
  margin-right: 0px;
  margin-left: 0px;
}

.row.undefined>[class^="col"],
.row.undefined>[class^="col-"],
.row.undefined>[class*=" col-"] {
  padding-right: 0px;
  padding-left: 0px;
}


.img-full-width,
.img-full-width figure,
.img-full-width .vc_single_image-wrapper,
.img-full-width img {
  width: 100%;
}

/* main css start here */

.large[aria-invalid="true"],
.textarea[aria-invalid="true"] {
  border: 1px solid red !important;
}

/* .large[aria-required="true"] {
      border: 1px solid red !important;
    } */
.large::placeholder,
.textarea::placeholder {
  color: #393939 !important;
}

.large::-moz-placeholder {
  color: #393939 !important;
}

/* Internet Explorer 10-11 */
.large:-ms-input-placeholder {
  color: #393939 !important;
}

/* Microsoft Edge */
.large::-ms-input-placeholder {
  color: #393939 !important;
}

/* WebKit browsers (Safari, Chrome) */
.large::-webkit-input-placeholder {
  color: #393939 !important;
}

.middle-img-col .img-full-width,
.middle-img-col .img-full-width figure,
.middle-img-col .img-full-width .vc_single_image-wrapper,
.middle-img-col .img-full-width img {
  width: 100%;
  height: 100% !important;
}

/* header */

@media (max-width: 991px) {
  #mastheader .navbar-collapse {
    position: absolute;
    top: 132%;
    width: 100vw;
    height: 100vh;
    background: var(--header-navbar-collapse-bg);
    z-index: 99;
    padding-bottom: 80px;
    left: 50%;
    margin-left: -50vw;

    /* Initial hidden state */
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  #mastheader .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

header .navbar-nav {
  align-items: center;
}

.navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  /* dropdown sub menu positioning */
  margin: 0;
  left: 100%;
}


.dropdown .dropdown-submenu {
  top: 0;
  left: 100%;
  margin-left: 0.125rem;
}


.nav-item a {
  /* ensure No flashing in links */
  transition: none !important;
}

/* .navbar-nav li:hover>ul.dropdown-menu {

  display: block;
} */

@media (min-width: 992px) {
  /* ONLY DESKTOP - Convert toggle to right > in deeper levels */

  .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu.depth_3 {
    left: unset;
    right: 100%;
  }
}

@media (max-width: 991.98px) {

  /* Smaller devices remove shadow & border from children */
  .offcanvas .dropdown-menu {
    border: none;
    box-shadow: none;
  }

  /* Smaller devices offcanvas, add indent */
  .depth_1 .dropdown-item {
    margin-left: 10px;
  }

  .depth_2 .dropdown-item {
    margin-left: 15px;
  }

  .depth_3 .dropdown-item {
    margin-left: 20px;
  }
}

.navbar-layout-1 #gswptheme-navbar .menu-item.current-menu-item::after {
  top: 0 !important;
}

/* footer */
footer {
  /* background-color: #111D15; */
  background: linear-gradient(95.85deg, #050C21 12.79%, #0A1C57 96.17%);
  padding: 50px 0px 40px 0px;
  position: relative;
}

footer .bottom-sec {
  border-top: 1px solid var(--primary);
  padding-top: 20px;
  margin-top: 40px;
}

footer .gswptheme-footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

footer .gswptheme-footer ul a {
  font-size: 16px;
  line-height: 20px;
  font-family: "Poppins-regular";
  color: #fff;
  display: inline-block;
  padding-bottom: 12px;
}

footer .gswptheme-footer h2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}

footer .gswptheme-footer ul a:hover {
  color: var(--primary) !important;
}

footer ul.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

footer .footer_widget {
  margin: 0 !important;
}

footer .footer_widget ul.social-media-list i {
  font-size: 26px;
}

ul.social-media-list {
  display: flex;
  gap: 20px;
  font-size: 20px;
  margin: 0;
}

.pruduct-banner {
  padding-bottom: 250px !important;
}

ul#footer-menu {
  padding: 0px 150px 25px 150px;
  /* border-top: 1px solid; */
  /* border-bottom: 2px solid #D6D6F2;
  justify-content: space-between; */
  /* margin-bottom: 50px; */
}

.row-with-button {
  padding: 46px 50px;
  background: #ffffff;
  box-shadow: 0px 11px 54px 0px #0000001A;
  border-radius: 50px;
  min-height: 161px;
}

.btn-blue {
  padding: 20px;
  background: #3B82F6;
  border-radius: 56px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 15px;
  /* font-style: unset; */
  align-items: center;
}

.btn-blue i {
  font-size: 14px;
}

@media(max-width:767px) {
  .home-banner-outer .vc_column-inner {
    padding: 0px !important;
  }

  h2 {
    font-size: 28px;
  }

  .first-row {
    gap: 20px 0px;
  }

  #privacy-policy {
    justify-content: space-between;
  }

  .row-with-button {
    padding: 40px 20px;
    border-radius: 16px;
  }

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

  .footer-top .col-grp-mobile {
    display: flex;
  }

  .footer-top .col-grp-mobile p {
    flex: 0 0 15%
  }

  .footer-top .col-grp-mobile p:empty {
    display: none;
  }
}

@media (max-width: 768px) {

  footer .pri-terms {
    /* justify-content: space-between; */
    margin-top: 20px !important;
    /* flex-direction: column; */
    justify-content: center;
    text-align: center;
    gap: 15px;
  }

  ul#footer-menu {
    margin-bottom: 40px;
    padding: 0px 10px 25px 10px;
    gap: 15px;
    justify-content: center;
  }

  ul.social-media-list {
    gap: 30px;
    justify-content: center;
  }


}

.customer-manger-middle-row .middle-cal .wpb_wrapper {
  padding: 40px 36px;
  border: 1px solid #E4E7EC;
  border-radius: 40px;
  height: 100%;
}

.customer-manger-middle-row .middle-cal .wpb_wrapper .wpb_wrapper {
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  height: auto !important;
}

/* .customer-manger-middle-row .middle-cal .wpb_wrapper */


.work-flow-tabs .vc_tta-panels {
  background: transparent !important;
  border: none !important;
}

.work-flow-tabs .vc_tta-panel-body {
  padding: 0 !important;
}

.work-flow-tabs ul.vc_tta-tabs-list a {
  padding: 12px 20px !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 30px !important;
  color: #000000 !important;
  position: relative;
  font-size: 18px !important;
  font-family: "Poppins-Medium" !important;
  text-align: center;
}

.work-flow-tabs .vc_tta-tabs-list {
  display: flex !important;
  padding-bottom: 30px !important;
  gap: 30px;
  justify-content: center;
}

.work-flow-tabs ul.vc_tta-tabs-list a:after {
  content: '';
  position: absolute;
  top: unset !important;
  bottom: -10px !important;
  transform: translatex(-50%);
  width: 0 !important;
  height: 0 !important;
  border-left: 10px solid transparent !important;
  border-right: 10px solid transparent !important;
  border-top: 11px solid transparent !important;
  left: 50% !important;
}

.work-flow-tabs ul.vc_tta-tabs-list .vc_tta-tab.vc_active a,
.work-flow-tabs .vc_tta-panel.vc_active .vc_tta-panel-title a {
  background-color: #4f535b !important;
  color: #fff !important;
}

.work-flow-tabs ul.vc_tta-tabs-list .vc_tta-tab.vc_active a:after {
  border-top: 11px solid #4f535b !important;

}

.work-flow-tabs .wpb_single_image img {
  border-radius: 30px;
}

.blog-detail .the-content h2,
.blog-detail .the-content h3 {
  font-family: "Poppins-Medium" !important;
  font-weight: 500 !important;
  font-size: 28px !important;
  margin-bottom: 30px;
}

.blog-detail .the-content h3 b {
  font-family: "Poppins-Medium" !important;
  font-weight: 500 !important;
}

.blog-detail .the-content p {
  line-height: 160%;
}

.blog-detail h1 {
  font-family: "Poppins-SemiBold" !important;
  font-weight: 600 !important;
  text-align: center;
  margin-bottom: 20px !important;
  font-size: 36px !important;
}

.single-post #mastheader .menu-section {
  padding: 10px 0 !important;
}

.blog-detail b,
.blog-detail strong {
  font-weight: 600 !important;
}

#demo .modal-body {
  padding: 40px 20px;
}

#talk-to-us .btn-close,
#demo .btn-close {
  background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.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") !important;
  position: absolute;
  right: -27px;
  top: -36px;
  opacity: 1 !important;
}

#gform_3 .large {
  height: 50px !important;
  font-size: 16px;
}

#gform_fields_3 {
  gap: 20px;
}

#gform_3 #gform_submit_button_3 {
  width: 100%;
  padding: 16px 10px;
  font-size: 18px;
  color: #fff !important;
  font-family: "Poppins-SemiBold" !important;
  font-weight: 600 !important;
  background: #000000;
}

#talk-to-us,
#demo {
  background: #000000b3;
  z-index: 999999;
}

.gform_validation_errors,
.validation_message {
  display: none !important;
}

div#gform_wrapper_1 textarea.large {
  min-block-size: 8rem;
  padding: 20px 20px !important;
}

div#gform_wrapper_1 {
  padding: 50px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #E4E7EC;
}

div#gform_fields_1 {
  gap: 20px;
}

div#gform_wrapper_1 .large[aria-invalid="true"],
div#gform_wrapper_1 .textarea[aria-invalid="true"] {
  border: 1px solid red !important;
}

div#gform_wrapper_1 .large {
  padding: 24px 20px !important;
  box-shadow: none !important;
  border-radius: 16px;
  border: 1px solid #E4E7EC !important;
  font-size: 16px;
  border: 1px
}

input#gform_submit_button_1 {
  width: 100%;
  padding: 18px 20px;
  background: #000000;
  font-size: 16px;
  border-radius: 16px;
  background-position: 70% 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3c!--!Font Awesome Free 6.7.2 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3e%3cpath d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z' fill='%23ffffff'/%3e%3c/svg%3e") !important;
}

#gform_wrapper_1 .large::placeholder,
#gform_wrapper_1 .textarea::placeholder {
  color: #8d8d8d !important;
}

#gform_wrapper_1 .large::-moz-placeholder {
  color: #8d8d8d !important;
}

/* Internet Explorer 10-11 */
#gform_wrapper_1 .large:-ms-input-placeholder {
  color: #8d8d8d !important;
}

/* Microsoft Edge */
#gform_wrapper_1 .large::-ms-input-placeholder {
  color: #8d8d8d !important;
}

/* WebKit browsers (Safari, Chrome) */
#gform_wrapper_1 .large::-webkit-input-placeholder {
  color: #8d8d8d !important;
}

.left-col .vc_column-inner>.wpb_wrapper {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.left-col .number-grp {
  width: 100%;
  margin-top: auto;
}

.left-col .number-grp .wpb_wrapper {
  display: flex;
  width: auto !important;
  justify-content: space-between;
  padding: 30px 50px;
  border: 1px solid #E4E7EC;
  border-radius: 50px;
}

.work-flow-tabs .vc_tta-panel.vc_active {
  /* border: 1px solid #ccc; */
  /* padding: 20px; */
  /* border-radius: 20px; */
}

/* .work-flow-tabs .vc_tta.vc_tta-style-classic.vc_tta-tabs.vc_tta-panel.vc_active {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 20px;
} */
@media (max-width: 767px) {

  ul#footer-menu a {
    padding: 0;
  }

  .pruduct-banner {
    padding-bottom: 80px !important;
  }

  .copy-right-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }

  .work-flow-tabs button.slick-arrow {
    position: absolute;
    top: 14%;
    font-size: 0px;
    background: transparent;
    /* transform: translateY(-50%); */
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    color: #000;
  }

  .work-flow-tabs button.slick-prev {
    left: 0px;
  }

  .work-flow-tabs button.slick-next {
    right: 0px;
  }

  .work-flow-tabs button.slick-arrow::after {
    font-size: 24px;
  }

  .work-flow-tabs button.slick-prev::after {
    content: "\f053";
  }

  .work-flow-tabs button.slick-next::after {
    content: "\f054";
  }

  .work-flow-tabs button.slick-arrow.slick-disabled {
    color: var(--black-50);
  }

  .work-flow-tabs .work-flow-tabs .vc_tta-panel.vc_active {
    border: unset;
    padding: 0;
    border-radius: 0;
  }

  .work-flow-tabs ul.vc_tta-tabs-list a:after {
    display: none !important;
  }

  .work-flow-tabs .vc_tta-tab {
    margin: 1px 0 0px 1px !important;
  }

  .work-flow-tabs ul.vc_tta-tabs-list a:after {
    border-top: 12px solid #4f535b !important;

  }

  .work-flow-tabs ul.vc_tta-tabs-list a {
    background-color: transparent !important;
    color: #202B37 !important;
    font-size: 18px !important;
  }

  .work-flow-tabs ul.vc_tta-tabs-list .vc_tta-tab.vc_active a,
  .work-flow-tabs .vc_tta-panel.vc_active .vc_tta-panel-title a {
    background-color: transparent !important;
    color: #202B37 !important;
  }

  .work-flow-tabs .vc_tta-panel-heading {
    display: none !important;
  }

  .work-flow-tabs .vc_tta-tabs-container {
    display: block !important;
    /* padding-inline: 35px; */
  }

  .work-flow-tabs .vc_tta-tabs-list {
    /* display: unset !important; */
    display: inherit !important;
    padding-inline: 35px !important;
  }

  .work-flow-tabs .vc_tta-panel-title a {
    padding: 15px 10px !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    color: #000000 !important;
    position: relative;
    font-size: 18px !important;
    font-family: "Poppins-Medium" !important;
    text-align: left;
  }

  .work-flow-tabs .wpb_content_element {
    padding: 20px;
    line-height: 24px;
  }

  .work-flow-tabs .wpb_single_image {
    padding: 0px !important;
  }

  .work-flow-tabs .wpb_text_column.wpb_content_element ul {
    padding-left: 1rem;
    /* line-height: 3; */
  }

  .work-flow-tabs .wpb_text_column.wpb_content_element ul li {
    margin-bottom: 12px;
  }

  .work-flow-tabs .vc_tta-panel {
    margin-bottom: 20px !important;
  }

  .blog-detail h1 {
    text-align: left;
    font-size: 28px !important;
  }

  .blog-detail .the-content h2,
  .blog-detail .the-content h3 {
    font-size: 22px !important;
    margin-bottom: 30px;
  }

  .left-col .number-grp .wpb_wrapper {
    padding: 30px 20px;
    border-radius: 16px;
    flex-direction: column;
    gap: 30px;
  }

  div#gform_wrapper_1 {
    padding: 40px 20px;
    border-radius: 16px;
  }

  input#gform_submit_button_1 {
    background-position: 77% 50%;
  }
}

@media(min-width:768px) and (max-width:1023px) {
  .pruduct-banner {
    padding-bottom: 150px !important;
  }

  .sec-padd-b-150 {
    padding-bottom: 100px !important;
  }

  .sec-padd-t-150 {
    padding-top: 100px !important;
  }

  .sec-padd-b-100 {
    padding-bottom: 80px !important;
  }

  .sec-padd-t-100 {
    padding-top: 80px !important;
  }

  .sec-padd-b-80 {
    padding-bottom: 60px !important;
  }

  .sec-padd-t-80 {
    padding-top: 60px !important;
  }

  input#gform_submit_button_1 {
    background-position: 75% 50%;
  }

  div#gform_wrapper_1 {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .left-col .number-grp .wpb_wrapper {
    padding: 30px 17px;
    border-radius: 20px;
  }

  .left-col .number-grp .wpb_wrapper .fs-16 {
    font-size: 12px !important;
  }
  .organization-inner-row .eq-col .vc_column-inner > .wpb_wrapper{
        padding: 20px 10px;
  }
  .before-after-inner-row .vc_column_container .vc_column-inner>.wpb_wrapper{
        padding: 40px 22px !important;
  }
  .before-after-inner-row .vc_column_container:first-child .vc_column-inner>.wpb_wrapper::after {
    right: -35px !important;
}
.before-after-inner-row .vc_column_container:last-child .vc_column-inner>.wpb_wrapper::after {
    left: -35px !important;
}
.before-after-inner-row .vc_column_container .vc_column-inner>.wpb_wrapper .vc_custom_heading {
    font-size: 18px !important;
}
  h2 {
    font-size: 40px;
}
}

@media (min-width: 768px) and (max-width: 1023px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .function-impact-inner .content-block.inactive {
    flex: 0 0 calc(100%) !important;
  }

  .function-impact-inner .content-block.active {
    flex: 0 0 calc(100%) !important;
  }

  .function-impact-inner {
    justify-content: center;
  }

  .function-impact-inner .content-block .block-image {
    display: flex !important;
    flex: 0 0 52%;
    justify-content: end;
  }

  .function-impact-inner .content-block .block-header {
    display: unset !important;
    height: unset !important;
    margin-bottom: 35px;
  }

  .function-impact-inner .block-content {
    height: auto !important;
    overflow: visible !important;
  }
}

@media (min-width:768px) and (max-width: 1199px) {
  .work-flow-tabs .vc_tta-tabs-list {
    gap: 8px !important;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width:1024px) and (max-width: 1199px) {
  .work-flow-tabs .wpb_single_image img {
    border-radius: 30px;
    height: 300px;
    object-fit: contain;
  }
}

@media (min-width:1200px) and (max-width: 1400px) {
  .work-flow-tabs .wpb_single_image img {
    border-radius: 30px;
    height: 400px;
    object-fit: contain;
  }
}

@media (min-width:1024px) and (max-width: 1199px) {
  .function-impact-inner .block-body {
    padding: 20px !important;
  }

  .function-impact-inner .content-block {
    max-height: unset !important;
    border-radius: 30px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .left-col .number-grp .wpb_wrapper {
    padding: 25px 30px;
    border-radius: 30px;
  }

  .sec-padd-b-150 {
    padding-bottom: 130px !important;
  }

  .sec-padd-t-150 {
    padding-top: 130px !important;
  }

  .sec-padd-b-100 {
    padding-bottom: 90px !important;
  }

  .sec-padd-t-100 {
    padding-top: 90px !important;
  }

  .sec-padd-b-80 {
    padding-bottom: 70px !important;
  }

  .sec-padd-t-80 {
    padding-top: 70px !important;
  }
}

.function-impact-inner {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.function-impact-inner .content-block {
  background: white;
  border-radius: 50px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: all 0.3s ease;
  max-height: 348px;
  flex: 0 0 calc(33.333% - 13.33px);
  /* Default: 3 in a row */
}

/* Active block takes 50% */
.function-impact-inner .content-block.active {
  flex: 0 0 calc(50% - 10px);
}

/* Inactive blocks in same row take 25% */
.function-impact-inner .content-block.inactive {
  flex: 0 0 calc(25% - 10px);
}

.function-impact-inner .block-body {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.function-impact-inner .content-block.active .block-body {
  flex: 0 0 48%;
}

.function-impact-inner .block-header {
  margin-bottom: 35px;
}

.function-impact-inner .block-number {
  font-size: 29px;
  color: #1D1C58;
  line-height: 140%;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: #EDF0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}


.function-impact-inner .block-title {
  font-size: 22px;
  color: #202B37;
  line-height: 140%;
  font-family: "Poppins-Medium";
}

.function-impact-inner .block-content {
  font-size: 14px;
  color: #637083;
  line-height: 140%;
  font-family: "Poppins-Medium";
}

.function-impact-inner .block-content {
  height: 0px;
  display: inline-flex;
  overflow: hidden;
  transition: all;
}

.function-impact-inner .block-header {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.function-impact-inner .content-block.active .block-header {
  display: unset;
  height: unset;
  margin-bottom: 35px;
}

.function-impact-inner .content-block.active .block-content {
  height: auto;
  overflow: visible;
}

.function-impact-inner .block-image {
  /* background-color: #e0e7ff; */
  /* color: #2563eb;
    font-weight: bold; */
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.function-impact-inner .block-image img {
  /* width: 100%; */
  max-width: 100%;
  height: 100%;
}

.function-impact-inner .content-block.active .block-image {
  display: flex;
  flex: 0 0 52%;
  justify-content: end;
}

/* .product-card-img img{
    border: 1px solid #CED2DA;
    border-radius: 60px;
  } */
@media (min-width: 1024px) and (max-width: 1400px) {
  .function-impact-inner .content-block {
    max-height: 380px;
  }
}

@media (max-width: 767px) {

  .function-impact-inner .content-block,
  .function-impact-inner .content-block.active,
  .function-impact-inner .content-block.inactive {
    flex: 0 0 100% !important;
    flex-direction: column;
    height: auto;
    border-radius: 30px !important;
    max-height: unset !important;
  }

  .function-impact-inner .block-body {
    padding: 40px 20px !important;
  }

  .function-impact-inner .block-image {
    overflow: visible;
    max-height: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
    display: none !important;
  }

  .content-block.active .block-image {
    max-height: 500px;
    /* set this based on expected image size */
    opacity: 1;
  }

  .function-impact-inner .block-content {
    height: auto !important;
    overflow: visible !important;
  }

  .function-impact-inner .content-block .block-header {
    margin-bottom: 10px;

  }

  .function-impact-inner .block-number {
    font-size: 20px;
    width: max-content;
    height: 40px;
    padding: 6px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
  }

  .function-impact-inner .content-block.active .block-body {
    flex: unset;
  }

  .function-impact-inner {
    gap: 29px;
  }

  .function-impact-inner .block-title {
    font-size: 20px;
  }

  .current-opening-details ul li,
  .current-opening-details ol li {
    font-size: 14px !important;
    line-height: normal !important;
  }

  #gform_wrapper_2 {
    padding: 30px 20px !important;
    border-radius: 16px !important;
  }

  .padd-mobile-container {
    padding: 0 24px;
  }

  input#gform_submit_button_2 {
    background-position: 70% 50% !important;
    background-repeat: no-repeat;
    background-size: 12px !important;
  }
}

/* detail page */
.career-section {
  /* background-color: #faf9f9; */
  padding: 0 0 40px 0;

}

.career-section h2 {
  margin-bottom: 30px;
}

#gform_2 .large {
  min-height: 50px;
  border-radius: 18px;
  border: 1px solid #E4E7EC;
  box-shadow: none !important;
  color: #000000;
  font-size: 16px;
  padding: 0 20px;
}

#gform_2 input#input_2_6 {
  padding: 0 !important;
}

.job-openings .job-opening {
  padding: 30px;
  background: #F6F7FA;
  border-radius: 30px;
}

.job-openings .job-opening:last-child {
  margin-bottom: 0px !important;
}

div#gform_wrapper_2 {
  border: 1px solid #E4E7EC;
  border-radius: 50px;
  background: #fff;
  padding: 50px;
}

div#gform_wrapper_2 .validation_message {
  display: none !important;
}

div#gform_wrapper_2 .large::placeholder,
div#gform_wrapper_2 .textarea::placeholder {
  color: #000000 !important;
}

div#gform_wrapper_2 .large::-moz-placeholder {
  color: #000000 !important;
}

/* Internet Explorer 10-11 */
div#gform_wrapper_2 .large:-ms-input-placeholder {
  color: #000000 !important;
}

/* Microsoft Edge */
div#gform_wrapper_2 .large::-ms-input-placeholder {
  color: #000000 !important;
}

/* WebKit browsers (Safari, Chrome) */
div#gform_wrapper_2 .large::-webkit-input-placeholder {
  color: #000000 !important;
}

input#gform_submit_button_2 {
  width: 100%;
  font-size: 18px;
  background-color: black;
  border: none !important;
  padding-block: 15px;
  border-radius: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3c!--!Font Awesome Free 6.7.2 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3e%3cpath d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z' fill='%23ffffff'/%3e%3c/svg%3e");
  background-position: 64% 50%;
  background-repeat: no-repeat;
  background-size: 14px;
}

div#gform_fields_2 {
  gap: 20px;
}

.current-opening-details ul,
.current-opening-details ol {
  padding-left: 18px !important;
}

.current-opening-details .col-md-9 {
  line-height: 28px;
}

.current-opening-details ul li,
.current-opening-details ol li,
.current-opening-details p {
  font-family: "Poppins-Regular" !important;
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: left;
  color: #242331;
}

.current-opening-details b,
.current-opening-details strong {
  font-family: "Poppins-Regular" !important;
  font-weight: 400 !important;
  color: #242331 !important;
}

.current-opening-details .col-md-3 p {
  font-family: "Poppins-SemiBold" !important;
  font-weight: 600 !important;
}

/* end */

/* pricing */
.pricing-row .pricing-user .on-hover-info {
  display: none;
  position: absolute;
  top: 125px;
  background-color: white;
  z-index: 1100;
  box-shadow: 0px 2px 6px 0px #0000001F;
  padding: 12px;
  border-radius: 6px;
  width: 320px;
}

.pricing-row .pricing-user .on-hover-info::after {
  position: absolute;
  content: '';
  top: -7px;
  left: 16px;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  background-color: white;
  box-shadow: -4px -3px 5px #00000017;
}

.pricing-row .pricing-user .icon-with-content .img-box {
  background-color: #EFF5FF;
  width: 74px;
  height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.pricing-row .pricing-user {
  background-color: white;
  padding: 18px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  width: 90%;
}

.pricing-row .pricing-user::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  background-image: url('https://www.impactcraft.ai/wp-content/uploads/pricing-check.svg');
  background-repeat: no-repeat;
  background-size: 28px;
  width: 100%;
  height: 100%;
  background-position: top right;
}

.pricing-row {
  gap: 40px;
  position: relative;
  z-index: 999;
}

.pricing-row .pricing-user .icon-with-content h2 {
  text-align: left !important;
}

.pricing-row .pricing-user:hover .on-hover-info {
  display: block;
}

.account-col>.vc_column-inner>.wpb_wrapper {
  border: 1px solid rgba(228, 231, 236, 1);
  border-radius: 50px;
  padding: 46px 40px;
  margin-top: 32px;
  height: 100%;
}

.account-col>.vc_column-inner>.wpb_wrapper p {
  color: rgba(99, 112, 131, 1);
}

@media(max-width: 640px) {
  .pricing-row .pricing-user {
    width: 100%;
    box-shadow: 0px 2px 6px 0px #0000001F;
  }

  .pricing-row .pricing-user .on-hover-info {
    display: block;
    top: 130px;
    width: 100%;
    left: 0;
  }

  .pricing-row {
    gap: 120px;
    margin-bottom: 130px;
  }

  .account-col>.vc_column-inner>.wpb_wrapper {
    padding: 38px 28px;
    margin-bottom: 32px;
    margin-top: 16px;
  }
}

@media(min-width: 2500px) {
  .introduction-video {
    max-height: unset !important;
  }
}

.before-after-inner-row .vc_column_container:first-child .vc_column-inner>.wpb_wrapper {
  box-shadow: 6px 6px 0px 0px #C6DCEE;
  background: #E9F5FF;
}

.before-after-inner-row .vc_column_container:last-child .vc_column-inner>.wpb_wrapper {
  box-shadow: 6px 6px 0px 0px #000B15;
  background: linear-gradient(98.56deg, #51B1FF 6.93%, #003B6B 99.82%);
  justify-content: end;
}

.before-after-inner-row .vc_column_container:first-child .vc_column-inner>.wpb_wrapper .vc_custom_heading {
  margin-left: 15px;
}

.before-after-inner-row .vc_column_container:last-child .vc_column-inner>.wpb_wrapper .vc_custom_heading {
  margin-right: 15px;
  color: #ffffff !important;
  text-align: right !important;
}

.before-after-inner-row .vc_column_container .vc_column-inner>.wpb_wrapper .vc_custom_heading {
  flex-grow: 1;
  margin: 0;
  line-height: normal;
}

.before-after-inner-row .vc_column_container .vc_column-inner>.wpb_wrapper .wpb_single_image {
  flex-shrink: 0;
  max-width: 50px;
}

.before-after-inner-row {
  margin-bottom: 60px;
}

.before-after-inner-row:last-child {
  margin-bottom: 0px !important;
}

.before-after-inner-row .vc_column_container .vc_column-inner>.wpb_wrapper {
  padding: 46px 30px;
  border-radius: 10px;
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
}

.before-after-inner-row .vc_column_container:first-child .vc_column-inner>.wpb_wrapper {
  margin-right: 20px;
}

.before-after-inner-row .vc_column_container:last-child .vc_column-inner>.wpb_wrapper {
  margin-left: 20px;

}

.before-after-inner-row .vc_column_container:first-child .vc_column-inner>.wpb_wrapper::after {
  right: -20px;
  transform: rotate(180deg);
}

.before-after-inner-row .vc_column_container:last-child .vc_column-inner>.wpb_wrapper::after {
  left: -20px;
}

.before-after-inner-row .vc_column_container .vc_column-inner>.wpb_wrapper::after {
  content: '';
  width: 55px;
  height: 58px;
  position: absolute;
  background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='57' height='64' viewBox='0 0 57 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url(%23filter0_d_580_2657)'%3e%3cpath d='M50.5 25.194C53.8333 27.1185 53.8333 31.9298 50.5 33.8543L11.5 56.371C8.16666 58.2955 4 55.8898 4 52.0408L4 7.0075C4 3.1585 8.16666 0.752879 11.5 2.67738L50.5 25.194Z' fill='url(%23paint0_radial_580_2657)'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_d_580_2657' x='0' y='0' width='57' height='63.0481' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='2'/%3e%3cfeGaussianBlur stdDeviation='2'/%3e%3cfeComposite in2='hardAlpha' operator='out'/%3e%3cfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3e%3cfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_580_2657'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_580_2657' result='shape'/%3e%3c/filter%3e%3cradialGradient id='paint0_radial_580_2657' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(46 28.4333) rotate(-179.356) scale(48.5485)'%3e%3cstop stop-color='%23008CFF'/%3e%3cstop offset='0.924253' stop-color='%2301192C'/%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e ");
  background-repeat: no-repeat;
}

@media(max-width: 767px) {
  .before-after-inner-row .vc_column_container:first-child .vc_column-inner>.wpb_wrapper {
    margin-right: 0px !important;
    margin-bottom: 30px;
  }

  .before-after-inner-row .vc_column_container:last-child .vc_column-inner>.wpb_wrapper {
    margin-left: 0px !important;
    margin-top: 30px;
  }

  .before-after-inner-row .vc_column_container .vc_column-inner>.wpb_wrapper {
    padding: 25px 15px;
  }

  .before-after-inner-row .vc_column_container:first-child .vc_column-inner>.wpb_wrapper::after {
    transform: rotate(331deg);
    right: unset;
    bottom: -52px;
    left: 50%;
    /* transform: translateX(-50%); */
    translate: -50%;
    width: 49px;
    background-size: contain;
  }

  .before-after-inner-row .vc_column_container:last-child .vc_column-inner>.wpb_wrapper::after {
    display: none;
  }

  .before-after-inner-row .vc_column_container .vc_column-inner>.wpb_wrapper .wpb_single_image {
    max-width: 40px;
  }
}

.flow-step {
  position: relative;
  min-height: 220px;
}

.flow-step>.vc_column.vc_col-sm-2 {
  position: relative;
}

.flow-step>.vc_column.vc_col-sm-2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom,
      #bbb 0,
      #bbb 4px,
      transparent 4px,
      transparent 8px);
}

.flow-step>.vc_column.vc_col-sm-5 {
  position: relative;
}

.flow-step:first-child .vc_column_container:first-child .vc_column-inner>.wpb_wrapper {
  padding: 40px 20px;
  border: 1px solid #0000001A;
  border-radius: 20px;
  box-shadow:
    0px 4px 10px 0px rgba(0, 0, 0, 0.25),
    inset 2px 2px 4px 0px rgba(0, 0, 0, 0.1);

}

.flow-step>.vc_column.vc_col-sm-5:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  right: -20px;
  width: 20px;
  border-top: 2px dotted #bbb;
}

.flow-step>.vc_column.vc_col-sm-5:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  left: -20px;
  width: 20px;
  border-top: 2px dotted #bbb;
}

.flow-step::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #6b7280;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.flow-step:nth-of-type(odd)::before {
  left: calc(50% - 20px);
}

.flow-step:nth-of-type(even)::before {
  left: calc(50% + 20px);
}

#intelligence-tabs-sec li.vc_tta-tab a strong,
#intelligence-tabs-sec .vc_tta-panel-title a strong {
  display: block;
  font-size: 20px;
  line-height: 137%;
  margin-bottom: 0px;
  font-weight: 400;
}

#intelligence-tabs-sec li.vc_tta-tab a,
#intelligence-tabs-sec .vc_tta-panel-title a {
  border-radius: 10px !important;
  background: transparent;
  border: 1px solid #00000033;
  font-size: 14px;
  color: #09184A;
  padding: 10px;
}

#intelligence-tabs-sec li.vc_tta-tab.vc_active a,
#intelligence-tabs-sec .vc_tta-panel.vc_active .vc_tta-panel-title a {
  background: #09184A;
  color: #fff;
}

#intelligence-tabs-sec li.vc_tta-tab.vc_active a strong,
#intelligence-tabs-sec .vc_tta-panel.vc_active .vc_tta-panel-title a strong {
  font-weight: 700;
}

#intelligence-tabs-sec .vc_tta-panel-body {
  padding-top: 50px !important;
}

#intelligence-tabs-sec .vc_tta-panel-body ul li {
  margin-bottom: 10px;
}

#intelligence-tabs-sec .vc_tta-panel-body ul li strong,
#intelligence-tabs-sec .vc_tta-panel-title a strong {
  display: block;
}

#intelligence-tabs-sec .vc_tta-panel-body .vc_col-sm-6 {
  padding: 0px 30px;
}

#intelligence-tabs-sec .vc_tta-panel-body .left-col {
  border-right: 1px solid #00000080;
}

#intelligence-tabs-sec .vc_tta-panel-body ul {
  padding-left: 1rem;
}

@media(max-width: 767px) {
  #intelligence-tabs-sec .vc_tta-panel-body .vc_col-sm-6 .vc_column-inner {
    padding-inline: 0px !important;
  }

  #intelligence-tabs-sec .vc_tta-panel-body {
    padding-top: 40px !important;
    background: #E9F5FF;
  }

  #intelligence-tabs-sec .vc_tta-panel-heading {
    margin-bottom: 0px;
  }

  #intelligence-tabs-sec .vc_tta-panel-title a strong {
    margin-bottom: 10px;
  }

  #intelligence-tabs-sec .vc_tta-panel-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #intelligence-tabs-sec .vc_tta-panel-title a::after {
    content: '';
    width: 30px;
    height: 20px;
    transition: all 0.3s;
    /* background: red; */
    display: block;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3c!--!Font Awesome Pro v5.15.4 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3e%3cpath d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
  }
   #intelligence-tabs-sec .vc_tta-panel.vc_active .vc_tta-panel-title a::after{
  transform: rotate(180deg);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3c!--!Font Awesome Pro v5.15.4 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3e%3cpath fill='%23ffff' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3e%3c/svg%3e") !important;
  }
  .vc_tta.vc_tta-spacing-5 .vc_tta-panel.vc_active+.vc_tta-panel .vc_tta-panel-heading, .vc_tta.vc_tta-spacing-5 .vc_tta-panel:not(:first-child) .vc_tta-panel-heading {
    margin-top: 20px !important;
}
   #intelligence-tabs-sec .vc_tta-panel-heading{
         border-color: unset !important;
        background-color: unset !important;
        border: none;
   }
}

/* end */