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

:root {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --accent-color: #0b5a89;
}

p {
  font-size: 1.1rem;
  margin: 5px 0 0;
  font-weight: 300;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
  margin: 0;
  padding: 0;
  background-color: #f0e8ff; /* fallback color */
  background: url(http://2025.b3net.info/zarinamd/b3netdev/wp-content/uploads/2025/11/bg-image-gradient-scaled.jpg)
    no-repeat center center fixed;
  background-size: cover;
  width: 100%;
}
img {
  max-width: 100%;
}
.navbar {
  padding: 0rem 2rem;
  background: transparent;
  position: fixed;
  z-index: 10;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}

/* Background after scroll */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.575) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-bg-area {
  margin: 0 auto;
  padding: 20px 30px;
}

.hero-content {
  top: 58%;
  left: 50%;
  width: 90%;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 2.8rem;
  font-weight: 400;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: 85vh;
  overflow: hidden;
  z-index: 1;
  border-radius: 0 !important;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  max-width: 1600px;
  margin: 0 auto;
}

.video-control {
  position: absolute;
  bottom: 20vh;
  left: 180px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-control:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Overlay for hero/video section */
.video-wrapper-home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    hsla(176, 82%, 71%, 0.3) 0%,
    hsla(202, 85%, 29%, 0.3) 100%
  );
  pointer-events: none; /* ensures video/buttons remain clickable */
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
  height: 88vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.height-hero {
  height: 70vh;
}

.custom-toggler {
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

.custom-toggler span {
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  transition: 0.3s ease;
}

.navbar-brand img {
  max-height: 105px;
}

.btn-donate {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 18px;
}

.btn-donate:hover {
  background: var(--accent-color);
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
}

.hero h1 strong {
  font-weight: 700;
}

.btn-cta {
  margin-top: 20px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 10px 28px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* Offcanvas Menu */
.offcanvas {
  background: #111;
}

.offcanvas a.nav-link {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 10px 0;
}

.offcanvas a.nav-link:hover {
  color: var(--accent-color);
}

.menu-img img {
  width: 100%;
}

.treatments {
  padding: 60px 0;
}

.treatment-box {
  border-right: 1px solid #ccc;
}

.treatment-box:last-child {
  border-right: none;
}

.treatment-box h2 {
  font-weight: 300;
  font-size: 2rem;
  display: inline-block;
  color: black;
}

.treatment-box .big {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}

.treatment-box .small {
  font-size: 0.9rem;
  color: #575757;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 6px;
}

.services-grid {
  width: 100%;
}

/* .service-box {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
} */

/* .service-box .overlay {
  background: rgba(0, 0, 0, 0);
  padding: 20px;
  width: 100%;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
} */

.solutions-hover-box a {
  color: white;
  text-decoration: none;
}

/* .service-box:hover .overlay {
  background: rgba(0, 0, 0, 0.336);
  padding: 20px;
  width: 100%;
  height: 100%;
} */

.service-box h2 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 300;
  line-height: 1;
}

.service-box h2 .big {
  font-size: 2.8rem;
  font-weight: 300;
}

.service-box p {
  font-size: 1rem;
  margin: 5px 0 0;
  font-weight: 300;
}

.contact-info {
  padding: 50px 0;
  color: #000;
  /* border-top: 1px solid #eee;
  border-bottom: 1px solid #eee; */
}

.contact-box {
  padding: 20px;
  border-right: 1px solid #ddd;
}

.contact-box:last-child {
  border-right: none;
}

.contact-box h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.contact-box h2 .big {
  font-size: 3.3rem;
  font-weight: 300;
}

.contact-box p {
  font-size: 1.2rem;
  margin: 0;
  color: #555;
  font-weight: 400;
  text-align: left;
}

.contact-box a {
  color: inherit;
  text-decoration: none;
}

.contact-box a:hover {
  color: #0b5a89;
  /* accent */
}

.contact-box .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #000;
}

img.pe-3.house-sec {
  max-width: 70px;
}

.about-image img {
  object-fit: cover;
  height: 100%;
  min-height: 500px;
}

.about-content {
  background: linear-gradient(
    220deg,
    hsla(176, 82%, 71%, 1) 0%,
    hsla(202, 85%, 29%, 1) 100%
  );
  color: #222;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 300;
}

.about-content .highlight {
  color: #000;
  font-weight: 700;
}

.about-content ul li {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.bg-gradient-blue {
  background: linear-gradient(
    34deg,
    hsla(176, 82%, 71%, 1) 0%,
    hsla(202, 85%, 26%, 1) 100%
  );
  color: #000;
}

.bg-gradient-blue-2 {
  background: linear-gradient(
    220deg,
    hsla(176, 82%, 71%, 1) 0%,
    hsla(202, 85%, 29%, 1) 100%
  );
}

.input-group-text {
  background: #fff;
  border-right: 0;
}

.form-control,
.form-select {
  border-left: 0;
  padding-left: 10px;
}

.form-part-section input {
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid #48b0bf;
  background-color: #b0e8ea;
}

.margin-sec {
  margin: 0 0 0 auto;
}

.form-part-section textarea {
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid #48b0bf;
  background-color: #b0e8ea;
  width: 100%;
  max-height: 90px;
}

.form-part-section select {
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid #48b0bf;
  background-color: #b0e8ea;
}

.white-btnn,
.form-part-section .white-btnn {
  background: #fff;
  color: #000;
  border-radius: 50px;
  padding: 15px 28px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 40px;
  border: 1px solid #ffffff00;
}

.white-btnn:hover,
.form-part-section .white-btnn:hover {
  background: #ffffff00;
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 35px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 40px;
  opacity: 1;
  border: 1px solid #ffffff;
}

.appointment-section h2 {
  font-size: 2.2rem;
  font-weight: 300;
}

.appointment-section .big {
  font-size: 4rem;
  font-weight: 300;
}

.appointment-section p {
  font-size: 1.3rem;
  font-weight: 300;
}

.appointment-form p {
  width: 100%;
  margin: 0;
}

.appointment-form .wpcf7-not-valid-tip {
  color: #9b0000;
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.contact-form p {
  width: 100%;
  margin: 0;
}

.contact-form .wpcf7-not-valid-tip {
  color: #9b0000;
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.side-links,
.side-links li {
  list-style: none;
}

.team-box {
  min-width: 150px;
}

.team-box h4 {
  font-weight: 800;
  font-size: 1.2rem;
  color: #0b5a89;
}

.team-box i {
  font-size: 2rem;
  margin-right: 12px;
  color: #333;
}

.faq-section h2 {
  font-weight: 300;
}

.bg-pink {
  background-color: #feadfe;
}

.bg-pink img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.about-split .big {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
}

.faq-box {
  color: #333;
  height: 100%;
  padding: 40px;
}

.faq-box h2 {
  font-weight: bold;
  color: #111;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
}

.accordion-button {
  background: transparent;
  color: #333;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: #000;
}

.accordion-body {
  background: transparent;
  border-radius: 6px;
  padding: 15px;
  color: #444;
}

.faq-section h2 {
  font-size: 2.2rem;
  font-weight: 300;
}

.faq-section .big {
  font-size: 3.8rem;
  font-weight: 300;
}

.faq-section p {
  font-size: 1.3rem;
  font-weight: 300;
}

div#faqAccordion button.accordion-button {
  font-size: 24px;
}

.accordion-item {
  background: transparent;
}

div#faqAccordion button.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-item {
  border-bottom: 1px solid white;
}

.insights-card {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 20px !important;
}

.insights-card img {
  object-fit: cover;
  height: auto;
  height: 270px;
}

.insights-card .card-title {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.insights-card .card-footer {
  border-top: 1px solid #0b5a89;
}

.insights-card,
.insights-card .card-body,
.insights-card .card-footer {
  background-color: transparent !important;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.insights-card {
  background-color: white !important;
  border: 1px solid #0b5b8900;
}
.insights-card:hover {
  background-color: white !important;
  border: 1px solid #0b5a89;
  border-radius: 20px;
}

.insights-card:hover .btn-outline-primary {
  border: 1px solid #0b5a89;
  background: #0b5a89;
  border-radius: 50px;
  padding: 10px 20px;
  color: #ffffff;
}

.btn-outline-primary {
  border: 1px solid #ffffff;
  color: #000000;
  border-radius: 50px;
  padding: 10px 20px;
  background: white;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover,
.btn-outline-primary:hover {
  background: #c21873;
  color: #fff;
}

.insights-section h2 {
  font-size: 3rem;
  font-weight: 300;
  color: black;
}

.insights-card .card-body {
  background: transparent !important;
}

.gap-part {
  gap: 30px;
}
.gap-col {
  width: 30%;
}

.newsletter-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: white;
  padding: 50px 0;
  color: #000;
}

.newsletter-section h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0;
}

.newsletter-section .highlight {
  color: #0b5a89;
  font-weight: 700;
  font-size: 55px;
}

.border-md-end {
  border-right: 1px solid #ddd;
}

.btn-subscribe {
  background: #0b5a89;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 18px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 180px;
  border: 2px solid #0b5a89;
}

.btn-subscribe:hover {
  background: #0c74b1;
  color: white;
}

.newsletter-section .form-control {
  max-width: calc(100% - 220px);
  border-radius: 12px;
  border: 2px solid #c2c2c2;
  padding: 18px 20px;
}

.newsletter-section h2 {
  font-size: 2.2rem;
  font-weight: 300;
}

.newsletter-section .big {
  font-size: 4rem;
  font-weight: 300;
}

.newsletter-section p {
  font-size: 1.7rem;
  font-weight: 300;
}

.footer {
  font-family: "Montserrat", sans-serif;
}

.footer p {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.6;
  padding-right: 10px;
}

.footer-heading {
  font-size: 1.3rem;
  font-weight: 500;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  font-size: 16px;
  font-weight: 300;
}

.footer-bottom a {
  font-size: 16px;
  color: #d9d9d9;
}
h2.mb-4.contet-maps {
  color: black;
}
.footer-bottom h {
  font-size: 16px;
  color: #d9d9d9;
}
.fa-check-circle:before,
.fa-circle-check:before {
  color: #181818;
}
.footer a:hover {
  color: #0b5a89;
  /* accent color */
}

.footer-readmore {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-readmore:hover {
  color: #0b5a89;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #ddd;
}

.footer-contact i {
  color: #ffffff;
}

.social-icons a {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #0b5a89;
  color: #fff;
}

.footer h4 {
  font-size: 2.1rem;
  font-weight: 300;
}

.footer .big {
  font-size: 3.4rem;
  font-weight: 300;
}

.footer p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* ul.list-unstyled.list-part li {
    list-style: circle;
    font-size: 18px;
    font-weight: 400;
    padding: 3px 0;
} */

.list-part {
  list-style: none;
  padding-left: 0;
}

.footer-logo.mb-3 img {
  max-width: 280px;
}

.list-part li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.list-part li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff00;
  border: 1px solid #ffffff;
  border-radius: 50px;
}

.footer-bottom {
  border-top: 1px solid #8b8b8b;
}

.footer-bottom h5 {
  font-size: 1rem;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #0b5a89;
  /* accent purple */
}

.blog-content .news-item {
  padding: 2rem 0;
  border-bottom: 1px solid #ccc;
}

.blog-content .news-img {
  max-width: 240px;
}

.blog-content a {
  text-decoration: none;
}

.blog-content a h2 {
  font-size: 1.8rem;
  color: black;
  text-decoration: none;
  font-weight: 600 !important;
}

.blog-content a h2:hover {
  color: rgb(70, 70, 70);
}

.blog-content p {
  font-size: 1.1rem;
  color: rgb(99, 99, 99);
  text-decoration: none;
}

.pagination .page-link {
  border-radius: 8px;
  margin: 0 8px;
  border: none;
  padding: 0.5rem 0.9rem;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-item.active .page-link {
  background-color: #0b5a89;
  /* purple */
  border-color: #0b5a89;
  color: #fff;
  border-radius: 5px;
}

.pagination .page-link:hover {
  background-color: #0b5b892f;
}

.blog-details h4 {
  text-align: left;
  font-size: 1.6rem;
  padding-right: 20px;
}

.margine-sec {
  margin: 0 auto;
}

.blog-details img {
  width: 100%;
}

.blog-details-content .blog-title {
  font-weight: 600;
  color: black;
  font-size: 1.6rem;
}

.blog-details-content .blog-meta {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.blog-details-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.blog-details-content ul {
  list-style: none;
  padding: 0;
}

.blog-details-content ul li {
  padding: 5px 0;
  color: rgb(99, 99, 99);
}

.blog-details-content ul li::before {
  content: "›";
  color: #0b5a89;
  font-weight: bold;
  margin-right: 8px;
  font-size: 20px;
}

img.img-fluid.rounded.mb-4.width-sect {
  width: 100%;
  object-fit: cover;
}

.blog-details-content .contact-form h5 {
  padding: 20px 25px;
  background: #0b5a89;
  margin: 0;
  font-size: 35px;
  font-weight: 700;
}

.blog-details-content .contact-form form {
  background: white;
  padding: 30px 30px 0 30px;
}

.blog-details-content .contact-form form input {
  background: #dae9f2;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  margin: 5px 0;
}

.blog-details-content .contact-form form textarea {
  background: #dae9f2;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  margin: 5px 0;
}

.text-clr-form p {
  color: #2d3134;
  font-weight: 400;
}

.btn-blue {
  background-color: #0b5a89;
  color: white;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase !important;
}

.contact-form .btn-pink {
  padding: 10px 20px;
}

.btn-pink-2 {
  width: 200px;
  border-radius: 50px;
  padding: 15px 20px;
  margin: 0 auto;
  margin-top: 20px;
}

.btn-blue:hover {
  background-color: #1083c5 !important;
  color: white;
}

.blog-form input[type="submit"],
.blog-details-content .contact-form form input[type="submit"] {
  background-color: #0b5a89;
  color: white;
  border-radius: 50px;
  padding: 10px 35px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  width: 100%;
}

.blog-form input[type="submit"]:hover,
.blog-details-content .contact-form form input[type="submit"]:hover {
  background-color: #1083c5 !important;
  color: white;
}

.white-bnn:hover {
  color: white;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0);
}

.botox-hero h2 {
  font-size: 3.2rem;
  font-weight: 300;
}

.botox-hero h4 {
  font-size: 2rem;
  font-weight: 300;
}

.botox-content h2 {
  font-size: 2.6rem;
  font-weight: 300;
  margin-top: 20px;
}

.botox-content h2 span {
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 20px;
}

.botox-content h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 20px;
}

.appoinrtment-sect {
  color: #000;
}

.appoinrtment-sect .btn.btn-pink {
  border-radius: 50px;
  padding: 15px 10px;
  width: 80%;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-weight: 300;
  margin-bottom: 15px;
}

.faq-section .accordion-button {
  background: transparent;
  box-shadow: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem 0;
  border: none;
}

.faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid #acacac;
}
.faq-section .accordion-item:last-child {
  border: none;
  border-bottom: none;
}

.faq-section .accordion-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 1.5rem;
  color: #0b5a89;
  background-image: none !important;
  transform: none !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5rem;
  color: #0b5a89;
}

.faq-section .accordion-body {
  font-size: 1rem;
  color: #333;
  padding: 0 0 1rem 0;
  padding: 0px 0 20px 0;
}

.faq-section h3 {
  font-weight: 300;
  color: #000;
  padding-bottom: 40px;
  font-size: 3rem;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.video-section-botox img {
  width: 100%;
}

.before-after-section {
  color: #000;
}

.before-after-section h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.before-after-section h4 {
  font-size: 2.3rem;
  font-weight: 300;
}

.thumbs-carousel .item {
  cursor: pointer;
}

.thumbs-carousel .item img {
  border: 2px solid transparent;
}

.thumbs-carousel .current img {
  border-color: #ff4081;
}

/* Make thumbnails vertical */
#sync2 {
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
}

#sync2 .owl-stage {
  display: flex;
  flex-direction: column;
  width: 100% !important;
}

#sync2 .owl-item {
  margin-bottom: 15px;
  width: 100% !important;
}

#sync2 .item img {
  width: 100%;
  border: 2px solid transparent;
  cursor: pointer;
}

#sync2 .current img {
  border-color: #f0cc00;
  width: 100%;
}

/* General nav button styling */
.before-after-section .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.5) !important;
  color: #fff !important;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: 0.3s ease;
  font-size: 2rem;
}

.before-after-section .owl-nav button:hover {
  opacity: 1;
}

/* Positioning for vertical slider */
.before-after-section .owl-nav button.owl-prev {
  left: 50px;
  font-size: 1.5rem;
  border-radius: 50px;
}

.before-after-section .owl-nav button.owl-next {
  right: 50px;
  font-size: 1.5rem;
  border-radius: 50px;
}

.owl-slider-right .owl-carousel .owl-stage-outer {
  position: relative;
  background: rgb(56, 56, 56);
  padding: 50px;
}

/* Force equal height */
.before-after-section .row {
  display: flex;
  align-items: stretch;
}

/* Main big slider full height */
#sync1 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps proportions */
}

/* Thumbnails column takes full height */
#sync2 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#sync2 .owl-stage-outer {
  flex: 1;
  height: 100%;
}

/* Thumbnails images fit without cutting */
#sync2 .item img {
  width: 100%;
  height: auto;
  /* keep natural proportions */
  max-height: 100%;
  /* don’t overflow */
  object-fit: contain;
  /* no cropping */
}

.video-wrapper-img {
  height: 50vh;
  border-radius: 0 0 100px 100px;
}
.hero-img {
  height: 40vh;
}
a.btn.btn-pink.me-2.display-mmo {
  background: white;
  border-radius: 50px;
  padding: 10px 20px;
}
a.btn.btn-pink.me-2.display-mmo:hover {
  background: rgb(131, 131, 131);
  border-radius: 50px;
  padding: 10px 20px;
}

.form-part-section input[type="submit"] {
  background-color: #0b5a89;
  color: white;
  border-radius: 50px;
  padding: 10px 35px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.form-part-section .wpcf7-spinner {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

@media screen and (min-width: 767px) and (max-width: 1299px) {
  .btn-subscribe {
    border: none;
    padding: 18px 5px;
    width: 160px;
    font-size: 12px;
    border: 2px solid #0b5a89;
  }

  .newsletter-section .form-control {
    max-width: calc(100% - 140px);
  }
}

@media (max-width: 2000px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1600px;
  }
}

@media (max-width: 1699px) {
  .video-wrapper {
    max-width: 1350px;
    height: 85%;
    border-radius: 0 0 100px 100px;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px;
  }
  .hero-img {
    height: 23vh;
  }
  .hero-img-2 {
    height: 30vh;
  }
  .video-control {
    left: 11%;
  }
}

@media (max-width: 1399px) {
  .video-wrapper {
    max-width: 1200px;
    height: 85%;
    border-radius: 0 0 0;
  }
  .btn-blue {
    padding: 10px 20px !important;
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
  .video-control {
    left: 10%;
  }
  .navbar-brand img {
    max-height: 90px;
  }
}

@media (max-width: 1199px) {
  .about-split .big {
    font-size: 3.6rem;
  }

  .appointment-section .big {
    font-size: 3.1rem;
  }

  .faq-section .big {
    font-size: 3rem;
    font-weight: 300;
  }

  .newsletter-section .big {
    font-size: 3.2rem;
  }

  .contact-box h2 {
    font-size: 1.5rem;
  }

  .contact-box h2 .big {
    font-size: 3rem;
  }

  .contact-box p {
    font-size: 1rem;
  }
  .hero-img-2 {
    height: 35vh;
  }
  .video-control {
    left: 45px;
  }
  .btn-blue {
    padding: 10px 14px !important;
    font-size: 1rem !important;
  }
  .header-bg-area {
    padding: 15px 10px;
  }
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 85px;
  }
  .custom-toggler {
    width: 45px;
  }
  .newsletter-section .highlight {
    font-size: 42px;
  }
  .contact-box {
    padding: 10px 10px;
    border-right: none;
  }

  .faq-section h2 {
    font-size: 2rem;
    font-weight: 300;
  }
  .about-image img {
    object-fit: cover;
    height: 100%;
    min-height: auto;
  }
  .hero-img {
    height: 20vh;
  }
  .hero-content {
    top: 60%;
    left: 50%;
  }
  .btn-blue {
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
  }
  a.footer-readmore.mt-5 {
    margin-top: 12px !important;
  }
}

@media (max-width: 768px) {
  .video-control {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 20%;
    left: 50px;
  }

  .service-box {
    height: 220px;
  }

  .service-box h2 {
    font-size: 1.5rem;
  }

  .service-box h2 .big {
    font-size: 2rem;
  }

  .service-box p {
    font-size: 0.9rem;
  }

  .treatment-box {
    border-right: none;
    margin: 10px 0;
  }

  .contact-box {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .contact-box:last-child {
    border-bottom: none;
  }

  .appointment-section .big {
    font-size: 3rem;
  }

  .faq-section h3 {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .newsletter-section h2 {
    font-size: 2rem;
    font-weight: 300;
  }
  .appoinrtment-sect {
    color: #000;
    padding-bottom: 10px !important;
    padding-top: 0 !important;
  }
  section.about-split.py-5 {
    padding: 20px 0 !important;
  }

  .newsletter-section .big {
    font-size: 2.6rem;
  }

  .botox-hero h2 {
    font-size: 2.8rem;
    font-weight: 300;
  }

  .blog-content .news-img {
    max-width: 100%;
  }

  .contet-maps {
    font-size: 1.5rem;
  }
  .hero-img-2 {
    height: 62vh;
  }

  .about-hero-section h2 {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .about-hero-section h4 {
    font-size: 1.3rem;
    font-weight: 300;
  }
  .toxin-imges {
    min-height: 330px;
    object-fit: cover;
  }
  .faq-box {
    padding: 25px;
  }
  .blog-details-content .contact-form h5 {
    font-size: 28px;
    text-align: center;
  }
  .btn-donate {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .footer .big {
    font-size: 2.6rem;
    font-weight: 300;
  }
  .custom-toggler {
    width: 38px;
  }

  .contet-maps {
    font-size: 1.1rem;
  }

  .botox-hero h4 {
    font-size: 1.5rem;
    font-weight: 300;
  }

  .video-control {
    width: 35px;
    height: 35px;
    font-size: 14px;
    bottom: 20%;
    left: 30px;
  }

  .navbar-brand img {
    max-width: 52px;
  }

  .btn-donate {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    padding: 8px 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
  }

  .appointment-section .big {
    font-size: 2.2rem;
  }

  .about-split .big {
    font-size: 2.8rem;
  }

  .insights-section h2 {
    font-size: 2rem;
    font-weight: 300;
    color: black;
  }
  .newsletter-section .form-control {
    max-width: 100%;
    border-radius: 6px;
    border: 2px solid #c2c2c2;
    padding: 8px 10px;
  }

  .btn-subscribe {
    margin-top: 8px;
    width: 100%;
    padding: 8px 10px;
  }

  .faq-box {
    padding: 20px;
  }

  .btn-cta {
    padding: 8px 12px !important;
  }

  .white-btnn:hover {
    padding: 8px 12px !important;
  }

  .faq-section .big {
    font-size: 2rem;
  }

  .white-btnn {
    padding: 15px 13px;
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }
  .footer-bottom h5 {
    font-size: 0.9rem;
  }

  .footer a {
    font-size: 16px;
  }
  .hero-content {
    top: 65%;
    left: 50%;
    width: 100%;
  }
  .toxin-imges {
    min-height: 200px;
    object-fit: cover;
    border-radius: 0 0 80px 80px;
  }
  .about-hero-section h2 {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center !important;
  }
  .about-hero-section h4 {
    font-size: 1rem;
    font-weight: 300;
  }

  .col-lg-6.d-flex.align-items-center.about-content .p-md-5.px-5.py-5.w-100 {
    padding: 20px !important;
  }
  .about-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
  }
  section.about-split.py-5 {
    padding: 25px 0 0 0 !important;
  }
}

.thanku-sec {
  padding: 180px 0 140px;
}

.thanku-sec h1 {
  font-size: 95px;
  font-weight: 900;
  color: #0b5a89;
}

.thanku-sec h2 {
  font-size: 45px;
  font-weight: 900;
  padding: 5px 0;
  color: #212121;
}

.thanku-sec h3 {
  font-size: 26px;
  font-weight: 900;
  color: #212121;
}

.btn-thanku {
  background-color: #0b5a89;
  padding: 12px 30px;
  color: white;
  transition: 0.5s ease-in-out;
  text-decoration: none;
}

.btn-thanku:hover {
  background-color: #0c7dbe;
  color: white;
}

.book-appointment-popup .modal-dialog {
  max-width: 800px;
}

.book-appointment-popup .btn-close {
  position: absolute;
  right: 0;
  z-index: 1;
  background-color: #f00;
  opacity: 1;
  color: #fff;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  color: rgb(26, 26, 26);
  margin: 5px 0 8px 0;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image.image-anime.reveal img {
  border-radius: 0;
  width: 100%;
}

.solutions-hover-box {
  padding: 20px 11% 28px;
  font-size: 16px;
  transform: translateY(128px);
}
.solutions-hover-box {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  padding: 20px 20px;
  bottom: 40%;
  transition: all 0.5s;
  transform: translateY(105px);
  color: #fff;
  z-index: 2;
  top: auto;
  font-size: 15px;
  /* height: 100%; */
}
.portfolio-list {
  transition: 0.5s ease-in-out;
}
.portfolio-list:hover .image.image-anime.reveal img {
  scale: 1.05;
  transition: 0.5s ease-in-out;
}

section.blog-details-content.content-page-section {
  padding-top: 150px;
}

/* 
.blog-details-content.content-page-section ul li p {
    position: relative;
    padding-left: 25px; 
}

.blog-details-content.content-page-section ul li p::before {
    content: "›";
    color: #0b5a89;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 4px;
    line-height: 1;
} */

.blog-content .news-img {
  max-width: 290px;
  width: 290px;
  height: 200px;
  object-fit: cover;
  border-radius: 100px;
}

.col-6.footer-flex-part1 {
  width: 35%;
  padding: 0;
}
.col-6.footer-flex-part2 {
  width: 65%;
  padding: 0;
}
.row.footer-flex-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.treatment-img img {
  width: 530px;
  height: 350px;
  object-fit: cover;
}

/* ------------------------------
   DESKTOP (Default ≥ 992px)
--------------------------------*/
.blog-content h1 {
  font-size: 42px;
}
.blog-content h2 {
  font-size: 32px;
}
.blog-content h3 {
  font-size: 28px;
}
.blog-content h4 {
  font-size: 24px;
}
.blog-content h5 {
  font-size: 20px;
}
.blog-content h6 {
  font-size: 18px;
}

/* ------------------------------
   TABLET (991px and below)
--------------------------------*/
@media (max-width: 991px) {
  .blog-content h1 {
    font-size: 36px;
    line-height: 1.3;
  }
  .blog-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }
  .blog-content h3 {
    font-size: 22px;
    line-height: 1.3;
  }
  .blog-content h4 {
    font-size: 20px;
  }
  .blog-content h5 {
    font-size: 18px;
  }
  .blog-content h6 {
    font-size: 16px;
  }
}

/* ------------------------------
   MOBILE (575px and below)
--------------------------------*/
@media (max-width: 575px) {
  .blog-content h1 {
    font-size: 28px;
  }
  .blog-content h2 {
    font-size: 24px;
  }
  .blog-content h3 {
    font-size: 20px;
  }
  .blog-content h4 {
    font-size: 20px;
  }
  .blog-content h5 {
    font-size: 18px;
  }
  .blog-content h6 {
    font-size: 16px;
  }
}
.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 400;
}

.hero-content h4 {
  font-size: 26px;
  font-weight: 200;
  padding: 8px 0;
}

.blog-meta {
  font-size: 20px;
}
.insights-card .card-title {
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 1699px) {
  .treatment-img img {
    width: 450px;
    height: 290px;
    object-fit: cover;
  }
  .insights-card img {
    object-fit: cover;
    height: auto;
    height: 230px;
    width: 100%;
  }
}

@media (max-width: 1440px) {
  .thanku-sec {
    padding: 150px 0 120px;
  }
  .thanku-sec h1 {
    font-size: 65px;
    font-weight: 900;
    color: #0b5a89;
  }
  .thanku-sec h2 {
    font-size: 40px;
    font-weight: 900;
  }
  .thanku-sec h3 {
    font-size: 24px;
    font-weight: 900;
  }
  .footer-bottom h5 {
    font-size: 0.9rem;
  }
  .footer-bottom a {
    font-size: 15px;
    color: #d9d9d9;
  }
  .footer p {
    font-size: 1.1rem;
    font-weight: 300;
  }
  .footer h4 {
    font-size: 1.9rem;
    font-weight: 300;
  }
  .footer .big {
    font-size: 3rem;
    font-weight: 300;
  }
  .faq-section h2 {
    font-size: 2rem;
    font-weight: 300;
  }
  .faq-section .big {
    font-size: 2.8rem;
    font-weight: 300;
  }
  div#faqAccordion button.accordion-button {
    font-size: 22px;
  }
  div#faqAccordion button.accordion-button {
    font-size: 22px;
    padding: 10px 0 5px 0;
    line-height: 1.2;
  }
  .service-box h2 {
    font-size: 1.5rem;
  }
  .service-box h2 .big {
    font-size: 2.5rem;
    font-weight: 300;
  }
  .solutions-hover-box {
    bottom: 45%;
  }

  .blog-content .news-img {
    max-width: 260px;
    height: 180px;
  }
  .hero-content h1 {
    font-size: 2.3rem;
    font-weight: 400;
  }
  .treatment-img img {
    width: 430px;
    height: 260px;
    object-fit: cover;
  }
  .gap-col {
    width: 32%;
  }
  .gap-part {
    gap: 15px;
  }
}

@media (max-width: 1199px) {
  .thanku-sec h1 {
    font-size: 60px;
    font-weight: 900;
    color: #0b5a89;
  }
  .thanku-sec h2 {
    font-size: 35px;
    font-weight: 800;
  }
  .thanku-sec h3 {
    font-size: 22px;
    font-weight: 900;
  }
  .footer-bottom h5 {
    font-size: 0.8rem;
  }
  .footer-bottom a {
    font-size: 14px;
    color: #d9d9d9;
  }
  .blog-content .news-img {
    max-width: 230px;
    height: 170px;
  }

  .treatment-img img {
    max-width: 360px;
    height: 230px;
  }
  .insights-card img {
    height: 210px;
  }
  .gap-col {
    width: 32%;
  }
  .gap-part {
    gap: 15px;
  }
  .blog-details-content .contact-form h5 {
    font-size: 28px;
    padding: 20px 15px;
  }
  .blog-details-content .contact-form form {
    background: white;
    padding: 15px 15px 0 15px;
  }
  .hero-content {
    top: 63%;
  }
}

@media (max-width: 991px) {
  .thanku-sec {
    padding: 120px 0 80px;
  }
  .thanku-sec h1 {
    font-size: 55px;
    font-weight: 900;
    color: #0b5a89;
  }
  .thanku-sec h2 {
    font-size: 32px;
    font-weight: 800;
  }
  .thanku-sec h3 {
    font-size: 20px;
    font-weight: 900;
  }
  .newsletter-section h2 {
    font-size: 2rem;
  }
  .newsletter-section p {
    font-size: 1.5rem;
  }
  .blog-content a h2 {
    font-size: 1.6rem;
    color: black;
    text-decoration: none;
    line-height: 1.3;
  }
  .col-6.footer-flex-part1 {
    width: 100%;
    padding: 10px 10px 0 10px;
  }
  .col-6.footer-flex-part2 {
    width: 100%;
    padding: 0 10px;
  }
  .row.footer-flex-section {
    display: block;
  }
  .toxin-imges {
    min-height: 200px;
    object-fit: cover;
    border-radius: 0 0 80px 80px;
  }
  .about-hero-section h2 {
    font-size: 1.4rem;
    padding: 0 10px !important;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content h4 {
    font-size: 18px;
  }
  .insights-card .card-title {
    font-size: 1rem;
  }
  .gap-col {
    width: 49%;
  }
  .insights-card img {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .thanku-sec {
    padding: 120px 0 50px;
  }
  .thanku-sec h1 {
    font-size: 45px;
    font-weight: 900;
    color: #0b5a89;
  }
  .thanku-sec h2 {
    font-size: 26px;
    font-weight: 800;
  }
  .thanku-sec h3 {
    font-size: 20px;
    font-weight: 900;
  }
  .insights-card img {
    object-fit: cover;
    height: auto;
  }
  .solutions-hover-box {
    bottom: 45%;
  }
  .portfolio-list {
    height: 100%;
  }
  .image.image-anime.reveal img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-box {
    height: auto;
  }
  section.blog-details-content.content-page-section {
    padding-top: 100px;
  }
  .blog-content .news-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    width: 100%;
  }
  .offcanvas-body .container {
    padding: 20px 0 !important;
  }
  .blog-meta {
    font-size: 18px;
  }
  .book-appointment-popup .btn-close {
    right: 12px;
    top: 12px;
  }
  section.container.pt-5.blog-content {
    padding-top: 10px !important;
  }

  .container.py-5.blog-details-content {
    padding-top: 20px !important;
  }
  .gap-col {
    width: 100%;
  }
  .hero-content {
    top: 65%;
    left: 50%;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
  }
  .blog-content a h2 {
    font-size: 1.4rem;
  }
  .newsletter-section p {
    font-size: 1.3rem;
    font-weight: 300;
  }
  .newsletter-section h2 {
    font-size: 1.6rem;
    font-weight: 300;
  }
  .solutions-hover-box {
    bottom: 35%;
  }
  section.blog-details-content.content-page-section {
    padding-top: 65px;
  }
  .navbar {
    padding: 0;
  }
  div#faqAccordion button.accordion-button {
    font-size: 18px;
    padding: 10px 0 5px 0;
    line-height: 1.3;
  }
  .faq-section .accordion-button::after {
    font-size: 18px;
  }
  .border-start {
    border: none !important;
    padding-left: 10px !important;
  }

  .header-service-menu li a::before {
    top: 4px;
    font-size: 12px;
  }
  .header-service-menu li a {
    padding-left: 25px;
    font-size: 16px;
  }

  .treatments {
    padding: 20px 0;
  }
  .treatment-box .big {
    font-size: 4rem;
  }
  .contact-info {
    padding: 20px 0;
  }
  .white-btnn,
  .form-part-section .white-btnn {
    margin-top: 30px;
  }

  .treatment-box {
    border-right: none;
    margin: 6px 0;
  }
  .video-wrapper {
    height: 60%;
  }
  .hero {
    height: 59vh;
  }
  .video-control {
    display: none;
  }

  .navbar.scrolled {
    background: rgb(0 0 0 / 78%) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  .about-content h2 {
    margin-bottom: 15px !important;
  }
  .about-content p {
    margin-bottom: 15px !important;
  }
  .appointment-section p {
    margin: 5px 0 !important;
  }
  .appointment-section h2 {
    margin-bottom: 15px !important;
    font-size: 2rem;
  }
  .appointment-section p {
    font-size: 1.1rem;
  }
  .faq-section h2 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 15px !important;
  }
  .hero-content {
    top: 62%;
    left: 50%;
    padding: 0 20px;
  }
  .thanku-sec h1 {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  nav.navbar.fixed-top.scrolled .header-bg-area .col-4 {
    padding: 0;
  }
  .btn-donate {
    padding: 10px 12px;
    font-size: 12px;
  }
}
@media (max-width: 410px) {
  .solutions-hover-box {
    bottom: 40%;
  }
  .about-content ul li {
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 1rem;
  }
  .hero-content {
    top: 68%;
  }
  .hero-content h4 {
    padding: 0;
  }
  .hero-content {
    top: 60%;
    padding: 0 10px;
  }

  .footer-bottom a {
    font-size: 12px;
    margin-bottom: 1px;
  }
  .footer-bottom h5 {
    font-size: 0.7rem;
    margin-bottom: 1px;
  }
  .footer-logo.mb-3 img {
    max-width: 225px;
    margin-bottom: 0 !important;
  }
  footer.footer.bg-black.text-white.pt-5 {
    padding-top: 30px !important;
  }
}

@media (max-width: 375px) {
  .btn-donate {
    padding: 10px 10px;
    font-size: 11px;
  }
  .contact-box h2 {
    font-size: 16px;
  }
  .contact-box h2 .big {
    font-size: 26px;
  }
  .contact-box a {
    font-size: 14px;
  }
  nav.navbar.fixed-top.scrolled .header-bg-area .col-4 {
    padding: 0;
  }
}

/* before After */
/* before After */
/* before After */
/* before After */
.btn-outline-primary {
  background: #0b5a89;
  color: white;
}

.btn-outline-primary:hover {
  background: #0c74b1;
  color: white;
}

.insights-card {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 8px;
  background-color: rgba(255, 255, 255, 0) !important;
  box-shadow: none;
}

.card-footer .btn-outline-primary {
  background: #ffffff00;
  color: #6d6d6d;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid #6d6d6d;
}
.insights-card .card-footer {
  border-top: 1px solid #6d6d6d;
}

.insights-card:hover {
  border-radius: 20px;
}

.insights-card:hover .btn-outline-primary {
  border: 1px solid #0b5a89;
  background: #0b5a89;
  border-radius: 50px;
  padding: 10px 30px;
  color: #ffffff;
}
.insights-card:hover .card-footer {
  border-top: 1px solid #0b5a89;
}

.contact-form.blog-form {
  border: 1px solid #0b5a89;
}

.before-after-section {
  .before-after-container {
    width: 100%;
    max-width: 1450px;
    margin: 40px auto;
    display: flex;
    border-radius: 40px;
    padding: 20px;
    background: #2d3134;
  }

  .mainSwiper {
    width: 75%;
    height: 650px;
    margin-right: 20px;
    border-radius: 30px;
    overflow: hidden;
  }

  .mainSwiper .item-box {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
  }

  .mainSwiper .item-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .thumbsSwiper {
    width: 25%;
    height: 650px;
  }

  .thumbsSwiper .swiper-slide {
    height: 180px !important;
    opacity: 0.4;
    cursor: pointer;
  }

  .thumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
  }

  .thumbsSwiper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: #fff;
    background: rgb(141 141 141);
    padding: 27px;
    border-radius: 50%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 24px;
    color: white;
  }

  /* Sidebar wrapper to allow arrows */
  .thumbs-wrapper {
    width: 25%;
    height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .thumb-arrow {
    height: 36px;
    color: #fff;
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
    background: #787878;
    width: 36px;
    border-radius: 30px;
    padding-top: 3px;
  }

  .thumb-arrow:hover {
    opacity: 1;
  }

  .thumbsSwiper {
    width: 100%;
    height: calc(650px - 60px);
    margin: 10px 0;
  }

  .thumb-up i,
  .thumb-down i {
    pointer-events: none;
  }

  @media (max-width: 1199px) {
    .thumbs-wrapper {
      display: none;
    }

    .mainSwiper {
      width: 100%;
      margin-right: 0;
      height: auto;
    }
    .swiper-button-prev,
    .swiper-button-next {
      padding: 11px;
      height: 30px;
      width: 30px;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 13px;
      color: white;
    }
    .before-after-container {
      padding: 10px;
    }
  }

  @media (max-width: 991px) {
    h2 {
      font-size: 2.6rem;
    }
    h4 {
      font-size: 2rem;
      font-weight: 300;
    }
    .before-after-section h2 {
      margin: 0 auto;
    }
  }

  @media (max-width: 767px) {
    h2 {
      font-size: 2rem;
    }
    h4 {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 576px) {
    h2 {
      font-size: 1.6rem;
    }
    h4 {
      font-size: 1.4rem;
    }
  }
}
.we-accept {
  background: white !important;
}
.we-accept p i {
  font-size: 16px;
  color: rgb(101, 101, 101);
}
