@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #004aad;
  --text-color: #002855;
  --bg-color: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --main-color: #004aad;
  --main-color2: #ee0020;
  --heading-color: #484848;
  --paragraph-color: #484848;
  --body-font: "Jost", sans-serif;
  --body-font-size: 16px;
  --line-height30: 1.7;
  --card-bg-color: #086ad8
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
  background: var(--bg-color);
  font-weight: 500;
}

h1 {
  font-size: 75px;
  line-height: 1.2333333333;
}

h2 {
  font-size: 38px;
  line-height: 1.2380952381;
}

h3 {
  font-size: 30px;
  line-height: 1.3833333333;
}

h4 {
  font-size: 24px;
  line-height: 1.3380952381;
}

h5 {
  font-size: 20px;
  line-height: 1.3380952381;
}

h6 {
  font-size: 16px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--main-color);
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}

ul {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
}

/* Navbar base */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: var(--bg-color);
  box-shadow: 0 2px 6px var(--shadow-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

nav.hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

nav.visible {
  transform: translateY(0);
}

/* Logo */
.logo {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  font-family: var(--body-font);
  font-weight: 500;
  font-style: normal;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.hero-content .title {
  color: #484848 !important;
}

/* Buttons */
.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-buttons a.btn {
  /* padding: 8px 18px;
      border-radius: 20px; */
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}


.nav-buttons a.btn-base-orange {
    border: 2px solid #FF5A00 ;
    background: #FF5A00;
    color: #FFF;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s 
ease;
}

/* .nav-buttons .btn:hover {
      background: var(--primary-color);
      color: #fff;
    } */

.btn.primary {
  background: var(--primary-color);
  color: var(--bg-color);
}

.btn.primary:hover {
  background: #00307d;
}

/* Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: var(--primary-color);
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 3px;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
a.btn {
  height: 45px;
  line-height: 40px;
  padding: 0 30px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
  border-radius: 8px;
  z-index: 0;
  font-family: var(--body-font);
}

a.btn:focus,
a.btn:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn:after {
  content: "";
  background: var(--primary-color);
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  -webkit-transform: skew(30deg);
  -ms-transform: skew(30deg);
  transform: skew(30deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  width: 0;
}

a.btn:hover:after {
  height: 100%;
  width: 135%;
}

a.btn i {
  font-size: 14px;
  float: right;
  padding-top: 16px;
  padding-left: 5px;
}

a.btn svg {
  font-size: 12px;
  margin-top: 20px;
  margin-left: 6px;
  float: right;
}

.btn.border-radius-0 {
  border-radius: 0;
}

.btn.border-radius-5 {
  border-radius: 5px;
}

.btn-small {
  height: 50px;
  line-height: 50px;
}

.btn-small i {
  padding-top: 12px;
}

.btn-base {
  color: var(--bg-color) !important;
  background: var(--main-color);
}

.btn-base svg {
  font-size: 13px;
  margin-top: 22px;
}

.btn-base:hover {
  color: var(--bg-color);
}

.btn-red {
  color: var(--bg-color);
  background: #f14d5d;
}

.btn-red:hover {
  color: var(--bg-color);
}

.btn-white {
  color: var(--main-color) !important;
  background: var(--bg-color);
}

.btn-white:hover,
.btn-white:focus {
  color: var(--bg-color) !important;
  background: var(--main-color);
}

.btn-black {
  color: var(--bg-color) !important;
  background: var(--heading-color);
}

.btn-black:hover,
.btn-black:focus {
  color: var(--bg-color) !important;
  background: var(--main-color);
}

.btn-border-base {
  color: var(--heading-color);
  border: 2px solid var(--main-color);
  /* line-height: 52px; */
}

.btn-border-base:after {
  background: var(--main-color);
}

.btn-border-base:hover,
.btn-border-base:focus {
  color: var(--bg-color) !important;
}


.btn-base-orange {
  color: var(--heading-color);
  border: 2px solid #FF5A00;
  /* line-height: 52px; */
}

a.btn-base-orange:after {
  background: #fff;
  color: #FF5A00
}

.btn-base-orange:hover,
.btn-base-orange:focus {
  color: #FF5A00 !important
}

a.btn-base-orange:after {

}

a.btn-sign-up {
  color: var(--bg-color) !important;
  border: 2px solid var(--main-color);
  background: var(--main-color) !important;
  /* line-height: 52px; */
}

a.btn-sign-up:after, a.start-free-trial:after {
  background: var(--bg-color);
  
}

a.btn-sign-up:hover,
a.btn-sign-up:focus, a.start-free-trial:hover,
a.start-free-trial:focus {
  color: var(--main-color) !important;
}

a.start-free-trial:hover,
a.start-free-trial:focus {
  border-color: #fff !important;
}

.banner-section {
  background: #f0f0f0;
  overflow: hidden;
  position: relative;
  padding-top: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
 
}



.sub-title {
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 20px;
  display: inline-block;
  border-radius: 35px;
  margin-bottom: 10px;
}

.hero-content .sub-title {
  background: #ffffff;
  color: #484848;
}

.hero-content-blue .sub-title {
  /* background: var(--card-bg-color); */
  /* color: #fff; */
  background: #fff;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.hide-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /* adjust to hide exactly that Testimonial tag */
  background: white; /* match iframe background */
  pointer-events: none;
}

.banner-section .shape-2 {
  position: absolute;
  width: 100%;
  height: 130px;
  right: 0;
  left: 0px;
  bottom: -130px;
  background: #ffffff;
  transform: skewY(-3deg);
  transform-origin: 0;
  z-index: 2;
}



/*--
/*  03 - Testimonial CSS
/*----------------------------------------*/
.testimonial-wrap {
  /* height: 530px; */
  background: #f0f0f0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  padding: 40px 0;
  /* padding-top: 75px;
  padding-bottom: 90px;
  padding-left: 75px;
  padding-right: 65px; */
}

.testimonial-wrap .testimonial-img {
  position: relative;
  z-index: 1;
}

.testimonial-wrap .testimonial-img .shape-1 {
  position: absolute;
  top: 20px;
  left: 20px;
  -webkit-animation: round-01 7s linear infinite;
  animation: round-01 7s linear infinite;
  z-index: -1;
}

.testimonial-wrap .testimonial-img img {
  position: relative;
}

.testimonial-wrap .testimonial-content-wrap {
  /* max-width: 520px; */
  background: #ffffff;
  padding: 20px;
  position: relative;
}

.testimonial-wrap .testimonial-content-wrap::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 35px solid transparent;
  border-top: 40px solid #ffffff;
  left: -50px;
  bottom: 155px;
  z-index: 1;
  transform: rotate(90deg);
}

.single-testimonial p {
  font-size: 26px;
  line-height: 36px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.single-testimonial .name {
  font-size: 16px;
  line-height: 20px;
  color: #0e0e0e;
}

.single-testimonial .designation {
  font-size: 12px;
  line-height: 20px;
  color: #47484a;
}


/* ----------------------------------------
## twitter-x-growth

-----------------------------------------*/


.twitter-x-growth {
  background: var(--card-bg-color);
  padding-top: 100px;
  padding-bottom: 73px;
  position: relative;
}

.hero-content-white .sub-title {
  background: var(--bg-color);
  color: var(--card-bg-color);
}

.twitter-x-growth p {
  color: var(--bg-color);
}

.twitter-x-growth .border-left {
  border-left: 1px solid var(--bg-color)
}

.twitter-x-growth .shape-2 {
  position: absolute;
  width: 100%;
  height: 130px;
  right: 0;
  left: 0px;
  bottom: -111px;
  background: var(--card-bg-color);
  transform: skewY(-3deg);
  transform-origin: 0;
  z-index: 2;
}



/*--
/*  03 - Service CSS
/*----------------------------------------*/

.techwix-service-section {
  background-color: #f0f0f0;
  padding-bottom: 60px;
}
.techwix-about-section {
  background: #0c0520;
  padding-top: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.service-wrap {
  padding-top: 160px;
}

.techwix-about-section .shape-1 {
  position: absolute;
  width: 100%;
  height: 130px;
  right: 0;
  left: 0px;
  bottom: -130px;
  background: #ffffff;
  transform: skewY(-3deg);
  transform-origin: 0;
  z-index: 2;
}

.service-item {
  background: #ffffff;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-top: 10px solid #086ad8;
    transform: translate3d(0, 0, 0);
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: all 0.3s 
linear;
}

.service-two {
  position: relative;

}
.shape-3 {
    position: absolute;
    width: 100%;
    height: 74px;
    right: 0;
    left: 0px;
    top: -1px;
    background: #f0f0f0;
    transform: skewY(-3deg);
    transform-origin: 0;
    z-index: 2;
}



/*-----------------------------------------
    ## video 
------------------------------------------*/
.video-thumb {
  position: relative;
}

.video-thumb .video-play-btn-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.video-play-btn {
  border-radius: 50%;
  background: #fff;
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  position: relative;
  z-index: 0;
  text-align: center;
  -webkit-animation: ripple-white3 2.5s linear infinite;
  animation: ripple-white3 2.5s linear infinite;
  z-index: 3;
  -webkit-box-shadow: 0 4px 15px rgba(19, 16, 34, 0.1);
  box-shadow: 0 4px 15px rgba(19, 16, 34, 0.1);
}

.video-play-btn:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(247, 247, 247, 0.4);
  top: -15px;
  left: -15px;
}

.video-play-btn i {
  color: var(--main-color);
  margin-left: 6px;
  font-size: 28px;
}

.video-play-btn.video-play-btn-base {
  background: var(--main-color);
}

.video-play-btn.video-play-btn-base i {
  color: #fff;
}

.video-play-btn.video-play-btn-base:after {
  display: none;
}

.video-play-btn.small {
  width: 55px;
  height: 55px;
  line-height: 60px;
}

.video-play-btn.small i {
  font-size: 18px;
}


/* Service CSS */

.service-two-padding {
  padding-top: 140px;
}

.service-two-inner-3 {
  background: #fff;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 33, 71, 0.06);
          box-shadow: 0px 3px 20px rgba(0, 33, 71, 0.06);
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 30px;
  border-radius: 12px;
}
.service-two-inner-3 .thumb {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.service-two-inner-3 .thumb .thumb-inner {
  background: #fff;
  height: 70px;
  width: 70px;
  line-height: 68px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 4px rgba(19, 16, 34, 0.15);
          box-shadow: 0px 0px 4px rgba(19, 16, 34, 0.15);
  margin: 7px;
}
.service-two-inner-3 .details p {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.service-two-inner-3.service-two-inner-3-left {
  padding: 40px;
}
.service-two-inner-3.service-two-inner-3-left .thumb {
  right: -40px;
}
.service-two-inner-3.service-two-inner-3-right {
  padding: 40px 40px 40px 70px;
}
.service-two-inner-3.service-two-inner-3-right .thumb {
  left: -40px;
}
.service-two-inner-3:hover {
  background: var(--main-color);
}
.service-two-inner-3:hover .thumb {
  border: 1px solid #fff;
}
.service-two-inner-3:hover .details h5 {
  color: #fff;
}
.service-two-inner-3:hover .details p {
  color: #fff;
}



.bg-white h4.sub-title {
  font-size: 18px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0px; 
    display: inline-block;
    border-radius: 35px;
    margin-bottom: 10px;
}

.border-dashed {
  border: 1px dashed #f0f0f0;
}

.border-radius {
  border-radius: 8px;
}

/*--
/*  03 - CTA CSS
/*----------------------------------------*/
.techwix-cta-section .cta-wrap {
  background: #e6f0fb;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  padding: 40px 75px;
  margin-bottom: 45px;
  margin-top: 45px;
}

.before-after .cta-wrap {
  background: transparent !important;
}

@media only screen and (max-width: 575px) {
  .techwix-cta-section .cta-wrap {
    padding: 40px 50px;
  }
}

@media only screen and (max-width: 449px) {
  .techwix-cta-section .cta-wrap {
    padding: 40px 40px;
  }
}

/* .techwix-cta-section .cta-wrap .cta-icon {
  position: absolute;
  left: 30px;
  top: -60px;

  line-height: 85px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 20px 43px 0px rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  padding: 0px 20px;
} */


.elevate_growth {
  background: #3777bd;
}

/* use Case */

.rs-featured-2__item {
    background: #ffffff;
    box-shadow: 0px 10px 18px 0px rgba(0, 37, 89, 0.04);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.rs-featured-2__item .rs-content {
    position: relative;
    padding: 35px 30px 30px;
    background-image: url(../../img/revamp/unnamed.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto;
}

.rs-featured-2__item:hover .rs-content .rs-icon {
    background-color: var(--heading-color);
}

.rs-featured-2__item .rs-content .rs-icon {
    height: 80px;
    width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
    background-image: url(../../img/revamp/bg-shapes-elips.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 10px;
    position: absolute;
    left: 30px;
    top: -40px;
    transition: all 
linear 0.3s;
    z-index: 10;
}

.rs-featured-2__item:hover .rs-content .rs-icon::before {
    opacity: 0;
}
.rs-featured-2__item .rs-content .rs-icon::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(130deg, var(--card-bg-color) 0%, var(--card-bg-color) 100%);
    z-index: -2;
    opacity: 1;
    transition: all 
linear 0.3s;
}
.rs-featured-2__item .rs-content .rs-icon::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../../img/revamp/bg-shapes-elips.png);
    z-index: -1;
    opacity: 1;
    transition: all 
linear 0.3s;
}

.rs-featured-2__item .rs-content .title {
    margin-bottom: 15px;
}

.rs-featured-2__item .rs-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

.rs-featured-2__item .rs-content .rs-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--card-bg-color);
    transition: all 
linear 0.3s;
    display: inline-flex
;
    align-items: center;
}
.strip p {
  color: #044f94;
  font-size: 22px;
  margin-bottom: 0px;
}
.footer_section {
  background: #044f94;
  padding: 15px 40px;
}

.footer_section .nav-links a:hover {
  color: #fff !important;
}

ul.footer li a {
  color: #FFF;
}
.cpy_txt {
  color: #FFF;
  font-size: 12px;
}

a.start-free-trial {
  color: #fff;
    border: 2px solid #044f94;
     background: #044f94 !important;
}

.footer-nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
}

.banner_padding {
  padding-top: 100px;
}

.use-case-padding {
  padding-bottom: 28px;
}

.featured-img {
  width: 40px;
}

.feature-txt {
  font-size: 18px;
  padding-left: 10px;
  float: right;
}

.red {
  border: 1px solid #ff0000
}

.green {
  border: 1px solid #32bea6
}

.fill-current {
  display: none !important;
}
@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.7); /* #FF5A00 */
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 90, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 0, 0);
  }
}
  
  .pulse-inactive {
    animation: pulse-orange 1.5s infinite;
    border-radius: 9999px;
  }

  @keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9); /* white glow */
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); 
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.pulse-white {
  animation: pulse-white 2s infinite;
  border-radius: 8px; /* optional */
}

.iframe-mask-container {
  position: relative;
  width: 100%;
  height: 800px; /* same as iframe height */
  overflow: hidden;
}

.testimonial-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* mask at the bottom */
.iframe-bottom-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px; /* adjust based on the badge height */
  background: #fff; /* same background color */
  z-index: 10;
}

.width_full {
    width: 100%;
}

.mobile-bottom-padding{
    padding-top: 40px;
  }

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}


@media (max-width: 900px) {
  nav {
    padding: 15px 25px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--bg-color);
    width: 220px;
    height: 100vh;
    justify-content: start;
    align-items: flex-start;
    padding: 40px 20px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }
}


@media (max-width: 567px) {
  .banner-section {
    background-image: none !important;   /* remove */
  }
  .mobile-bottom-padding{
    padding-top: 78px;
  }
  .nav-buttons {
    display: block;
  }
  .twitter-x-growth p span {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
  
.feature-txt {
  float: none !important;
}
  /* .nav-buttons a.btn {
    width: 93%;
    margin-bottom: 10px;
  } */
  .banner_padding {
    padding-top: 10px;
    text-align: center;
  }
  .service-two-inner-3.service-two-inner-3-right {
    padding: 40px;
  }
  .twitter-x-growth .border-left {
    border-top: 1px solid var(--bg-color);
    padding-top: 20px;
    border-left: none !important;
  }

  .testimonial-wrap .testimonial-content-wrap::before {
    display: none;
  }

  .footer_section {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  .footer-nav-links {
    display: inline-block;
    text-align: center;
    width: 100%;
  }

  .footer-nav-links li {
    padding-bottom: 10px;
  } 

  .hero-content {
    padding-top: 40px;
  }

  .service-item {
    margin-bottom: 0px;
  }

  .thumb {
    display: none !important;
  }

  .pe-5 {
    padding-right: 12px !important;
  }

  .ps-5 {
    padding-left: 12px !important;
  }

}
