@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --primary: #4ab0e4;
  --primaryLite: #afddef;
  --primaryBG: #fafafc;
  --secondary: #46bb85;
  --grey: #666666;
  --greyMid: #c0c0c0;
  --greyLite: #f1f1f3;
  --greyLighter: #f7f7f8;
  --greyBG: #f5f5f6;
  --white: #ffffff;
  --black: #000000;
  --surfaceBG: #fafafc;
  --stroke: #dadce0;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  height: 100%;
  font-family: "Inter", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  color: var(--grey);
  padding-top: 90px;
}
body.menu-opened {
  overflow: hidden;
}
body.menu-opened .header {
  background-color: var(--white);
}
body.home {
  background-color: var(--surfaceBG);
  background-image: url("../img/bg-home.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 2560px;
}
@media (min-width: 2500px) {
  body.home {
    background-size: cover;
  }
}
@media (max-width: 991px) {
  body.home {
    background-size: 2000px;
  }
}
@media (max-width: 768px) {
  body.home {
    background-size: 1700px;
  }
}
@media (max-width: 475px) {
  body.home {
    background-size: 1600px;
  }
}
body.features {
  background-image: url("../img/bg-features.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  overflow-x: hidden;
}
@media (max-width: 1200px) {
  body.features .container {
    overflow: hidden;
  }
}
body.how-it-works {
  background-image: url("../img/bg-how-it-works.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
body.integrations {
  background-color: var(--surfaceBG);
}
body.pricing,
body.privacy {
  background-color: var(--surfaceBG);
  background-image: url("../img/bg-pricing.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
body.privacy h2 {
  font-size: 32px;
}
body.privacy h3 {
  font-size: 24px;
}
@media (max-width: 991px) {
  body {
    padding-top: 78px;
  }
}
::-moz-selection {
  color: var(--white);
  background: var(--primary);
}
::selection {
  color: var(--white);
  background: var(--primary);
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background: var(--greyMid);
  border-radius: 8px;
  height: 42px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--grey);
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:active,
a:hover {
  color: var(--grey);
  outline: 0;
  text-decoration: none;
}
a:focus {
  outline: none;
}
b,
strong {
  font-weight: 800;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0 0 20px 0;
  font-weight: 800;
  color: var(--black);
}
h1 {
  font-size: 56px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 16px;
}
p {
  margin: 0;
  padding: 0 0 20px 0;
  line-height: 28px;
}
@media (max-width: 991px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
}
video {
  display: block;
  width: 100%;
  height: auto;
}
.p-relative {
  position: relative;
}
.xtarget:target {
  margin-top: -12px;
  padding-top: 180px;
}
/* custom bootstrap styles */
@media (min-width: 1224px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1288px;
  }
}
@media (min-width: 1224px) {
  .container,
  .container-fluid,
  .container-md,
  .container-xl,
  .container-xs {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 1272px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-fluid,
  .container-md,
  .container-xl,
  .container-xs {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.container {
  max-width: 1264px;
}
.container,
.container-fluid,
.container-md,
.container-xl,
.container-xs {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -12px;
  margin-left: -12px;
}
.form-control {
  border-color: var(--greyLite);
  background-color: var(--greyLite);
  font-family: inherit;
}
.form-control:focus {
  box-shadow: none;
}
.form-control::placeholder {
  color: var(--greyMid);
}
.btn-lg {
  font-size: 16px !important;
  font-weight: 500;
  padding: 16px 24px;
}
.btn-success {
  background-color: var(--primary);
}
.btn-light {
  background-color: #ededef;
  border: none;
  transition: all 0.3s ease-out;
}
.btn-light:hover {
  background-color: #ededef;
  transform: translateY(-2px);
}
.btn-dark {
  position: relative;
  background-color: var(--black);
  transition: all 0.3s ease-out;
}
.btn-dark:hover {
  background-color: var(--black);
  transform: translateY(-2px);
}
.text-primary {
  color: var(--primary) !important;
}
hr {
  border-top: 1px solid #f2f2f4;
  opacity: inherit;
}
.accordion-item {
  border-bottom: none;
}
.accordion-button:not(.collapsed) {
  background-color: var(--white);
  box-shadow: none;
}
.accordion-button:focus {
  border-color: none;
  box-shadow: none;
}
.accordion-button {
  font-size: 20px;
}
/* custom bootstrap styles --- ends */
.wrapper {
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.site-section {
  scroll-snap-align: start;
}
.global-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: stretch;
}
.content-area {
  flex-grow: 1;
}
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  padding-top: 15px;
}
.header.scrolled {
  background-color: var(--white);
  border-bottom: 1px solid #f0f0f2;
}
.header .logo {
  display: inline-block;
  height: 60px;
  width: 140px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../img/artis-logo.svg) no-repeat center;
}
@media (max-width: 991px) {
  .header {
    height: 78px;
    padding: 15px 0;
  }
  .header .logo {
    height: 48px;
    width: 112px;
  }
}
.main-nav ul,
.main-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav ul li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 97;
}
.main-nav ul li a {
  display: inline-block;
  height: 60px;
  line-height: 48px;
  padding: 6px 20px;
  font-size: 15px;
  color: var(--black);
  transition: all 0.3s ease-out;
  pointer-events: all;
}
.main-nav ul li a:hover {
  color: var(--primary);
}
.main-nav ul li a.active {
  color: var(--primary);
}
.main-nav ul li a.products {
  height: 80px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' width='18' height='18'%3E%3Cpath fill='rgb(0,0,0)' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 80px 23px;
  background-size: 12px;
}
.main-nav ul li a.products:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' width='18' height='18'%3E%3Cpath fill='rgb(74,176,228)' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
}
.main-nav ul li a.sales:hover {
  color: var(--black);
  transform: translateY(-2px);
}
.main-nav ul li.spl a {
  position: relative;
  background-color: var(--black);
  color: var(--white);
  border-radius: 8px;
  height: 48px;
  font-weight: 600;
  line-height: 36px;
  margin: 6px 0;
}
.main-nav ul li.spl a:hover {
  transform: translateY(-2px);
}
.sub-nav {
  display: none;
  position: fixed;
  z-index: 98;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
}
.sub-nav::before {
  content: "";
  border-top: 1px solid var(--stroke);
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 89px;
  height: 1px;
}
.sub-nav.show {
  display: block;
}
.sub-nav .content {
  background-color: var(--white);
  padding-top: 90px;
}
.sub-nav .border-right {
  border-right: 1px solid var(--stroke);
}
.sub-nav .spl-bg {
  background-color: var(--greyBG);
  position: relative;
}
.sub-nav .spl-bg:before {
  content: "";
  background: var(--greyBG);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100vw;
  pointer-events: none;
}
.sub-nav h3 {
  font-size: 16px;
  font-weight: 700;
  color: #acacbc;
  padding: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sub-nav h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  padding: 0 0 10px 0;
}
.sub-nav a.main-link {
  font-size: 24px;
  display: block;
  padding: 10px 15px;
  color: var(--black);
}
.sub-nav a.main-link.products {
  position: relative;
}
.sub-nav a.main-link.products::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 0px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' width='18' height='18'%3E%3Cpath fill='rgb(0,0,0)' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  transform: rotate(180deg);
  transition: all 0.3s ease-out;
}
.sub-nav a.main-link.products.open::before {
  top: 11px;
  right: 6px;
  transform: rotate(0deg);
}
.sub-nav a.main-link.demo {
  background-color: var(--black);
  color: var(--white);
  border-radius: 10px;
}
.sub-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-nav ul li {
  margin-bottom: 4px;
}
.sub-nav ul li a {
  display: block;
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--black);
  transition: all 0.3s ease-out;
}
.sub-nav ul li a:hover {
  background-color: var(--greyBG);
}
.sub-nav ul li p {
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}
.sub-nav .spl-bg ul li a {
  padding-top: 18px;
  padding-bottom: 18px;
}
.sub-nav .spl-bg ul li a:hover {
  background-color: var(--white);
}
.sub-nav .icon {
  padding-left: 40px;
  background-position: 8px 12px;
  background-repeat: no-repeat;
  background-size: 22px;
}
.sub-nav .icon-hiw {
  background-image: url("../img/icon-how-it-work.svg");
  background-position: 4px 16px;
}
.sub-nav .icon-features {
  background-image: url("../img/icon-features.svg");
  background-position: 4px 16px;
}
.sub-nav .icon-youtube {
  background-image: url("../img/icon-youtube.svg");
}
.sub-nav .icon-erp {
  background-image: url("../img/icon-erp.svg");
}
.sub-nav .icon-whatsapp {
  background-image: url("../img/icon-whatsapp.svg");
}
.sub-nav .icon-paytm {
  background-image: url("../img/icon-paytm.svg");
}
.sub-nav .icon-restapi {
  background-image: url("../img/icon-restapi.svg");
}
.sub-nav .icon-doctor {
  background-image: url("../img/icon-doctor.svg");
}
.sub-nav .icon-patient {
  background-image: url("../img/icon-patient.svg");
}
.sub-nav .icon-embryologist {
  background-image: url("../img/icon-embryologist.svg");
}
.sub-nav .icon-manager {
  background-image: url("../img/icon-manager.svg");
}
.sub-nav .icon-nurse {
  background-image: url("../img/icon-nurse.svg");
}
.sub-nav .all-link {
  display: block;
  color: #0085e4;
  font-weight: 500;
  margin-top: 10px;
}
.sub-nav .all-link:hover {
  color: #259aef;
}
/* mobile view nav */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .sub-nav::before {
    top: 60px;
  }
  .sub-nav .content {
    padding: 100px 0 40px 0;
    height: 100%;
    overflow-y: auto;
  }
  .sub-nav .border-right {
    border-right: none;
  }
  .sub-nav .spl-bg,
  .sub-nav .spl-bg::before {
    background-color: inherit;
  }
  .sub-links {
    display: none;
  }
}
.section-sub-nav {
  display: none;
  position: fixed;
  z-index: 97;
  left: 0;
  right: 0;
  top: 90px;
  background-color: var(--white);
  box-shadow: 0 0.25rem 2rem rgba(0, 0, 0, 0.06);
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  padding: 0 15px;
}
.section-sub-nav.scrolled {
  display: block;
}
.section-sub-nav a {
  display: block;
  height: 100%;
  color: var(--grey);
  padding: 15px 0;
  transition: all 0.2s ease-out;
  border-bottom: 2px solid var(--white);
}
.section-sub-nav a:hover {
  color: var(--black);
}
.section-sub-nav a.active {
  border-bottom: 2px solid var(--black);
  font-weight: 600;
  color: var(--black);
}
.section-sub-nav.hiw .col {
  min-width: 100px;
}
@media (max-width: 991px) {
  .section-sub-nav {
    top: 78px;
  }
}
@media (max-width: 320px) {
  .section-sub-nav {
    display: none !important;
  }
}
.mobile-nav-icon {
  display: none;
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.mobile-nav-icon div {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  height: 2px;
  border-radius: 2px;
  background: var(--black);
  margin: 8px 0;
  transition: all 0.3s ease-out;
}
.mobile-nav-icon.nav-icon-close div:nth-child(1) {
  margin-top: 15px;
  transform: rotate(45deg);
}
.mobile-nav-icon.nav-icon-close div:nth-child(2) {
  margin-top: -10px;
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .mobile-nav-icon {
    display: block;
  }
}
.footer {
  background-color: var(--white);
  background-image: url("../img/bg-footer.jpg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  padding: 90px 0 40px 0;
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 15px;
}
.footer a {
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
  margin: 12px 0;
}
.footer a:hover {
  color: var(--black);
}
.footer .social-icon {
  display: inline-block;
  padding: 0 0 0 24px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 18px;
}
.footer .social-icon.instagram {
  background-image: url("../img/social-icon-instagram.svg");
}
.footer .social-icon.linkedin {
  background-image: url("../img/social-icon-linkedin.svg");
}
.footer .social-icon.facebook {
  background-image: url("../img/social-icon-facebook.svg");
}
.footer .social-icon.twitter {
  background-image: url("../img/social-icon-twitter.svg");
}
.footer .social-icon.youtube {
  background-image: url("../img/social-icon-youtube.svg");
}
.footer .logo {
  display: inline-block;
  height: 60px;
  width: 140px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../img/artis-logo.svg) no-repeat center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footer {
    background-size: contain;
  }
}
.intro-banner {
  text-align: center;
  padding: 140px 0;
}
.intro-banner h1 {
  font-size: 56px;
  color: var(--white);
}
.intro-banner p {
  font-size: 24px;
  line-height: 36px;
  padding-bottom: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.section-banner {
  text-align: center;
  padding: 140px 0 0 0;
}
.section-banner h1 {
  font-size: 56px;
}
.section-banner p {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  max-width: 800px;
  margin: 0 auto;
}
.section-content {
  padding: 140px 0;
}
.section-content h2 {
  font-size: 48px;
}
.section-content h2.alt {
  font-size: 56px;
}
@media (max-width: 768px) {
  .section-content h2.alt {
    font-size: 40px;
  }
}
.section-content .centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .intro-banner {
    padding: 40px 0;
  }
  .intro-banner h1 {
    font-size: 42px;
  }
  .section-banner {
    padding: 40px 0 0 0;
  }
  .section-banner h1 {
    font-size: 42px;
  }
  .section-content {
    padding: 80px 0;
  }
  .section-content h2 {
    font-size: 40px;
  }
}
.grey-bg {
  background-color: var(--primaryBG);
}
.white-bg {
  background-color: var(--white);
}
.custom-tabs {
  border: none;
  margin-bottom: 40px;
}
.custom-tabs .nav-link {
  font-size: 15px;
  font-weight: 400;
  border: none;
  border-radius: 25px;
  color: var(--grey);
  transition: all 0.3s ease-out;
  margin-right: 20px;
  padding: 12px 20px;
}
.custom-tabs .nav-link:hover {
  background-color: #f2f2f4;
}
.custom-tabs .nav-link.active {
  background-color: #f2f2f4;
  color: var(--black);
  font-weight: 500;
}
@media (max-width: 991px) {
  .custom-tabs .nav-link {
    margin-right: 5px;
  }
}
/* carousel custom styles */
.custom-carousel {
  margin: 0 60px;
}
.custom-carousel.slick-dotted.slick-slider {
  margin-bottom: 40px;
}
.custom-carousel .slick-dots li button:before {
  color: var(--primaryLite);
  opacity: 1;
  font-size: 13px;
}
.custom-carousel .slick-dots li.slick-active button:before {
  color: var(--primary);
}
.custom-carousel .slick-prev,
.slick-next {
  height: 48px;
  width: 48px;
}
.custom-carousel .slick-prev:before,
.slick-next:before {
  color: var(--greyMid);
  font-size: 48px;
}
.custom-carousel .slick-prev {
  left: -60px;
}
.custom-carousel .slick-next {
  right: -60px;
}
.custom-carousel .slick-dots {
  bottom: -40px;
}
.partner-logos img {
  max-width: 140px;
  margin: 0 auto;
}
/* carousel custom styles --- ends */
.img-spl1 {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--greyLite);
  box-shadow: 0 8px 20px -7px rgba(0, 0, 0, 0.08);
}
.img-spl2 {
  border-radius: 15px 0 0 0;
  overflow: hidden;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}
.img-spl3 {
  border-radius: 30px;
  border: 1px solid var(--greyLite);
  overflow: hidden;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}
.img-spl4 {
  border-radius: 24px;
  border: 1px solid var(--greyLite);
  overflow: hidden;
}
.img-spl5 {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--greyLite);
  box-shadow: 0 8px 20px -7px rgba(0, 0, 0, 0.08);
}
.img-offset {
  margin: 0 -100% 0 10%;
}
.img-block {
  padding: 15px;
  margin-bottom: 40px;
  min-height: 300px;
  border-radius: 16px;
  background-color: #f5f5f7;
  justify-items: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-block img {
  width: auto;
  max-height: 240px;
}
.img-block.h-200 {
  min-height: 200px;
}
.img-testimonials {
  border-radius: 120px;
}
@media (min-width: 1024px) {
  .img-offset-rgt {
    margin-right: -50%;
  }
  .img-offset-lft {
    margin-left: -50%;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .img-testimonials {
    max-width: 120px;
  }
  .img-offset {
    margin: 0 -100% 0 0;
  }
}
.spl-border1 {
  padding: 40px;
  border-radius: 24px;
  margin-bottom: 40px;
}
.spl-border2 {
  border-radius: 30px;
  box-shadow: 0 8px 20px -7px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
@media (max-width: 991px) {
  .spl-border1 {
    padding: 24px;
    border-radius: 15px;
  }
}
@media (max-width: 768px) {
  .spl-border1 {
    padding: 12px;
    border-radius: 8px;
  }
  .spl-border2 {
    border-radius: 20px;
  }
}
.spl-border1.border1 {
  background: rgb(66, 173, 255);
  background: linear-gradient(
    90deg,
    rgba(66, 173, 255, 1) 0%,
    rgba(145, 207, 255, 1) 100%
  );
}
.spl-border1.border2 {
  background: rgb(70, 187, 133);
  background: linear-gradient(
    90deg,
    rgba(70, 187, 133, 1) 0%,
    rgba(129, 255, 197, 1) 100%
  );
}
.spl-border1.border3 {
  background: rgb(65, 169, 236);
  background: linear-gradient(
    90deg,
    rgba(65, 169, 236, 1) 0%,
    rgba(137, 234, 255, 1) 100%
  );
}
.ee-border1 {
  border-left: 60px solid #34b7fe !important;
  border-bottom: 40px solid #34b7fe !important;
  border-radius: 30px;
  box-shadow: 0 8px 20px -7px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding-top: 0 !important;
  background-image: none !important;
}
.ee-border2 {
  border-right: 45px solid #3dabd8 !important;
  border-top: 65px solid #3dabd8 !important;
  border-radius: 30px;
  box-shadow: 0 8px 20px -7px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding-top: 0 !important;
  background-image: none !important;
}
.text-xl {
  font-size: 24px !important;
  font-weight: 500;
  line-height: 1.58;
}
.text-lg {
  font-size: 20px !important;
  line-height: 35px;
}
.text-muted {
  color: rgba(0, 0, 0, 0.6) !important;
}
.text-black {
  color: var(--black);
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.home-testimonials {
  background-image: url("../img/home-testimonials.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 270px;
}
.home-testimonials .with-shadow {
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.home-testimonials .with-shadow:before {
  content: "";
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.12), inset 0 2px 4px 0 #fff,
    inset 0 -2px 2px #eee;
  border-radius: 12px;
  background: #fafafc;
  position: absolute;
  top: 4px;
  left: 1px;
  right: 1px;
  bottom: -1px;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1399px) {
  .home-img3 {
    background-position: right -400px center;
  }
}
@media (max-width: 991px) {
  .home-img3,
  .home-testimonials {
    background-image: none;
  }
}
.home-casestudy {
  background-image: url("../img/home-casestudy.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 240px;
}
.pricing-block {
  background-color: var(--white);
  box-shadow: 0 4px 1rem -8px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 30px;
}
.pricing-block .highlight {
  color: var(--black);
  background-color: var(--white);
  border: 1px solid #f5f5f7;
  border-radius: 10px;
  padding: 19px 24px;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.08) !important;
}
ul.custom-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.custom-points li {
  padding: 0 0 20px 30px;
  background-image: url("../img/list-tick.svg");
  background-repeat: no-repeat;
  background-position: left 2px;
  background-size: 22px;
  color: var(--black);
}
.steps-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 15px;
  right: 15px;
  bottom: 0;
  background-image: url("../img/steps-bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  height: 100%;
  border-radius: 15px;
}
.steps-container {
  position: relative;
  z-index: 2;
  border-radius: 0.5rem;
  background-color: var(--white);
  padding: 2.5rem 3rem 3rem 3rem;
  margin: 300px 40px 20px 0;
}
@media (max-width: 991px) {
  .steps-img {
    position: inherit;
    top: inherit;
    left: inherit;
    right: inherit;
    bottom: inherit;
    min-height: 320px;
    background-position: left center;
  }
  .steps-container {
    margin: 0;
    padding-top: 0;
  }
}
.decor-wow {
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 7px;
  margin: 0 12px;
  display: inline-flex;
}
.decor-wow .img-fluid {
  position: absolute;
  z-index: -1;
  top: 2px;
  left: -13px;
  width: 176px;
  max-width: none;
}
@media (max-width: 768px) {
  .decor-wow .img-fluid {
    left: -5px;
    width: 120px;
  }
}
.custom-block {
  border-radius: 1rem;
  background-color: #fafafc;
  padding: 3rem;
}
.video-container {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--greyLite);
  box-shadow: 0 8px 20px -7px rgba(0, 0, 0, 0.08);
  background-image: url("../img/home-banner-bg.png");
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: var(--white);
  padding-top: 30px;
}
@media (max-width: 991px) {
  .video-container {
    border-radius: 8px;
  }
}
.hover-tab-content {
  display: block;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.hover-tab-content.active,
.hover-tab-content:hover {
  background-color: var(--white);
}
.hover-tab-content.grey.active,
.hover-tab-content.grey:hover {
  background-color: var(--greyLighter);
}
.section-custom-img {
  max-width: 520px;
}
@media (max-width: 991px) {
  .section-custom-img {
    max-width: 100%;
  }
}
.subscribe-text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.home-features h3 {
  font-size: 24px;
}
.home-features img {
  min-width: 72px;
}
.features-content h3 {
  font-size: 24px;
}
.features-content p,
.for-content p {
  color: var(--black);
}
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: black;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s ease-out;
}
.floating-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
}
.flipped-icon {
  display: inline-block;
  transform: scaleX(-1);
}
@media (max-width: 576px) {
  .floating-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  h1.fw-bold {
    font-size: 42px;
  }
}
