@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/* ======================================================
                    GLOBAL VARIABLE COLORS
====================================================== */
:root {
  --white: #fff;
  --white-70: #ffffffb3;
  --white-50: #ffffff80;
  --white-20: #ffffff33;
  --primary-white: #fafafa;
  --black: #000;
  --black-20: #0003;
  --black-50: #00000080;
  --black-60: #0009;
  --black-70: #000000b3;
  --black-80: #000c;
  --primary-text: #1e1e1e;
  --primary-text-30: #1e1e1e4d;
  --primary-text-50: #1e1e1e80;
  --primary-text-70: #1e1e1eb3;
  --gray: #f5f5f5;
  --primary-gray: #9a9a9a;
  --secondary-gray: #d4d4d4;
  --third-gray: #dddddd;
  --dark-gray: #c3c3c3;
  --orange: #ff5d35;
  --brown: #af4e1d;
  --green: #6dd228;
  --shadow: -4px -4px 4px 0px #00000029 inset, 4px 4px 8px 0px #ffffff1f inset,
    4px 4px 8px 0px #8d3a2033, -4px -4px 8px 0px #ffffff0a;
}
/* ======================================================
                    GLOBAL CSS
====================================================== */
*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-transform: none;
  /* user-select: none; */
}
a {
  color: var(--third-text);
  display: inline-block;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  color: var(--primary-text);
}
a,
*:hover,
*:focus,
*:active:focus {
  outline: none !important;
  outline-offset: 0 !important;
}
a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}
ul,
ol,
dl {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
  margin-bottom: 0;
}
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}
/* ======================================================
              GLOBAL HEADING STYLE CSS
====================================================== */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Raleway", sans-serif;
  line-height: normal;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 0;
}
h1,
.h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 72px;
}
h2,
.h2 {
  font-size: 48px;
  line-height: 57.6px;
  font-weight: 600;
}
h3,
.h3 {
  font-size: 32px;
  line-height: 38.4px;
}
h4,
.h4 {
  font-size: 24px;
  line-height: 28.8px;
}
h5,
.h5 {
  font-size: 20px;
  line-height: 24px;
}
h6,
.h6 {
  font-size: 16px;
  line-height: 19.2px;
}
/* ======================================================
              GLOBAL PARAGRAPH STYLE CSS
====================================================== */
p {
  font-size: 20px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--black);
  margin-bottom: 0;
}
p a {
  color: var(--primary-text);
}
p a:hover {
  text-decoration: underline;
}
/* ======================================================
              GLOBAL FONT CLASS VARIATION STYLE
====================================================== */
.font-56 {
  font-size: 56px;
  line-height: 72px;
  font-weight: 600;
}
.font-40 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
}
.font-28 {
  font-size: 28px;
  line-height: 33.6px;
}
.font-24 {
  font-size: 24px;
  line-height: 28.8px;
  letter-spacing: 0.24px;
}
.font-18 {
  font-size: 18px;
  line-height: 21.6px;
}
.font-16 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
}
.font-14 {
  font-size: 14px;
  line-height: 16.8px;
}
/* ======================================================
                  GLOBAL FONT COLOR CSS
====================================================== */
.white-text {
  color: var(--white);
}
.white-70-text {
  color: var(--white-70);
}
.primary-white-text {
  color: var(--primary-white);
}
.black-text {
  color: var(--black);
}
.black-50-text {
  color: var(--black-50);
}
.black-60-text {
  color: var(--black-60);
}
.black-70-text {
  color: var(--black-70);
}
.black-80-text {
  color: var(--black-80);
}
.primary-text {
  color: var(--primary-text);
}
.primary-text-70 {
  color: var(--primary-text-70);
}
.primary-gray-text {
  color: var(--primary-gray);
}
.secondary-gray-text {
  color: var(--secondary-gray);
}
.dark-gray-text {
  color: var(--dark-gray);
}
/* ======================================================
              GLOBAL BACKGROUND COLOR CSS
====================================================== */
.gradient-bg {
  background: linear-gradient(180deg, #8d3a20 0%, #5c2513 100%);
}
.orange-bg {
  background-color: var(--orange);
}
.brown-bg {
  background-color: var(--brown);
}
.green-bg {
  background-color: var(--green);
}
.gray-bg {
  background-color: var(--gray);
}
.border-black-20 {
  border-color: var(--black-20) !important;
}
.border-black-50 {
  border-color: var(--black-50) !important;
}
.border-primary-50 {
  border-color: var(--primary-text-50) !important;
}
/* ======================================================
              GLOBAL Z-INDEX VARIATION STYLE
====================================================== */
.z-index-9 {
  z-index: 9;
}
.underline-link {
  text-decoration: underline;
}
.underline-link:hover {
  color: var(--orange);
}
/* ======================================================
              GLOBAL OPACITY VARIATION STYLE
====================================================== */
.op-1 {
  opacity: 0.1;
}
.op-2 {
  opacity: 0.2;
}
.op-3 {
  opacity: 0.3;
}
.op-4 {
  opacity: 0.4;
}
.op-5 {
  opacity: 0.5;
}
.op-6 {
  opacity: 0.6;
}
.op-7 {
  opacity: 0.7;
}
.op-8 {
  opacity: 0.8;
}
.op-9 {
  opacity: 0.9;
}
/* ======================================================
              GLOBAL LINE-CLAMP VARIATION STYLE
====================================================== */
.line-clamp {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.two-line-clamp {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.three-line-clamp {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
.four-line-clamp {
  line-clamp: 4;
  -webkit-line-clamp: 4;
}
.five-line-clamp {
  line-clamp: 5;
  -webkit-line-clamp: 5;
}
/* ======================================================
             COMMON SPACING CLASS STYLE
====================================================== */
.common-padding {
  padding-top: 120px;
}
.common-padding-y {
  padding: 80px 0px;
}
.common-padding-top {
  padding-top: 230px;
}
.titlebar {
  margin-bottom: 56px;
}
/* ======================================================
             COMMON IMAGE HOVER EFFECT STYLE
====================================================== */
.common-img-effect {
  transform: scale(1);
  transition: all 500ms ease-in-out;
}
.common-img-effect:hover {
  transform: scale(1.1);
}
/* ======================================================
                COMMON CONTAINER STYLE
====================================================== */
@media (min-width: 1500px) {
  .container {
    max-width: 1376px;
  }
}
/* ======================================================
                COMMON BUTTON VARIATION STYLE
====================================================== */
.btn {
  background-color: transparent;
  position: relative;
  z-index: 1;
  padding: 16px 32px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 99px;
  border: 1px solid transparent;
  box-shadow: none;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn:has(> img),
.btn:has(> svg) {
  padding-left: 16px;
}
.btn > img,
.btn > svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}
.small-btn {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.18px;
}
.btn:hover,
.btn:focus,
.btn:active {
  background-color: var(--black) !important;
  outline: none;
  color: var(--white) !important;
}
.btn-white {
  border-color: var(--white);
  color: var(--black);
  background-color: var(--white);
  border-radius: 99px;
  backdrop-filter: blur(200px);
  box-shadow: var(--shadow);
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  border-color: var(--orange) !important;
  color: var(--white) !important;
  background-color: var(--orange) !important;
}
.btn-white-outline {
  border-color: var(--primary-white);
  color: var(--primary-white);
  background-color: transparent;
  border-radius: 99px;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline:active {
  border-color: var(--primary-white) !important;
  color: var(--orange) !important;
  background-color: var(--primary-white) !important;
}
.btn-outline {
  border-color: var(--primary-text);
  color: var(--primary-text);
  background-color: transparent;
  border-radius: 99px;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  border-color: var(--orange) !important;
  color: var(--white) !important;
  background-color: var(--orange) !important;
}
.btn-black {
  border-color: var(--primary-text);
  color: var(--white);
  background-color: var(--primary-text);
  border-radius: 99px;
  backdrop-filter: blur(200px);
  box-shadow: var(--shadow);
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
  border-color: var(--orange) !important;
  color: var(--white) !important;
  background-color: var(--orange) !important;
}
/*          CHROME, SAFARI, EDGE, OPERA
====================================================== */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button,
input[type="number"] {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
/* For Chrome, Edge, Safari */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}
/* Optional – Remove extra UI space */
input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/calender.png") 97% / 22px no-repeat;
  background-color: var(--white);
}
/* ======================================================
                  GLOBAL FORM INPUT STYLE
====================================================== */
label {
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 500;
  letter-spacing: 0.18px;
  color: var(--primary-text);
  margin-bottom: 4px;
}
.form-control,
.form-select {
  background-color: var(--white);
  outline: none;
  border: 1px solid var(--secondary-gray);
  border-radius: 8px;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 0.18px;
  color: var(--primary-text);
  appearance: none;
  -webkit-appearance: none;
  font-weight: 500;
  padding: 12px 16px;
}
/* ======================================================
                  GLOBAL PLACEHOLDER STYLE
====================================================== */
.form-control::placeholder,
.form-select::placeholder {
  color: var(--primary-text-30);
}
.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
  color: var(--primary-text-30);
}
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
  color: var(--primary-text-30);
}
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
  color: var(--primary-text-30);
}
.form-control::-o-input-placeholder,
.form-select::-o-input-placeholder {
  color: var(--primary-text-30);
}
/* GLOBAL FORM FOCUS STYLE */
.form-control:focus {
  border-color: var(--primary-text);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: var(--white);
}
.form-select {
  background: url("../images/select-arrow.png") 97% / 12px no-repeat;
  background-color: var(--white);
  cursor: pointer;
}
.form-select:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: var(--white);
  border-color: var(--primary-text);
}
/* GLOBAL FORM TEXTAREA STYLE */
textarea.form-control {
  min-height: 96px;
}
.dropdown-toggle::after {
  display: none;
}
.bi-chevron-down::before {
  font-size: 14px;
  font-weight: 900 !important;
}
/* HEADER STYLE */
.topbar {
  padding: 12px 0;
  min-height: 63px;
}
.timer-icon {
  width: 24px;
  height: 24px;
}
.timer-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.main-navbar .navbar {
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.52),
      rgba(255, 255, 255, 0.52)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(68px);
  border-bottom: 1px solid var(--third-gray);
  padding: 12px 0;
}
.main-navbar .navbar-brand {
  width: 128px;
}
.navbar-toggler {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .line {
  width: 30px;
  height: 3px;
  background-color: var(--primary-text);
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar-toggler:not(.collapsed) .line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.navbar-toggler:not(.collapsed) .line:nth-child(2) {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) .line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 600;
  transition: all 0.4s ease;
  color: var(--white);
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--orange);
}
.appointment-btn-container {
  position: fixed;
  right: -126px;
  top: 50%;
  transform: rotate(90deg);
  z-index: 99;
}
.appointment-btn {
  text-transform: uppercase;
  border-radius: 0 0 12px 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(200px);
  padding: 16px 32px;
  background-color: var(--brown);
}
.appointment-btn:hover {
  background-color: var(--orange);
  color: var(--white);
}
.whatsApp-btn-container {
  position: fixed;
  left: 0;
  bottom: 40px;
  transform: translate(-84%, 0);
  transition: all 0.3s linear;
  z-index: 99;
}
.whatsApp-btn {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.2px;
  padding: 8px 8px 8px 32px;
  border-radius: 0 12px 12px 0;
  background: var(--green);
  backdrop-filter: blur(200px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s linear;
}
.whatsApp-btn-container:hover {
  transform: translate(0, 0);
}
.whatsApp-btn:hover {
  color: var(--white);
}
/* HERO SECTION STYLE */
.hero-section {
  background-image: url(./../images/hero-banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 260px 0 140px;
  display: flex;
  align-items: flex-end;
}
.hero-section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
      246deg,
      rgba(141, 58, 32, 0.05) 36.83%,
      rgba(141, 58, 32, 0.6) 69.91%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(
      270deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 100%
    );
}
.hero-section .hero-content {
  position: relative;
  z-index: 5;
  gap: 32px;
  max-width: 680px;
}
.hero-content .hero-subtitle {
  gap: 12px;
}
.hero-content .hero-description {
  max-width: 510px;
}
/* CHOOSE US SECTION STYLE */
.choose-us-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 37px;
  column-gap: 40px;
  padding-bottom: 56px;
}
.choose-us-item,
.choose-us-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.choose-us-item {
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--black-50);
}
.choose-us-item .choose-us-icon {
  width: 56px;
  height: 56px;
}
.choose-us-item .choose-us-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.choose-us-content {
  gap: 16px;
}
.choose-us-bottom-images {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
}
.choose-us-bottom-images li {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
/* TREATMENTS SECTION STYLE */
.treatments-tabs {
  border: 1px solid var(--primary-gray);
  border-radius: 2px;
  overflow: hidden;
}
.treatments-tabs .nav-tabs {
  border-bottom: 1px solid var(--primary-gray);
  flex-wrap: nowrap;
  overflow: auto;
}
.treatments-tabs .nav-tabs .nav-item {
  flex: 1;
}
.treatments-tabs .nav-tabs .nav-item .nav-link {
  border-right: 1px solid var(--primary-gray);
  min-width: 90px;
}
.treatments-tabs .nav-tabs .nav-item:last-child .nav-link {
  border-right: none;
}
.treatments-tabs .nav-tabs .nav-link {
  color: var(--black-70);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-flow: column;
  gap: 24px;
  padding: 18px 4px 10px;
  margin: 0;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease-in-out;
}
.treatments-tabs .nav-tabs .nav-link.active,
.treatments-tabs .nav-tabs .nav-link:hover {
  background: var(--brown);
  color: var(--white);
}
.treatments-tabs .nav-tabs .nav-link.active img,
.treatments-tabs .nav-tabs .nav-link:hover img {
  filter: invert(1) brightness(2);
}
.treatments-tabs .nav-tabs .nav-link img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease-in-out;
}
.treatments-tabs .box-img {
  height: 100%;
}
.treatments-tabs .box-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.treatments-tabs .detail {
  padding: 40px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: column;
  gap: 24px;
}
.treatments-tabs .detail .top-info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}
.treatments-tabs .detail .top-info ul {
  margin: 0;
  padding-left: 30px;
}
.treatments-tabs .detail .top-info ul li {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  list-style: disc;
}
.treatments-tabs .detail .quote-text {
  padding-left: 30px;
}
.treatments-tabs .detail .quote-text::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--brown);
  border-radius: 10px;
}
/* SPECIALIZED SECTION STYLE */
.specialized-section {
  padding: 120px 0 80px;
}
.specialized-wrapper {
  max-width: 870px;
}
.specialized-section .specialized-img {
  position: absolute;
  right: 0;
  height: 100%;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.specialized-content {
  padding-top: 24px;
  border-top: 1px solid var(--black-50);
  margin-bottom: 56px;
  max-width: 775px;
}
.specialized-gallery .specialized-gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.specialized-gallery .specialized-gallery-link:hover {
  color: var(--orange);
}
.specialized-gallery .specialized-gallery-link span {
  display: flex;
  transform: rotate(45deg);
  margin-bottom: -4px;
  transition: all 0.4s ease-in-out 0s;
}
.specialized-gallery .specialized-gallery-link:hover span {
  transform: rotate(0);
}
/* GALLERY SECTION STYLE */
.gallery-section .gallery-slider .slick-track {
  display: flex !important;
}
.gallery-section .gallery-slider .slider-box {
  height: 450px;
}
.gallery-section .gallery-slider .slick-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/* ABOUT SECTION STYLE */
.about-section {
  padding: 120px 0;
}
.about-section .about-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  gap: 56px;
}
.about-wrapper .about-img {
  box-shadow: 15px 15px 30px 0px #1e1d4e0d;
  border: 9px solid var(--white);
  border-radius: 16px;
  background-color: var(--white);
}
.about-wrapper .about-img img {
  border-radius: 16px;
}
.about-wrapper .about-content {
  gap: 40px;
}
.about-wrapper .about-content .about-list {
  list-style: disc;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.24px;
  font-weight: 500;
  color: var(--black-60);
  padding-left: 26px;
}
.about-section .about-shape1,
.about-section .about-shape2 {
  position: absolute;
  bottom: 0;
  pointer-events: none;
}
.about-section .about-shape1 {
  left: 2%;
}
.about-section .about-shape2 {
  right: 2%;
}
/* FAQ SECTION STYLE */
.faqs-section .accordion {
  max-width: 1032px;
  margin: 0 auto;
}
.accordion .accordion-button::after {
  background-image: url("./../images/plus-icon.svg");
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: 26px;
}
.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("./../images/plus-icon.svg");
  transform: rotate(-45deg);
}
.accordion .accordion-item {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid var(--black-50);
  padding: 0;
}
.accordion .accordion-button {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  padding: 20px 0 16px;
  color: var(--black);
  font-size: 28px;
  font-weight: 500;
  line-height: 33.6px;
  position: relative;
}
.accordion .accordion-body {
  padding: 0px 60px 16px 24px;
}
.accordion .accordion-body p {
  font-size: 18px;
  line-height: 21.6px;
}
/* CONSULTATION SECTION STYLE */
.consultation-section .contact-shape1 {
  position: absolute;
  left: 6%;
  bottom: 130px;
  width: 100%;
  max-width: 142px;
  pointer-events: none;
}
.consultation-section .contact-shape2 {
  position: absolute;
  right: 12px;
  bottom: 0;
  width: 100%;
  max-width: 204px;
  pointer-events: none;
}
.consultation-wrapper {
  max-width: 880px;
  margin: 0 auto;
}
/* NEWSLETTER SECTION STYLE */
.newsletter-wrapper {
  background: linear-gradient(180deg, #8d3a20 0%, #5c2513 100%), #fff;
  box-shadow: 15px 15px 30px 0px #1e1d4e0d, 15px 15px 30px 0px #1e1d4e0d;
  border-radius: 24px;
  padding: 80px;
}
.newsletter-wrapper .newsletter-shape1,
.newsletter-wrapper .newsletter-shape2 {
  position: absolute;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}
.newsletter-wrapper .newsletter-shape1 {
  left: 13px;
  max-width: 180px;
}
.newsletter-wrapper .newsletter-shape2 {
  right: 13px;
  max-width: 150px;
}
.slider-box {
  gap: 40px;
}
.newsletter-content {
  gap: 24px;
}
.newsletter-slider .slick-dots {
  border-radius: 99px;
  background: var(--white-20);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
}
.newsletter-slider .slick-dots li {
  line-height: 0;
}
.newsletter-slider .slick-dots li button {
  font-size: 0;
  border: none;
  box-shadow: none;
  outline: none;
  width: 12px;
  height: 12px;
  background-color: var(--white-50);
  border-radius: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.newsletter-slider .slick-dots li.slick-active button {
  transform: scale(1.2);
  background-color: var(--white);
}
/* FOOTER SECTION STYLE */
.footer-content {
  gap: 32px;
}
.footer-contact-info {
  max-width: 537px;
  margin-left: auto;
}
.footer-buttons {
  display: flex;
  gap: 16px;
}
.footer-logo {
  width: 223px;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.copyright-section {
  padding: 24px 0 32px;
  margin-top: 24px;
}
.footer-social-media-links {
  justify-content: end;
}
.footer-social-media-links,
.social-media-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.social-media-links a {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
  display: flex;
}
.social-media-links a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer-links a {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  font-weight: 400;
  color: var(--primary-text);
}
.footer-links a:hover {
  color: var(--orange);
}
.social-media-links a svg {
  transition: all 0.3s ease-in-out;
}
.social-media-links a:hover svg {
  fill: var(--orange);
}
/* SERVICES SECTION STYLE */
.services-wrapper {
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.services-content {
  gap: 16px;
}
.services-wrapper .services-icon {
  width: 100%;
  max-width: 120px;
  height: 120px;
}
.services-wrapper .services-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
/* CHILDHOOD FRACTURES SECTION STYLE */
.childhood-fractures-section {
  padding-top: 60px;
}
.childhood-fractures-content {
  gap: 24px;
  padding-bottom: 24px;
}
/* ====================================================================================
                              RESPONSIVE MEDIA QUERIES
==================================================================================== */
@media (max-width: 1499px) {
}
@media (max-width: 1399px) {
  h1,
  .h1 {
    font-size: 56px;
    line-height: 70px;
  }
  h2,
  .h2 {
    font-size: 42px;
    line-height: 52.6px;
  }
  h3,
  .h3 {
    font-size: 28px;
    line-height: 34.4px;
  }
  h4,
  .h4 {
    font-size: 20px;
    line-height: 26.8px;
  }
  p {
    font-size: 18px;
    line-height: 22px;
  }
  .font-24 {
    font-size: 20px;
    line-height: 26.8px;
  }
  .font-28 {
    font-size: 24px;
    line-height: 33.6px;
  }
  .font-40 {
    font-size: 36px;
    line-height: 44px;
  }
  .font-56 {
    font-size: 50px;
    line-height: 64px;
  }
  .btn {
    padding: 14px 26px;
    font-size: 18px;
    line-height: 22px;
  }
  .small-btn {
    font-size: 16px;
    line-height: 20px;
  }
  .common-padding {
    padding-top: 100px;
  }
  .common-padding-y {
    padding: 60px 0px;
  }
  .common-padding-top {
    padding-top: 220px;
  }
  .titlebar {
    margin-bottom: 40px;
  }
  .hero-section .hero-content {
    gap: 22px;
  }
  .appointment-btn-container {
    right: -108px;
  }
  .appointment-btn {
    font-size: 18px;
    padding: 14px 24px;
  }
  .choose-us-bottom-images img.first {
    max-width: 150px;
  }
  .choose-us-bottom-images img.second {
    max-width: 200px;
  }
  .choose-us-bottom-images img.third {
    max-width: 220px;
  }
  .choose-us-bottom-images img.fourth {
    max-width: 200px;
  }
  .choose-us-bottom-images img.fifth {
    max-width: 120px;
  }
  .treatments-tabs .nav-tabs .nav-link {
    font-size: 16px;
    line-height: 20px;
    gap: 18px;
    padding: 10px 4px;
  }
  .treatments-tabs .nav-tabs .nav-link img {
    width: 50px;
    height: 50px;
  }
  .treatments-tabs .detail {
    padding: 24px;
    gap: 20px;
  }
  .treatments-tabs .detail .top-info {
    gap: 16px;
  }
  .treatments-tabs .detail .top-info ul li {
    font-size: 18px;
    line-height: 28px;
  }
  .treatments-tabs .detail .quote-text {
    padding-left: 26px;
  }
  .specialized-wrapper {
    max-width: 720px;
  }
  .specialized-section {
    padding: 80px 0 60px;
  }
  .specialized-content {
    padding-top: 18px;
    margin-bottom: 26px;
  }
  .gallery-section .gallery-slider .slider-box {
    height: 400px;
  }
  .about-section {
    padding: 80px 0;
  }
  .about-section .about-wrapper {
    gap: 40px;
  }
  .about-wrapper .about-content {
    gap: 20px;
  }
  .about-wrapper .about-content .about-list {
    font-size: 20px;
    line-height: 28px;
  }
  .about-section .about-shape2 {
    max-width: 140px;
  }
  .about-section .about-shape1 {
    max-width: 200px;
  }
  .accordion .accordion-button {
    font-size: 24px;
    padding: 16px 0;
  }
  .consultation-section .contact-shape1 {
    left: 2%;
    bottom: 20px;
    max-width: 130px;
  }
  .consultation-section .contact-shape2 {
    max-width: 140px;
  }
  .newsletter-wrapper {
    padding: 70px 80px;
  }
  .newsletter-content {
    gap: 20px;
  }
  .slider-box {
    gap: 30px;
  }
  .newsletter-slider .slick-dots {
    bottom: -60px;
  }
  .newsletter-wrapper .newsletter-shape2 {
    max-width: 130px;
  }
  .newsletter-wrapper .newsletter-shape1 {
    max-width: 170px;
  }
  .footer-logo {
    width: 180px;
  }
  .footer-content {
    gap: 24px;
  }
  .footer-social-media-links,
  .social-media-links,
  .footer-links {
    gap: 26px;
  }
  .services-wrapper .services-icon {
    max-width: 100px;
    height: 100px;
  }
  .services-wrapper {
    gap: 30px;
    max-width: 860px;
  }
  .childhood-fractures-content {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 50px;
    line-height: 62px;
  }
  h2,
  .h2 {
    font-size: 36px;
    line-height: 46.6px;
  }
  h3,
  .h3 {
    font-size: 24px;
    line-height: 30.4px;
  }
  h4,
  .h4 {
    font-size: 18px;
    line-height: 24.8px;
  }
  h5,
  .h5 {
    font-size: 18px;
    line-height: 22px;
  }
  p {
    font-size: 16px;
    line-height: 22px;
  }
  .font-24 {
    font-size: 18px;
    line-height: 24.8px;
  }
  .font-28 {
    font-size: 20px;
    line-height: 26.6px;
  }
  .font-40 {
    font-size: 32px;
    line-height: 40px;
  }
  .font-56 {
    font-size: 44px;
    line-height: 58px;
  }
  .common-padding {
    padding-top: 80px;
  }
  .common-padding-y {
    padding: 50px 0px;
  }
  .common-padding-top {
    padding-top: 220px;
  }
  .titlebar {
    margin-bottom: 30px;
  }
  .hero-section {
    min-height: fit-content;
    padding: 260px 0 120px;
  }
  .hero-section .hero-content {
    gap: 18px;
  }
  .choose-us-item .choose-us-icon {
    width: 50px;
    height: 50px;
  }
  .choose-us-item {
    gap: 14px;
  }
  .choose-us-content {
    gap: 12px;
  }
  .choose-us-items {
    row-gap: 30px;
    column-gap: 36px;
    padding-bottom: 40px;
  }
  .choose-us-bottom-images li {
    gap: 30px;
  }
  .choose-us-bottom-images img.first {
    max-width: 130px;
  }
  .choose-us-bottom-images img.second {
    max-width: 160px;
  }
  .choose-us-bottom-images img.third {
    max-width: 180px;
  }
  .choose-us-bottom-images img.fourth {
    max-width: 140px;
  }
  .choose-us-bottom-images img.fifth {
    max-width: 100px;
  }
  .treatments-tabs .nav-tabs .nav-link img {
    width: 40px;
    height: 40px;
  }
  .treatments-tabs .nav-tabs .nav-link {
    gap: 12px;
    padding: 8px 4px;
  }
  .treatments-tabs .detail {
    padding: 18px;
    gap: 18px;
  }
  .treatments-tabs .detail .top-info {
    gap: 10px;
  }
  .treatments-tabs .detail .top-info ul {
    padding-left: 24px;
  }
  .treatments-tabs .detail .top-info ul li {
    font-size: 16px;
    line-height: 26px;
  }
  .treatments-tabs .detail .quote-text {
    padding-left: 22px;
  }
  .specialized-section {
    padding: 60px 0 50px;
  }
  .specialized-wrapper {
    max-width: 560px;
  }
  .specialized-content {
    padding-top: 16px;
    margin-bottom: 16px;
  }
  .gallery-section .gallery-slider .slider-box {
    height: 300px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-section .about-wrapper {
    grid-template-columns: 300px 1fr;
    gap: 30px;
  }
  .about-wrapper .about-content {
    gap: 14px;
  }
  .about-wrapper .about-content .about-list {
    font-size: 18px;
    line-height: 26px;
  }
  .about-section .about-shape1 {
    left: 0%;
    max-width: 160px;
  }
  .about-section .about-shape2 {
    max-width: 100px;
  }
  .accordion .accordion-button {
    font-size: 20px;
    line-height: 28px;
    padding: 12px 0;
  }
  .accordion .accordion-body p {
    font-size: 16px;
    line-height: 21.6px;
  }
  .accordion .accordion-body {
    padding: 0px 40px 14px 16px;
  }
  .consultation-section .contact-shape1 {
    left: 0%;
    bottom: 0px;
    max-width: 110px;
  }
  .consultation-section .contact-shape2 {
    max-width: 100px;
  }
  .newsletter-content {
    gap: 12px;
  }
  .slider-box {
    gap: 28px;
  }
  .footer-logo {
    width: 150px;
  }
  .footer-content {
    gap: 18px;
  }
  .copyright-section {
    padding: 20px 0 24px;
    margin-top: 22px;
  }
  .services-wrapper .services-icon {
    max-width: 80px;
    height: 80px;
  }
  .services-wrapper {
    gap: 24px;
    max-width: 790px;
  }
  .services-content {
    gap: 10px;
  }
  .childhood-fractures-section {
    padding-top: 50px;
  }
  .childhood-fractures-content {
    gap: 16px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 44px;
    line-height: 54px;
  }
  h2,
  .h2 {
    font-size: 30px;
    line-height: 40px;
  }
  h3,
  .h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .font-18 {
    font-size: 16px;
    line-height: 20px;
  }
  .font-28 {
    font-size: 18px;
    line-height: 24px;
  }
  .font-40 {
    font-size: 28px;
    line-height: 36px;
  }
  .font-56 {
    font-size: 38px;
    line-height: 52px;
  }
  .btn {
    padding: 12px 22px;
    font-size: 16px;
    line-height: 20px;
  }
  .common-padding {
    padding-top: 60px;
  }
  .common-padding-top {
    padding-top: 200px;
  }
  .titlebar {
    margin-bottom: 24px;
  }
  label,
  .form-control,
  .form-select {
    font-size: 16px;
    line-height: 20px;
  }
  .main-navbar .navbar-brand {
    width: 100px;
  }
  .timer-icon {
    width: 20px;
    height: 20px;
  }
  .hero-section {
    padding: 240px 0 100px;
  }
  .hero-section .hero-content {
    max-width: 540px;
  }
  .hero-section .hero-content {
    gap: 16px;
  }
  .choose-us-items {
    gap: 20px;
    padding-bottom: 20px;
  }
  .choose-us-content {
    gap: 8px;
  }
  .choose-us-bottom-images img.first {
    max-width: 100px;
  }
  .choose-us-bottom-images img.second {
    max-width: 110px;
  }
  .choose-us-bottom-images img.third {
    max-width: 150px;
  }
  .choose-us-bottom-images img.fourth {
    max-width: 110px;
  }
  .choose-us-bottom-images img.fifth {
    max-width: 90px;
  }
  .choose-us-bottom-images li {
    gap: 24px;
  }
  .choose-us-bottom-images {
    gap: 20px;
  }
  .treatments-tabs .nav-tabs .nav-link {
    font-size: 14px;
    line-height: 18px;
    gap: 8px;
  }
  .treatments-tabs .nav-tabs .nav-link img {
    width: 36px;
    height: 36px;
  }
  .treatments-tabs .box-img {
    height: 400px;
  }
  .specialized-section {
    padding: 40px 0;
  }
  .specialized-wrapper {
    max-width: 460px;
  }
  .specialized-img {
    max-width: 450px;
  }
  .specialized-img img {
    object-fit: cover;
  }
  .gallery-section .gallery-slider .slider-box {
    height: 260px;
  }
  .about-section {
    padding: 50px 0;
  }
  .about-section .about-wrapper {
    grid-template-columns: 250px 1fr;
    gap: 16px;
  }
  .about-wrapper .about-content .about-list {
    font-size: 16px;
    line-height: 22px;
    padding-left: 20px;
  }
  .about-section .about-shape1 {
    max-width: 120px;
  }
  .about-section .about-shape2 {
    right: 0;
    max-width: 60px;
  }
  .newsletter-wrapper {
    padding: 40px 40px 60px;
    border-radius: 18px;
  }
  .newsletter-content {
    gap: 8px;
  }
  .newsletter-wrapper .newsletter-shape1 {
    max-width: 140px;
    left: 0;
  }
  .newsletter-wrapper .newsletter-shape2 {
    max-width: 100px;
    right: 0;
  }
  .newsletter-slider .slick-dots {
    bottom: -54px;
  }
  .copyright-text {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-social-media-links {
    justify-content: center;
  }
  .footer-social-media-links,
  .social-media-links,
  .footer-links {
    gap: 18px;
  }
  .footer-contact-info {
    max-width: 100%;
    margin-top: 20px;
  }
  .services-wrapper {
    gap: 20px;
    max-width: 650px;
  }
  .services-wrapper .services-icon {
    max-width: 70px;
    height: 70px;
  }
  .childhood-fractures-content {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 38px;
    line-height: 48px;
  }
  h2,
  .h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .font-24 {
    font-size: 16px;
    line-height: 22px;
  }
  .font-40 {
    font-size: 26px;
    line-height: 32px;
  }
  .font-56 {
    font-size: 32px;
    line-height: 44px;
  }
  .common-padding {
    padding-top: 50px;
  }
  .titlebar {
    margin-bottom: 18px;
  }
  .hero-content .hero-subtitle {
    gap: 8px;
  }
  .hero-section .hero-content {
    gap: 14px;
  }
  .choose-us-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .choose-us-bottom-images li {
    gap: 18px;
  }
  .choose-us-bottom-images img.first {
    max-width: 80px;
  }
  .choose-us-bottom-images img.second {
    max-width: 80px;
  }
  .choose-us-bottom-images img.third {
    max-width: 120px;
  }
  .choose-us-bottom-images img.fourth {
    max-width: 80px;
  }
  .choose-us-bottom-images img.fifth {
    max-width: 60px;
  }
  .treatments-tabs .box-img {
    height: 350px;
  }
  .treatments-tabs .detail {
    gap: 12px;
  }
  .specialized-section {
    background: var(--white-50);
  }
  .specialized-section .specialized-img {
    max-width: 100%;
    left: 0;
  }
  .gallery-section .gallery-slider .slider-box {
    height: 220px;
  }
  .about-section .about-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-wrapper .about-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .accordion .accordion-button {
    font-size: 18px;
    line-height: 24px;
    padding: 8px 0;
  }
  .accordion .accordion-body {
    padding: 0px 30px 10px 12px;
  }
  .newsletter-wrapper {
    padding: 40px 26px 60px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 30px;
    line-height: 38px;
  }
  h2,
  .h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .font-28 {
    font-size: 16px;
    line-height: 22px;
  }
  .font-40 {
    font-size: 22px;
    line-height: 28px;
  }
  .font-56 {
    font-size: 26px;
    line-height: 36px;
  }
  .common-padding {
    padding-top: 40px;
  }
  .common-padding-y {
    padding: 40px 0px;
  }
  .common-padding-top {
    padding-top: 170px;
  }
  .titlebar {
    margin-bottom: 14px;
  }
  .hero-section {
    background-position: 76%;
    padding: 240px 0 80px;
  }
  .appointment-btn-container {
    right: -89px;
  }
  .appointment-btn {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 20px;
  }
  .choose-us-item .choose-us-icon {
    width: 44px;
    height: 44px;
  }
  .choose-us-bottom-images {
    gap: 10px;
  }
  .choose-us-bottom-images li {
    gap: 12px;
  }
  .choose-us-bottom-images img.first,
  .choose-us-bottom-images img.second,
  .choose-us-bottom-images img.fourth {
    max-width: 60px;
  }
  .choose-us-bottom-images img.third {
    max-width: 80px;
  }
  .choose-us-bottom-images img.fifth {
    max-width: 40px;
  }
  .treatments-tabs .box-img {
    height: 300px;
  }
  .gallery-section .gallery-slider .slider-box {
    height: 180px;
  }
  .about-wrapper .about-img {
    max-width: 250px;
    border-radius: 10px;
  }
  .about-wrapper .about-img img {
    border-radius: 10px;
  }
  .newsletter-slider .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  .newsletter-slider .slick-dots {
    padding: 6px;
    gap: 6px;
  }
  .footer-logo {
    width: 120px;
  }
  .footer-content {
    gap: 14px;
  }
  .footer-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .footer-social-media-links,
  .social-media-links,
  .footer-links {
    gap: 16px;
  }
  .footer-social-media-links {
    flex-direction: column;
  }
  .copyright-section {
    padding: 14px 0 20px;
    margin-top: 18px;
  }
  .topbar {
    padding: 8px 0;
    min-height: 50px;
  }
  .timer-icon {
    width: 16px;
    height: 16px;
  }
  .timer-label {
    font-size: 14px;
    line-height: 18px;
  }
  .timer-time {
    font-size: 12px;
    line-height: 16px;
  }
  .emergency-label {
    font-size: 12px;
    line-height: 16px;
  }
  .main-navbar .navbar {
    padding: 8px 0;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 20px;
  }
  .whatsApp-btn-container {
    bottom: 20px;
  }
  .whatsApp-btn {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 8px 8px 18px;
    gap: 12px;
  }
  .whatsApp-btn img {
    width: 30px;
    height: 30px;
  }
  .services-wrapper .services-icon {
    max-width: 60px;
    height: 60px;
  }
  .services-wrapper {
    gap: 16px;
  }
  .childhood-fractures-section {
    padding-top: 40px;
  }
  .childhood-fractures-content {
    gap: 10px;
    padding-bottom: 16px;
  }
}
@media (max-width: 419px) {
  .btn {
    padding: 12px 22px;
    font-size: 14px;
    line-height: 18px;
  }
  .accordion .accordion-button {
    font-size: 16px;
    line-height: 22px;
  }
}
