.btn_1 {
  display: inline-block;
  padding: 5px 45px;
  font-weight: 700;
  font-size: 0.875rem;
  color: #434343;
  background: #EBC575;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.btn_1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #434343;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}

.btn_1:hover::before {
  transform: translateX(0);
}

.btn_1:hover {
  color: #eef1f4 !important;
}

.btn_2 {
  border: none;
  color: #000;
  font-size: 0.875rem;
}
.btn_2 i {
  padding-right: 3px;
  transition: all 0.4s ease-in-out;
}
.btn_2:hover {
  color: #434343;
}
.btn_2:hover i {
  padding-right: 0.5rem;
}

body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 24px;
  overflow-x: hidden !important;
  overflow-y: scroll;
  font-family: "Poppins", serif;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  color: #434343;
  line-height: 24px;
  font-weight: 300;
  font-size: 1rem;
  text-align: justify;
}
@media (max-width: 1200px) {
  p {
    line-height: 26px;
    font-size: 0.875rem;
  }
}

a {
  text-decoration: none;
  transition: all 0.5s;
  color: #EBC575;
}
a:hover {
  text-decoration: none;
}

#scrl::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}

#scrl::-webkit-scrollbar-thumb {
  background-color: #EBC575;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .container-fluid {
    padding: 0 50px 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .container-fluid {
    padding: 0 45px 0 45px;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

ul {
  padding: 0;
  margin: 0;
}

section {
  padding: 120px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  section {
    padding: 100px 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  section {
    padding: 60px 0px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 40px 0px;
  }
}

h3 {
  font-size: 2.5rem;
  color: #EBC575;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  h3 {
    padding: 0;
    font-size: 1.8rem;
  }
}

.scrollup {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: none;
  text-indent: -9999px;
  z-index: 99999;
  background: url(../images/up-arrow.svg) no-repeat;
}
.scrollup img {
  width: 50px;
  height: 50px;
}

.form-group,
.form-floating {
  position: relative;
}
.form-group input,
.form-group .form-select,
.form-floating input,
.form-floating .form-select {
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
  font-size: 0.875rem;
  transition: all 0.4s ease;
  color: #5a5a59;
  border: 1px solid #434343;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus,
.form-group select:focus,
.form-floating input:focus,
.form-floating textarea:focus,
.form-floating .form-select:focus,
.form-floating select:focus {
  outline: none !important;
  /* Remove border */
  /* or you can style the border differently */
  /* border: 2px solid #000; */
}
.form-group .form-control::file-selector-button,
.form-floating .form-control::file-selector-button {
  height: 45px;
}
.form-group textarea,
.form-floating textarea {
  height: 100px;
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  resize: none;
  color: #5a5a59;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #434343;
  transition: all 0.4s ease;
}
.form-group ::-moz-placeholder, .form-floating ::-moz-placeholder {
  color: #4f4f4e;
  font-weight: 400;
  font-size: 0.875rem;
  /* Firefox */
}
.form-group ::placeholder,
.form-floating ::placeholder {
  color: #4f4f4e;
  font-weight: 400;
  font-size: 0.875rem;
  /* Firefox */
}
.form-group :-ms-input-placeholder,
.form-floating :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #4f4f4e;
  font-weight: 400;
}
.form-group ::-ms-input-placeholder,
.form-floating ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #4f4f4e;
  font-weight: 400;
}

.form-label {
  margin-bottom: 0.2rem;
  color: #727272;
}

.pding-0 {
  padding: 0 !important;
}

.header {
  transition: all 0.4s ease-in-out;
  background: none;
  padding: 0px;
  width: 100%;
  position: absolute;
  z-index: 99;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eceaea;
}
.header .container-fluid {
  padding: 0 15px;
}
.header .top {
  width: 100%;
  display: flex;
  padding: 15px 0px 10px 0;
  position: relative;
}
@media (max-width: 992px) {
  .header .top {
    display: none;
  }
}
.header .top::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #c6c2c2;
  left: 0;
  bottom: 0;
}
.header .top::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100px;
  height: 1px;
  left: 50%;
  bottom: 0;
  z-index: 9;
  transform: translate(-50%, 0);
}
.header .top .left {
  width: 50%;
  display: flex;
  align-items: center;
}
.header .top .left img {
  width: 100px;
  margin-right: 2px;
}
.header .top .left p {
  margin-bottom: 0 !important;
  color: #434343;
  font-size: 0.938rem;
  margin-left: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .header .top .left p {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header .top .left p {
    font-size: 0.75rem;
  }
}
.header .top .left p span {
  font-weight: 600;
}
.header .top .right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.header .top .right ul {
  display: flex;
}
.header .top .right ul li {
  list-style: none;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.header .top .right ul li span {
  padding: 0 8px;
  color: #EBC575;
}
.header .top .right ul li a {
  font-size: 0.938rem;
  color: #434343;
  padding-left: 0.2rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .header .top .right ul li a {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header .top .right ul li a {
    font-size: 0.75rem;
  }
}
.header .top .right ul li svg {
  padding-right: 5px;
  width: 24px;
}
.header .top .right ul li:last-child {
  padding-right: 0;
}
@media (max-width: 992px) {
  .header .dnone {
    display: none;
  }
}
.header .nav-brand {
  padding: 0;
}
.header .crossborders {
  width: 400px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header .crossborders {
    width: 300px;
  }
}
.header .crossborders a {
  position: absolute;
  background: url(../images/logo.svg) no-repeat center;
  width: 350px;
  height: 75px;
  left: 42%;
  bottom: 6px;
  transform: translate(-50%, 0%);
  z-index: 999;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header .crossborders a {
    width: 250px;
  }
}
.header .crossborders a .nav-menu .desk-none {
  display: none;
}
@media (max-width: 992px) {
  .header .crossborders {
    display: none;
  }
}
.header .logo_small {
  background: url(../images/logo.svg) no-repeat center;
  width: 110px;
  height: 50px;
  display: none;
}
@media (max-width: 992px) {
  .header .logo_small {
    display: block;
  }
}
.header .logo {
  position: absolute;
  background: url(../images/logo.svg) no-repeat center;
  width: 350px;
  height: 75px;
  left: 45%;
  bottom: 6px;
  transform: translate(-50%, 0%);
  z-index: 999;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header .logo {
    width: 250px;
  }
}
.header .logo .nav-menu .desk-none {
  display: none;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.mob_logo {
  display: flex;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  position: relative;
}

.navigation-portrait .nav-button ul {
  display: flex;
  flex-direction: column;
}
.navigation-portrait .nav-button ul li {
  list-style: none;
  text-align: left;
  padding: 5px 0;
}
.navigation-portrait .nav-button ul li img {
  width: 120px;
}
.navigation-portrait .nav-button ul li i {
  padding-right: 0.4rem;
  color: #c10808;
}
.navigation-portrait .nav-button ul li a {
  color: #434343;
}
.navigation-portrait .btn_bg {
  width: auto !important;
  padding: 10px 20px !important;
  margin: 12px 15px 12px 26px !important;
}
.navigation-portrait .nav-dropdown > li > a {
  background: #EBC575;
}
.navigation-portrait .nav-dropdown > li > a {
  width: 100%;
  padding: 10px 15px;
  border-bottom: 1px solid #163F5E;
}
.navigation-portrait .nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #000 #000 transparent;
}
.navigation-portrait .nav-dropdown > li:hover > a {
  background: #434343;
  color: #fff;
}
.navigation-portrait .nav-menu > li.active > a::before {
  left: 26px;
  background: antiquewhite;
  width: 10%;
  margin: 0;
}

.banner {
  height: auto;
  position: relative;
  margin-top: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .banner {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner {
    margin-top: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .banner {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .banner {
    height: auto;
    margin-top: 70px;
  }
}
.banner .wellness {
  position: absolute;
  top: 25%;
  right: 5%;
  z-index: 99;
}
@media (max-width: 767px) {
  .banner .wellness {
    display: none;
  }
}
.banner .wellness img {
  width: 100px;
  animation: rotate 8s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.banner .services {
  position: absolute;
  bottom: 0%;
  left: 50%;
  z-index: 99;
  width: 75%;
  transform: translate(-50%, -50%);
  right: 50%;
}
@media (max-width: 1100px) {
  .banner .services {
    display: none;
  }
}
.banner .services ul {
  display: flex;
  gap: 30px;
}
.banner .services ul li {
  list-style: none;
  width: 25%;
}
.banner .services ul li .boxes {
  transition: all 0.4s ease-in-out;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  border: 1px solid #fff;
  height: 100%;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .banner .services ul li .boxes {
    padding: 2.5rem 1rem 1rem 1rem;
  }
}
.banner .services ul li .boxes .cb_logo {
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 50%;
  top: -33px;
  width: 60px;
  transform: translate(-50%, 0);
  opacity: 0;
}
.banner .services ul li .boxes h3 {
  font-size: 1.563rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .banner .services ul li .boxes h3 {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner .services ul li .boxes h3 {
    font-size: 1.1rem;
  }
}
.banner .services ul li .boxes p {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .banner .services ul li .boxes p {
    font-size: 0.813rem;
  }
}
.banner .services ul li:hover .boxes {
  background: #fff;
}
.banner .services ul li:hover .boxes h3 {
  color: #EBC575;
}
.banner .services ul li:hover .boxes p {
  color: #434343;
}
.banner .services ul li:hover .boxes .cb_logo {
  opacity: 1;
}
.banner .services ul li .active {
  background: #fff;
}
.banner .services ul li .active h3 {
  color: #EBC575;
}
.banner .services ul li .active p {
  color: #434343;
}
.banner .services ul li .active .cb_logo {
  opacity: 1;
}
.banner .slider-counter {
  position: absolute;
  left: 8%;
  bottom: 40px;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner .slider-counter {
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .banner .slider-counter {
    display: none;
  }
}
.banner .intro {
  z-index: 0;
}
@media (max-width: 992px) {
  .banner .intro {
    height: auto;
  }
}
.banner .intro .item {
  display: flex;
  height: auto;
  overflow: hidden;
  align-items: baseline;
  padding: 0;
}
.banner .intro .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .intro .item .slider-caption {
  position: absolute;
  display: flex;
  top: 35%;
  left: 0;
  width: 100%;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .banner .intro .item .slider-caption {
    top: 22%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner .intro .item .slider-caption {
    top: 34%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner .intro .item .slider-caption {
    top: 32%;
  }
}
@media (max-width: 992px) {
  .banner .intro .item .slider-caption {
    padding: 1.5rem;
    top: 18%;
  }
}
@media (max-width: 767px) {
  .banner .intro .item .slider-caption {
    padding: 1rem;
    bottom: 0;
    width: 90%;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 480px) {
  .banner .intro .item .slider-caption {
    width: 90%;
    top: 50%;
  }
}
.banner .intro .item .slider-caption .moto {
  color: #fff;
  padding: 5px 0;
  font-size: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .banner .intro .item .slider-caption .moto {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .banner .intro .item .slider-caption .moto {
    font-size: 0.875rem;
    width: 80%;
  }
}
@media (max-width: 480px) {
  .banner .intro .item .slider-caption .moto {
    font-size: 0.813rem;
  }
}
.banner .intro .item .slider-caption .moto span {
  color: #EBC575;
}
.banner .intro .item .slider-caption h2 {
  color: #fff;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 3.5rem;
  text-align: center;
  position: relative;
  text-shadow: -3px 3px 5px rgba(0, 0, 0, 0.6);
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .banner .intro .item .slider-caption h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner .intro .item .slider-caption h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .banner .intro .item .slider-caption h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .banner .intro .item .slider-caption h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 480px) {
  .banner .intro .item .slider-caption h2 {
    font-size: 2rem;
  }
}
.banner .intro .item .slider-caption p {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.125rem;
  line-height: 27px;
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .banner .intro .item .slider-caption p {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner .intro .item .slider-caption p {
    font-size: 0.938rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .banner .intro .item .slider-caption p {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .banner .intro .item .slider-caption p {
    font-size: 0.813rem;
  }
}
.banner .intro .item .slider-caption p span {
  font-weight: 600;
}
.banner .intro .owl-nav {
  position: absolute;
  bottom: 4%;
  right: 8%;
}
@media (max-width: 767px) {
  .banner .intro .owl-nav {
    display: none;
  }
}
.banner .intro .owl-nav button.owl-prev,
.banner .intro .owl-nav button.owl-next {
  color: #fff;
  font-size: 15px;
  height: 30px;
}
.banner .intro .owl-prev {
  position: relative;
  right: 0;
  left: auto;
}
.banner .intro .owl-prev:hover {
  background: none;
}
.banner .intro .owl-next {
  position: relative;
  right: 0;
  left: auto;
}
.banner .intro .owl-next:hover {
  background: none;
}
.banner .intro .owl-prev::after {
  content: "|";
  position: absolute;
  right: -12px;
  color: #fff;
}
.banner .intro .owl-next {
  margin-left: 15px;
}
.banner .intro .desktop {
  display: block !important;
}
@media (max-width: 650px) {
  .banner .intro .desktop {
    display: none !important;
  }
}
.banner .intro .mobile {
  display: none !important;
}
@media (max-width: 650px) {
  .banner .intro .mobile {
    display: block !important;
  }
}

.service_mobile {
  padding: 0;
  display: none;
}
@media (max-width: 767px) {
  .service_mobile {
    display: block;
  }
}
.service_mobile .services {
  position: relative;
  padding: 0 10px;
  transform: translateY(-30px);
}
.service_mobile .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.service_mobile .services ul li {
  list-style: none;
  width: 49.5%;
}
.service_mobile .services ul li .boxes {
  transition: all 0.4s ease-in-out;
  padding: 1.2rem;
  border: 1px solid #c5c2c2;
  height: 100%;
  position: relative;
  background: #fff;
}
@media (max-width: 480px) {
  .service_mobile .services ul li .boxes {
    padding: 1rem 0.5rem;
  }
}
.service_mobile .services ul li .boxes .cb_logo {
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 50%;
  top: -33px;
  width: 60px;
  transform: translate(-50%, 0);
  display: none;
}
.service_mobile .services ul li .boxes h3 {
  font-size: 1.563rem;
  color: #434343;
  text-align: center;
  font-family: "Cormorant", serif;
}
@media (max-width: 480px) {
  .service_mobile .services ul li .boxes h3 {
    font-size: 1.3rem;
  }
}
.service_mobile .services ul li .boxes p {
  color: #434343;
  text-align: center;
  font-size: 0.813rem;
  line-height: 22px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .service_mobile .services ul li .boxes p {
    font-size: 0.813rem;
  }
}
.service_mobile .services ul li:hover .boxes {
  background: #EBC575;
}

.about {
  position: relative;
}
.about .img_box {
  position: sticky;
  top: 100px;
}
.about .img_box img {
  width: 100%;
}
.about .img_box .doctors {
  width: 100%;
  gap: 1rem;
  display: flex;
}
.about .img_box .doctors .doc_pic {
  width: 48%;
}
.about .img_box .doctors .doc_pic .name {
  padding: 1rem 0;
  background: #fff;
  font-size: 1rem;
  color: #434343;
  font-weight: 600;
}
.about .about-content {
  padding: 0 0 0 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .about .about-content {
    padding: 0 0 0 1.5rem;
  }
}
@media (max-width: 767px) {
  .about .about-content {
    padding: 0;
  }
}
.about .about-content .content h1,
.about .about-content .content h2, .about .about-content .content h3 {
  color: #434343;
  font-size: 2.188rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about .about-content .content h1,
  .about .about-content .content h2, .about .about-content .content h3 {
    font-size: 2rem;
  }
}
@media (max-width: 992px) {
  .about .about-content .content h1,
  .about .about-content .content h2, .about .about-content .content h3 {
    font-size: 1.563rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .about .about-content .content h1,
  .about .about-content .content h2, .about .about-content .content h3 {
    font-size: 2rem;
  }
}
.about .about-content .content p {
  margin-bottom: 1.5rem;
  line-height: 30px;
}
.about .about-content .content h3 {
  font-family: "Cormorant", serif;
}
.about .about-content_two {
  padding: 0 3rem 0 0;
}
@media (max-width: 1200px) {
  .about .about-content_two {
    padding: 0 1.5rem 0 0;
  }
}
@media (max-width: 767px) {
  .about .about-content_two {
    padding: 0;
  }
}

.p_top_0 {
  padding-top: 0;
  padding-bottom: 0;
}

.patient-journey {
  background: #fff url(../images/patientjourney-bg.webp) no-repeat left top;
  background-size: contain;
  padding: 0;
  background-position-Y: 95%;
}
@media (max-width: 1200px) {
  .patient-journey {
    background-image: none;
  }
}
.patient-journey h3 {
  font-size: 2.188rem;
  color: #434343;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .patient-journey h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .patient-journey h3 {
    font-size: 1.563rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .patient-journey h3 {
    font-size: 2rem;
  }
}
.patient-journey p {
  text-align: center;
}
.patient-journey h4 {
  font-size: 18px;
  text-align: center;
  margin: 2rem 0;
}
.patient-journey .journeys {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.patient-journey .journeys .img_box {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 150px;
  height: 150px;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  border: 1px solid #000;
  margin-bottom: 1rem;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .patient-journey .journeys .img_box {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .patient-journey .journeys .img_box {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .patient-journey .journeys .img_box {
    width: 120px;
    height: 120px;
  }
}
.patient-journey .journeys .img_box .count {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBC575;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  width: 40px;
  height: 40px;
  transform: translateY(-20px);
}
.patient-journey .journeys .img_box img {
  transition: all 0.4s ease-in-out;
  width: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .patient-journey .journeys .img_box img {
    width: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .patient-journey .journeys .img_box img {
    width: 40px;
  }
}
@media (max-width: 768px) {
  .patient-journey .journeys .img_box img {
    width: 40px;
  }
}
.patient-journey .journeys .content {
  padding: 1rem;
}
.patient-journey .journeys .content h3 {
  font-size: 1.5rem;
  color: #000;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .patient-journey .journeys .content h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .patient-journey .journeys .content h3 {
    font-size: 1.3rem;
  }
}
.patient-journey .journeys .content p {
  text-align: center;
  color: #000;
  line-height: 24px;
}
.patient-journey .journeys:hover .img_box {
  background: #f2daa6;
}
.patient-journey .journeys:hover .img_box img {
  transform: scale(1.1);
}
.patient-journey .journeys:hover .count {
  background: #434343;
  color: #fff;
}

@media (max-width: 767px) {
  .row.custom-reverse {
    flex-direction: column-reverse;
  }
}
.services_bg {
  width: 100%;
  padding-top: 0;
}
.services_bg .heading h3 {
  font-size: 2.188rem;
  color: #434343;
  font-weight: 700;
  font-family: "Cormorant", serif;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .services_bg .heading h3 {
    font-size: 2.188rem;
  }
}
@media (max-width: 992px) {
  .services_bg .heading h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .services_bg .heading h3 {
    font-size: 2.3rem;
  }
}
@media (max-width: 480px) {
  .services_bg .heading h3 {
    font-size: 2rem;
  }
}
.services_bg h3 {
  font-size: 2.188rem;
  color: #434343;
  font-weight: 700;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .services_bg h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .services_bg h3 {
    font-size: 1.563rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .services_bg h3 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .services_bg h3 {
    font-size: 1.6rem;
  }
}
.services_bg .slider-container {
  width: 100%;
  position: relative;
  height: auto;
  /* Custom styles for the dots */
}
@media (max-width: 767px) {
  .services_bg .slider-container {
    height: auto;
  }
}
.services_bg .slider-container .service_boxes {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
.services_bg .slider-container .service_boxes .boxes {
  width: 99.9%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  position: relative;
}
.services_bg .slider-container .service_boxes .boxes::before {
  position: absolute;
  left: -10px;
  content: "";
  background: #EDEDED;
  height: 100%;
  width: 5px;
}
.services_bg .slider-container .service_boxes .boxes .left {
  width: 100%;
  min-height: 480px;
  max-height: 480px;
  height: auto;
  position: relative;
  transition: transform 0.5s ease;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .service_boxes .boxes .left {
    min-height: 480px;
    max-height: 480px;
  }
}
@media (max-width: 767px) {
  .services_bg .slider-container .service_boxes .boxes .left {
    width: 100%;
  }
}
.services_bg .slider-container .service_boxes .boxes .left::before {
  position: absolute;
  content: "";
  width: 92%;
  height: 92%;
  padding: 20px;
  border: 1px solid #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.services_bg .slider-container .service_boxes .boxes .left img {
  width: 100%;
  min-height: 480px;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .service_boxes .boxes .left img {
    min-height: 480px;
    max-height: 480px;
  }
}
.services_bg .slider-container .service_boxes .boxes .right {
  width: 100%;
  min-height: 480px;
  max-height: 480px;
  padding: 2rem 3rem 2rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .services_bg .slider-container .service_boxes .boxes .right {
    padding: 2rem 3rem 2rem 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .service_boxes .boxes .right {
    min-height: 480px;
    max-height: 480px;
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .services_bg .slider-container .service_boxes .boxes .right {
    padding: 1rem;
    width: 100%;
  }
}
.services_bg .slider-container .service_boxes .boxes .right .shapes {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.services_bg .slider-container .service_boxes .boxes .right .shapes img {
  width: 90px;
  height: 90px;
}
.services_bg .slider-container .service_boxes .boxes .right h4 {
  font-size: 1.25rem;
  color: #434343;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .services_bg .slider-container .service_boxes .boxes .right h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .service_boxes .boxes .right h4 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .services_bg .slider-container .service_boxes .boxes .right h4 {
    font-size: 1rem;
  }
}
.services_bg .slider-container .service_boxes .boxes .right p {
  color: #434343;
  line-height: 26px;
}
.services_bg .slider-container .service_boxes .boxes .right .full_box {
  width: 100%;
}
.services_bg .slider-container .service_boxes .boxes .right .full_box ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.services_bg .slider-container .service_boxes .boxes .right .full_box ul li {
  list-style: none;
  color: #434343;
  font-size: 1rem;
  line-height: 26px;
  padding: 10px 0 10px 20px;
  position: relative;
}
@media (max-width: 1200px) {
  .services_bg .slider-container .service_boxes .boxes .right .full_box ul li {
    line-height: 26px;
    font-size: 0.875rem;
  }
}
.services_bg .slider-container .service_boxes .boxes .right .full_box ul li span {
  font-weight: 600;
}
.services_bg .slider-container .service_boxes .boxes .right .full_box ul li::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0px;
  top: 18px;
  background: #434343;
}
.services_bg .slider-container .service_boxes .boxes .right .btn_1 {
  margin-top: 1rem;
  border: 1px solid #434343;
  background: #fff;
  color: #434343;
}
.services_bg .slider-container .service_boxes .boxes .right .btn_1:hover {
  background: #EBC575;
}
.services_bg .slider-container .service_boxes_right {
  width: 100%;
}
.services_bg .slider-container .service_boxes_right .boxes {
  width: 100%;
  display: flex;
}
.services_bg .slider-container .service_boxes_right .boxes .left {
  width: 100%;
  min-height: 480px;
  max-height: 480px;
  position: relative;
  transition: transform 0.5s ease;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .service_boxes_right .boxes .left {
    min-height: 480px;
    max-height: 480px;
  }
}
@media (max-width: 767px) {
  .services_bg .slider-container .service_boxes_right .boxes .left {
    width: 100%;
  }
}
.services_bg .slider-container .service_boxes_right .boxes .left::before {
  position: absolute;
  content: "";
  width: 92%;
  height: 92%;
  padding: 20px;
  border: 1px solid #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.services_bg .slider-container .service_boxes_right .boxes .left img {
  width: 100%;
  min-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .service_boxes_right .boxes .left img {
    min-height: 480px;
    max-height: 480px;
  }
}
.services_bg .slider-container .service_boxes_right .boxes .right {
  width: 100%;
  min-height: 480px;
  max-height: 480px;
  padding: 2rem 3rem 2rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .services_bg .slider-container .service_boxes_right .boxes .right {
    padding: 2rem 3rem 2rem 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .service_boxes_right .boxes .right {
    min-height: 480px;
    max-height: 480px;
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .services_bg .slider-container .service_boxes_right .boxes .right {
    padding: 1rem;
    width: 100%;
  }
}
.services_bg .slider-container .service_boxes_right .boxes .right .shapes {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.services_bg .slider-container .service_boxes_right .boxes .right .shapes img {
  width: 90px;
  height: 90px;
}
.services_bg .slider-container .service_boxes_right .boxes .right h4 {
  font-size: 1.25rem;
  color: #434343;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .services_bg .slider-container .service_boxes_right .boxes .right h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .service_boxes_right .boxes .right h4 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .services_bg .slider-container .service_boxes_right .boxes .right h4 {
    font-size: 1rem;
  }
}
.services_bg .slider-container .service_boxes_right .boxes .right p {
  color: #434343;
  line-height: 26px;
}
.services_bg .slider-container .service_boxes_right .boxes .right .full_box {
  width: 100%;
}
.services_bg .slider-container .service_boxes_right .boxes .right .full_box ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.services_bg .slider-container .service_boxes_right .boxes .right .full_box ul li {
  list-style: none;
  color: #434343;
  font-size: 1rem;
  line-height: 26px;
  padding: 10px 0 10px 20px;
  position: relative;
}
@media (max-width: 1200px) {
  .services_bg .slider-container .service_boxes_right .boxes .right .full_box ul li {
    line-height: 26px;
    font-size: 0.875rem;
  }
}
.services_bg .slider-container .service_boxes_right .boxes .right .full_box ul li span {
  font-weight: 600;
}
.services_bg .slider-container .service_boxes_right .boxes .right .full_box ul li::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0px;
  top: 18px;
  background: #434343;
}
.services_bg .slider-container .service_boxes_right .boxes .right .btn_1 {
  margin-top: 1rem;
  border: 1px solid #434343;
  background: #fff;
  color: #434343;
}
.services_bg .slider-container .service_boxes_right .boxes .right .btn_1:hover {
  background: #EBC575;
}
.services_bg .slider-container .owl-carousel,
.services_bg .slider-container .owl-stage-outer,
.services_bg .slider-container .owl-stage {
  padding: 0;
  border: none;
  background-color: transparent; /* Removes any background color */
}
.services_bg .slider-container .owl-theme .owl-dots {
  text-align: right;
  position: absolute;
  top: -55px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .owl-theme .owl-dots {
    top: -55px;
  }
}
.services_bg .slider-container .owl-dot span {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 5px;
  background: #ebebeb;
  border-radius: 5px;
  font-size: 0.875rem;
  color: #434343;
  cursor: pointer;
  width: 120px;
  height: 35px;
  margin: 0 2px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slider-container .owl-dot span {
    font-size: 11px;
    color: #434343;
    cursor: pointer;
    width: 85px;
    height: 35px;
    font-size: 11px;
    margin: 0 2px;
    padding: 0px;
    height: 24px;
  }
}
.services_bg .slider-container .owl-theme .owl-dots .owl-dot.active span,
.services_bg .slider-container .owl-theme .owl-dots .owl-dot:hover span {
  background: #EBC575;
  color: #434343;
}
.services_bg .bg_one {
  background: #F5F1EA;
  position: relative;
}
.services_bg .bg_two {
  background: #EDEDED;
  position: relative;
}
.services_bg .bg_three {
  background: #EAF7F7;
  position: relative;
}
.services_bg .bg_four {
  background: #F9F0DE;
  position: relative;
}
.services_bg .slider {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}
.services_bg .slide {
  height: 100vh;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  background: #F5F1EA;
  color: white;
}
@media (max-width: 767px) {
  .services_bg .slide {
    flex-direction: column;
    height: auto;
  }
}
.services_bg .slide .lefts {
  width: 50%;
  position: relative;
  transition: transform 0.5s ease;
  height: 100%;
}
@media (max-width: 767px) {
  .services_bg .slide .lefts {
    width: 100%;
  }
}
.services_bg .slide .lefts::before {
  position: absolute;
  content: "";
  width: 92%;
  height: 92%;
  padding: 20px;
  border: 1px solid #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.services_bg .slide .lefts img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
@media (max-width: 768px) {
  .services_bg .slide .lefts img {
    height: auto;
  }
}
.services_bg .slide .rights {
  width: 50%;
  padding: 5rem 2.5rem 5rem 2.5rem;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .services_bg .slide .rights {
    padding: 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slide .rights {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .services_bg .slide .rights {
    padding: 1rem;
    width: 100%;
  }
}
.services_bg .slide .rights .shapes {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.services_bg .slide .rights .shapes img {
  width: 90px;
  height: 90px;
}
.services_bg .slide .rights h4 {
  font-size: 1.25rem;
  color: #434343;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .services_bg .slide .rights h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_bg .slide .rights h4 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .services_bg .slide .rights h4 {
    font-size: 1rem;
  }
}
.services_bg .slide .rights p {
  color: #434343;
  line-height: 26px;
}
.services_bg .slide .rights .full_box {
  width: 100%;
}
.services_bg .slide .rights .full_box ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.services_bg .slide .rights .full_box ul li {
  list-style: none;
  color: #434343;
  font-size: 1rem;
  line-height: 26px;
  padding: 10px 0 10px 20px;
  position: relative;
}
@media (max-width: 1200px) {
  .services_bg .slide .rights .full_box ul li {
    line-height: 26px;
    font-size: 0.875rem;
  }
}
.services_bg .slide .rights .full_box ul li span {
  font-weight: 600;
}
.services_bg .slide .rights .full_box ul li::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0px;
  top: 18px;
  background: #434343;
}
.services_bg .slide .rights .btn_1 {
  margin-top: 2rem;
  border: 1px solid #434343;
  background: #fff;
  color: #434343;
}
.services_bg .slide .rights .btn_1:hover {
  background: #EBC575;
}
.services_bg .slide .bg_one {
  background: #F5F1EA;
  position: relative;
}
.services_bg .slide .bg_two {
  background: #EDEDED;
  position: relative;
}
.services_bg .slide .bg_three {
  background: #EAF7F7;
  position: relative;
}
.services_bg .slide .bg_four {
  background: #F9F0DE;
  position: relative;
}
.services_bg .pagination {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.services_bg .pagination button {
  margin-bottom: 2px;
  padding: 0px 10px;
  border: none;
  background-color: transparent;
  color: #B19251;
  font-size: 2.5rem;
  cursor: pointer;
}
.services_bg .pagination button.active {
  font-weight: bold;
  font-size: 2.5rem;
  color: #fff;
}

.world_map {
  width: 100%;
  padding-bottom: 0;
  /* Style for the button */
  /* Popup initially hidden and styled like the button */
}
.world_map h3 {
  font-size: 2.188rem;
  color: #434343;
  font-weight: 500;
  text-align: center;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .world_map h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .world_map h3 {
    font-size: 1.563rem;
    margin-bottom: 1rem;
  }
}
.world_map a:visited {
  color: #dff3fd;
}
.world_map li.active a,
.world_map a:hover,
.world_map a:active {
  color: #e5e5e5;
}
.world_map .centered-y {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.world_map .distribution-map {
  position: relative;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
  /* Hide the centered-y image by default */
  /* Show the image on hover */
}
@media (max-width: 767px) {
  .world_map .distribution-map {
    padding: 0;
  }
}
.world_map .distribution-map img {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
.world_map .distribution-map .map-point {
  cursor: pointer;
  outline: none;
  z-index: 0;
  position: absolute;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
}
.world_map .distribution-map .map-point img {
  width: 13px;
}
.world_map .distribution-map .map-point span {
  padding: 0px 7px;
  min-width: 70px;
  min-height: 20px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .world_map .distribution-map .map-point span {
    font-size: 0.75rem;
    padding: 0;
    min-width: 60px;
  }
}
@media (max-width: 480px) {
  .world_map .distribution-map .map-point span {
    font-size: 0.625rem;
    padding: 0px;
    min-width: 55px;
  }
}
.world_map .distribution-map .map-point img {
  display: block;
}
.world_map .distribution-map .map-point .centered-y {
  display: none;
  position: absolute;
  top: 100%;
  /* Position below the button */
  left: 50%;
  padding: 1rem;
  transform: translateX(-50%) scale(0);
  /* Initially scaled down */
  max-width: 350px;
  /* Set a maximum width */
  width: 350px;
  /* Ensure it is exactly 300px */
  height: auto;
  /* Maintain aspect ratio */
  background-color: white;
  /* Optional background for visibility */
  border: 1px solid #ccc;
  /* Optional border */
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
  /* Smooth transition */
  opacity: 0;
  /* Initially transparent */
  z-index: 999;
}
.world_map .distribution-map .map-point .centered-y ul {
  margin: 0;
  padding: 0;
}
.world_map .distribution-map .map-point .centered-y ul li {
  text-align: left;
  list-style: none;
  padding-left: 1rem;
  padding-left: 1rem;
}
.world_map .distribution-map .map-point .centered-y ul li::before {
  position: absolute;
  content: "\f285";
  left: 10px;
  font-size: 1rem;
  color: #EBC575;
  font-family: bootstrap-icons !important;
}
.world_map .distribution-map .map-point:hover .centered-y {
  display: block;
  transform: translateX(-50%) scale(1);
  /* Scale to full size */
  opacity: 1;
  z-index: 999;
}
@media (max-width: 767px) {
  .world_map .distribution-map .map-point:hover .centered-y {
    display: none;
  }
}
.world_map #popupButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.blogs_container {
  position: relative;
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .blogs_container {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .blogs_container {
    padding-top: 60px;
  }
}
.blogs_container h3 {
  font-size: 2.188rem;
  color: #434343;
  font-weight: 500;
  text-align: center;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .blogs_container h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .blogs_container h3 {
    font-size: 1.563rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .blogs_container h3 {
    font-size: 2rem;
  }
}
.blogs_container .blog_box {
  background: #fff;
  padding: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.3607843137);
  margin: 1px;
}
.blogs_container .blog_box .img_box {
  width: 100%;
  background: #EBC575;
  overflow: hidden;
  /* [1.2] Hide the overflowing of child elements */
}
.blogs_container .blog_box .img_box img {
  transition: all 0.4s ease-in-out;
}
.blogs_container .blog_box .content {
  width: 100%;
  padding: 0 10px 10px 10px;
}
.blogs_container .blog_box .content .calendar {
  color: #B19251;
  font-size: 0.875rem;
  padding: 1.5rem 0 1rem 0;
}
.blogs_container .blog_box .content h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #434343;
  display: -webkit-box;
  height: 42px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1.063rem;
  color: #434343;
  line-height: 24px;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .blogs_container .blog_box .content h4 {
    height: 48px;
    min-height: 40px;
  }
}
@media (max-width: 767px) {
  .blogs_container .blog_box .content h4 {
    height: 55px;
    margin-bottom: 1rem;
  }
}
.blogs_container .blog_box .content p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #434343;
  display: -webkit-box;
  height: 42px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 45px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .blogs_container .blog_box .content p {
    height: 48px;
    min-height: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blogs_container .blog_box .content p {
    height: 78px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .blogs_container .blog_box .content p {
    height: 48px;
    min-height: 40px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
@media (max-width: 768px) {
  .blogs_container .blog_box .content p {
    height: 48px;
    min-height: 40px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.blogs_container .blog_box:hover .img_box img {
  opacity: 0.4;
  transform: scale(1.5);
}
.blogs_container .owl-carousel .owl-nav button.owl-prev,
.blogs_container .owl-nav button.owl-next {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: rgba(67, 67, 67, 0.5019607843);
  color: #fff;
  width: 30px;
  height: 30px;
}
.blogs_container .owl-prev {
  position: absolute;
  right: 40px;
  left: auto;
  top: -70px;
}
.blogs_container .owl-next {
  position: absolute;
  right: 5px;
  left: auto;
  top: -70px;
}
.blogs_container .text-centers {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faqs {
  padding: 0;
}
.faqs .faq_img {
  height: 100%;
}
.faqs .faq_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faqs .faq_box {
  background: #F5F1EA;
  height: 100%;
  padding: 3.5rem 2.5rem;
}
@media (max-width: 1200px) {
  .faqs .faq_box {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .faqs .faq_box {
    padding: 1rem;
  }
}
.faqs .faq_box h3 {
  font-size: 2.188rem;
  color: #434343;
  font-weight: 600;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .faqs .faq_box h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .faqs .faq_box h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .faqs .faq_box h3 {
    font-size: 2rem;
  }
}
.faqs .accordion {
  margin-bottom: 4rem;
  --bs-accordion-border-color: #fdf7ea @media (max-width:1200px) {
    margin-bottom: .5rem;
  } ;
}
.faqs .accordion-button {
  color: #434343;
  font-size: 0.875rem;
  line-height: 24px;
  font-family: #434343;
  padding: 1rem 0;
  font-weight: 500;
  border: none;
}
@media (max-width: 992px) {
  .faqs .accordion-button {
    font-size: 0.813rem;
  }
}
.faqs .accordion-body {
  padding: 0;
}
.faqs .accordion-button:focus {
  z-index: 3;
  border-color: 0 !important;
  border: none;
  outline: none;
  /* Optional, if you also want to remove the outline */
  box-shadow: none;
  /* Optional, if you also want to remove any shadow */
}
.faqs .accordion-flush .accordion-item .accordion-button,
.faqs .accordion-flush .accordion-item .accordion-button.collapsed {
  border: none;
}
.faqs .accordion-button:not(.collapsed) {
  border: none;
}
.faqs .accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1764705882);
}
.faqs .accordion-item {
  background: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1764705882);
  margin-top: 1rem;
}
.faqs .accordion-item .accordion-button {
  font-size: 1rem;
  background: none;
}
@media (max-width: 992px) {
  .faqs .accordion-item .accordion-button {
    font-size: 0.813rem;
    padding: 0.5rem 0;
  }
}
@media (max-width: 767px) {
  .faqs .accordion-item .accordion-button {
    font-size: 0.875rem;
    padding: 10px 0;
  }
}
.faqs .accordion-item .accordion-button:not(.collapsed) {
  color: #434343;
  margin-top: 1rem;
}
.faqs .accordion-button:not(.collapsed)::after {
  color: #434343 !important;
  /* Change the color to your preferred color */
  background-image: none;
  content: "\f286";
  transform: rotate(0);
  font-size: 0.813rem;
  font-family: bootstrap-icons !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #434343;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 992px) {
  .faqs .accordion-button:not(.collapsed)::after {
    font-size: 0.813rem;
  }
}
.faqs .accordion-button.collapsed::after {
  color: #6c757d !important;
  /* Example: Replace with your $paragraph color */
  background-image: none;
  content: "\f282";
  /* Unicode for 'minus' icon from Bootstrap Icons */
  font-size: 0.813rem;
  font-family: "bootstrap-icons" !important;
  display: flex;
  background: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #434343;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.book-a-free-call {
  padding: 0;
}
.book-a-free-call .bg_primery {
  padding: 2.813rem;
  background: #EBC575;
}
@media (max-width: 767px) {
  .book-a-free-call .bg_primery {
    padding: 3rem 1.5rem;
  }
}
.book-a-free-call .bg_primery h3 {
  font-family: "Cormorant", serif;
  color: #000;
  font-size: 2.5rem;
}
@media (max-width: 1200px) {
  .book-a-free-call .bg_primery h3 {
    font-size: 2rem;
  }
}
.book-a-free-call .bg_primery p {
  color: #000;
  font-size: 1.125rem;
  line-height: 27px;
}
@media (max-width: 992px) {
  .book-a-free-call .bg_primery p {
    font-size: 0.875rem;
  }
}
.book-a-free-call .bg_primery .full {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .book-a-free-call .bg_primery .full {
    justify-content: flex-start;
  }
}
.book-a-free-call .bg_primery .full .btn_1 {
  border: 1px solid #000;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 10px 25px;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .book-a-free-call .bg_primery .full .btn_1 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .book-a-free-call .bg_primery .full .btn_1 {
    font-size: 0.938rem;
  }
}
.book-a-free-call .bg_primery .full .btn_1:hover {
  background: #000;
  color: #fff !important;
}

.footer {
  width: 100%;
  padding: 0;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 4rem;
    background: #303030;
  }
}
.footer .outer_padding {
  padding: 2.813rem;
  background: #303030;
}
@media (max-width: 767px) {
  .footer .outer_padding {
    padding: 3rem 1.5rem 1rem 1.5rem;
  }
}
.footer .outer_padding h4 {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer .outer_padding .listing_one ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer .outer_padding .listing_one ul li {
  transition: all 0.4s ease-in-out;
  padding: 8px 0px;
  list-style: none;
  color: #fff;
  font-size: 0.938rem;
  width: 100%;
  font-weight: 400;
  position: relative;
}
@media (max-width: 1400px) {
  .footer .outer_padding .listing_one ul li {
    font-size: 0.813rem;
  }
}
.footer .outer_padding .listing_one ul li a {
  color: #fff !important;
  position: relative;
}
.footer .outer_padding .listing_one ul li a:hover {
  color: #fff !important;
}
.footer .outer_padding .pl-3 {
  padding-left: 8rem;
}
@media (max-width: 1200px) {
  .footer .outer_padding .pl-3 {
    padding-left: 0;
  }
}
.footer .outer_padding .listing_two ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer .outer_padding .listing_two ul li {
  transition: all 0.4s ease-in-out;
  padding: 8px 0px;
  list-style: none;
  color: #fff;
  font-size: 0.938rem;
  width: 100%;
  font-weight: 400;
  position: relative;
}
@media (max-width: 1400px) {
  .footer .outer_padding .listing_two ul li {
    font-size: 0.813rem;
  }
}
.footer .outer_padding .listing_two ul li a {
  color: #fff !important;
  position: relative;
}
.footer .outer_padding .listing_two ul li a:hover {
  color: #fff !important;
}
.footer .outer_padding .listing_two ul li {
  width: 45%;
}
.footer .outer_padding .listing_three ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer .outer_padding .listing_three ul li {
  transition: all 0.4s ease-in-out;
  padding: 8px 0px;
  list-style: none;
  color: #fff;
  font-size: 0.938rem;
  width: 100%;
  font-weight: 400;
  position: relative;
}
@media (max-width: 1400px) {
  .footer .outer_padding .listing_three ul li {
    font-size: 0.813rem;
  }
}
.footer .outer_padding .listing_three ul li a {
  color: #fff !important;
  position: relative;
}
.footer .outer_padding .listing_three ul li a:hover {
  color: #fff !important;
}
.footer .outer_padding .listing_three ul li {
  padding-left: 40px;
  position: relative;
  padding-bottom: 15px;
}
.footer .outer_padding .listing_three ul li img {
  position: absolute;
  left: 0;
  content: "";
  width: 24px;
}
.footer .outer_padding .social-icons {
  width: 100%;
}
.footer .outer_padding .social-icons ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer .outer_padding .social-icons ul {
    justify-content: center;
  }
}
.footer .outer_padding .social-icons ul li {
  padding: 0 10px;
  list-style: none;
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  .footer .outer_padding .social-icons ul li {
    padding: 10px 5px;
  }
}
.footer .outer_padding .social-icons ul li a {
  color: #fff !important;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.footer .outer_padding .social-icons ul li a:hover {
  color: #fff !important;
}
.footer .outer_padding .social-icons ul li:first-child {
  padding-left: 0px;
}
.footer .outer_padding .full {
  border-top: 1px solid rgba(255, 255, 255, 0.1215686275);
  display: flex;
  margin-top: 2.5rem;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footer .outer_padding .full {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer .outer_padding .full {
    margin-top: 1.5rem;
  }
}
.footer .outer_padding .line {
  width: 50%;
  padding-top: 2rem;
  display: flex;
}
@media (max-width: 1200px) {
  .footer .outer_padding .line {
    width: 100%;
    justify-content: center;
  }
}
.footer .outer_padding .line ul {
  display: flex;
}
@media (max-width: 767px) {
  .footer .outer_padding .line ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .outer_padding .line ul li {
  list-style: none;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
}
.footer .outer_padding .line ul li img {
  width: 40px;
}
.footer .outer_padding .line ul li::before {
  content: "|";
  left: 0;
  top: 0;
  position: absolute;
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer .outer_padding .line ul li:first-child {
  padding-left: 0;
}
.footer .outer_padding .line ul li:first-child::before {
  display: none;
}
.footer .outer_padding .line ul li a {
  color: rgba(255, 255, 255, 0.4);
}
.footer .outer_padding .line2 {
  width: 50%;
  padding-top: 2rem;
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer .outer_padding .line2 {
    padding-top: 1rem;
  }
}
@media (max-width: 1200px) {
  .footer .outer_padding .line2 {
    width: 100%;
    justify-content: center;
  }
}
.footer .outer_padding .line2 ul {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer .outer_padding .line2 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .outer_padding .line2 ul li {
  list-style: none;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
}
.footer .outer_padding .line2 ul li img {
  width: 50px;
}
.footer .outer_padding .line2 ul li:first-child {
  padding-left: 0;
}
.footer .outer_padding .line2 ul li:first-child::before {
  display: none;
}
.footer .outer_padding .line2 ul li a {
  color: rgba(255, 255, 255, 0.4);
}

.booking_form {
  padding: 0;
}
.booking_form .bg_primery {
  padding: 2.813rem;
  background: #303030;
}
@media (max-width: 767px) {
  .booking_form .bg_primery {
    padding: 2.5rem 1.5rem;
  }
}
.booking_form .bg_primery .call_icon {
  display: flex;
}
@media (max-width: 767px) {
  .booking_form .bg_primery .call_icon {
    align-items: center;
    margin-bottom: 1.5rem;
  }
}
.booking_form .bg_primery .call_icon .icon {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #EBC575;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .booking_form .bg_primery .call_icon .icon {
    width: 55px;
    height: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .booking_form .bg_primery .call_icon .icon {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .booking_form .bg_primery .call_icon .icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .booking_form .bg_primery .call_icon .icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .booking_form .bg_primery .call_icon .icon img {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .booking_form .bg_primery .call_icon .icon img {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 767px) {
  .booking_form .bg_primery .call_icon .icon img {
    width: 25px;
    height: 25px;
  }
}
.booking_form .bg_primery .call_icon h3 {
  font-size: 3.75rem;
  color: rgba(255, 255, 255, 0.4156862745);
  font-weight: 500;
  margin: 0;
  padding-left: 1.5rem;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .booking_form .bg_primery .call_icon h3 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .booking_form .bg_primery .call_icon h3 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .booking_form .bg_primery .call_icon h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .booking_form .bg_primery .call_icon h3 {
    padding: 0;
    font-size: 2rem;
  }
  .booking_form .bg_primery .call_icon h3 br {
    display: none;
  }
}
@media (max-width: 480px) {
  .booking_form .bg_primery .call_icon h3 {
    font-size: 2rem;
  }
}
.booking_form .bg_primery .forms {
  display: flex;
  flex-wrap: wrap;
}
.booking_form .bg_primery .forms .coloums {
  width: 33.3%;
  display: flex;
  padding-right: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .booking_form .bg_primery .forms .coloums {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .booking_form .bg_primery .forms .coloums {
    width: 50%;
    padding-right: 1.5rem;
  }
}
@media (max-width: 480px) {
  .booking_form .bg_primery .forms .coloums {
    width: 100%;
  }
}
.booking_form .bg_primery .forms .coloums .form-group {
  width: 100%;
  margin-bottom: 1.3rem;
  position: relative;
}
.booking_form .bg_primery .forms .coloums .form-group .icons {
  position: absolute;
  right: 0;
  top: 7px;
}
.booking_form .bg_primery .forms .coloums .form-group input {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1647058824);
  transition: border-color 0.3s;
  background: none !important;
  font-size: 0.813rem;
  padding: 0;
  color: #949494;
}
.booking_form .bg_primery .forms .coloums .form-group .form-select {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1647058824);
  width: 100%;
  background: none;
  transition: border-color 0.3s;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  font-size: 0.813rem;
  padding: 0;
  color: #949494;
}
.booking_form .bg_primery .forms .coloums .form-group select:focus {
  box-shadow: none;
}
.booking_form .bg_primery .forms .coloums .btn_1 {
  border: none;
  height: 40px;
  padding: 5px 30px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .booking_form .bg_primery .forms .coloums .btn_1 {
    font-size: 0.813rem;
    padding: 5px 15px;
  }
}
.booking_form .bg_primery .pl50 {
  padding-left: 50px !important;
}
.booking_form .bg_primery ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4588235294);
  font-weight: 400;
  font-size: 0.875rem;
  /* Firefox */
}
.booking_form .bg_primery ::placeholder {
  color: rgba(255, 255, 255, 0.4588235294);
  font-weight: 400;
  font-size: 0.875rem;
  /* Firefox */
}
.booking_form .bg_primery :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(255, 255, 255, 0.4588235294);
  font-weight: 400;
}
.booking_form .bg_primery ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(255, 255, 255, 0.4588235294);
  font-weight: 400;
}

.inner-banner {
  width: 100%;
  margin-top: 125px;
  background: #EBC575;
  background-size: cover;
  z-index: 1;
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .inner-banner {
    margin-top: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-banner {
    margin-top: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-banner {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .inner-banner {
    margin-top: 50px;
    height: 60vh;
    background-size: center center;
  }
}
.inner-banner .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.inner-banner .fullbox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .inner-banner .fullbox {
    height: 60vh;
  }
}
.inner-banner .fullbox h1 {
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 4px #000000;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Cormorant", serif;
  padding: 0.5rem 2rem;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner-banner .fullbox h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 992px) {
  .inner-banner .fullbox h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .inner-banner .fullbox h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .inner-banner .fullbox h1 {
    font-size: 2rem;
  }
}
.inner-banner .fullbox .breadcrumb {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .inner-banner .fullbox .breadcrumb {
    padding: 5px;
  }
}
.inner-banner .fullbox .breadcrumb li {
  color: #000;
}
.inner-banner .fullbox .breadcrumb li a {
  color: #000;
}
.inner-banner .fullbox .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #000;
}
.inner-banner .fullbox_2 {
  justify-content: flex-end;
  align-items: flex-end;
}
.inner-banner .fullbox_2 h1 {
  font-size: 2.2rem;
  text-align: right;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner-banner .fullbox_2 h1 {
    font-size: 2rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 992px) {
  .inner-banner .fullbox_2 h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .inner-banner .fullbox_2 h1 {
    font-size: 1.8rem;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .inner-banner .fullbox_2 h1 {
    font-size: 1.6rem;
    text-align: right;
  }
}

.inner-container {
  width: 100%;
}
.inner-container ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.inner-container ul li {
  list-style: none;
  color: #434343;
  font-size: 1rem;
  line-height: 26px;
  padding: 10px 0 10px 20px;
  position: relative;
}
@media (max-width: 1200px) {
  .inner-container ul li {
    line-height: 26px;
    font-size: 0.875rem;
  }
}
.inner-container ul li span {
  font-weight: 600;
}
.inner-container ul li::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0px;
  top: 18px;
  background: #434343;
}
.inner-container h2 {
  font-size: 2.5rem;
  color: #434343;
  font-weight: 400;
  margin-bottom: 0;
  padding: 0 0 2rem 0;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner-container h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .inner-container h2 {
    font-size: 1.563rem;
  }
}
.inner-container .blog_box {
  background: #fff;
  padding: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.3607843137);
  margin: 1px;
}
.inner-container .blog_box .img_box {
  width: 100%;
  background: #434343;
  overflow: hidden;
  /* [1.2] Hide the overflowing of child elements */
  position: relative;
}
.inner-container .blog_box .img_box .calendar {
  color: #434343;
  font-size: 0.875rem;
  padding: 0.2rem 0.5rem;
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: #EBC575;
}
.inner-container .blog_box .img_box img {
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.inner-container .blog_box .content {
  width: 100%;
  padding: 15px 10px 10px 10px;
}
.inner-container .blog_box .content h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #434343;
  display: -webkit-box;
  height: 42px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1.063rem;
  color: #434343;
  line-height: 24px;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .inner-container .blog_box .content h4 {
    height: 48px;
    min-height: 40px;
  }
}
@media (max-width: 767px) {
  .inner-container .blog_box .content h4 {
    height: 52px;
    margin-bottom: 1rem;
  }
}
.inner-container .blog_box .content p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #434343;
  display: -webkit-box;
  height: 42px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 52px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .inner-container .blog_box .content p {
    height: 48px;
    min-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .blog_box .content p {
    height: 48px;
    min-height: 40px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
@media (max-width: 768px) {
  .inner-container .blog_box .content p {
    height: 48px;
    min-height: 40px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.inner-container .blog_box:hover .img_box img {
  opacity: 0.4;
  transform: scale(1.5);
}
.inner-container .pricing_heading h3 {
  font-family: "Cormorant", serif;
  color: #434343;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.inner-container .blog_details {
  background: #fff;
  padding: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.3607843137);
  margin: 1px;
}
.inner-container .blog_details .content {
  width: 100%;
  padding: 1.5rem;
  position: relative;
}
.inner-container .blog_details .content .calendar {
  color: #EBC575;
  font-size: 1rem;
  padding: 0.2rem 0;
  margin-bottom: 1rem;
}
.inner-container .blog_details .content h2 {
  font-size: 1.5rem;
  color: #434343;
  line-height: 30px;
  margin-bottom: 1.5rem;
  padding: 0;
}
.inner-container .blog_details .content ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.inner-container .blog_details .content ul li {
  list-style: none;
  color: #434343;
  font-size: 1rem;
  line-height: 26px;
  padding: 10px 0 10px 20px;
  position: relative;
}
@media (max-width: 1200px) {
  .inner-container .blog_details .content ul li {
    line-height: 26px;
    font-size: 0.875rem;
  }
}
.inner-container .blog_details .content ul li span {
  font-weight: 600;
}
.inner-container .blog_details .content ul li::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0px;
  top: 18px;
  background: #434343;
}
.inner-container .blog_details .content .img_box {
  width: 100%;
  background: #434343;
  position: relative;
}
.inner-container .blog_details .content .img_box img {
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.inner-container .related_box {
  position: sticky;
  top: 100px;
  border: 1px solid rgba(0, 0, 0, 0.3607843137);
  background: #fdf7ea;
}
.inner-container .related_box h3 {
  font-size: 2rem;
  color: #434343;
  font-weight: 500;
  margin-bottom: 0;
  padding: 1.5rem 1.5rem 0 1.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner-container .related_box h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .inner-container .related_box h3 {
    font-size: 1.563rem;
  }
}
.inner-container .related_box ul li {
  padding: 1.5rem;
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3607843137);
}
.inner-container .related_box ul li .calendar {
  color: #B19251;
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
}
.inner-container .related_box ul li h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #434343;
  display: -webkit-box;
  height: 42px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1.063rem;
  color: #434343;
  line-height: 24px;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .inner-container .related_box ul li h4 {
    height: 48px;
    min-height: 40px;
  }
}
@media (max-width: 767px) {
  .inner-container .related_box ul li h4 {
    height: 50px;
    margin-bottom: 0.5rem;
  }
}
.inner-container .related_box ul li p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #434343;
  display: -webkit-box;
  height: 42px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .inner-container .related_box ul li p {
    height: 48px;
    min-height: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-container .related_box ul li p {
    height: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .related_box ul li p {
    height: 48px;
    min-height: 40px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
@media (max-width: 768px) {
  .inner-container .related_box ul li p {
    height: 48px;
    min-height: 40px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.inner-container .related_box ul li::before {
  display: none;
}
.inner-container .accordion_box {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3607843137);
  background: #fdf7ea;
}
.inner-container .accordion_box .accordion {
  --bs-accordion-border-color: #fdf7ea ;
}
.inner-container .accordion_box h2 {
  font-size: 2rem;
  color: #434343;
  font-weight: 500;
  margin-bottom: 0;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner-container .accordion_box h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .inner-container .accordion_box h2 {
    font-size: 1.563rem;
  }
}
@media (max-width: 767px) {
  .inner-container .accordion_box h2 {
    padding: 2rem 1rem 1.5rem 1rem;
  }
}
.inner-container .accordion_box .accordion-button {
  color: #434343;
  font-size: 0.875rem;
  line-height: 24px;
  font-family: #434343;
  padding: 1.5rem;
  font-weight: 500;
  border: none;
}
@media (max-width: 992px) {
  .inner-container .accordion_box .accordion-button {
    font-size: 0.813rem;
    padding: 1rem;
  }
}
.inner-container .accordion_box .accordion-body {
  padding: 1.5rem;
}
@media (max-width: 992px) {
  .inner-container .accordion_box .accordion-body {
    padding: 1rem;
  }
}
.inner-container .accordion_box .accordion-button:focus {
  z-index: 3;
  border-color: 0 !important;
  border: none;
  outline: none;
  /* Optional, if you also want to remove the outline */
  box-shadow: none;
  /* Optional, if you also want to remove any shadow */
}
.inner-container .accordion_box .accordion-flush .accordion-item .accordion-button,
.inner-container .accordion_box .accordion-flush .accordion-item .accordion-button.collapsed {
  border: none;
}
.inner-container .accordion_box .accordion-button:not(.collapsed) {
  border: none;
}
.inner-container .accordion_box .accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1764705882);
}
.inner-container .accordion_box .accordion-item {
  background: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1764705882);
}
.inner-container .accordion_box .accordion-item .accordion-button {
  font-size: 1rem;
  background: none;
}
.inner-container .accordion_box .accordion-item .accordion-button:not(.collapsed) {
  color: #434343;
}
.inner-container .accordion_box .accordion-button:not(.collapsed)::after {
  color: #434343 !important;
  /* Change the color to your preferred color */
  background-image: none;
  content: "\f286";
  transform: rotate(0);
  font-size: 0.813rem;
  font-family: bootstrap-icons !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #434343;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 992px) {
  .inner-container .accordion_box .accordion-button:not(.collapsed)::after {
    font-size: 0.813rem;
  }
}
.inner-container .accordion_box .accordion-button.collapsed::after {
  color: #6c757d !important;
  /* Example: Replace with your $paragraph color */
  background-image: none;
  content: "\f282";
  /* Unicode for 'minus' icon from Bootstrap Icons */
  font-size: 0.813rem;
  font-family: "bootstrap-icons" !important;
  display: flex;
  background: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #434343;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.inner-container .location_boxes {
  width: 100%;
}
.inner-container .location_boxes ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.inner-container .location_boxes ul li {
  border: 1px solid rgba(0, 0, 0, 0.3607843137);
  padding: 0;
  list-style: none;
  width: 24.5%;
  display: flex;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .inner-container .location_boxes ul li {
    width: 24%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-container .location_boxes ul li {
    width: 24.2%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .location_boxes ul li {
    width: 32%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .inner-container .location_boxes ul li {
    width: 49%;
  }
}
@media (max-width: 480px) {
  .inner-container .location_boxes ul li {
    width: 99%;
  }
}
.inner-container .location_boxes ul li .boxes {
  width: 100%;
  padding: 1rem;
  position: relative;
  background: rgb(255, 255, 255);
  background: linear-gradient(143deg, rgb(255, 255, 255) 68%, rgba(242, 242, 242, 0.8296568627) 100%);
  position: relative;
}
.inner-container .location_boxes ul li .boxes .popup {
  transition: all 0.4s ease-in-out;
  display: none; /* Hidden by default */
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-45%);
  padding: 1.5rem;
  background: #F9F3E4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 350px;
  min-height: 300px;
  z-index: 999;
}
@media (max-width: 767px) {
  .inner-container .location_boxes ul li .boxes .popup {
    top: 95%;
    transform: translateX(-50%);
    min-width: 300px;
  }
}
.inner-container .location_boxes ul li .boxes .popup ul {
  margin: 0;
  padding: 0;
}
.inner-container .location_boxes ul li .boxes .popup ul li {
  padding-bottom: 0;
  text-align: left;
  list-style: none;
  font-size: 0.875rem;
  padding-left: 1.2rem;
  position: relative;
}
.inner-container .location_boxes ul li .boxes .popup ul li::before {
  position: absolute;
  content: "\f285";
  display: block;
  background: none;
  left: -5px;
  top: 0;
  font-size: 1rem;
  color: #ECB236;
  font-family: bootstrap-icons !important;
}
.inner-container .location_boxes ul li .boxes ul {
  margin: 0;
  padding: 0;
}
.inner-container .location_boxes ul li .boxes ul li {
  padding-bottom: 0;
  text-align: left;
  list-style: none;
  font-size: 0.875rem;
  padding-left: 1.2rem;
  width: 100%;
  border: none;
  position: relative;
}
.inner-container .location_boxes ul li .boxes ul li::before {
  position: absolute;
  content: "\f285";
  display: block;
  background: none;
  left: -5px;
  top: 0;
  font-size: 1rem;
  color: #ECB236;
  font-family: bootstrap-icons !important;
}
.inner-container .location_boxes ul li .boxes .location_name {
  font-size: 1.5rem;
  color: #434343;
  font-family: "Cormorant", serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-container .location_boxes ul li .boxes .location_name {
    font-size: 1.2rem;
  }
}
.inner-container .location_boxes ul li .boxes .location_name span {
  font-weight: 400;
  font-size: 0.813rem;
  padding-left: 1rem;
  font-family: "Poppins", serif;
  color: #6c757d;
}
.inner-container .location_boxes ul li .boxes .location_name .flag {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.inner-container .location_boxes ul li .boxes label {
  font-weight: 300;
  font-size: 0.813rem;
  color: #797a7b;
}
.inner-container .location_boxes ul li .boxes label i {
  color: #EBC575;
}
.inner-container .location_boxes ul li .boxes p {
  margin-bottom: 0.2rem;
}
.inner-container .location_boxes ul li .boxes p a {
  color: #434343;
}
.inner-container .location_boxes ul li .boxes:hover .popup {
  display: block;
}
.inner-container .location_boxes ul li::before {
  display: none;
}
.inner-container .contact_texts {
  position: sticky;
  top: 100px;
}
.inner-container .contact_texts h3 {
  font-size: 2rem;
  color: #434343;
  font-weight: 500;
  margin-bottom: 0;
  padding: 2rem 0;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner-container .contact_texts h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .inner-container .contact_texts h3 {
    font-size: 1.563rem;
  }
}
.inner-container .contact_form {
  padding: 2.5rem;
  background: #fdf7ea;
  border: 1px solid rgba(0, 0, 0, 0.3607843137);
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner-container .contact_form {
    padding: 1.8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .contact_form {
    padding: 1.8rem;
  }
}
@media (max-width: 767px) {
  .inner-container .contact_form {
    padding: 1.5rem;
  }
}
.inner-container .contact_form h4 {
  color: #434343;
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  margin-bottom: 1.5rem;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .contact_form h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .inner-container .contact_form h4 {
    font-size: 1.8rem;
  }
}
.inner-container .contact_form h6 {
  font-size: 0.75rem;
  margin-top: 0.4rem;
  font-weight: 300;
  color: #434343;
}
.inner-container .contact_form .btn_1 {
  margin-top: 2rem;
  border: 1px solid #434343;
  background: #fff;
  color: #434343;
}
.inner-container .contact_form .btn_1:hover {
  background: #EBC575;
}
.inner-container .address {
  background: #eef1f4;
  margin-top: 2.5rem;
  padding: 2.5rem;
  display: flex;
}
.inner-container .address .right {
  width: 100%;
}
.inner-container .address .right h4 {
  color: #434343;
  margin-bottom: 1rem;
}
.inner-container .address .right ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.inner-container .address .right ul li {
  width: 25%;
  list-style: none;
  color: #434343;
}
.inner-container .address .right ul li a {
  color: #434343;
}
.inner-container .address .right ul li span {
  display: block;
  font-size: 1rem;
}
.inner-container .address .right ul li span i {
  color: #EBC575;
  font-size: 1.5rem;
  padding-right: 1rem;
}
.inner-container .address .right ul li::before {
  display: none;
}
.inner-container .pricing_box {
  margin-top: 1.5rem;
}
.inner-container .pricing_box ul {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .inner-container .pricing_box ul {
    flex-wrap: wrap;
  }
}
.inner-container .pricing_box ul li {
  align-items: center;
  padding: 1.5rem;
  width: 25%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .inner-container .pricing_box ul li {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .inner-container .pricing_box ul li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .inner-container .pricing_box ul li {
    width: 100%;
  }
}
.inner-container .pricing_box ul li:last-child {
  border-bottom: none;
}
.inner-container .pricing_box ul li .heading {
  position: relative;
  padding: 1.5rem 1.5rem 0 1.5rem;
}
.inner-container .pricing_box ul li .heading .img_box {
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.inner-container .pricing_box ul li .heading .img_box img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.inner-container .pricing_box ul li .heading h3 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
  color: #434343;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .inner-container .pricing_box ul li .heading h3 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-container .pricing_box ul li .heading h3 {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .pricing_box ul li .heading h3 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .inner-container .pricing_box ul li .heading h3 {
    font-size: 1.2rem;
  }
}
.inner-container .pricing_box ul li .content {
  transition: all 0.4s ease-in-out;
  width: 100%;
  padding-bottom: 1.5rem;
}
.inner-container .pricing_box ul li .content p {
  margin-bottom: 0;
  text-align: center;
}
.inner-container .pricing_box ul li::before {
  display: none;
}
.inner-container .pricing_box ul li:hover .heading img {
  filter: blur(2px);
  transform: scale(1.5);
}
.inner-container .pricing_box ul li:hover .content {
  opacity: 1;
}
.inner-container .patient_journey_box {
  background: #fff url(../images/patientjourney-bg.webp) no-repeat left top;
  background-size: contain;
  background-position-Y: 125%;
}
@media (max-width: 1200px) {
  .inner-container .patient_journey_box {
    background-image: none;
  }
}
.inner-container .patient_journey_box h2 {
  margin: 1.5rem 0;
  text-align: center;
}
.inner-container .patient_journey_box p {
  text-align: center;
}
.inner-container .patient_journey_box h4 {
  text-align: center;
  margin: 1.5rem 0 3rem 0;
  font-weight: 500;
}
.inner-container .patient_journey_box .journeys {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.inner-container .patient_journey_box .journeys .img_box {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 150px;
  height: 150px;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  border: 1px solid #000;
  margin-bottom: 1rem;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-container .patient_journey_box .journeys .img_box {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .patient_journey_box .journeys .img_box {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .inner-container .patient_journey_box .journeys .img_box {
    width: 120px;
    height: 120px;
  }
}
.inner-container .patient_journey_box .journeys .img_box .count {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBC575;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  width: 40px;
  height: 40px;
  transform: translateY(-20px);
}
.inner-container .patient_journey_box .journeys .img_box img {
  transition: all 0.4s ease-in-out;
  width: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-container .patient_journey_box .journeys .img_box img {
    width: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .patient_journey_box .journeys .img_box img {
    width: 40px;
  }
}
@media (max-width: 768px) {
  .inner-container .patient_journey_box .journeys .img_box img {
    width: 40px;
  }
}
.inner-container .patient_journey_box .journeys .content {
  padding: 1rem;
}
.inner-container .patient_journey_box .journeys .content h3 {
  font-size: 1.375rem;
  color: #000;
  text-align: center;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .inner-container .patient_journey_box .journeys .content h3 {
    font-size: 1.175rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner-container .patient_journey_box .journeys .content h3 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner-container .patient_journey_box .journeys .content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .inner-container .patient_journey_box .journeys .content h3 {
    font-size: 2rem;
  }
}
.inner-container .patient_journey_box .journeys .content p {
  text-align: center;
  color: #000;
  line-height: 24px;
}
.inner-container .patient_journey_box .journeys:hover .img_box {
  background: rgba(235, 198, 117, 0.6431372549);
}
.inner-container .patient_journey_box .journeys:hover .img_box img {
  transform: scale(1.1);
}
.inner-container .patient_journey_box .journeys:hover .count {
  background: #434343;
  color: #fff;
}

.services_container {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .services_container {
    margin-top: 120px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services_container {
    margin-top: 120px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_container {
    margin-top: 70px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .services_container {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .services_container .p-0 {
    padding: 0 15px !important;
  }
}
.services_container .custom-tabs {
  width: 100%;
}
.services_container .custom-tabs .nav-tabs {
  transform: translateY(35px);
  position: relative;
  margin-bottom: 0;
  padding-left: 1.5rem;
  border: none;
  gap: 5px;
}
@media (max-width: 992px) {
  .services_container .custom-tabs .nav-tabs {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .nav-tabs {
    transform: translateY(0);
    width: 100%;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .nav-tabs li {
    width: 49%;
  }
}
.services_container .custom-tabs .nav-tabs li::before:first-child {
  padding-left: 0 !important;
}
.services_container .custom-tabs .nav-tabs li .nav-link {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  padding: 10px 25px;
  text-transform: uppercase;
  border: 1px solid #000;
  font-weight: 600;
  width: 100%;
  color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_container .custom-tabs .nav-tabs li .nav-link {
    padding: 8px 10px;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .nav-tabs li .nav-link {
    padding: 8px 10px;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .services_container .custom-tabs .nav-tabs li .nav-link {
    padding: 8px 10px;
    font-size: 0.813rem;
  }
}
.services_container .custom-tabs .nav-tabs li .active {
  background: #EBC575;
}
.services_container .custom-tabs .nav-item {
  margin-bottom: -1px;
}
.services_container .custom-tabs .tab-content {
  margin-top: -10px;
  /* Adjust for positioning */
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .services_container .custom-tabs .tab-content {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .tab-content .row_reverse {
    flex-direction: column-reverse;
  }
}
.services_container .custom-tabs .outer {
  position: sticky;
  top: 100px;
}
.services_container .custom-tabs .outer .left_container {
  border: 1px solid rgba(0, 0, 0, 0.3607843137);
}
.services_container .custom-tabs .outer .left_container ul li {
  padding: 1.5rem 1.2rem;
  list-style: none;
  border-bottom: 1px solid #afb9c3;
}
.services_container .custom-tabs .outer .left_container ul li:last-child {
  border-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_container .custom-tabs .outer .left_container ul li {
    padding: 1.2rem;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .outer .left_container ul li {
    padding: 1rem;
  }
}
.services_container .custom-tabs .outer .left_container ul li::before {
  display: none;
}
.services_container .custom-tabs .outer .left_container ul li .listing_boxes p {
  padding-bottom: 0;
  position: relative;
  margin-bottom: 0;
}
.services_container .custom-tabs .outer .left_container ul li .listing_boxes p span {
  font-weight: 600;
}
.services_container .custom-tabs .outer .left_container ul li .listing_boxes p::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  display: none;
  width: 15px;
  height: 14px;
  position: absolute;
  left: 0px;
  top: 5px;
  border: 1px solid #434343;
}
.services_container .custom-tabs .outer .left_container ul li .heading_style {
  padding: 1.4rem 1rem;
}
@media (max-width: 1200px) {
  .services_container .custom-tabs .outer .left_container ul li .heading_style {
    padding: 0;
  }
}
.services_container .custom-tabs .outer .left_container ul li .heading_style h2 {
  font-family: "Cormorant", serif;
  font-size: 2.5rem;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .services_container .custom-tabs .outer .left_container ul li .heading_style h2 {
    font-size: 2rem;
    line-height: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services_container .custom-tabs .outer .left_container ul li .heading_style h2 {
    font-size: 1.8rem;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_container .custom-tabs .outer .left_container ul li .heading_style h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .outer .left_container ul li .heading_style h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.services_container .custom-tabs .outer .left_container ul li .heading_style h2 span {
  color: #EBC575;
}
.services_container .custom-tabs .outer .left_container ul li .heading_style h2 p {
  margin-bottom: 0;
}
.services_container .custom-tabs .outer .left_container ul li .icon_content {
  display: flex;
  align-items: center;
  background: #fdf7ea;
  padding: 1.5rem 1.2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .services_container .custom-tabs .outer .left_container ul li .icon_content {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .outer .left_container ul li .icon_content {
    padding: 1rem;
  }
}
.services_container .custom-tabs .outer .left_container ul li .icon_content .icons {
  width: 22%;
}
.services_container .custom-tabs .outer .left_container ul li .icon_content .icons img {
  width: 69px;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .services_container .custom-tabs .outer .left_container ul li .icon_content .icons {
    width: 23%;
    padding-right: 2%;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .outer .left_container ul li .icon_content .icons {
    width: 23%;
    padding-right: 2%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .services_container .custom-tabs .outer .left_container ul li .icon_content .icons img {
    width: 50px;
  }
}
.services_container .custom-tabs .outer .left_container ul li .icon_content .content {
  width: 78%;
}
.services_container .custom-tabs .outer .left_container ul li .icon_content .content p {
  margin-bottom: 0;
}
.services_container .custom-tabs .outer .left_container ul li .full_content {
  padding: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .services_container .custom-tabs .outer .left_container ul li .full_content {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .outer .left_container ul li .full_content {
    padding: 0;
  }
}
.services_container .custom-tabs .outer .left_container ul li .full_content p {
  margin-bottom: 0;
}
.services_container .custom-tabs .outer .left_container ul li .full_content img {
  margin-bottom: 1rem;
}
.services_container .custom-tabs .right_container {
  transform: translateY(50px);
  padding-left: 2rem;
}
@media (max-width: 992px) {
  .services_container .custom-tabs .right_container {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .right_container {
    transform: translateY(0);
  }
}
.services_container .custom-tabs .right_container h3 {
  font-size: 2.5rem;
  color: #434343;
  font-weight: 500;
  margin-top: 1rem;
  font-family: "Cormorant", serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .services_container .custom-tabs .right_container h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services_container .custom-tabs .right_container h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_container .custom-tabs .right_container h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .right_container h3 {
    padding: 0;
    font-size: 1.8rem;
  }
}
.services_container .custom-tabs .right_container .img_box {
  margin-top: 2rem;
  border: 1px solid rgba(67, 67, 67, 0.28);
  position: relative;
}
.services_container .custom-tabs .right_container .img_box::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(3, 3, 3, 0.4010854342) 100%);
}
.services_container .custom-tabs .right_container .img_box .icons {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  width: 110px;
  height: 110px;
  position: absolute;
  top: -50px;
  right: 20px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .services_container .custom-tabs .right_container .img_box .icons {
    width: 80px;
    height: 80px;
    right: 10px;
    top: -30px;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .right_container .img_box .icons {
    width: 80px;
    height: 80px;
    right: 10px;
    top: -30px;
  }
}
.services_container .custom-tabs .right_container .img_box .icons img {
  width: 90px;
  height: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .services_container .custom-tabs .right_container .img_box .icons img {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .right_container .img_box .icons img {
    width: 65px;
    height: 65px;
  }
}
.services_container .custom-tabs .right_container .img_box .content {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  width: 80%;
}
@media (max-width: 767px) {
  .services_container .custom-tabs .right_container .img_box .content {
    width: 95%;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .services_container .custom-tabs .right_container .img_box .content {
    width: 100%;
    padding: 0.5rem;
  }
}
.services_container .custom-tabs .right_container .img_box .content h1 {
  font-size: 3.25rem;
  color: #fff;
  font-family: "Cormorant", serif;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 0;
  text-align: right;
  text-shadow: -3px -1px 5px rgba(0, 0, 0, 0.55);
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .services_container .custom-tabs .right_container .img_box .content h1 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services_container .custom-tabs .right_container .img_box .content h1 {
    font-size: 2.4rem;
    line-height: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_container .custom-tabs .right_container .img_box .content h1 {
    font-size: 1.8rem;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .right_container .img_box .content h1 {
    font-size: 2rem;
    line-height: 35px;
  }
}
@media (max-width: 480px) {
  .services_container .custom-tabs .right_container .img_box .content h1 {
    font-size: 1.4rem;
    line-height: 24px;
  }
}
.services_container .custom-tabs .right_container .img_box .content h1 span {
  color: #EBC575;
}
.services_container .custom-tabs .right_container .img_box .content h3 {
  font-size: 3.25rem;
  color: #fff;
  font-family: "Cormorant", serif;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 0;
  text-align: right;
  text-shadow: -3px -1px 5px rgba(0, 0, 0, 0.55);
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .services_container .custom-tabs .right_container .img_box .content h3 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services_container .custom-tabs .right_container .img_box .content h3 {
    font-size: 2.4rem;
    line-height: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services_container .custom-tabs .right_container .img_box .content h3 {
    font-size: 1.8rem;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .services_container .custom-tabs .right_container .img_box .content h3 {
    font-size: 2rem;
    line-height: 35px;
  }
}
@media (max-width: 480px) {
  .services_container .custom-tabs .right_container .img_box .content h3 {
    font-size: 1.4rem;
    line-height: 24px;
  }
}
.services_container .custom-tabs .right_container .img_box .content h3 span {
  color: #EBC575;
}
.services_container .custom-tabs .right_container .img_boxes {
  position: sticky;
  top: 100px;
}
@media (max-width: 767px) {
  .services_container .custom-tabs .right_container .img_boxes {
    margin-bottom: 1.5rem;
  }
}
.services_container .custom-tabs .right_container .content {
  margin-top: 2rem;
}

.about_container {
  width: 100%;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .about_container {
    height: 60vh;
  }
}
@media (max-width: 767px) {
  .about_container {
    margin-top: 50px;
    height: 60vh;
  }
}
.about_container .content {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .about_container .content {
    height: 60vh;
  }
}
@media (max-width: 767px) {
  .about_container .content {
    height: 60vh;
  }
}
.about_container .content h1 {
  font-size: 4rem;
  color: #fff;
  font-family: "Cormorant", serif;
  text-shadow: 2px 2px 4px #000000;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .about_container .content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .about_container .content h1 {
    font-size: 2.4rem;
  }
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  z-index: 99;
  width: 65px;
  height: 65px;
  padding: 5px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .btn-whatsapp-pulse {
    width: 55px;
    height: 55px;
  }
}
.btn-whatsapp-pulse i {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .btn-whatsapp-pulse i {
    font-size: 2rem;
  }
}

.btn-whatsapp-pulse:hover {
  color: white;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.btn-consultation-pulse {
  background: #EBC575;
  color: white;
  position: fixed;
  left: 20px;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  z-index: 99;
  width: 55px;
  height: 55px;
  padding: 5px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  display: none;
}
@media (max-width: 767px) {
  .btn-consultation-pulse {
    display: flex;
  }
}
.btn-consultation-pulse i {
  font-size: 2.4rem;
}

.btn-consultation-pulse:hover {
  color: white;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 225, 141, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-consultation-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-consultation-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.floating-icon-container {
  position: fixed;
  transform: translateY(-50%);
  top: 60%;
  right: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 99;
}
@media (max-width: 1400px) {
  .floating-icon-container {
    right: 20px;
  }
}
@media (max-width: 480px) {
  .floating-icon-container {
    display: none;
  }
}

.floating-icon {
  font-size: 24px;
  cursor: pointer;
  background: #EBC575;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 10px;
  margin-bottom: 10px;
  /* Space between icons */
  z-index: 1000;
  /* Ensure icons are above the animated divs */
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-icon img {
  width: 35px;
  height: 35px;
}

.animated-div {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: absolute;
  right: 50px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  height: 40px;
  margin-right: 10px;
  width: 200px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  display: none;
  z-index: 999;
  /* Ensure the divs are below the icons */
}
.animated-div i {
  color: #EBC575;
  font-size: 2.5rem;
}

.animated-div.visible,
.floating-icon:hover + .animated-div {
  transform: translateX(0);
  /* Move into view */
  opacity: 1;
  display: flex;
}

#animatedDiv1 {
  bottom: 17px;
}

.animated-div:focus {
  transform: translateX(0);
  /* Keep visible on focus */
  opacity: 1;
  display: flex;
}

.overflow-hidden {
  overflow: hidden;
}

.full_boxes {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: none;
}
@media (max-width: 767px) {
  .full_boxes {
    display: flex;
  }
}
.full_boxes a {
  width: 50%;
  padding: 0.4rem 0.5rem;
  background: rgb(242, 240, 240);
  background: linear-gradient(90deg, rgb(242, 240, 240) 0%, rgb(255, 255, 255) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
@media (max-width: 480px) {
  .full_boxes a {
    font-size: 0.813rem;
  }
}
.full_boxes a svg {
  padding-right: 0.5rem;
}

.desktop_div {
  display: block;
}
@media (max-width: 767px) {
  .desktop_div {
    display: none;
  }
}

.mob_div {
  display: none;
}
@media (max-width: 767px) {
  .mob_div {
    display: block;
  }
}

.slider2 {
  flex-direction: column-reverse !important;
}

.slider-container {
  display: flex;
}

.slider-container .slider {
  width: 100%;
}

@keyframes goUpIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes goUpOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
.goUpIn {
  animation: goUpIn 0.5s forwards;
}

.goUpOut {
  animation: goUpOut 0.5s forwards;
}

/* Slide Down In Animation */
@keyframes goDownIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes goDownOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.goDownIn {
  animation: goDownIn 0.5s forwards;
}

.goDownOut {
  animation: goDownOut 0.5s forwards;
}

#tab-1-tab {
  scroll-margin-top: 150px; /* Adjust offset */
}

#tab-2-tab {
  scroll-margin-top: 150px; /* Adjust offset */
}

#tab-3-tab {
  scroll-margin-top: 150px; /* Adjust offset */
}

#tab-4-tab {
  scroll-margin-top: 150px; /* Adjust offset */
}

/* close owl *//*# sourceMappingURL=main.css.map */