@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;family=Rajdhani:wght@300;400;500;600;700&amp;display=swap");

html body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body{
  scroll-behavior: smooth;
}
html a {
  text-decoration: none;
}
:root {
  --color-logo-blue: #1543c7;
  --color-logo-purple: #8c52ff;
  --color-primary: #384bff;
  --color-primary: #384bff;
  --color-darkBlue: #18185e;
  --color-white: #ffffff;
  --color-LightBlue: #f2f3ff;
  --bg-blacklight: #373737;
  --color-yellow: #ffc107;
}
.bgLightBlue{
  background-color: var(--color-LightBlue);
}
.bgdarkBlue{
  background-color: var(--color-darkBlue);
}
.purpleText{
  color: var(--color-logo-purple);
}
.bgYellow{
  background-color: var(--color-yellow);
}
.blueText{
  color: var(--color-primary);
}
.logo-color-blue {
  color: var(--color-logo-blue);
}
.logo-color-purple {
  color: var(--color-logo-purple);
}
.color-primary {
  color: var(--color-primary);
}
.color-white {
  color: var(--color-white);
}
.bgwhite {
  background-color: var(--color-white);
}
.bgprimary {
  background-color: var(--color-primary);
}
.bgblacklight {
  background-color: var(--bg-blacklight);
}
.bgPurple {
  background-color: var(--color-logo-purple);
}
/* Heading */
.sectionHeading {
  font-size: 38px;
  font-weight: 700;
  text-transform: capitalize;
}
.sectionSubheading {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
}
.sectionSubheading_Wr {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
/* Heading */
/* Font Size */
.f-12 {
  font-size: 12px !important;
}
.f-20 {
  font-size: 20px;
}
.f-40 {
  font-size: 40px;
}
/* Font Size */

/* Spacing */
.sectionSpacing {
  padding-top: 60px;
  padding-bottom: 60px;
}
.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.py-60-100 {
  padding-top: 60px;
  padding-bottom: 100px;
}
.py-50-60 {
  padding-top: 50px;
  padding-bottom:60px;
}
/* Spacing */

/* Btns */

html .getQuoteBtn {
  background-color: #38383b;
  font-weight: 300;
  padding: 10px 12px;
  color: #e0e0e0;
  font-size: 14px;
  min-width: 150px;
  display: flex;
  align-items: center;
}
html .getQuoteBtn:hover {
  /* background-color: #0101dd; */
  color: var(--color-white);
  background: linear-gradient(90deg, rgba(39, 42, 187, 1) 50%, rgba(106, 85, 213, 1) 100%);
  transition: all .3s;
}
html .whiteBtn {
  padding: 10px 20px;
  background-color: #ffff;
}
html .whiteBtn a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}



.commonaAnimationBtn.gt-btn{
  background: var(--color-white);
  color: #000000;
  min-width: 230px;
}
.commonaAnimationBtn.gt-btn:hover{
  color: var(--color-white);
}
.commonaAnimationBtn.gt-btn:hover svg path{
  fill: var(--color-white);
}
.commonaAnimationBtn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background: var(--color-primarye);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 28px;
  min-width: 160px;
  cursor: pointer;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.commonaAnimationBtn::before {
  content: "";
  background-color: var(--color-primary);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.commonaAnimationBtn::after {
  content: "";
  background-color: var(--color-primary);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.commonaAnimationBtn:hover::before,
.commonaAnimationBtn:hover::after {
  background-color: #000000;
  width: 100%;
}

.commonaAnimationBtn.blue-purpleBtn {
  background: linear-gradient(
    90deg,
    rgba(39, 42, 187, 1) 50%,
    rgba(106, 85, 213, 1) 100%
  );
  padding: 15px 15px;
  border-radius: 30px;
  min-width: 200px;
  color: var(--color-white);
}
.commonaAnimationBtn.priceBtn {
  background: var(--color-whiter);
  border-radius: 20px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.4s ease-in-out;
}
.commonaAnimationBtn.priceBtn:hover{
  color: var(--color-white);

}
.commonaAnimationBtn.priceBtn.withBg{
  /* background: var(--color-primary); */
  border-radius: 20px;
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  background: linear-gradient(90deg, rgba(39, 42, 187, 1) 50%, rgba(106, 85, 213, 1) 100%);
}
.commonaAnimationBtn.priceBtn.withBg svg path{
 fill: var(--color-white);
}
.commonaAnimationBtn.priceBtn svg path{
 fill: var(--color-primary);
}
.commonaAnimationBtn.priceBtn:hover svg path{
 fill: var(--color-white);
}
/* Btns */

/* Swiper Custom Arrow */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "" !important;
}
.customArrowWr {
  position: relative;
}
.customArrowWr .arrowWr {
  position: absolute;
  right: 50px;
  bottom: -56px;
}
.customArrowWr .swiper-button-next,
.customArrowWr .swiper-button-prev {
  width: 52px;
  height: 52px;
  line-height: 35px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0px 4px 25px 0px rgb(56 75 255 / 16%);
  -webkit-border-radius: 50%;
  padding: 15px;
}
.customArrowWr .swiper-button-next {
  background: #384bff;
}
.customArrowWr .swiper-button-prev svg path {
  /* background: #384bff; */
  fill: #000000;
}
.customArrowWr .swiper-button-prev {
  transform: rotate(180deg);
  right: 75px;
  left: auto;
}
.customArrowWr .swiper-button-prev:hover {
  background: #384bff;
}
.customArrowWr .swiper-button-prev:hover svg path {
  fill: #ffffff;
}
/* Swiper Custom Arrow */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.hero-image img {
  max-width: 60%;
  border-radius: 20px;
}
.hero-img-wr:hover img{
  transform: rotate(2deg) scale(.9) !important;
}

.partner-logo {
  max-height: 50px;
  margin: 0 10px;
  opacity: 0.8;
}

.partner-logo:hover {
  opacity: 1;
}

header .nav-link {
  text-decoration: none;
  color: #333;
  margin: 0 10px;
  transition: color 0.3s ease;
}

header .nav-link:hover {
  color: #007bff;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Animation CSS */
.shape1_5 {
  position: absolute;
  top: 61%;
  right: 15%;
  z-index: 9;
}
.emp_business .shape1_5 {
  bottom: 20%;
  right: 10%;
}
/* Animation CSS */

/* Header */
.header-logo img {
  max-width: 200px;
}
.header-main {
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}
.mobileToggleBtn{
  background: transparent;
  border: none;
  font-size: 28px;
  color: #384bff;
}
/* Header */
/* Hero */
.webHome .heroList {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
}
.webHome .heroList li {
  margin-bottom: 10px;
}
.hero-logo-slick-slider .swiper-slide img.imgWr {
  max-width: 180px !important;
  border: 1px solid transparent;
  transition: all .3s;
  cursor: pointer;
}
.hero-logo-slick-slider .swiper-slide img.imgWr:hover {
  background: #f6f6f6;
  border: 1px solid var(--color-yellow);
}
.hero {
  overflow: hidden;
}
.moving-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
  font-weight: bold;
  opacity: .4;
}
.moving-text span {
  padding-right: 2rem; /* Space between repeated words */
  font-size: 3rem;
  opacity: .2;
}
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  20% {
    transform: translateX(-20%);
  }
  40% {
    transform: translateX(-40%);
  }
  60% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(10%);
  }
}

/* Hero */
/* Footer */
.footer{
  border-top: 2px solid var(--color-primary);
}
.footer .social_icon{
  display: flex;
  gap: 10px;
}
.footer .social_icon a{
    border: 1px solid var(--color-primary);
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
.footer .social_icon a:hover{
  /* background-color: var(--color-primary); */
  background: linear-gradient(90deg, rgba(39, 42, 187, 1) 50%, rgba(106, 85, 213, 1) 100%);
}
.footer .social_icon a:hover i{
  color: var(--color-white);
}
.footer .social_icon a:hover svg path{
  fill: var(--color-white);
}
.footer .copyright-wrap{
    background: linear-gradient(90deg, rgba(39, 42, 187, 1) 50%, rgba(106, 85, 213, 1) 100%);
}
.footer .widget_nav_menu li{
  margin-bottom: 10px;
}
.footer .widget_nav_menu li a{
  color: #000;
}
.footer .recent-post .media-body .post-title a{
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #424242;
}
.footer .recent-post .media-body .recent-post-meta a img {
  margin-right: 5px;
}
.footer .recent-post{
  display: flex;
  gap: 15px;
}
.footer .recent-post .recent-post-meta a{
  color: #424242;
}
.footerLogoArrow{
  max-width: 27px;
  transform: rotate(90deg);
  margin-left: 20px;
  margin-top: 0;
  margin-bottom: 5px;
  animation: bounce 2s infinite ease-in-out;
}
/* Footer */

/* CTA */
.cta-top p {
  font-size: 22px;
}
/* CTA */

/* About */
.about_section .shape1 {
  position: absolute;
  bottom: -140px;
  left: 0;
  z-index: 1;
}
.about_section .aboutBoxWr {
  gap: 20px;
  display: flex;
}
.about_section .aboutBox {
  padding: 8px;
  gap: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.04);
  min-width: 180px;
}
.about_section .aboutBox:hover{
  background: var(--color-yellow);
}
.about_section .aboutBox .icon {
  display: inline-block;
  padding: 13px;
  border-radius: 10px;
}
/* About */

/* Emp Business */
.emp_business .empTop-slider .empTypeBoxSlider img {
  max-width: 25px;
}
.emp_business .empTop-slider .empTypeBoxSlider {
  border: 1px solid var(--color-primary);
  text-align: center;
  padding: 10px;
  border-radius: 20px;
  min-height: 75px;
  background-color: var(--color-white);
  transition: all 0.5s;
}
.emp_business .empTop-slider .empTypeBoxSlider:hover,
.emp_business .empTop-slider .swiper-slide-active .empTypeBoxSlider{
  /* -webkit-box-shadow: -2px 3px 10px 0px rgba(3,3,26,0.68);
-moz-box-shadow: -2px 3px 10px 0px rgba(3,3,26,0.68);
box-shadow: -2px 3px 10px 0px rgba(3,3,26,0.68); */
  background: #384bff;
  color: #fff;
}
.emp_business .empTop-slider .empTypeBoxSlider span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
}
.emp_business .empTop-slider .swiper-wrapper {
  padding-top: 45px;
}
.emp_business .empTop-slider .empTypeBoxSlider > div {
  background: #e6e6e6;
  display: inline-block;
  padding: 10px;
  border-radius: 100%;
  margin-top: -33px;
  position: absolute;
  z-index: 1;
  left: calc(50% - 24px);
}
.emp_business .empTop-slider .empTypeBoxSlider:hover > div {
  background-color: var(--color-white);
}
.emp_business .project-wrapper {
  padding: 122px 50px 60px;
  border-radius: 30px;
  background: #f3f6fd;
  border-radius: 30px;
  position: relative;
  margin-top: -43px;
}
.emp_business .project-wrapper .project-thumb {
  overflow: hidden;
}
.emp_business .project-wrapper .project-thumb img {
  transition: all 0.5s;
}
.emp_business .project-wrapper .project-thumb:hover img {
  transform: scale(1.1);
}
.emp_business .project-content-left {
  max-width: 400px;
}
.emp_business .project-content-wrapper {
  position: relative;
}
.emp_business .project-content-wrapper .project-content {
  padding: 30px 0px 0px 40px;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
  /* clip-path: url(#projectContentdMask); */
  height: 370px;
}
.emp_business .project-content-wrapper .project-content ul{
  list-style: none;
}
.emp_business .project-content-wrapper .project-content ul li{
  position: relative;
}
.emp_business .project-content-wrapper .project-content ul li::before{
  position: absolute;
  content: "";
  background-image: url(../images/check.png);
  background-size: 22px;
  width: 22px;
  height: 22px;
  left: -31px;
  background-repeat: no-repeat;
  top: 4px;
  transition: all .5s;
}
.emp_business .project-content-wrapper .project-content ul li:hover::before{
  transform: rotate(180deg);
}
.emp_business .project-content-wrapper .icon {
  display: inline-block;
  padding: 11px;
  border-radius: 10px;
  background: #f3f6fd;
  border-radius: 10px;
}
.emp_business .project-content-wrapper .fancy-box-wrapper {
  display: flex;
}
.emp_business .project-content-wrapper .fancy-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.emp_business .project-content-wrapper .fancy-box h6 {
  font-weight: 700;
}
.emp_business .project-content-wrapper .shape {
  position: absolute;
  bottom: -49px;
  left: calc(50% - 5px);
  z-index: 9;
  transform: translateX(-46%);
}
.emp_business .project-content-right {
  bottom: 0;
  position: absolute;
  max-width: 400px;
  right: 0;
}
.empTop-slider2.slideInnerContent {
 margin-top: -51px;
}
/* Emp Business */

/* Our Services */

.ourServices_section .service-card {
  padding: 30px;
  border: 1px solid var(--color-primary);
  background: #f3f7fb;
  border-radius: 30px;
  transition: all 0.4s;
}
.ourServices_section .service-card .icon {
  border-radius: 8px;
  border: 1px solid var(--color-primary);
  background: var(--color-white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.4s;
}
.ourServices_section .service-card .cardWr h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.ourServices_section .service-card .cardWr h3 a {
  color: #000;
  text-transform: uppercase;
}
.ourServices_section .service-card .cardWr p {
  color: #545454;
}
.ourServices_section .service-card:hover {
  background: var(--color-primary);
  cursor: pointer;
}
.ourServices_section .service-card:hover h3 a,
.ourServices_section .service-card:hover p {
  color: var(--color-white);
}
.ourServices_section .service-card:hover .icon {
  transform: rotate(360deg);
}

/* Our Services */

/* achivements */
.achiveSection{
    background-image: url(../images/achivebg.png);
    background-size: 100% 100%;
    background-position: right;
    background-repeat: no-repeat;
}
.achiveSection .contentwr .content{
  border-right: 1px solid #858585;
  padding: 10px;
  transition: all .3s;
  position: relative;
}
.achiveSection .contentwr .content::after{
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--color-yellow);
  left: 0;
  bottom: 0;
  transition: all .3s;
}
.achiveSection .contentwr .content:hover{
  background: #4a4a4a;
}
.achiveSection .contentwr .content:hover::after{
  width: 100%;
  right: 0;
}
/* achivements */

/* Industries */
.industries_section .indusriesCardWr .iconTitle{
  padding: 10px;
}
.industries_section .indusriesCardWr .top{
  border: 4px solid var(--color-primary);
  padding: 0;
  /* padding: 15px 15px 0 15px; */
  border-radius: 20px;
  transition: all .3S;
  overflow: hidden;
}
.industries_section .indusriesCardWr:hover .top{
  transform: translateY(-7px);
}
.industries_section .indusriesCardWr .bottom{
  padding: 8px 12px;
  border: 1px solid var(--color-primary);
  display: inline-block;
  border-radius: 25px;
  transition: all .3S;
}
.industries_section .indusriesCardWr:hover .bottom{
  background-color: var(--color-primary);
}
.industries_section .indusriesCardWr:hover .bottom a{
  color: var(--color-white);
}
.industries_section .indusriesCardWr .top .icon{
  color: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
}
.industries_section .indusriesCardWr .top .icon img{
  max-width: 22px;
}
/* Industries */

/* Expert Team */

.single-team-items {
  position: relative;
  z-index: 5;
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
}
.single-team-items::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  transition: all .3s;
  background-color: var(--color-primary);
}
.single-team-items:hover::after{
 height: 100%;
 opacity: .5;
}
.single-team-items .team-image {
  position: relative;
  height: 340px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.single-team-items .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0px 0px;
  -webkit-border-radius: 15px 15px 0px 0px;
  -moz-border-radius: 15px 15px 0px 0px;
  -ms-border-radius: 15px 15px 0px 0px;
  -o-border-radius: 15px 15px 0px 0px;
}
.single-team-items .team-image .social-profile {
  position: absolute;
  right: 20px;
  bottom: -4px;
  content: "";
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  z-index: 99;
}
.single-team-items .team-image .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.single-team-items .team-image .social-profile ul li {
  margin-bottom: 10px;
}
.single-team-items .team-image .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  display: block;
  background: var(--color-white);
  color: var(--color-primary);
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}
.single-team-items .team-image .social-profile ul li a:hover {
  background-color: var(--color-yellow);
  color: var(--color-white);
}
.single-team-items .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.single-team-items .team-image .social-profile .plus-btn:hover {
  background-color: var(--header);
  color: var(--color-white);
}
.single-team-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.single-team-items .team-content {
  padding: 50px 20px 30px;
  background-color: var(--color-yellow);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 98%, 0 17%);
          clip-path: polygon(100% 0, 100% 100%, 0 98%, 0 17%);
  margin-top: -27px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
}
.single-team-items .team-content h3 {
  margin-bottom: 5px;
}
.single-team-items .team-content h3 a {
  color: var(--color-white);
}
.single-team-items .team-content p {
  color: var(--color-white);
}
.single-team-items:hover .team-content {
  background-color: var(--color-primary);
}
.single-team-items:hover .team-image {
  position: relative;
}
.single-team-items:hover .team-image img {
  width: 100%;
  height: 100%;
}
.single-team-items:hover .team-image .social-profile .plus-btn {
  background-color: var(--color-yellow);
  color: var(--color-white);
}
.single-team-items:hover .team-image .social-profile .plus-btn:hover{
  background-color: var(--color-yellow);
}
/* Expert Team */

/* OnBoarding  */
.onboard .onboardingArrow{
  position: absolute;
  left: 52%;
  top: 25px;
}
/* OnBoarding  */

/* Testimonials */
.testimonialSlider .profile{
  border: 3px solid var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}
/* .star {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  clip-path: polygon(
    50% 0%,     Outer Top
    58% 15%,    Inner Top-Right
    68% 10%,    Outer Top-Right
    63% 28%,    Inner Mid-Top-Right
    80% 35%,    Outer Right
    57% 42%,    Inner Mid-Right
    65% 65%,    Outer Bottom-Right
    50% 52%,    Inner Bottom
    35% 65%,    Outer Bottom-Left
    43% 42%,    Inner Mid-Left
    20% 35%,    Outer Left
    37% 28%,    Inner Mid-Top-Left
    32% 10%,    Outer Top-Left
    42% 15%,    Inner Top-Left
    50% 0%      Closing Back to Top
  );
  margin: 50px auto;
} */

 .testimonialSlider .swiper-pagination-bullet-active{
  outline: 2px solid var(--color-primary);
  width: 10px !important;
  height: 10px !important;
  outline-offset: 2px;
 }
/* Testimonials */

/* Pricing  */
.pricing-section .tab-section .nav-pills {
  padding: 7px 7px;
  border: 1px solid #d4dcff;
  border-radius: 50px;
}
.pricing-section .tab-section .nav-pills .nav-link.active {
  color: var(--color-white);
  background-color: var(--color-primary);
  margin-right: 4px;
  border-radius: 20px;
}
.pricing-card.style1 {
  position: relative;
  z-index: 5;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #d4dcff;
  background: var(--color-white);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.pricing-card.style2 .pricing-card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 16px;
  background: var(--color-darkBlue);
}
.pricing-card.style1 .pricing-card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 16px;
  /* background: var(--color-primary); */
  background: linear-gradient(90deg, rgba(39, 42, 187, 1) 50%, rgba(106, 85, 213, 1) 100%);
}
.pricing-card.style1 .pricing-card_header .item h4 {
  color: var(--color-white);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.pricing-card.style1 .pricing-card_header .item .price {
  display: flex;
  align-items: center;
}
.pricing-card.style1 .pricing-card_header .item .price h2 {
  color: var(--color-white);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.pricing-card.style1 .pricing-card_header .item .price span {
  color: var(--color-white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.pricing-card.style1 .pricing-card_body .checklist-wrapper {
  margin: 40px 0;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 300px; 
  padding-right: 10px;
}

.pricing-card.style1 .pricing-card_body .checklist-wrapper::-webkit-scrollbar {
  width: 5px;
}

.pricing-card.style1 .pricing-card_body .checklist-wrapper::-webkit-scrollbar-thumb {
  background-color: #545455;
  border-radius: 5px;
}

.pricing-card.style1 .pricing-card_body .checklist-wrapper::-webkit-scrollbar-track {
  background-color: var(--color-primary);
  border-radius: 5px;
}


.pricing-card.style1:hover {
  transform: translateY(-2%);
}
.checklist.style1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 6px;
  list-style-type: none;
  padding-left: 0;
}

/* Pricing  */

/* Video Section */
.videoSection .video-box-area {
  position: relative;
  z-index: 3;
}
.videoSection .video-box-area .section-bg {
  z-index: 4;
}
.videoSection .video-box-area .video-box {
  position: relative;
  z-index: 5;
  padding: 300px 0 270px;
  margin-bottom: -150px;
  border-radius: 30px;
}
.videoSection .video-box-area .video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}
.videoSection .video-box{
  background-image: url(../images/videoThumb1_1.png);
}
.videoSection .work-process-wrapper{
  padding-top: 120px;
}
.videoSection .work-process-section{
  padding-top: 120px;
  padding-bottom: 60px;
}
.videoSection .play-btn > i.fa-play {
  padding-right: 0.18em;
}

.videoSection .play-btn > i {
  display: inline-block;
  width:60px;
  height:60px;
  line-height:60px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--color-white);
  background: radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  color: var(--color-white);
  font-size: 24px;
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
}
.work-process-card.style1 .number {
  text-align: left;
  background: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 30px;
  transition: all 0.4s;
}
.work-process-card.style1:hover .number, .work-process-card.style1.active .number {
  -webkit-text-stroke: 2px rgb(255, 255, 255);
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}
/* Video Section */

/* CTA Footer */
.ctaFooter_section .cta-section {
  padding: 50px 70px;
  background-color: #e84900;
  position: relative;
  margin-top: 108px;
  border-radius: 30px;
}
.cta-wrap .shape1_1 {
  position: absolute;
  bottom: 0;
  left: 43px;
}
.cta-wrap .shape1_2 {
  position: absolute;
  top: 0;
  left: 200px;
}
.cta-wrap .shape1_3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cta-wrap .shape1_4 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cta-wrap .cta-thumb {
  position: absolute;
  bottom: 0;
  left: 73px;
}
/* CTA Footer */

/* Contact Form */
.contact_form_section form{
  max-width: 1000px;
  margin: 0 auto;
  background: #282870;
  padding: 40px;
  border-radius: 15px;
}
.contact_form_section form input,
.contact_form_section form select{
  border-radius: 0;
  height: 48px;
}
.contact_form_section .submitBtn{
  background-color: var(--color-yellow);
  min-width: 150px;
  height: 48px;
  border-color: var(--color-yellow);
  border-radius: 0;
}
.contact_form_section .submitBtn:hover{
  background-color: transparent;
  border-color: var(--color-yellow);
  color: var(--color-yellow);
}
.contact_form_section form input:focus,
.contact_form_section form select{
  border-color: var(--color-yellow);
  outline: none;
  box-shadow: none;
}
/* Contact Form */

/* animation */
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
.rotate360 {
  animation: rotate360 10s linear infinite;
  -webkit-animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}

/* Bounsing */
@keyframes bounce {
  0%, 100% {
      transform: translateY(0) rotate(90deg);
  }
  50% {
      transform: translateY(-10px) rotate(90deg);
  }
}

/* animation */
