body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
table {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-weight: normal;
}
body {
  font-family: "Archivo", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #303030;
  line-height: normal;
  padding-top: 110px !important;
  overflow: hidden;
  overflow-y: auto;
}
/**, ::after, ::before { box-sizing: border-box; }*/
* {
  margin: 0px;
  padding: 0px;
}
[type="button"]:not(:disabled),
button:not(:disabled) {
  outline: none;
}

a {
  color: #000000;
  outline: none;
  -webkit-transition: all 400ms ease;
  -moz-transition: all ease 400ms;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #000000;
  outline: none;
}

.justify {
  text-align: justify; /*letter-spacing: -0.20px;*/
}
.capital {
  text-transform: capitalize !important;
}
.upper {
  text-transform: uppercase !important;
}
.italic {
  font-style: italic;
}

.form-control:focus {
  box-shadow: none;
}

.light {
  font-weight: 300 !important;
}
.normal {
  font-weight: normal !important;
}
.medium {
  font-weight: 500 !important;
}
.sbold {
  font-weight: 600 !important;
}
.bold {
  font-weight: bold !important;
}

p {
  margin-bottom: 20px;
  color: #7a7a7a;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0px;
}

[class*="font-"] {
  line-height: 1.5;
}

.font-14 {
  font-size: 14px !important;
}
.font-16 {
  font-size: 16px !important;
}
.font-18 {
  font-size: 18px !important;
}
.font-20 {
  font-size: 20px !important;
}
.font-22 {
  font-size: 22px !important;
}
.font-24 {
  font-size: 24px !important;
}
.font-40 {
  font-size: 40px !important;
  line-height: 1.3;
}

@media (max-width: 1299px) {
  .font-24 {
    font-size: 22px !important;
  }
  .font-40 {
    font-size: 36px !important;
  }
}
@media (max-width: 991px) {
  .font-20 {
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .font-20,
  .font-22 {
    font-size: 18px !important;
  }
  .font-24 {
    font-size: 22px !important;
  }
  .font-40 {
    font-size: 30px !important;
  }
}

.white {
  color: #ffffff !important;
}
.black {
  color: #303030 !important;
}
.gray {
  color: #7a7a7a !important;
}
.orange {
  color: #f17920 !important;
}

.whitebg {
  background-color: #ffffff !important;
}
.graybg {
  background-color: #f7f6f6 !important;
}
.lightbg-1 {
  background-color: #fbe3d1;
}

.btnall {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.btnall:focus {
  box-shadow: none;
}

.primary-btn {
  background-color: transparent;
  color: #303030 !important; /*border: solid 2px #303030;*/
  position: relative;
  overflow: hidden;
}
.primary-btn:hover {
  color: #ffffff !important;
}
.primary-btn:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -2;
  border: solid 2px #303030;
  border-radius: inherit;
}
.primary-btn:before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  background: linear-gradient(to right, #f17920 0%, #fdb528 100%);
  transition: all 300ms ease-in-out;
  width: 0px;
}
.primary-btn:hover:before {
  width: 100%;
}

.secondary-btn {
  background: linear-gradient(to right, #f17920 0%, #fdb528 100%);
  color: #ffffff !important;
}
.secondary-btn:hover,
.secondary-btn:focus {
  background: linear-gradient(to right, #f17920 0%, #fdb528 100%);
  opacity: 0.7 !important;
}

.primary-btn,
.secondary-btn {
  font-weight: 500;
  text-decoration: none !important;
  line-height: 1.3;
  padding-inline: 25px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 150px;
  min-height: 50px;
  transition: all 300ms ease-in-out;
  border: 0px;
}

@media (max-width: 991px) {
  .primary-btn,
  .secondary-btn {
    min-height: 46px;
    padding-block: 10px;
  }
}

/*---- Animation Class ----*/
.data-animate {
  opacity: 0;
}
.fadein-animation,
.fadein-hook-animation {
  opacity: 0;
  visibility: hidden;
}
/*---- Animation Class End ----*/

/*------------------------------------- Header Start -------------------------------------*/

@media (min-width: 768px) {
  .header {
  }
  .header .navbar {
    background-color: #ffffff;
  }
  .header.fixed .navbar {
    background-color: #ffffff;
  }

  .header .container {
    min-height: 110px;
    align-items: unset;
    justify-content: unset;
    transition: all 250ms ease;
  }
  .header .navbar-brand {
    max-width: 140px;
    display: flex;
    align-items: center;
    z-index: 2;
    padding-block: 10px !important;
  }

  .main-navigation {
    align-items: center;
    height: 100%;
  }
  .main-navigation .nav-item {
    position: static;
    height: 100%;
  }
  .main-navigation .nav-item .nav-link {
    font-weight: bold;
    color: #303030;
    height: 100%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    margin-inline: 18px;
    transition: all 0.3s ease-in-out;
  }
  .main-navigation .nav-item .nav-link:hover,
  .main-navigation .nav-item .nav-link.active {
    color: #f17920;
  }

  .headerContact {
    display: flex;
    align-items: center;
    padding-left: 20px;
  }
}

@media (max-width: 1299px) {
  body {
    padding-top: 90px !important;
  }
  .header .container {
    min-height: 90px;
  }
  .header .navbar-brand {
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  body {
    padding-top: 80px !important;
  }
  .header .container {
    min-height: 80px;
  }

  .header .navbar-brand {
    z-index: 2;
    max-width: 110px;
  }
  .main-navigation .nav-item .nav-link {
    margin-inline: 10px;
    font-size: 16px;
  }

  .headerContact {
    padding-left: 10px;
  }
  .headerContact .primary-btn {
    min-width: unset;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 70px !important;
  }
  .header .container {
    min-height: 70px;
  }
  .header .navbar-toggler {
    border: 0px;
    padding: 0px;
    min-height: 26px;
    order: 2;
  }
  .header .navbar-toggler:focus {
    box-shadow: unset;
  }
  .header .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent;
  }
  .header .navbar-toggler:not(.collapsed) .navbar-toggler-icon:before {
    transform: rotate(-45deg);
    top: 0px;
  }
  .header .navbar-toggler:not(.collapsed) .navbar-toggler-icon:after {
    transform: rotate(45deg);
    bottom: 0px;
  }
  .header .navbar-toggler .navbar-toggler-icon {
    background-image: unset;
    position: relative;
    background-color: #000000;
    width: 32px;
    height: 2px;
  }
  .header .navbar-toggler .navbar-toggler-icon:before,
  .header .navbar-toggler .navbar-toggler-icon:after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background-color: #000000;
    position: absolute;
    transition: all 250ms;
  }
  .header .navbar-toggler.collapsed .navbar-toggler-icon:before {
    top: -10px;
  }
  .header .navbar-toggler.collapsed .navbar-toggler-icon:after {
    bottom: -10px;
  }

  .header .navbar {
    background-color: #ffffff;
  }
  .header .navbar-brand {
    max-width: 96px;
  }

  .header .navbar-text {
    padding: 15px !important;
  }
  .header .navbar-text .text-decoration-underline {
    white-space: nowrap;
  }

  .header .navbar-collapse {
    position: fixed !important;
    top: 70px;
    left: -290px;
    min-width: 230px;
    height: calc(100vh - 70px) !important;
    overflow: hidden !important;
    overflow-y: scroll !important;
    opacity: 0;
    background-color: #ffffff;
    transition: all 0.2s !important;
    display: block !important;
    z-index: 99999;
  }
  .header .navbar-collapse.show {
    width: 100%;
    left: 0;
    transition: all 0.2s !important;
    opacity: 1;
    padding-top: 20px;
  }

  .main-navigation .nav-item {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  }
  .main-navigation .nav-item:last-child {
    border-bottom: 0px;
  }
  .main-navigation .nav-item .nav-link {
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    position: relative;
    margin-inline: 0px;
    display: flex;
    align-items: center;
  }
  .main-navigation .nav-item .nav-link:hover {
    color: #000000;
  }
  .main-navigation .nav-item .nav-link.active {
    color: #000000;
  }
  .main-navigation .nav-item .nav-link:after {
    margin-left: auto;
  }

  .headerContact {
    padding: 20px;
  }
  .headerContact .primary-btn {
    min-width: 144px;
  }
}
@media (max-width: 575px) {
}

/*------------------------------------- Header End -------------------------------------*/

/*------------------------------------- Footer Start -------------------------------------*/
.footer {
  background-color: #f6f4f4;
  border-top: solid 1px #fdb528;
  padding-top: 70px;
  font-size: 16px;
}

.ft-slider-main {
  margin-top: -100px;
}
.ft-slider-item {
  position: relative;
  background-color: #fbe3d1;
  border-radius: 16px;
  overflow: hidden;
}
.ft-slider-item:before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  opacity: 0.5;
  background-image: url("../images/logo-object.png");
  background-repeat: no-repeat;
  background-position: 20px 20px;
  background-size: contain;
  z-index: -1;
}

.link1 {
  color: #303030;
  transition: all 250ms;
  position: relative;
}
.link1:hover {
  color: #f17920;
}
.link1:after {
  content: "";
  width: 0%;
  height: 1px;
  display: inline-block;
  border-bottom: solid 1px #303030;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: all 250ms;
}
.link1:hover:after {
  width: 100%;
  border-color: #f17920;
}
.link1.active {
  color: #f17920;
}
.link1.active:after {
  width: 100%;
  border-color: #f17920;
}

.footer ul {
}
.footer ul li {
  margin-bottom: 20px;
}
.footer ul li:last-child {
  margin-bottom: 0px;
}

.footer-secondary {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
}
.ft-logo {
  display: block;
  max-width: 160px;
  margin-inline: auto;
}

.socialMedia {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.socialMedia a {
  font-size: 20px;
  color: #ffffff;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background-color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 5px;
}
.socialMedia a:hover {
  color: #ffffff;
  background-color: #f17920;
}

.copyright {
  padding-block: 30px;
  border-top: solid 1px #cccccc;
}

/*@media (max-width: 1299px) {
    .footer{ padding-top: 30px; padding-bottom: 20px; }
    .ft-logo{ max-width: 120px; }
}
@media (max-width: 991px) {
    .ft-logo{ max-width: 110px; }
}
@media (max-width: 767px) {
    .footer{ text-align: center; }
    .ft-logo{ padding-bottom: 20px; }
}*/

/*---- Move Top Start ----*/
#move-top {
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #303030;
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#move-top.show {
  cursor: pointer;
  opacity: 0.4;
  visibility: visible;
  transition: all 250ms;
  padding-top: 10px;
}
#move-top.show:hover {
  opacity: 1;
  visibility: visible;
  align-items: flex-start;
  transition: all 250ms;
  padding-top: 0px;
}
@media (max-width: 575px) {
  #move-top {
    width: 36px;
    height: 36px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}
/*-- Move Top End --*/
/*------------------------------------- Footer End -------------------------------------*/

/*---- Index Page ----*/
/*Main Part Start*/
.main-banner {
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}
.main-banner-text {
  max-width: 560px;
}
.main-banner-text h1 {
  padding-bottom: 20px;
}

.main-thumb-shadow {
  position: relative;
}
.main-thumb-shadow:after {
  content: "";
  background: url(../images/main-thumb-shadow.png) no-repeat right bottom;
  background-size: contain;
  width: 886px;
  height: 845px;
  position: absolute;
  right: -220px;
  bottom: -150px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .main-banner {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .main-banner {
    padding-top: 70px;
  }
  .main-thumb-shadow:after {
    width: 700px;
    height: 668px;
    right: -180px;
    bottom: -90px;
  }
}
@media (max-width: 767px) {
  .main-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .main-thumb-shadow {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .main-thumb-shadow:after {
    right: -180px;
    bottom: -150px;
    width: 600px;
    height: 560px;
  }
}
/*End*/

.space-120 {
  padding-block: 120px;
  overflow: hidden;
}
.space-90 {
  padding-block: 90px;
}
@media (max-width: 1399px) {
  .space-120 {
    padding-block: 90px;
  }
  .space-90 {
    padding-block: 60px;
  }
}
@media (max-width: 1199px) {
  .space-120 {
    padding-block: 70px;
  }
}
@media (max-width: 991px) {
  /*.space-90 { padding-block: 50px; }*/
}
@media (max-width: 767px) {
  .space-120,
  .space-90 {
    padding-block: 50px;
  }
}
@media (max-width: 575px) {
  /*.space-90 { padding-block: 30px; }*/
}

.title-space {
  padding-bottom: 20px;
}
.title-space2 {
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .title-space {
    padding-bottom: 15px;
  }
}

.radius-16 {
  border-radius: 16px;
}
.radius-20 {
  border-radius: 20px;
}

.top-left-corner {
  border-radius: 150px 0px 0px 0px;
}
.top-right-corner {
  border-radius: 0px 150px 0px 0px;
}
@media (max-width: 1399px) {
  .top-left-corner {
    border-radius: 80px 0px 0px 0px;
  }
  .top-right-corner {
    border-radius: 0px 80px 0px 0px;
  }
}
@media (max-width: 1199px) {
  .top-left-corner {
    border-radius: 60px 0px 0px 0px;
  }
  .top-right-corner {
    border-radius: 0px 60px 0px 0px;
  }
}
@media (max-width: 991px) {
  .top-left-corner {
    border-radius: 40px 0px 0px 0px;
  }
  .top-right-corner {
    border-radius: 0px 40px 0px 0px;
  }
}

.gradientbg-1 {
  background: linear-gradient(135deg, #f4f4f4 0%, #f9f9f9 10%, #ffffff 50%);
}

.dataspace-1 {
  padding-inline: 70px;
}
@media (max-width: 1399px) {
  .dataspace-1 {
    padding-inline: 0px;
  }
}

/*---- Home How it works Start ----*/
.howitworks-accordion {
  padding-top: 40px;
}
.howitworks-accordion .accordion-item {
  border-radius: 20px;
  border: 0px;
  background-color: #ffffff;
  padding: 35px;
  margin-bottom: 15px;
}
.howitworks-accordion .accordion-item:last-child {
  margin-bottom: 0px;
}
.howitworks-accordion .accordion-button {
  border: 0px;
  border-radius: 0px !important;
  padding: 0px 40px 0px 0px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  color: #303030;
  background-color: transparent;
  align-items: flex-start;
}
.howitworks-accordion .accordion-button:focus {
  box-shadow: none;
}
.howitworks-accordion .accordion-button:after {
  font-family: "Font Awesome 6 Free";
  content: "\f067";
  font-weight: bold;
  background-image: none;
  line-height: 1;
  position: absolute;
  right: 0px;
  top: 4px;
  background-color: #ffffff;
  border: solid 1px #303030;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms; /*padding-left: 1px;*/
}
.howitworks-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.howitworks-accordion .accordion-button:not(.collapsed)::after {
  font-family: "Font Awesome 6 Free";
  content: "\f068";
  transform: unset;
  line-height: 1;
}
.howitworks-accordion .accordion-body {
  padding: 20px 0px 0px 0px;
  line-height: 1.5;
}
.howitworks-accordion .accordion-button:hover:after {
  background-color: #303030;
  color: #ffffff;
}

@media (max-width: 991px) {
  .howitworks-accordion .accordion-item {
    padding: 30px;
  }
  .howitworks-accordion .accordion-button {
    font-size: 20px;
  }
  .howitworks-accordion .accordion-button:after {
    top: -2px;
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
  .howitworks-accordion .accordion-item {
    padding: 25px 20px;
    border-radius: 16px;
  }
  .howitworks-accordion .accordion-button {
    font-size: 18px;
  }
}
/*---- Home How it works End ----*/

/*-- Home Opinion Swiper --*/
.opinionSwiper {
  width: 100%;
  overflow: visible !important;
}
.opinionSwiper .swiper-slide {
  height: auto;
}
.opinionSwiper .swiper-scrollbar {
  position: unset !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 8px !important;
  margin-top: 80px;
  background-color: #f1f1f1;
}
.opinionSwiper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fab988;
}

.opinionSwiper-arrow {
  position: relative;
  padding-top: 80px;
  width: 100%;
  max-width: 120px;
  margin-inline: auto;
}
.opinionSwiper .swiper-button-next,
.opinionSwiper .swiper-button-prev {
  top: auto;
  bottom: 0px;
  background-color: #eeeeee;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.opinionSwiper .swiper-button-next:after,
.opinionSwiper .swiper-button-prev:after {
  font-size: 16px;
  color: #303030;
  font-weight: bold;
}

.opinionBox {
  border-radius: 20px;
  background-color: #f7f6f6;
  padding: 35px;
  height: 100%;
}
.opinionBox-title2line {
  min-height: 82px;
  display: flex;
  align-items: center;
}

@media (max-width: 1399px) {
  .opinionSwiper .swiper-scrollbar {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  .opinionSwiper .swiper-scrollbar {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .opinionBox {
    padding: 25px;
  }
  .opinionSwiper .swiper-scrollbar {
    margin-top: 25px;
  }
}
/*-- Home Opinion Swiper End --*/

/*---- FAQ's Start ----*/
.faq-accordion {
  padding-top: 40px;
  color: #000000;
}
.faq-accordion .accordion-item {
  border-radius: 0px;
  border: 0px;
  border-bottom: solid 1px #aeaeae;
  background-color: transparent;
  padding-bottom: 30px;
  margin-bottom: 35px;
}
.faq-accordion .accordion-item:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.faq-accordion .accordion-button {
  border: 0px;
  border-radius: 0px !important;
  padding: 0px 60px 0px 0px;
  cursor: pointer;
  color: #303030;
  background-color: transparent;
  align-items: flex-start;
  letter-spacing: 0.2px;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-button:after {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: bold;
  background-image: none;
  line-height: 1;
  position: absolute;
  right: 0px;
  top: -1px;
  background-color: #ffffff;
  border: solid 1px #303030;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms;
  padding-left: 1px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  font-family: "Font Awesome 6 Free";
  content: "\f077";
  transform: unset;
  line-height: 1;
}
.faq-accordion .accordion-body {
  padding: 30px 0px 15px 0px;
}
.faq-accordion .accordion-body p {
  text-align: justify;
}
.faq-accordion .accordion-button:hover:after {
  background-color: #303030;
  color: #ffffff;
}

@media (max-width: 991px) {
  .faq-accordion .accordion-button:after {
    padding-left: 0px;
    top: 0px;
  }
}
@media (max-width: 767px) {
  .faq-accordion {
    padding-top: 30px;
  }
  .faq-accordion .accordion-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .faq-accordion .accordion-button {
    padding: 0px 35px 0px 0px;
  }
  .faq-accordion .accordion-button:after {
    top: 0px;
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .faq-accordion .accordion-body {
    padding: 25px 0px 0px 0px;
  }
}
@media (max-width: 575px) {
}
/*---- FAQ's End ----*/

.inner-gradient-banner {
  text-align: center;
  border-radius: 0px 0px 150px 150px;
  padding-block: 125px;
  background: linear-gradient(135deg, #fff6f0 0%, #fff4f2 40%, #fbe3d1 100%);
}
@media (max-width: 1399px) {
  .inner-gradient-banner {
    border-radius: 0px 0px 80px 80px;
  }
}
@media (max-width: 1299px) {
  .inner-gradient-banner {
    padding-block: 100px;
  }
}
@media (max-width: 1199px) {
  .inner-gradient-banner {
    padding-block: 80px;
    border-radius: 0px 0px 60px 60px;
  }
}
@media (max-width: 991px) {
  .inner-gradient-banner {
    border-radius: 0px 0px 40px 40px;
  }
}
@media (max-width: 767px) {
  .inner-gradient-banner {
    padding-block: 50px;
  }
}

.servicesBox {
  width: 100%;
  max-width: 330px;
}
.servicesBox-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  transition: all 250ms;
}
.servicesBox:hover .servicesBox-icon {
  box-shadow: 0px 0px 40px rgba(244, 210, 185);
}
@media (max-width: 991px) {
  .servicesBox-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .servicesBox-icon {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .servicesBox {
    margin-inline: auto;
  }
  .servicesBox-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
  }
}

/*---- Opinion Table ----*/
.opinion-table {
}
.opinion-table p {
  color: #303030;
}
.opinion-table thead tr th {
  padding: 0px 0px 20px;
  border-color: #d9d9d9;
}
.opinion-table tbody {
  border-color: #d9d9d9 !important;
}
.opinion-table tbody tr td {
  padding: 28px 0px;
  border-color: #d9d9d9;
  width: 50%;
  line-height: 1.5;
  position: relative;
}
.opinion-table tbody tr:last-child td {
  border: 0px;
}
.opinion-table thead tr th:nth-child(odd),
.opinion-table tbody tr td:nth-child(odd) {
  padding-right: 40px;
}
.opinion-table thead tr th:nth-child(even),
.opinion-table tbody tr td:nth-child(even) {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .opinion-table thead tr th:nth-child(odd),
  .opinion-table tbody tr td:nth-child(odd) {
    padding-right: 20px;
  }
  .opinion-table thead tr th:nth-child(even),
  .opinion-table tbody tr td:nth-child(even) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .opinion-table thead {
    display: none !important;
  }
  .opinion-table tbody {
    border-top: 0px !important;
  }
  .opinion-table tbody tr td {
    width: 100%;
    display: block;
    padding: 20px 0px !important;
  }
  .opinion-table tbody tr td:before {
    content: attr(data-label);
    font-weight: bold;
    padding-bottom: 10px;
    display: block;
  }
}
/*---- Opinion Table End ----*/

.seprate-box {
  padding: 40px;
  text-align: center;
}
@media (max-width: 575px) {
  .seprate-box {
    padding: 30px 20px;
  }
}

/*---- Clinic Policies ----*/
.clinic-policies-banner {
  text-align: center;
  padding-block: 125px;
  background-color: #303030;
  color: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 600px;
  position: relative; /*border-radius: 0px 0px 150px 150px; overflow: hidden;*/
}
.clinic-policies-banner:before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(48, 48, 48, 0.5);
}

.clinic-policies-banner-image {
  background: #303030 url("../images/clinic-policies-banner-image.jpg")
    no-repeat center top/cover;
}

@media (max-width: 1299px) {
  .clinic-policies-banner {
    padding-block: 100px;
    min-height: 400px;
  }
}
@media (max-width: 1199px) {
  .clinic-policies-banner {
    padding-block: 80px;
  }
}
@media (max-width: 991px) {
  .clinic-policies-banner {
    min-height: 350px;
  }
}
@media (max-width: 767px) {
  .clinic-policies-banner {
    padding-block: 50px;
    min-height: 320px;
  }
}

ul.clinic-policies-list {
}
ul.clinic-policies-list li {
  border-bottom: solid 1px #aeaeae;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
ul.clinic-policies-list li:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  ul.clinic-policies-list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

/*---- Privacy Terms Start ----*/
.privacy-terms {
}
.privacy-terms a {
  text-decoration: underline;
}
.privacy-terms h2 {
  font-size: 22px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
}
.privacy-terms h3 {
  font-size: 20px;
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 15px;
}
.privacy-terms h3:before {
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #f17920;
  padding-right: 10px;
}
.privacy-terms h4 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
}
.privacy-terms p {
  color: #303030;
  text-align: justify;
}

.privacy-terms ul {
  padding-left: 25px;
  margin-bottom: 30px;
}
.privacy-terms ul > li {
  list-style: initial;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 1.5;
}
.privacy-terms ul > li::marker {
  color: #f17920;
  font-size: 20px;
}
.privacy-terms ul > li:last-child {
  padding-bottom: 0px;
}

.privacy-subdata {
  padding-left: 30px;
  border-left: solid 2px #eee;
  margin: 10px 0px 30px 15px;
}
.privacy-subdata h4:before {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #f17920;
  padding-right: 10px;
}

@media (max-width: 767px) {
  .privacy-subdata {
    padding-left: 20px;
    margin: 10px 0px 30px 0px;
  }
}
/*---- Privacy Terms End ----*/

/*---- About Us Start ----*/
.aboutus-tooltipBoxMain {
  transition: all 300ms;
}
.aboutus-tooltipBoxMain:hover .aboutus-tooltipBox-icon > img {
  filter: grayscale(100%);
}
.aboutus-tooltipBox {
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}
.aboutus-tooltipBox-icon {
  margin-bottom: 20px;
}
.aboutus-tooltipBox-icon > img {
  height: 80px;
  transition: all 300ms;
}
.aboutus-tooltip {
  font-size: 16px;
  border-radius: 16px;
  background-color: #f7f6f6;
  padding: 15px 20px;
  position: absolute;
  margin-top: 10px;
  transition: all 300ms;
  opacity: 0;
  z-index: 2;
}
.aboutus-tooltip:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.4583333333vw;
  width: 0;
  height: 0;
  margin-inline: auto;
  border-bottom: 1.5625vw solid #f7f6f6;
  border-left: 1.5625vw solid transparent;
  border-right: 1.5625vw solid transparent;
}
.aboutus-tooltip p {
  line-height: 1.4;
  color: #303030;
}
.aboutus-tooltipBox:hover .aboutus-tooltip {
  opacity: 1;
}
.aboutus-tooltipBox:hover .aboutus-tooltipBox-icon > img {
  filter: unset;
}
@media (max-width: 1199px) {
  .aboutus-tooltipBox-icon > img {
    height: 70px;
  }
  .aboutus-tooltip {
    font-size: 14px;
    margin-top: 0px;
  }
  .aboutus-tooltip p {
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .aboutus-tooltipBox {
    padding: 15px;
    border: solid 2px #303030;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .aboutus-tooltip {
    opacity: 1;
    position: unset;
    margin-top: auto;
  }
  .aboutus-tooltip:before {
    content: unset;
    bottom: 0px;
  }
  .aboutus-tooltipBox-icon {
    margin-top: 20px;
  }
  .aboutus-tooltipBox-icon > img {
    filter: unset !important;
  }
}
@media (max-width: 575px) {
  .aboutus-tooltipBox {
    overflow: hidden;
  }
  .aboutus-tooltip {
    padding: 20px;
    margin-inline: -15px;
    margin-bottom: -15px;
    border-radius: 0px;
  }
}

.first-experience {
  position: relative;
  padding-top: 50px;
}
.first-experience:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-image: url("../images/logo-object.png");
  background-repeat: no-repeat;
  background-position: 50px center;
  background-size: 500px;
  background-attachment: fixed;
  opacity: 0.5;
}
@media (max-width: 1799px) {
  .first-experience:before {
    background-position: 20px center;
    background-size: 400px;
    z-index: unset;
  }
}
@media (max-width: 1199px) {
  .first-experience:before {
    background-position: 10px center;
    background-size: 350px;
  }
}
@media (max-width: 991px) {
  .first-experience:before {
    background-size: 300px;
  }
}
@media (max-width: 767px) {
  .first-experience:before {
    background-position: left bottom;
    background-attachment: unset;
  }
}
@media (max-width: 575px) {
  .first-experience:before {
    background-size: 220px;
  }
}

.secondOpinionSwiper {
  height: 100% !important;
}
.secondOpinionSwiper .swiper-wrapper {
  height: 100% !important;
}
.secondOpinionSwiper .swiper-slide {
  transform: scale(0.95) !important;
  height: 100% !important;
  opacity: 0.5;
}
.secondOpinionSwiper .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
  border: solid 2px #303030;
  border-radius: 16px;
  opacity: 1;
  z-index: 2;
}
.secondOpinionSwiper .swiper-slide.swiper-slide-active p {
  color: #303030;
}
.secondOpinion-item {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 16px;
  height: 100%;
}
.secondOpinion-item-img {
  margin-bottom: 10px;
}
.secondOpinion-item-img img {
  border-radius: 12px;
}
.secondOpinion-itemData {
  padding: 15px;
  font-size: 16px;
}

.secondOpinionSwiperDots {
  background-color: transparent;
  border: 0px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  padding: 15px 20px;
  margin-top: 15px;
  border-radius: 10px;
  transition: all 300ms;
  display: flex;
  align-items: center;
}
.secondOpinionSwiperDots:hover {
  transform: scale(1.1) !important;
}
.secondOpinionSwiperDots.active {
  background-color: #fff;
}
.secondOpinionSwiperDots:hover i,
.secondOpinionSwiperDots.active i {
  color: #f17920;
}
@media (max-width: 991px) {
  .secondOpinionSwiperDots:hover {
    transform: unset !important;
  }
}
@media (max-width: 767px) {
  .secondOpinionSwiperDots {
    font-size: 18px;
    width: 49%;
    display: inline-flex;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .secondOpinionSwiperDots {
    width: 100%;
    display: block;
    margin-top: 10px;
  }
}

ul.points {
}
ul.points li {
  position: relative;
  padding-left: 28px;
}
ul.points li:before {
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #f17920;
  position: absolute;
  left: 0px;
  top: 0px;
}

/*---- Pricing Page ----*/
.pricing-navs {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}
.pricing-navs .nav-pills {
  background-color: #f7f6f6;
  padding: 10px;
  border-radius: 50px;
  justify-content: center;
}
.pricing-navs .nav-pills .nav-item .nav-link {
  border-radius: 50px;
  color: #303030;
  padding: 15px 30px;
  font-weight: 600;
}
.pricing-navs .nav-pills .nav-item .nav-link.active {
  background-color: #f17920;
  color: #ffffff;
}

.planbox {
  border-radius: 20px;
  border: solid 2px #303030;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px; /*max-width: 310px;*/
  margin-inline: auto;
}
.planbox h4 {
  font-size: 16px;
  font-weight: 600 !important;
  margin-bottom: 18px;
}
.planbox-header {
  font-size: 20px;
  font-weight: bold;
  color: #f17920;
  padding: 30px 20px;
  min-height: 150px;
}
.planbox-header small {
  font-size: 16px;
  font-weight: normal;
  color: #303030;
  display: block;
  padding-inline: 15px;
  padding-top: 12px;
}
.planbox-price {
  font-size: 22px;
  font-weight: bold;
  padding: 20px 20px 30px;
  border-bottom: solid 2px #303030;
}
.planbox-included {
  text-align: left;
  padding: 30px 20px;
}
.planbox-included ul {
  font-size: 14px;
}
.planbox-included ul li {
  position: relative;
  padding: 0px 0px 0px 22px;
  letter-spacing: 0.2px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.planbox-included ul li:last-child {
  margin-bottom: 0px;
}
.planbox-included ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0px;
  top: 1px;
  color: #f17920;
}
.planbox-addons {
  font-size: 14px;
  text-align: left;
  background-color: #fbe3d1;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
  margin-top: auto;
}
.planbox-addons p {
  color: #303030;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.plan-terms {
  background-color: #f7f6f6;
  padding: 30px 40px;
}

@media (max-width: 767px) {
  .planbox-header {
    font-size: 18px;
  }
  .planbox-price {
    font-size: 20px;
    padding: 20px 15px 25px;
  }
}
@media (max-width: 575px) {
  .pricing-navs {
    padding-bottom: 30px;
  }
  .pricing-navs .nav-pills {
    background-color: transparent;
    padding: 0px;
    border-radius: 0px;
    row-gap: 15px;
  }
  .pricing-navs .nav-pills .nav-item {
    width: 100%;
    max-width: 360px;
  }
  .pricing-navs .nav-pills .nav-item .nav-link {
    width: 100%;
    background-color: #f7f6f6;
  }

  .planbox-header {
    min-height: unset;
  }
  .plan-terms {
    padding: 25px 20px;
  }
}

/*fieldset{ min-width: unset; padding: 30px; margin: unset; text-align: center; border-radius: 16px; border: solid 1px #303030; }
legend{ text-align: center; margin-inline: auto; padding: 15px 30px; background-color: #eee; border-radius: 16px; float: unset; width: 80%; }*/

/*---- Pricing Page End ----*/

/*---- How it works Page Start ----*/
/*Pin Spacer*/
.container1 {
  width: 100%;
  height: calc(100dvh - 110px);
  overflow: hidden;
  display: flex;
  gap: 80px;
  padding-top: 30px;
}
.left-container,
.right-container {
  width: 50%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
.right-element {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*Add new*/
.left-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*Add new end*/
.left-content {
  width: 100%;
  max-width: 630px;
  height: 100%;
  max-height: 630px;
  position: relative;
  overflow: hidden;
}
.left-content img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  width: 100%;
  height: auto;
  opacity: 0;
}
.left-content img:first-child {
  opacity: 1;
}
.right-element-mobile-thumb {
  display: none;
}

@media (min-width: 1299px) {
  .opinionBox.how-it-works p br {
    display: block !important;
  }
}

@media (max-width: 1299px) {
  .container1 {
    height: 100dvh;
    padding-block: 0px !important;
  }
}
@media (max-width: 1199px) {
  .container1 {
    gap: 30px;
  }
  .left-content img {
    top: 50%;
    transform: translate(0%, -50%);
  }
}
@media (max-width: 991px) {
  .container1 {
    height: auto;
  }
  .left-container {
    display: none !important;
  }

  .right-container {
    height: auto;
    width: 100%;
    padding-block: 0px;
  }
  .right-element {
    height: auto;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: unset;
    gap: 40px;
    padding: 30px 20px;
    border-radius: 20px;
    border: solid 2px #f7f6f6;
  }
  .right-element-mobile-thumb {
    display: block;
    width: 50%;
  }
  .right-element-text {
    width: 50%;
  }
  .right-element:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .right-element {
    flex-direction: column !important;
    gap: 30px;
  }
  .right-element-mobile-thumb,
  .right-element-text {
    width: 100%;
  }
}
/*Pin Spacer End*/
/*---- How it works Page End ----*/

/*---- Contact Us Page ----*/
.contactBox {
  border-radius: 16px;
  border: solid 2px #d9d9d9;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  transition: all 300ms;
}
.contactBoxIcon {
  margin-bottom: 20px;
}
.contactBoxIcon img {
  max-width: 50px;
}

.contactBox:hover {
  border: solid 2px #303030;
  background-color: rgba(251, 227, 209, 0.3);
}
@media (max-width: 767px) {
  .contactBox {
    padding: 25px;
  }
}

/*
.light{ font-weight: 300 !important; }
.normal{ font-weight: normal !important; }
.medium{ font-weight: 500 !important; }
.sbold{ font-weight: 600 !important; }
.bold{ font-weight: bold !important; }
*/

/*---------------- Responsive ----------------*/
.container {
  width: 100%;
  padding-inline: 20px;
  max-width: 1340px;
}
@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
  p {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}

/*---- Site-Wide Disclaimer Section ----*/
.site-disclaimer {
  background-color: #f7f6f6;
  padding: 40px 0;
  border-top: solid 1px #e0e0e0;
}
.site-disclaimer-content {
  font-size: 14px;
  line-height: 1.6;
  color: #7a7a7a;
}
.site-disclaimer-content p {
  font-size: 14px;
  margin-bottom: 15px;
  text-align: justify;
}
.site-disclaimer-content ul {
  padding-left: 25px;
  margin-bottom: 15px;
}
.site-disclaimer-content ul li {
  list-style: disc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
  color: #7a7a7a;
}
.site-disclaimer-content ul li:last-child {
  margin-bottom: 0;
}
.site-disclaimer-content strong {
  color: #303030;
}
.site-disclaimer-emergency {
  color: #303030 !important;
  background-color: #fff3cd;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #f17920;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .site-disclaimer {
    padding: 30px 0;
  }
  .site-disclaimer-content p,
  .site-disclaimer-content ul li {
    font-size: 13px;
  }
}
/*---- Site-Wide Disclaimer Section End ----*/
