/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* ---------------- Google fonts ------------------ */
@import url("https://v1.fontapi.ir/css/SFProDisplay");

:root {
  scroll-behavior: unset;
  --white: #ffffff;
  --black: #000000;
  --graybg: #f9fafb;
  --whitebg: #ffffff;
  --blue: #3b4fff;
  --bodycolor: #111111;

  --boxShadow: 0rem 1.6rem 3.58rem 0 #00000040;
  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);
  --primary_font: "Figtree", sans-seri;
  --secondary_font: SF Pro Display, sans-serif;
  --third-family: "Inter", sans-serif;
  --height: 8rem;
}

.graybg {
  background-color: var(--graybg);
}

.whitebg {
  background-color: var(--whitebg);
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 200ms;
  color: inherit;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  color: var(--bodycolor);
  overflow-x: hidden;
  font-family: var(--primary_font);
}

.container {
  width: 100%;
  max-width: 127.7rem;
  padding-left: 0;
  padding-right: 0;
}

section {
  padding: 9rem 0;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: var(--primary_font);
  color: #232323;
}

a {
  color: #555555;
}

.green {
  text-align: center;
  background: #023466;
  color: #fff;
  padding: 2rem 4rem;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  line-height: 1;
}

.white {
  text-align: center;
  background: #fff;
  color: #000;
  padding: 2rem 4rem;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  line-height: 1;
}

.f-right {
  float: right;
}

.mb_120 {
  margin-bottom: 12rem;
}

.pb_108 {
  padding-bottom: 10.8rem;
}

.pt_120 {
  padding-top: 12rem;
}

.pb_120 {
  padding-bottom: 12rem;
}

.pl_15 {
  padding-left: 1.5rem;
}

.pr_15 {
  padding-right: 1.5rem;
}

/* colros */
.text_yellow {
  color: var(--yellow) !important;
}

.bg_yellow {
  background: var(--yellow) !important;
}

.text_blue {
  color: var(--blue) !important;
}

.bg_blue {
  background: var(--blue) !important;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}

.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}

.f_400 {
  font-weight: 400 !important;
}

.f_500 {
  font-weight: 500 !important;
}

.f_600 {
  font-weight: 600 !important;
}

.f_700 {
  font-weight: 700 !important;
}

.f_800 {
  font-weight: 800 !important;
}

.f_900 {
  font-weight: 900 !important;
}

/* titles */
h1 {
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-family: var(--secondary_font);
}

h2 {
  font-size: 4rem;
  line-height: 5rem;
}

h3 {
  font-size: 3.6rem;
  line-height: 4.6rem;
}

h4 {
  font-size: 2.8rem;
  line-height: 3.8rem;
}

h5 {
  font-size: 2.4rem;
  line-height: 3.4rem;
}

h6 {
  font-size: 2rem;
  line-height: 2.8rem;
}

/* texts */
.text_xl {
  font-size: 2rem;
  line-height: 3rem;
}

.text_lg {
  font-size: 1.8rem;
  line-height: 3rem;
}

.text_md {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.text_sm {
  font-size: 1.4rem;
  line-height: 2.1rem;
}

.text_xsm {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

input::placeholder {
  color: #666666;
}

textarea::placeholder {
  color: #666666;
}

/* borders */
.border {
  border: 0.1rem solid rgb(255, 255, 255, 0.2);
}

.border_l {
  border-left: 0.1rem solid rgb(255, 255, 255, 0.2);
}

.border_r {
  border-right: 0.1rem solid rgb(255, 255, 255, 0.2);
}

.border_t {
  border-top: 0.1rem solid rgb(255, 255, 255, 0.2);
}

.border_b {
  border-bottom: 0.1rem solid rgb(255, 255, 255, 0.2);
}

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: var(--white);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #000000;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* =========== Buttons ========== */
.button {
  padding: 0 3rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  width: fit-content;
  justify-content: center;
  border-radius: 10rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6rem;
  background-color: var(--blue);
  color: var(--white);
}

.button:hover {
  filter: brightness(0.75);
}

.gray-btn {
  background: #999;
  border-radius: 99999rem;
  height: 5rem;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
  color: #fff;
  transition: 0.35s ease;
}

.gray-btn:hover {
  background: #c0bcbc;
}

.header-button .button {
  height: 4.7rem;
  font-size: 1.6rem;
  padding: 0 2rem;
  line-height: 1.6rem;
}

.section-buttom {
  background: rgba(59, 79, 255, 0.05);
  border: 0.1rem solid #fff;
  border-radius: 6rem;
  padding: 1rem 2.3rem;
  height: 4.4rem;
  width: fit-content;
  margin-bottom: 1.6rem;
}

.section-buttom span {
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--bodycolor);
}

.section-buttom img {
  width: 2rem;
  margin-right: 1rem;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

/* -------------- Header Styles by Asib khan --------------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1024;
  width: 100%;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

/*sticky*/
header.sticky {
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0.8rem 2rem 0 rgba(0, 0, 0, 0.1);
}

.header-area {
  height: var(--height);
  display: flex;
  align-items: center;
}

.hader-logo img {
  width: 19.5rem;
}

.main-menu {
  gap: 4rem;
}

.main-menu li a {
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: capitalize;
  transition: 0.5s;
  color: #151515;
  display: flex;
  align-items: center;
  height: var(--height);
}

.main-menu li:hover a {
  font-weight: 700;
}

/* hero start  */

.hero-bg {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.93) 100%
  );
  border-radius: 3.2rem;
  width: 140rem;
  margin: 0 auto;
}

.page-number-section-area {
  gap: 1.7rem;
}

.page-number-section-area .home-icon {
  width: 1.6rem;
}

.page-number-section-area span img {
  width: 0.684rem;
}

.page-number-section-area strong {
  font-size: 1.6rem;
  font-weight: 600;
}

.page-number-section-area span,
.page-number-section-area a {
  display: inline-block;
  line-height: 1;
}

.page-number-section-area strong {
  line-height: 1;
}

.hero-shape-1 {
  left: 3rem;
}

.hero-shape-2 {
  right: 3rem;
}

.hero-shape-1,
.hero-shape-2 {
  position: absolute;
  width: 21.3rem;
  bottom: 0;
}

.hero-content h2 {
  padding-bottom: 1.3rem;
}

/* contact area start  */
.section-top h2 {
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.icon {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 1.6rem;
}

.icon img {
  width: 1.6rem;
}

.cdi-content {
  padding: 1.4rem;
}

.cdi-content p {
  color: #555555;
  font-size: 1.6rem;
  margin-bottom: 1.7rem;
  line-height: 150%;
  font-weight: 500;
}

.cdi-content p:last-child {
  margin-bottom: 0;
}

.form-area {
  padding: 5.2rem 5rem;
  border: 0.1rem solid #e9e9e9;
  border-radius: 2.5rem;
  box-shadow: 0 1.2rem 4.8rem 0 rgba(243, 243, 243, 0.41);
  background: #fff;
  margin-top: 3rem;
}

.label-input-group {
  margin-bottom: 2rem;
}

.label-input-group label {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 133%;
  text-transform: uppercase;
  color: #333;
}

.custom-input {
  border: none;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgba(102, 102, 102, 0.5);
  padding: 1.3rem 1.6rem 1.5rem 1.6rem;
  border-bottom: 0.1rem solid #ddd;
  border-radius: 0;
}

.country-select {
  border: none;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgba(102, 102, 102, 0.5);
  padding: 1.3rem 1.6rem 1.5rem 1.6rem;
  border-bottom: 0.1rem solid #ddd;
  border-radius: 0;
}

.country-select input {
  font-weight: 400;
  font-size: 1.4rem;
  border: none;
}

input:focus {
  box-shadow: none !important;
}

.submit-btn {
  background: #9d9d9d;
  color: #fff;
  padding: 1.4rem 2rem;
  border-radius: 4rem;
  border: none;
  width: 100%;
  font-weight: 500;
}

.country-select span {
  font-weight: 400;
  font-size: 1.4rem;
  color: #111111;
}

.country-select img {
  width: 1.8rem;
  margin-right: 2.2rem;
}

.Privacy img {
  width: 2.4rem;
  margin-right: 1rem;
}

.Privacy span {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 114%;
  color: #4a5565;
}

/* transform area start  */

.transform-shape .transform-shape-1,
.transform-shape .transform-shape-2 {
  width: 21.3rem;
}

.transform-shape-1 {
  left: 3rem;
}

.transform-shape-2 {
  right: 3rem;
}

.transform-area {
  padding-top: 13.5rem;
  padding-bottom: 16rem;
}

/* faq area start  */
.accordion-button::after {
  background-image: url(../img/plus-icon.svg);
  width: 2rem;
  height: 2rem;
  background-size: 2rem;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/ac-clode.svg);
  width: 1.4rem;
  height: 1.4rem;
  background-size: 1.4rem;
}

.accordion {
  box-shadow: 0.5rem 0.9rem 7.1rem 0 rgba(178, 178, 178, 0.21);
  background: #fff;
}

.accordion-button {
  padding: 3.6rem 2rem;
  outline: 0;
  box-shadow: none !important;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none !important;
}

.accordion-button p,
.accordion-button span {
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
  font-family: var(--primary_font);
}

.accordion-button span {
  margin-right: 2rem;
}

.accordion-button:not(.collapsed) {
  background: #f3f3f3;
  padding-bottom: 1.6rem;
}

.accordion-item {
  border: none;
}

.accordion-body {
  padding: 0 6rem;
  background: #f3f3f3;
  padding-bottom: 3.6rem;
}

.accordion-body p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

/* contact-box-area start */
.contact-box {
  background: var(--white);
  padding: 5rem 5.5rem;
  border-radius: 1.6rem;
  height: 31rem;
  transition: 0.35s ease;
}

.contact-box:hover {
  box-shadow: var(--boxShadow);
}

.box-icon {
  border-radius: 100%;
  background: rgba(59, 79, 255, 0.19);
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-icon img {
  width: 3.8rem;
}

.contact-box h6 {
  font-size: 1.9rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

.contact-box p,
.contact-box p a {
  font-size: 1.6rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #111;
}

.contact-box .top {
  text-transform: capitalize;
}

.footer-logo {
  width: 19.5rem;
}

.footer-content a {
  display: inline-block;
}

.footer-content p {
  font-size: 1.6rem;
  line-height: 130%;
  color: #111;
}

.follow-social-media p {
  font-size: 1.6rem;
  line-height: 150%;
  color: #111;
}

.social-icon {
  gap: 0.8rem;
}

.social-icon img {
  width: 3.8rem;
}

.footer_link p {
  font-size: 1.6rem;
  line-height: 150%;
  color: #111;
}

.pb_8 {
  padding-bottom: 0.8rem;
}

.footer_link li a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 143%;
  color: #111;
  display: inline-block;
  transition: 0.5s;
}

.footer_link.footer_link_2 .name {
  font-size: 1.4rem;
  line-height: 143%;
  color: #111;
  margin-bottom: 0.5rem;
}

.footer_link.footer_link_2 .sub {
  margin-bottom: 0.5rem;
}

.footer_link li a:hover {
  font-weight: 500;
}

.footer_link li img {
  width: 1.4rem;
  line-height: 7;
  margin-right: 0.8rem;
}

.f-b-b {
  border-radius: 10rem;
  padding: 0 3.1rem;
  height: 5.2rem;
  box-shadow: inset 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  transition: 0.35s ease-in-out;
}

.f-b-b img {
  width: 2.4rem;
  margin-left: 1rem;
}

.footer-call-button {
  background: #6f6c8f;
}

.footer-call-button:hover {
  background: #4d4b66;
}

.footer-enquire-button {
  background: #3b4fff;
}

.footer-enquire-button:hover {
  background: #2a38cc;
}

.footer-whatsApp-button {
  background: #60d669;
}

.footer-whatsApp-button:hover {
  background: #3aa43a;
}

.footer-bottom-button.d-flex.align-items-center.text-center {
  gap: 4rem;
}

.footer-bottom-button-area {
  box-shadow: 0 0 2.1rem 0 rgba(137, 137, 137, 0.34);
  background: #fff;
}

/*Hamburger menu*/
.hamburger-menu {
  cursor: pointer;
  display: inline-block;
  z-index: 999;
  border-radius: 50%;
  margin-top: 0.8rem;
}

.responsive {
  display: none;
}

.hamburger-menu span {
  background: #232323;
  width: 3.4rem;
  height: 0.3rem;
  display: block;
  margin: 0.7rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.hamburger-menu .line-top.current {
  -webkit-transform: translateY(250%) rotate(135deg);
  -ms-transform: translateY(250%) rotate(135deg);
  transform: translateY(250%) rotate(135deg);
}

.hamburger-menu .line-center.current {
  opacity: 0;
}

.hamburger-menu .line-bottom.current {
  -webkit-transform: translateY(-400%) rotate(-135deg);
  -ms-transform: translateY(-400%) rotate(-135deg);
  transform: translateY(-400%) rotate(-135deg);
}

/*ofcanvas menu*/
.hader-logo {
  z-index: 1020;
}

.responsive {
  z-index: 999;
}

.responsive-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  top: 0;
  display: block;
  left: -100%;
  transition: 0.3s;
  overflow: auto;
}

.current {
  left: 0;
}

.responsive-menu ul {
  margin-top: 12rem;
  padding-left: 0;
}

.responsive-menu li:not(:last-child) {
  margin-bottom: 3.5rem;
}

.manu-container .main-menu li a {
  font-size: 2.6rem;
}

/* page 2 start by asib khan */
/* Technologies area start */
.gxgy {
  --bs-gutter-x: 8.2rem;
  --bs-gutter-y: 7.7rem;
}

.technologies-img img {
  width: 25rem;
}

.technologies-content h5 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #111;
}

.technologies-content p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

/* contact-speak area start  */
.contact-speak-blue-bg {
  box-shadow: 0 2.5rem 5rem -1.2rem rgba(0, 0, 0, 0.25);
  background: #3b4fff;
  border-radius: 2.8rem;
  padding: 2rem 6rem;
}

.contact-speak-content {
  padding-top: 6rem;
  padding-right: 5rem;
}

.contact-speak-content h4 {
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 140%;
  color: #e9ebe4;
}

.contact-speak-content p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 120%;
  color: #e9ebe4;
}

.contact-speak-from {
  background: #fff;
  border-radius: 2.4rem;
  padding: 4rem;
}

.contact-speak-input-content {
  margin-bottom: 2rem;
}

.contact-speak-input-content label {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 133%;
  text-transform: uppercase;
  color: #333;
}

.contact-speak-input-content .country-select input {
  background: none;
  border: none;
}

.contact-speak-input-content .country-select input:focus {
  background: none;
  border: none;
}

.contact-speak-input-content .country-select {
  border-bottom: 0.1rem solid #ddd;
  background: #f5f5f5;
  padding: 0;
  font-weight: 400;
  font-size: 1.2rem;
  color: rgba(102, 102, 102, 0.5);
  padding-left: 1.5rem;
}

.contact-speak-input-content input {
  border-bottom: 0.1rem solid #ddd;
  background: #f5f5f5;
  padding: 1.5rem;
  font-weight: 400;
  font-size: 1.2rem;
  color: rgba(102, 102, 102, 0.5);
}

.contact-speak-input-content input::placeholder {
  color: rgba(102, 102, 102, 0.5);
  font-size: 1.4rem;
  font-weight: 400;
}

.contact-speak-input-content input:focus {
  border-bottom: 0.1rem solid #ddd;
  background: #f5f5f5;
}

/* page 3 start by asib khan */
/* Packages area start */

.packages-img img {
  width: 8.6rem;
  margin-bottom: 2.4rem;
}

.packages-content h5 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #111;
}

.packages-content p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
  padding: 2rem 0;
}

.row.gxgy-55 {
  --bs-gutter-x: 4.7rem;
  --bs-gutter-y: 5rem;
}

.packages-content hr {
  margin: 0 auto;
}

.packages-content .csmb {
  margin-bottom: 2rem;
}

/* page 4 start by asib khan */
/* Testimonials area start */

.testimonials-box-color-bg {
  background: linear-gradient(180deg, #f0f2ff 0%, #d4d8ff 100%);
  padding: 3.2rem;
  border-radius: 2.4rem;
}

.testimonials-box-color-content h2 {
  line-height: 110%;
  letter-spacing: -0.02em;
}

.testimonials-box-color-content span {
  display: inline-block;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #111;
}

.testimonials-box-color-content p {
  line-height: 150%;
  letter-spacing: -0.02em;
  padding-bottom: 4rem;
}

.testimonials-box::before {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(59, 79, 255, 0.8) 100%
  );
  content: "";
  border-radius: 2.4rem;
}

.testimonials-box {
  border-radius: 2.4rem;
}

.testimonials-box-contemt {
  padding: 2.4rem;
  z-index: 999;
}

.testimonials-box-contemt {
  position: absolute;
  bottom: 0;
}

.testimonials-box img {
  border-radius: 2.4rem;
  height: 33.4rem;
  object-fit: cover;
}

.testimonials-box-contemt h5 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 1rem;
}

.testimonials-box-contemt a {
  font-weight: 600;
  font-size: 1.6;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
  display: inline-block;
}

.g-24 {
  --bs-gutter-x: 2.4rem;
}

.author-big-img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 2.4rem;
}

.author-big-img-content a {
  display: inline-block;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
}

.author-big-img-content span {
  display: block;
  font-weight: 300;
  font-size: 1.9rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
}

.author-big-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 58.05%,
    rgba(59, 79, 255, 0.7) 100%
  );
  border-radius: 1.6rem 1.6rem 0 0;
}

.author-big-img img {
  border-radius: 1.6rem 1.6rem 0 0 !important;
}

.testimonials-author-box {
  border: 0.1rem solid #d8d8d8;
  border-radius: 1.6rem;
  height: 52rem;
}

.mb_24 {
  margin-bottom: 2.4rem;
}

.testimonials-author-box-body {
  padding: 2.5rem;
}

.testimonials-author-box-body p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
  padding-right: 2.5rem;
  padding-bottom: 2.5rem;
}

.testimonials-author-box-body span {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

.star {
  gap: 0.265rem;
  margin-bottom: 1rem;
}

.star img {
  width: 1.326rem;
}

.play-icon img {
  width: 2rem;
}

.testimonials-review-box {
  border: 0.1rem solid #d8d8d8;
  border-radius: 1.6rem;
  padding: 2.4rem;
  height: 25rem;
}

.review-author img {
  width: 4.6rem;
  margin-right: 0.8rem;
}

.review-author-content p {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
}

.review-author-content span {
  display: inline-block;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

.testimonials-author-verified img {
  width: 3.2rem;
}

.review-top-content {
  padding-bottom: 2.3rem;
}

.testimonials-review-box-body p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
  padding-right: 2.5rem;
  padding-bottom: 1rem;
}

.testimonials-review-box-body span {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

.testimonials-custom-box-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 58.05%,
    rgba(59, 79, 255, 0.7) 100%
  );
  border-radius: 1.6rem;
}

.testimonials-custom-box-img .big-im {
  height: 24.7rem;
  object-fit: cover;
  border-radius: 1.6rem;
}

/* page 5 start by asib khan */
/* treatments area start */

.section-top-img img {
  border-radius: 1.6rem;
  width: 60.2rem;
}

.section-top-img {
  position: relative;
  float: right;
}

.section-top-img:before {
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 64.36%,
    rgba(59, 79, 255, 0.6) 100%
  );
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
}

.row.csgxgy {
  --bs-gutter-x: 11rem;
  --bs-gutter-y: 5rem;
}

.benefits-content {
  width: 28.6rem;
}

.benefits-content img {
  width: 13.3rem;
}

.benefits-content h5 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-align: center;
  color: #111;
}

.benefits-content hr {
  border-top: 0.1rem solid #d9d9d9;
  margin: 1.2rem;
}

.benefits-content p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-align: center;
  color: #333;
}

.row.gy_70 {
  --bs-gutter-y: 7rem;
}

.treatments-2-img img {
  border-radius: 1rem;
}

.treatments-shape-img img {
  width: 10.8rem;
  position: absolute;
  right: 0.9rem;
}

.shape-img-2 {
  left: 0.9rem;
  top: -8rem;
}

/* page 6 start by asib khan */
/* treatments area start */

.about-mission-vission-box:before {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 64.36%,
    rgba(59, 79, 255, 0.6) 100%
  );

  content: "";
  border-radius: 2.4rem;
}

.about-mission-vission-box-content {
  position: absolute;
  bottom: 0;
  padding: 2.4rem;
  z-index: 999;
  width: 100%;
}

.about-mission-vission-box-content h5 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: rgb(255, 255, 255);
  margin-bottom: 0;
}

.about-mission-vission-box img {
  border-radius: 2.4rem;
  object-fit: cover;
}

.about-mission-vission-box-color-bg h5 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
  margin-bottom: 1rem;
}

.about-mission-vission-box-color-bg p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

.about-mission-vission-box-color-content {
  border-radius: 1.6rem;
  padding: 2.4rem;
  height: 23.4rem;
}

.about-mission-box-color-content {
  background: rgba(59, 79, 255, 0.09);
}

.about-vission-box-color-content {
  background: #3b4fff;
}

.about-vission-box-color-content h5,
.about-vission-box-color-content p {
  color: #fff;
}

.experience-client-img {
  width: 30.7rem;
  height: 37.9rem;
  display: flex;
  align-items: end;
  background: #e8eafb;
  text-align: center;
  justify-content: center;
  transition: 0.5s;
  overflow: hidden;
  margin-bottom: 2.4rem;
}

.experience-1 {
  width: 25.9rem;
}

.experience-2 {
  width: 53.1rem;
}

.experience-3 {
  width: 28.5rem;
}

.experience-4 {
  width: 53.1rem;
}

.experience-client-img:hover img {
  transform: scale(1.05);
}

.experience-client-img img {
  transition: 0.5s;
}

.experience-client-top h2 {
  font-weight: 500;
  font-size: 4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-align: center;
  color: #111;
  margin-bottom: 1.6rem;
}

.experience-client-top p {
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #111;
}

.experience-client-content h5 a {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #3b4fff;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.experience-client-content span {
  font-weight: 300;
  font-size: 1.9rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
  display: inline-block;
}

.row.gx_50 {
  --bs-gutter-x: 5rem;
}

.foster-img img {
  width: 5.2rem;
}

.foster-img {
  margin-bottom: 2.4rem;
}

.foster-content h5 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #111;
  padding-bottom: 2.5rem;
}

.foster-content p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

/* page 1 start by asib khan */
/* home-pege area start */

.home-hero-bg {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.93) 100%
  );
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.93) 100%
  );
  background-size: auto;
  border-radius: 3.2rem;
  width: 140rem;
  margin: 0 auto;
  padding-top: 15.5rem;
  padding-bottom: 17.5rem;
}

.home-hero-shape-1,
.home-hero-shape-2 {
  position: absolute;
  width: 21.3rem;
  z-index: 999;
}

.home-hero-shape-1 {
  left: 3rem;
}

.home-hero-shape-2 {
  right: 3rem;
}

.home-section-buttom {
  border: 0.1rem solid #ffffff;
  border-radius: 6rem;
  padding: 1rem 2.3rem;
  height: 4.4rem;
  width: fit-content;
  margin-bottom: 2.8rem;
  background: rgba(255, 255, 255, 0.25);
}

.home-section-buttom img {
  width: 2rem;
  margin-right: 1rem;
}

.home-hero-verifyed span img {
  width: 2.5rem;
  margin-right: 0.2rem;
}

.home-hero-verifyed {
  gap: 2.5rem;
}

.home-hero-content h2 {
  font-weight: 600;
  font-size: 4rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-align: center;
  color: #111;
  padding-bottom: 2.8rem;
}

.home-hero-content p {
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #111;
  margin-bottom: 3.2rem;
}

.hero_button.button {
  background: linear-gradient(153deg, #c8c8c8 0%, #525252 100%);
  margin-bottom: 7.5rem;
}

.home-hero-verifyed span {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #111;
}

.counter-fact-item-border {
  border-right: 0.1rem solid #00000080;
  padding: 0 6rem;
}

.counter-fact-item-border:last-child {
  border-right: none;
}

.counter-fact-content h1 {
  font-weight: 600;
  font-size: 5.5rem;
  line-height: 110.00000000000001%;
  letter-spacing: -5%;
  margin-right: 1rem;
}

.counter-fact-content p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  text-transform: capitalize;
  font-family: var(--secondary_font);
}

.counetr_whatclinic_img {
  width: 10.8rem;
}

.counetr_google_img {
  width: 8.8rem;
}

.counter-area {
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.93) 100%
  );
  height: 46.8rem;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: end;
  z-index: 0;
  padding-bottom: 4rem;
}

.home-hero-content.text-center.mx-auto {
  z-index: 99;
  position: relative;
}

.patients-youtube-video-title h5 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-align: center;
  color: #111;
}

.youtube-bg-top-content {
  width: 100%;
  top: 0;
  padding: 1.4rem;
  z-index: 99;
}

.youtube-logo {
  box-shadow: 0 0.3rem 0.5rem 0 rgba(68, 100, 214, 0.1);
  background: #fff;
  border-radius: 2.7rem;
  padding: 0.8rem;
  width: 3.8rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-logo img {
  width: 2rem;
}

.youtube-logo a {
  display: inline-block;
  line-height: 0;
}

.watch-button {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  border: 0.34px solid #d9eaff;
  border-radius: 2.7rem;
  padding: 0.6rem 0.8rem;
  box-shadow: 0 0.3rem 0.5rem 0 rgba(68, 100, 214, 0.1);
  background: #f8faff;
  line-height: 1;
}

.patients-youtube-video-bg:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  width: 100% !important;
  height: 15rem;
  content: "";
  left: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  border-radius: 1.4rem;
  z-index: 1;
}

.patients-youtube-video-bg img {
  border-radius: 1.4rem;
  box-shadow: 0 0.4rem 0.9rem 0 rgba(64, 110, 164, 0.08);
  background: #fff;
}

.patients-youtube-video-bg {
  margin-bottom: 0.8rem;
}

.patients-youtube-video-content h5 {
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #111;
}

.patients-youtube-video-content a {
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #333;
  display: inline-block;
}

.patients-youtube-video-content p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #333;
}

.expert-doctors-area .row.gx-80 {
  --bs-gutter-x: 8rem;
}

.expert-doctors-img {
  margin-bottom: 2.7rem;
}

.expert-doctors-img img {
  width: 17rem;
}

.expert-doctors-content h5 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
  padding-bottom: 1rem;
}

.expert-doctors-content p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

.expert-doctors-shape {
  top: 50%;
  transform: translateY(-50%);
  right: -10rem;
}

.expert-doctors-shape img {
  width: 10.8rem;
}

.expert-doctors-shape.expert-doctors-shape-2 {
  top: 46%;
  transform: translateY(-50%);
  right: -8rem;
}

.core-values-img img {
  width: 24.7rem;
}

.core-values-content h5 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
  margin-bottom: 0.8rem;
}

.core-values-content p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

.holiday-sub-img img {
  width: 3.1rem;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

.holiday-wrapper h2 {
  font-weight: 500;
  font-size: 4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
  padding-bottom: 2.5rem;
}

.holiday-sub-content h5 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: -0.02em;
  color: #111;
  padding-bottom: 0.8rem;
}

.holiday-sub-content ul li {
  list-style: disc;
  display: inline list-item;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #333;
}

.holiday-sub-content ul li:first-child {
  list-style: none;
}

.holiday-img::before {
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 64.36%,
    rgba(59, 79, 255, 0.6) 100%
  );
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.pricing-table thead tr th {
  --bs-table-bg: #3b4fff !important;
  padding: 1.7rem 4.4rem;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

.pricing-table thead tr .white {
  --bs-table-bg: #fff !important;
  color: #3b4fff;
}

.pricing-table thead tr th:first-child {
  text-align: left;
}

.treatment-box img {
  width: 4rem;
  padding-right: 1.6rem;
}

.treatment-box h5 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
}

.pricing-table > tbody tr td {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
  text-align: center;
  padding: 3.5rem 0.5rem;
}

.pricing-table.table {
  --bs-table-bg: none;
}

.pricing-table > tbody tr .saving {
  background: rgba(59, 79, 255, 0.03);
}

.pricing-bottom-content p {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
  width: 50rem;
}

.certified-band-top-logo {
  gap: 4.7rem;
}

.certified-band-bottom-logo {
  gap: 1.7rem;
  margin-bottom: 0.5rem;
}

.band_p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #111;
}

.band-logo-1 {
  width: 15.2rem;
}

.band-logo-2 {
  width: 10.3rem;
}

.band-logo-3 {
  width: 18.8rem;
}

.band-logo-4 {
  width: 26.5rem;
  margin-left: -0.5rem;
}

.band-logo-5 {
  width: 28.5rem;
}

.band-logo-6 {
  width: 25.6rem;
}

.band-logo-7 {
  width: 26rem;
}

.band-logo-8 {
  width: 25.5rem;
}

.band-bg-img::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 64.36%,
    rgba(59, 79, 255, 0.6) 100%
  );
}

.band-bg-img-content {
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 1.8rem;
}

.band-bg-img-content h4 {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
}

.section-top-list ul li {
  list-style: disc;
  display: inline list-item;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #111;
}

.section-top-list ul li:first-child {
  list-style: none;
}

.kerala-dental-button {
  border-radius: 6rem;
  padding: 1rem 2.3rem;
  height: 4.4rem;
  width: fit-content;
  margin-bottom: 1.6rem;
  border: 0.1rem solid #3b4fff;
  background: rgba(59, 79, 255, 0.05);
}

.kerala-dental-button img {
  width: 2rem;
  margin-right: 1rem;
}

.kerala-dental {
  gap: 1.2rem;
}

.kerala-dental-button p {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 150%;
  text-align: center;
  color: #111;
}

.kerala-dental-button .kerala-dental-button p {
  display: inline-block;
}

.kerala-dental-button p span {
  display: inline-block;
  font-weight: 600;
}

.kerala-dental-button.as-bottom-button {
  height: 6.8rem;
}
.play-button {
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.play-button img {
  width: 2.5rem;
}

.video-card.p-relative img {
  height: 49.2rem;
}

.video-card video {
  height: 49.2rem !important;
}

.kerala-sub-img {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 5.5rem;
  background: #e0e4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kerala-sub-img img {
  width: 2.4rem;
}

.kerala-sub-wrapper {
  gap: 8.8rem;
}

.kerala-sub-content h6 {
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #333;
}

.kerala-sub-content p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #111;
}

.before-after-img img {
  width: 100%;
}

.before-after-img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 58.05%,
    rgba(59, 79, 255, 0.7) 100%
  );
}

.before:before {
  border-radius: 1.6rem 0 0 1.6rem;
}

.before img {
  border-radius: 1.6rem 0 0 1.6rem;
}

.after:before {
  border-radius: 0 1.6rem 1.6rem 0;
}

.after img {
  border-radius: 0 1.6rem 1.6rem 0;
}

.before-after-content {
  bottom: 0;
  padding: 2.4rem;
}
.before-after-content h5 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
}

.before-after-youtube {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 999;
  text-align: center;
  right: 0;
  transform: translateY(-50%);
  border-radius: 4.3rem;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  box-shadow: 0 0.4rem 0.8rem 0 rgba(68, 100, 214, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.before-after-youtube img {
  width: 3rem;
}
.before-after-youtube a {
  display: contents;
}

.after-care-wrapper .title {
  font-weight: 500;
  font-size: 4rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}
.after-care-content {
  padding-top: 5.2rem;
}
.after-care-left {
  margin-bottom: 1.8rem;
}
.after-care-left img {
  width: 3.1rem;
  margin-right: 1.6rem;
}
.after-care-left p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #111;
}

.after-care-bg:before {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 64.36%,
    rgba(59, 79, 255, 0.6) 100%
  );
  content: "";
  bottom: 0;
}

/* 


    .pricing-table{
        display: block;
        width: 100%;
    }
    .pricing-table:before{
        content: "Scroll horizontally >";
        display: block;
        text-align: right;
        font-size: 11px;
        color: white;
        padding: 0 0 10px;
    }
    .pricing-table thead, .pricing-table tbody, .pricing-table thead th {
        display: block;
    }
    .pricing-table thead th:last-child{
        border-bottom: none;
    }
    .pricing-table thead {
        float: left;
    }
    .pricing-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .pricing-table td, .pricing-table th {
        padding: 20px .625em .625em .625em;
        height: 60px;
        vertical-align: middle;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 120px;
        font-size: 13px;
        text-overflow: ellipsis;
    } */

/* =============== footer-bottom-button-area ============= */
.footer-bottom-button-area {
  position: fixed;
  width: 100%;
  bottom: -100%;
  left: 0;
  z-index: 999;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.footer-bottom-button-area.show {
  bottom: 0;
  opacity: 1;
}

/* ================ dental_area ================ */
.bg_gradient {
  position: relative;
}

.bg_gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 58.05%,
    rgba(59, 79, 255, 0.7) 100%
  );
  border-radius: 1.6rem 1.6rem 0 0;
}

.dental_boxes {
  display: flex;
}

.dental_box > img {
  height: 37.6rem;
  object-fit: cover;
}

.dental_box {
  max-width: 24.7rem;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  flex: 0 0 auto;
  width: 100%;
}

.dental_box.active {
  max-width: 53.7rem;
}

.dental_values_content {
  position: absolute;
  padding: 1.6rem;
  bottom: 0;
  left: 0;
  width: 100%;
}

.dental_values_content h5 {
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
  padding-bottom: 0.8rem;
}

.dental_values_content p {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dental_box:not(.active):hover ~ .dental_box.active {
  width: 53.7rem;
}

/* ================= tell_input ================= */
.tell_input {
  width: 100%;
}

.tell_input .iti {
  width: 100%;
}

.tell_input input {
  width: 100%;
  border-top: none;
  border-left: 0;
  border-right: 0;
}

.iti__selected-flag {
  padding: 0 1.7rem 0 1.2rem;
}

.tell_input input::placeholder {
  color: rgba(102, 102, 102, 0.5);
}

.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  margin: 0 3rem 0 2rem;
  color: #111111;
  font-size: 1.4rem;
  width: 4rem;
  text-align: center;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--show-selected-dial-code .iti__selected-flag {
  background-color: transparent;
}

.iti__flag-box,
.iti__country-name {
  margin-right: 0.8rem;
}

.iti__country {
  padding: 0.8rem;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 25rem;
}

/* ======= .contact-speak-from ======== */
.contact-speak-from h5 {
  font-weight: 600;
}

.cdi-content p {
  margin-bottom: 0.8rem;
}

/* ======= label-input-group ======== */
.label-input-group input {
  background: #fff;
}

.label-input-group input::placeholder {
  color: #66666650;
}

.main-menu li a.active {
  font-weight: 700;
}

/* ======= Mega Menu ======== */
.mega_menu {
  padding: 3.5rem 0;
  position: fixed;
  background: #fff;
  z-index: 99999999;
  width: 100%;
  top: 8rem;
  box-shadow: 0 1.5rem 1.5rem -1rem #00000040;
  min-height: 42.5rem;
  pointer-events: none;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  transform: translateY(-2rem) scale(0.9);
}


.menu_icon {
  width: 9rem;
  filter: brightness(0) saturate(100%) invert(0%) sepia(59%) saturate(21%)
    hue-rotate(261deg) brightness(99%) contrast(99%);
}

.mega_menu .nav-link.active .menu_icon {
  filter: brightness(0) saturate(100%) invert(35%) sepia(84%) saturate(5920%)
    hue-rotate(232deg) brightness(100%) contrast(102%);
}

.arrow_down {
  width: 3.4rem;
  opacity: 0;
}

.menu_tab p {
  line-height: 2rem;
  font-size: 1.5rem;
  color: #151515;
  letter-spacing: -0.02em;
}

/* .mega_menu .nav_tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.nav_tabs .nav-link.active .arrow_down {
  opacity: 1;
}

.menu_tab_content {
  padding-top: 2.5rem;
  position: relative;
  margin-top: 1.4rem;
}

.menu_tab_content:before {
  width: 98.8rem;
  background: #d0d0d0;
  display: block;
  height: 0.1rem;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.menu_tab_content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: fit-content;
  gap: 2.4rem 8rem;
  list-style: disc;
  color: #151515;
  letter-spacing: -0.02em;
  line-height: 2rem;
  padding-left: 2rem;
}

.menu_tab_content h6 {
  font-weight: 600;
}

.menu_link_icon {
  width: 2rem;
  transition: 0.35s ease;
}


/* menu_tab_content */
.menu_tab_content ul li a {
    color: #151515;
}

.menu_tab_content ul li a:hover {
    color: #897777;
}



/* number_picker */
.contact-speak-input-content .number_picker {
    padding: 1.2rem 1.5rem;
}






/* ============== swiper =============== */
.nav_tabs .swiper-slide {
    width: 18rem;
}