* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --clr-navbar-text: #fff;
  --clr-white-text: #f9f9f9;

  --clr-black: #0b0608;
  --clr-black2: var(--clr-primary);
  --clr-primary: hsl(357, 70%, 46%);
  --clr-secondary: hsl(0, 5%, 4%);
  --clr-secondary2: hsl(152, 69%, 31%);
}
body {
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
}
.bg-clr-primary {
  background: var(--clr-primary) !important;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8rem;
  color: #221415;
}
h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 2.8rem;
  letter-spacing: 0.001em;
  color: #221415;
}
h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 2rem;
  color: #f15b5b;
}
h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 2rem;
  color: #221415;
}
input[type]:focus,
textarea:focus {
  outline: none;
  box-shadow: none !important;
  border: 1px solid var(--clr-primary) !important;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}
input[type="number"] {
  box-sizing: border-box;
}
.form-check-input:checked {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.custom-form-modal-spacing {
  --bs-gutter-y: 20px;
  --bs-gutter-x: 26px;
}
.custom-gutter-spacing {
  --bs-gutter-y: 2.3rem;
  --bs-gutter-x: 2.3rem;
}
::placeholder {
  /* color: rgba(0, 0, 0, 0.35); */
  color: #ababab;
}
.form-label {
  font-weight: 500;
}
span.flatpickr-weekday,
.flatpickr-day.selected,
.flatpickr-weekdays,
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month
  .flatpickr-monthDropdown-months
  .flatpickr-monthDropdown-month {
  background: var(--clr-primary);
}
/* new nav*/
.header {
  padding: 0 6rem;
  /* height: 6rem; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: -1px;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 25%);
}

.header .logo {
  height: 4rem;
}
.navbar-brand {
  padding-block: 10px;
  max-width: 300px;
}
.navbar-list {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
  text-decoration: none;
  padding: 0 0.8rem !important;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #2b2a29 !important;
}

.nav-link:hover,
.nav-link:active {
  color: #ca232b !important;
}

.mobile-navbar-btn {
  display: none;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-icon {
  width: 3rem;
  height: 2rem;
  color: #212529;
}

.mobile-nav-icon[name="close-outline"] {
  display: none;
}
.dropdown-menu {
  padding: 0;
}
.dropdown-menu :first-child a {
  padding-top: 8px;
}
.dropdown-menu :last-child a {
  padding-bottom: 8px;
}
.dropdown-menu a {
  font-weight: 600;
  font-size: 16px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff !important;
  background-color: #ca232b !important;
  transition: all 300ms ease-in-out;
}

.section-hero,
.section-services {
  padding: 9.6rem 0;
  background-color: #a5d8ff;
  height: 60vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.section-services {
  background: #f3f0ff;
}

.section-hero p,
.section-services p {
  font-size: 3.2rem;
}
.error-formatting {
  display: inline-block;
  margin-top: 5px !important;
}
.input-group-flex {
  display: flex;
  flex-wrap: no-wrap;
  align-items: stretch;
}
.input-group-flex .select2-selection--single {
  /* padding: 10px 20px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group-flex
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 5px;
}
.input-group-flex .select2-container--default .select2-selection--single {
  background-color: #e3e0e0;
  border: var(--bs-border-width) solid var(--bs-border-color);

  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.input-group-flex :last-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--clr-primary);
  color: white;
}

/* ===========================================
Responsive Codes
======================================= */

/* 980px  */
@media (max-width: 62em) {
  html {
    overflow-x: hidden;
  }
  .mobile-navbar-btn {
    display: block;
    z-index: 999;
  }

  .header .logo {
    padding: 10px;
  }

  .navbar-list {
    /* display: none; */
    width: 100%;
    height: 100vh;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    gap: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: all 0.5s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-inner {
    background: #ffffff;
  }

  .navbar-list {
    flex-direction: column;
    align-items: center;
  }

  .active .navbar-list {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
    display: block;
  }

  .active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"] {
    display: none;
  }
}

/* Below 560px  */
@media (max-width: 35em) {
  .header {
    padding: 0 0.8rem;
    position: sticky;
    background: #ffffff;
  }
}

/* new nav */
/* bootstrap modal */
.modal-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 55px;
  text-align: center;
  letter-spacing: 0.001em;
  color: #ca232b;
}
.modal-detail .form-control .form-select {
  width: 100%;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #7a7777;
  margin-top: 12px;
}
.modal-detail .form-control:focus,
.modal-detail .form-select:focus {
  outline: none !important;
  box-shadow: none;
  border: 2px solid #ca232b;
}
.modal-detail {
  background: #ffffff;
}

.footer-content {
  background: none !important;
  text-align: center;
}
.submit-footer-modal {
  justify-content: center !important;
  background: #ffffff;
  border-top: none !important;
}
.submit-close-btn {
  text-decoration: none;
  background: #ca232b;
  border: 2px solid #ca232b;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 25px;
  color: #ffffff;
}
.submit-close-btn:hover {
  color: #198754;
  background: #ffffff;
  border: 2px solid #198754;
}
.modal-submit-btn {
  background: #ca232b;
  border: 2px solid #ca232b;
  border-radius: 4px;
  padding: 10px 25px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}
.modal-close-btn {
  background: #d82a2a;
  border: 2px solid #d82a2a;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 25px;
  color: #ffffff;
}
.modal-close-btn:hover {
  color: #d82a2a;
  background: #ffffff;
  border: 2px solid #d82a2a;
}
.modal-submit-btn:hover {
  color: #ca232b;
  background: #ffffff;
  border: 2px solid #ca232b;
}

/* modal new */
#bookAppointmentModal .modal-content,
#bookConsultationModal .modal-content {
  overflow: hidden;
}
.bookModal button {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  font-weight: 500;
}
.bookModal .btn-close {
  position: absolute;
  top: 5px;
  right: 0;
}
.bookModal .btn-close:focus {
  box-shadow: none !important;
}
.btn-submit {
  background-color: var(--clr-primary);
  color: #fff;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 32px;
  padding-right: 32px;
  font-weight: 500;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.btn-submit:hover {
  background-color: var(--clr-secondary2);
  color: #fff;
}
.right-tick {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);

  padding: 0.6rem;
  height: 90px;
  width: 90px;

  border-radius: 50%;
  background: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* text-align: center;
  line-height: 90px;
  vertical-align: middle; */
  overflow: hidden;
  object-position: center;
}
#successMessageModal h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
}
.right-tick i {
  color: #fff;
}
.cross-tick {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);

  padding: 0.6rem;
  height: 90px;
  width: 90px;

  border-radius: 50%;
  background: rgb(208, 16, 16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* text-align: center;
  line-height: 90px;
  vertical-align: middle; */
  overflow: hidden;
  object-position: center;
}
.cross-tick i {
  color: #fff;
  margin: 0;
}
@media (min-width: 1024px) {
  #successMessageModal .modal-dialog,
  #submissonErrorModal .modal-dialog {
    max-width: 680px !important;
  }
  #successMessageModal .modal-body,
  #submissonErrorModal .modal-body {
    padding: 3rem !important;
  }
}
/* top bar */
#topbar {
  background: #ca232b;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0 6rem;
}
.phone-wrap1 {
  display: flex;
  column-gap: 10px;
}
.contact-info,
.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
.contact-info {
  flex-wrap: wrap;
}
.contact-info > div {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
.social-links .fa-brands {
  color: #ffffff;
}
.quick-enq-btn {
  padding: 16px;
  background: #e12727;
  color: white;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border: 1px solid #e12727;
}
.quick-enq-btn:hover {
  color: #e12727;
  background: #ffffff;
}
/* Header css */

/*  slider */
.slider-img {
  position: relative;
}
.slider-content {
  position: absolute;
  padding: 6rem;
  z-index: 1;
  width: 65%;
  top: 50%;
  transform: translate(0%, -50%);
}
.slider-content h3 {
  font-weight: 700;
  font-size: 38px;
  line-height: 50px;
  color: #ffffff;
  /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);*/
}
.slider-content h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 69px;
  letter-spacing: 0.01em;
  color: #ffffff;
  /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);*/
}
.slider-content p {
  font-weight: 400;
  font-size: 21px;
  line-height: 2rem;
  color: #ffffff;
  margin-bottom: 45px;
  margin-top: 20px;
}
.slider-content a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 40px;
  background: #6d1111;
  border-radius: 30px;
  border: 2px solid #6d1111;
  cursor: pointer;
  font-weight: 700;
}
.slider-content a:hover {
  text-decoration: none;
  color: #6d1111;

  background: #ffffff;
  border-radius: 30px;
  border: 2px solid #6d1111;
  transition: 0.6s;
}
.carousel-control-next,
.carousel-control-prev {
  width: 5% !important;
}
.carousel-indicators [data-bs-target]:hover {
  background: rgb(100%, 100%, 100%);
}
.carousel-indicators [data-bs-target] {
  position: relative;
  width: 10px !important;
  height: 10px !important;
  background: none !important;
  border-radius: 100% !important;
  border: 2px solid #ffffff !important;
  display: inline-block;
  margin-right: 7px;
  cursor: pointer;
  overflow: hidden;
}
.carousel-indicators [data-bs-target].active {
  background: #e83d3d !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  opacity: 0;
  filter: alpha(opacity=0); /* IE support */
}
/*  slider */
/* about us section css */
.about-us-section {
  padding: 6rem;
}
.about-img {
  width: 100%;
  height: 80%;
}
.about-us-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* service section css */
.service-section {
  padding: 6rem;
  background: radial-gradient(
    88.96% 292.33% at 100% 81.41%,
    rgba(255, 218, 220, 0.13) 0%,
    #f7f7f7 50%,
    rgba(255, 243, 243, 0.22) 100%
  );
}
.service-title {
  text-align: center;
  margin-bottom: 20px;
}
.service-title h5 {
  padding: 0 16%;
}
.services {
  background: #fafafa;
  border: 1px solid #fafafa;
  box-shadow: 0px 18px 25px rgb(32 31 30 / 4%);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}
.service-card {
  border-radius: 12px;
  /* padding: 20px; */
  text-decoration: none;
}
.service-top {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.service-card h1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.001em;
  color: #ffffff;
}
.service-icon {
  background: #f15b5b;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  padding: 20px;
  flex-shrink: 0;
}
.explore-all-controls {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}
.explore-all-controls a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #1e1c1c;
  text-decoration: none;
}
.explore-all-controls a:hover {
  color: #e00e5f !important;
}
.text-align-left {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
}
/* service section css */
/* service page inner section css start */
.table-service-single-price {
  margin-top: 25px;
  max-width: 630px;
  margin-inline: auto;
  text-align: left;
}
.custom-table-spacing {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}
.table-service-single-price td {
  font-size: 18px;
  /* font-weight: 500; */
}
.table-service-single-price .table-striped > tbody > tr:nth-of-type(2n + 1) > *,
.table-service-all-price .table-striped > tbody > tr:nth-of-type(2n + 1) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: hsl(357, 91%, 95%);
}
.table-service-single-price .table > :not(caption) > * > *,
.table-service-all-price .table > :not(caption) > * > * {
  --bs-table-bg: hsl(357, 91%, 90%);
}
.table-service-single-price .table,
.table-service-all-price .table {
  --bs-table-border-color: hsl(357, 91%, 90%);
}
.services-wrap {
  height: 100%;
}
.service-card-wrap {
  border-radius: 6px;
  overflow: hidden;
  display: block;
  height: 100%;
  text-decoration: none;
  transition: scale 0.3s ease;
  background-color: #fff;
}
.service-card-wrap figure img {
  width: 100%;
  max-height: 300px;
  height: auto;
  aspect-ratio: 4/2.5;
  object-position: center;
  object-fit: cover;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}
.service-card-wrap h4,
.service-card-wrap p {
  transition: color 0.3s ease;
}
.service-card-wrap:hover h4,
.service-card-wrap:hover p {
  color: var(--clr-primary);
}

.service-card-wrap img {
  transition: scale 0.3s ease;
}
.service-card-wrap:hover img {
  scale: 1.02;
}
/* .service-card-wrap .service-desc1 {
  transition: scale 0.3s ease;
}

.service-card-wrap:hover .service-desc1 {
  scale: 1.05;
} */
.service-card-wrap .service-desc1 {
  padding-inline: 16px;
}

/* service page inner section css end*/
/* appointment css */
.appointment-sect {
  /* background: hsl(0, 80%, 59%) !important; */
  background: url(../images/dispora.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.appointment-sect .banner-wrap h2 {
  margin-bottom: 15px;
}
.appointment-sect .banner-wrap h2,
.appointment-sect .banner-wrap h4 {
  color: #fff;
}
.appointment-sect .appointment-btn {
  background-color: #fff;
  border: 2px solid #fff;
}
.appointment-sect .appointment-btn:hover {
  background-color: var(--clr-secondary2);
  border: 2px solid var(--clr-secondary2);
}
.appointment-section {
  background: #f15b5b;
}
.appointment-section .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.appointment-form {
  margin-left: 6rem;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.22);
  border-radius: 18px;
}
.appointment-form h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 3.4rem;
  padding: 0 10%;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}
.appointment-form p {
  font-weight: 500;
  font-size: 16px;
  line-height: 2rem;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 20px;
}
.error-msg {
  color: red;
  font-size: 14px;
  font-weight: 500;
}
.enquiry-input label {
  margin-bottom: 4px;
  font-weight: 600;
  color: #7b050b;
}
.prepend {
  background: #ba1018;
}
.prepend-text {
  background: rgba(202, 35, 43, 0.35);
  border: 2px solid #ba1018;
}
.enquiry-input .form-control {
  background: rgba(202, 35, 43, 0.35);
  border: 2px solid #ca232b;
  color: rgba(0, 0, 0, 0.35);
}
.enquiry-input .form-control::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.enquiry-input .form-control:focus {
  outline: none !important;
  box-shadow: none;
  color: #000000;
  border: 2px solid rgba(0, 0, 0, 0.35);
}
.appointment-btn {
  background: none;
  border: 2px solid #ca232b;
  border-radius: 30px;
  padding: 10px 60px;
  color: #ca232b;
  margin-top: 40px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
}
.appointment-btn:hover {
  background: #ca232b;
  border: 2px solid #ca232b;
  border-radius: 30px;
  padding: 10px 60px;
  color: #ffffff;
  transition: 0.6s;
}
.submit-header-modal {
  justify-content: center !important;
  border-bottom: none !important;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
/* appointment css */
/* events css */
.events-section {
  background: #f5f5f5;
  padding: 6rem;
  position: relative;
  z-index: 10;
}
.first-blog-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.first-blog {
  position: relative;
  z-index: 0;
}
.first-blog h5,
.first-blog p {
  -webkit-transition: color 1s;
  transition: color 2s;
}
.first-blog h5 {
  font-size: 24px;
}
.first-blog:hover h5,
.first-blog:hover p {
  color: #ffacac;
}
.first-blog .first-content {
  position: absolute;
  padding: 12px;
  z-index: 1;
  width: 80%;
  margin: 10px 6px;
  top: 54%;
  transform: translate(0%, -50%);
}
.first-content h5,
.first-content p {
  color: #ffffff;
}
.second-blog-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 10%;
}
.third-blog-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.first-blog-img {
  width: 100%;
  height: 100%;
}
.shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  top: 0;
  left: 0;
  box-shadow: inset 0 1700px rgb(0 0 0 / 30%) !important;
}
.first-blog-img img {
  border-radius: 8px;
}
/* blog section css */
/* review section css */
.review-section {
  padding: 6rem 0 6rem 6rem;
  background: #f15b5b;
}
.review-header {
  display: flex;
  justify-content: space-between;
}
.review-section h1,
.review-section h5,
.review-section p {
  color: #ffffff;
}
.review-section p span {
  color: #ffffff !important;
}
.review-desc {
  padding-right: 6rem;
}
.review-desc-top {
  display: flex;
  flex-direction: column;
}
.review-desc-top-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.custom-search .custom-search-input::placeholder {
  color: #ff9b9b;
}
.review-card-section .slick-list {
  padding: 0 20% 0 0 !important;
}
.dot {
  background-color: #ff9b9b;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}
.review-desc-top::after {
  content: "";
  margin-bottom: 8px;
  border-bottom: 2px solid #ff9b9b;
  width: 60%;
  display: block;
}
.profile-section {
  display: flex;
  align-items: center;
  gap: 20px;
}
.profile-img {
  width: 60px;
  height: 60px;
}
.profile-img img {
  border-radius: 50%;
}
.profile-detail h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4rem;
  color: #ffffff;
}
.profile-detail p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4rem;
  color: #ffffff;
}
.review-card {
  margin: 0 20px;
  padding: 20px;
  background: #ea4242;
  border-radius: 32px;
  /* min-height: 350px !important; */
}
.review-card-section {
  display: flex;
  gap: 20px;
}
.profile-content img {
  margin: 10px 0 20px 0;
}
.profile-content a {
  color: #ffffff !important;
  cursor: pointer;
}
.progress-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
  margin-top: 20px;
}
.indicators .fa-solid {
  color: #ea4242;
}
.progress-bar {
  background-color: #ea4242;
}
.progress-bar {
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;

  background-color: #f5f5f5;
  background-image: linear-gradient(to right, #ea4242, #ea4242);
  background-repeat: no-repeat;
  background-size: 0 100%;

  transition: background-size 0.4s ease-in-out;
}

/* review section css */
/* newsletter section css */
.newsletter-section {
  background: linear-gradient(
    84.4deg,
    rgba(255, 201, 201, 0.67) 6.66%,
    rgba(252, 224, 224, 0) 65.16%,
    rgba(254, 207, 207, 0.27) 97.98%
  );
  position: relative;
}
.custom-search {
  position: relative;
  max-width: 400px;
}
.custom-search-input {
  width: 100%;
  border: 1px solid #f15b5b;
  padding: 10px 100px 10px 20px;
  line-height: 1;
  box-sizing: border-box;
  outline: none;
  background: #f15b5b;
}
.custom-search-botton {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  background: #ea4242;
  color: #fff;
  outline: none;
  margin: 0;
  padding: 0 20px;
  z-index: 2;
}
.subscribe-form .fa-solid {
  color: #ea4242;
  margin-right: 10px;
}
.newsletter-content {
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-content h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6rem;
  color: #ea4242;
  margin-bottom: 20px;
}
.newsletter-content h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 3.6rem;
  color: #221415;
}
.newsletter-img {
  position: absolute;
  transform: translate(30%, -8.2%);
}
/* newsletter section css */
/* Footer Css */
.footer {
  background: #2b2a29;
}
.footer-top {
  padding: 2rem 6rem;
}
.socials-icons {
  display: flex;
  gap: 30px;
}
.fa-solid {
  margin-right: 6px;
}
.lists-links {
  display: flex;
  gap: 30px;
}
.link-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
}
.footer-link:hover {
  color: #ca232b;
}

.fa-facebook:hover {
  color: #4267b2;
}
.fa-twitter:hover {
  color: #1da1f2;
}
.fa-linkedin:hover {
  color: #0077b5;
}
.fa-instagram:hover {
  color: #d6249f;
  /* background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important; */
}
.fa-linkedin-in:hover {
  color: #0e76a8;
}
.box {
  width: 50px;
  margin-top: 15px;
  border-bottom: 2px solid #ca232b;
}

.footer-link {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  padding: 5px 0;
  display: block;
}
.footer-socials {
  margin: 40px 0;
}
.bottom-footer {
  border-top: 2px solid #646464;
  background: #2b2a29;
}
.footer-text p {
  font-size: 12px;
  color: #868182;
}
.footer-text a {
  text-decoration: none;
  color: #868182;
}
.footer-text a:hover {
  text-decoration: none;
  color: #ca232b;
}

#ClickdeskofflineForm input.cdw-chat-contact-form-text {
  padding: 10px !important;
}
.support-chat input {
  padding: 10px !important;
}

.whatsapp_widget_header_icon img {
  width: 32px;
}
/* Footer Css */
.inner-page > section:nth-of-type(2n) {
  background-color: hsl(0, 8%, 95%);
}
/* banner css start */
.banner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 40px;
}
.banner-wrap .button-wrap {
  margin-bottom: 20px;
}
/* banner css end */
/* about us page css */
.about-banner-section {
  padding: 2rem;
  /*background-image: url("../images/about-banner.jpg");*/
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  position: relative;
  background-position: 98% 50%;
}
.about-banner-section::before {
  background: linear-gradient(
    270deg,
    rgba(217, 217, 217, 0) 0%,
    rgba(202, 35, 43, 0.65) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.about-us-desc {
  width: 65%;
  padding: 4rem;
}
.about-us-desc h2 {
  color: #ffffff;
  line-height: 2.6rem;
}
.about-us-desc p {
  color: #ffffff;
}
.why-us-section {
  padding: 6rem;
}
.why-us-section .row {
  display: flex;
  align-items: normal;
  justify-content: center;
}
.why-us-content h3 {
  font-weight: 500;
  font-size: 38px;
  line-height: 49px;
  letter-spacing: 0.001em;
  color: #ca232b;
  margin-bottom: 14px;
}
.why-us-content li,
.why-us-desc li {
  padding-left: 0.8rem;
}
.why-us-content li::marker,
.why-us-desc li::marker {
  content: url("../icons/tick.svg");
  display: inline-block;
  width: 1.3em;
}
.our-team-section {
  padding: 6rem;
  background: rgba(174, 161, 162, 0.15);
}
.our-team-header {
  text-align: center;
}
.our-team-header h3 {
  font-weight: 600;
  display: flex;
  flex-direction: column;
}
.our-team-header h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 72px;
  color: #000000;
}
/*.our-team-header h4::after {*/
/*    content: '';*/
/*    border-bottom: 5px solid #CA232B;*/
/*    width: 80%;*/
/*    margin: 2% 10%;*/
/*    justify-content: center;*/
/*    display: block;*/
/*}*/
.teams-cards {
  margin-top: 30px;
}
.teams {
  background: rgba(202, 35, 43, 0.75);
  /* border: 1px solid #fafafa; */
  box-shadow: 0 18px 25px rgb(32 31 30 / 4%);
  border-radius: 12px;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  /* margin: 0 12px; */
  /* width: 100%; */

  min-height: 29pc;
}
.our-team-section .slick-next:before,
.our-team-section .slick-prev:before {
  color: #ea4242 !important;
}
.teams-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.teams-desc h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.001em;
  margin: 20px 0 10px 0;
  color: #ffffff;
}
.teams-desc p {
  color: #ffffff;
  margin-bottom: 4px;
}
.teams-icon {
  border: 4px solid #ffffff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}
.teams-icon img {
  border-radius: 50%;
}
/* about section css ends */
/* blogs and events css */
.blogs-section .row {
  padding: 6rem;
}
.blog-header {
  padding: 2rem 0;
  background: rgba(255, 236, 237, 0.5);
  text-align: center;
}
.blog-header h1 {
  font-weight: 700;
}
.first-desc a {
  background: #ca232b;
  padding: 10px 30px;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
}
.first-desc a:hover {
  background: #ffffff;
  color: #ca232b;
  border: 2px solid #ca232b;
}
.first-desc h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #dda1a4;
  margin: 20px 0;
}
.first-desc h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 39px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 20px;
}
.first-desc p {
  font-weight: 400;
  margin-bottom: 40px;
}
.side-image {
  width: 400px;
  height: auto;
  flex-basis: 40%;
}
.side-des {
  flex-basis: 60%;
}
.side-content {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.side-des h5 {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #dda1a4;
}
.side-des a {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  line-height: 2rem;
  text-align: center;
  color: #f15b5b;
}
.side-des a:hover {
  color: #dda1a4;
}
.events-section {
  padding: 6rem;
}
.events-title {
  text-align: center;
}
/* .events-title h1:after {
  content: "";
  border-bottom: 3px solid #ca232b;
  width: 100%;
  padding: 10px 0;
  display: block;
}
.events-title h1:before {
  content: "";
  border-top: 3px solid #ca232b;
  width: 100%;
  padding: 10px 0;
  display: block;
} */
.events-card {
  text-decoration: none;
}
.events-desc h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #dda1a4;
  margin: 20px 0;
}
.events-desc a {
  text-decoration: none;
  color: #f15b5b;
}

.blogs-detail-header {
  text-align: left;
  /* padding: 0 27%; */
}
.blogs-detail-section {
  padding: 6rem;
}
.blogs-detail-header h5 {
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: #ff9ca1;
}
.blogs-detail-header h3 {
  font-weight: 600;
  font-size: 34px;
  line-height: 50px;
  letter-spacing: 0.02em;
  color: #000000;
}
.blogs-detail-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #000000;
}
.blogs-detail-image {
  /* width: 600px; */
  padding: 20px 0;
}
.blogs-detail-image img {
  width: 100%;
  /* height: 100%; */
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}
.blog-author-section {
  display: flex;
  justify-content: space-between;
}
.blog-author {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.blog-author-img {
  height: 65px;
  width: 65px;
}
.blog-author-img img {
  border-radius: 50%;
}
.blog-author-desc h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.01em;
  color: #000000;
}
.blog-author-desc h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.01em;
  color: #a0a0a0;
}
.blogs-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.copy-link {
  display: flex;
  gap: 10px;
  border: 2px solid #a0a0a0;
  border-radius: 10px;
  padding: 10px 20px;
  color: #a0a0a0;
  cursor: pointer;
}
.copy-link:hover {
  border: 2px solid #ff9ba0;
  color: #ff9ba0;
}
.social-share {
  border: 2px solid #a0a0a0;
  border-radius: 10px;
  padding: 10px 20px;
  color: #a0a0a0;
  cursor: pointer;
}
.social-share:hover {
  border: 2px solid #ff9ba0;
}
.blogs-ending-section {
  display: inline-block;
}
/* .blogs-ending-section::before {
  content: "";
  width: 100%;
  border-top: 2px solid #000000;
  display: block;
  margin: 20px 0;
} */
.blogs-ending-header h3 {
  font-weight: 600;
  font-size: 34px;
  line-height: 51px;
  letter-spacing: 0.02em;
  color: #000000;
}
.blogs-ending-header h5 {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: #000000;
}
.events-view-btn a {
  text-decoration: none;
  color: #f15b5b;
  padding: 10px 40px;
  border: 2px solid #f15b5b;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 600;
}
.events-view-btn a:hover {
  color: #ffffff;
  background: #f15b5b;
  border: 2px solid #f15b5b;
}
/* blogs events css ends */
/* contact css */
.contact-section {
  padding: 2rem;
  background-image: url("../images/contact.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  position: relative;
}
.contact-section::before {
  background: linear-gradient(
    270deg,
    rgba(217, 217, 217, 0) 0%,
    rgba(202, 35, 43, 0.65) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.price-section {
  background-image: url("../images/fee-banner.jpg");
}
.gallery-header-section {
  background-image: url("../images/contact.jpg");
}
.contact-wrap h1 {
  text-align: left;
}
.contact-wrap .contact-form-header {
  margin-bottom: 0px;
}
.contact-desc {
  padding: 6rem;
  text-align: center;
}
.contact-desc h1 {
  font-weight: 600;
  font-size: 128px;
  line-height: 95px;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
}
.contact-desc h5 {
  font-weight: 400;
  font-size: 28px;
  line-height: 61px;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.02);
}
.contact-form-section {
  background: #fff5f6;
  padding: 6rem;
}
.contact-address {
  display: flex;
  row-gap: 10px;
  column-gap: 16px;
  align-items: baseline;
  height: 100%;
}
.contact-desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 0px !important;
  align-items: flex-start;
  max-width: 280px;
}

.contact-info li {
  margin-bottom: 10px;
}
.contact-address h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 10px;
}
.contact-address a {
  text-decoration: none;
  color: #000000;
}
.contact-address a:hover {
  text-decoration: none;
  color: #4b84d3;
}
.contact-desc-wrap li {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
}
.contact-desc-wrap li p {
  flex-basis: 90px;
}
.contact-frm {
  border: none;
  background: #fff5f6;
  border-bottom: 1px solid #dddddd;
  padding: 5px 10px;
  border-radius: 0 !important;
  outline: none;
}
.contact-form .col-md-12 ::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 173.5%;
  letter-spacing: 0.01em;
  color: #000000;
  opacity: 1; /* Firefox */
}
.contact-frm:focus {
  color: #212529;
  background-color: #fff5f6;
  border-color: #ca232b;
  outline: 0;
  box-shadow: none;
}
.submit-btn {
  background: #ca232b;
  border-radius: 35px;
  color: #ffffff;
  padding: 10px 30px;
  border: 1px solid #ca232b;
}
.submit-btn:hover {
  background: #ffffff;
  border-radius: 35px;
  color: #ca232b;
  padding: 10px 30px;
  border: 1px solid #ca232b;
}
.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form-header h1 {
  font-weight: 700;
  font-size: 38px;
  line-height: 42px;
  color: #ca232b;
}
.contact-form-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #000000;
  padding: 10px 10%;
}
.contact-form {
  padding: 100px 20px;
  background: #fff5f6;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.22);
}
.contact-header {
  text-align: center;
  padding-block: 15px;
}
.contact-header h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0.02em;
  color: #000;
}
.contact-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2rem;
  color: #000;
}
.contact-header h5 {
  color: #000;
}
.gallery-header-section .contact-header {
  max-width: 800px;
  margin-inline: auto;
}
.contact-form-section .row {
  display: flex;
}
.phone-wrap-contact {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.map-section {
  background: #ffffff;
  padding: 6rem;
}
.map-header {
  text-align: center;
}
.map-header h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 2.8rem;
  color: #000000;
}
.map-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000000;
  padding: 20px 20%;
}
/* service detail page css */
.service-banner-section {
  padding: 2rem;
  /*background-image: url("../images/service-banner.jpg");*/
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  position: relative;
  background-position: 81% 50%;
}
.service-banner-section::before {
  background: linear-gradient(
    270deg,
    rgba(217, 217, 217, 0) 0%,
    rgba(202, 35, 43, 0.65) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.service-detail-section {
  padding: 6rem;
  background: rgba(202, 35, 43, 0.03);
}
.inner-service {
  padding: 6rem;
  background: rgba(202, 35, 43, 0.03);
}
.service-detail-section .row,
.service-why-section .row {
  display: flex;
  align-items: center;
}
.service-detail-desc h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 62px;
  letter-spacing: 0.021em;
  color: #2b2a29;
  display: inline-block;
  margin-bottom: 25px;
}
.service-detail-desc h1::after {
  content: "";
  border-bottom: 2px solid #ca232b;
  width: 40%;
  display: block;
}
.service-why-section {
  background: #f5f5f5;
}
.why-us-desc {
  padding-left: 6rem;
}

/*  media phone screens */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .quick-enq-btn {
    padding: 4px;
    background: #e12727;
    color: white;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e12727;
  }
  .appointment-btn {
    font-size: 16px;
    padding: 10px 30px;
  }
  h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 2.8rem;
    letter-spacing: 0.001em;
    color: #221415;
  }
  .carousel-item img {
    min-height: 210px;
    object-position: center;
    object-fit: cover;
  }
  .slider-content {
    position: absolute;
    padding: 2rem;
    z-index: 1;
    width: 100%;
    top: 40%;
    transform: translate(0%, -50%);
  }
  .slider-content h3 {
    font-size: 21px;
    line-height: 1.6rem;
  }
  .slider-content h2 {
    font-size: 21px;
    line-height: 1.6rem;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .slider-content p {
    display: none;
  }
  .slider-content a {
    padding: 4px 10px;
    font-size: 12px;
  }
  .appointment-form h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 3.4rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
  }
  .slick-list {
    padding: 0 !important;
  }
  .review-card {
    margin: 0 10px;
  }
  .first-blog .first-content {
    width: 100%;
  }
  .second-blog-section {
    margin-bottom: 10%;
  }
  .indicators {
    display: flex;
  }
  .about-us-section,
  .service-section,
  .events-section,
  .review-section,
  .appointment-form,
  .newsletter-content,
  .footer-top,
  .why-us-section,
  .our-team-section,
  .blogs-section .row,
  .blogs-detail-section,
  .contact-form-section,
  .map-section,
  .contact-des,
  .service-detail-section,
  .service-why-section,
  .inner-service {
    padding-inline: 1rem;
    padding-block: 2rem;
    /* padding: 2rem; */
  }
  .service-section {
    padding: 1.5rem;
    padding-right: 1rem;
  }
  .newsletter-content {
    padding: 1.5rem;
  }
  .why-us-desc {
    margin-top: 15px;
    padding-left: 0;
  }
  .service-detail-desc h1 {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .review-header {
    display: flex;
    flex-direction: column;
  }
  .review-desc {
    padding-right: 0;
  }
  .review-section h1 {
    color: #ffffff;
    line-height: 2rem;
  }
  .newsletter-section .row {
    display: flex;
    flex-direction: column;
  }
  .newsletter-img {
    position: relative;
    transform: translate(0%, -8%);
  }
  .custom-search {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 300px;
  }
  .custom-search-input {
    width: 100%;
    border: 1px solid #f15b5b;
    padding: 10px;
    line-height: 1;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    background: #f15b5b;
  }
  .custom-search-botton {
    position: relative;
    background: #ea4242;
    color: #fff;
    outline: none;
    margin: 0;
    margin-top: 16px;
    padding: 10px;
    z-index: 2;
  }
  .contact-info,
  .social-links {
    display: flex;
    gap: 5px;
    /*flex-direction: column;*/
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
  }
  .contact-info span a {
    font-size: 12px;
  }
  #topbar {
    padding: 5px 1rem;
  }
  .phone-wrap1 span:not(:first-child) {
    display: none;
  }
  .service-title h5 {
    padding: 0;
  }
  .profile-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .newsletter-content h4 {
    margin-bottom: 10px;
  }
  .newsletter-content h2 {
    font-size: 24px;
    line-height: 1.8rem;
  }
  /* about page css */
  .about-us-desc {
    padding: 0;
    width: 100%;
  }
  .our-team-header h2 {
    font-weight: 600;
    font-size: 28px;
    line-height: 2.6rem;
    color: #000000;
  }
  .why-us-content h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 40px;
  }
  /*   blogs page css  */
  .blogs-detail-header {
    text-align: left;
    padding: 0;
  }
  .blogs-detail-image {
    height: 200px;
    padding: 20px 0;
  }
  .blog-author-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
  }
  /*   contact page css  */
  .contact-form {
    padding: 20px 10px;
    box-shadow: none;
  }
  .map-header p {
    padding: 0;
  }
  .map-header h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 2rem;
    color: #000000;
    margin-bottom: 20px;
  }
  .contact-desc h1 {
    font-weight: 600;
    font-size: 52px;
    line-height: 50px;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow: 0 4px 4px rgb(0 0 0 / 4%);
  }
  .contact-desc h5 {
    line-height: 40px;
  }
  .contact-form-header {
    text-align: left;
  }
  .contact-form-header p {
    padding: 10px 0px;
  }
  .contact-header h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 33px;
    letter-spacing: 0.02em;
    color: #000;
  }
  .map-header {
    text-align: left;
  }
  .map-header p {
    text-align: left;
    margin-bottom: 30px;
  }
  /* appointment form css */
  .appointment-form {
    margin-left: 0rem;
    border-radius: 0;
  }
  .bottom-footer {
    text-align: left !important;
  }
  .appointment-sect {
    background-position: 21% 50%;
    width: 100%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1200px) {
  /* .slider-content {
    position: absolute;
    padding: 2rem;
    z-index: 1;
    width: 100%;
    top: 40%;
    transform: translate(0%, -50%);
  } */
  .slider-content {
    width: 70%;
  }
  .slider-content h3 {
    font-size: 32px;
    line-height: 2.5rem;
    margin-bottom: 14px;
  }
  .slider-content h2 {
    font-size: 24px;
    line-height: 2rem;
    margin-bottom: 10px;
  }
  .slider-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .slider-content a {
    padding: 4px 10px;
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 866px) {
  .contact-info {
    display: flex;
    column-gap: 20px;
    row-gap: 0px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 480px) and (max-width: 748px) {
  .slider-content {
    width: 90%;
  }
  .slider-content h3 {
    font-size: 26px;
    line-height: 2.5rem;
    margin-bottom: 14px;
  }
  .slider-content h2 {
    font-size: 20px;
    line-height: 2rem;
    margin-bottom: 30px;
  }
  .slider-content p {
    display: none;
  }
  .slider-content a {
    padding: 4px 10px;
    font-size: 12px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .header .navbar-brand {
    width: 30%;
  }
  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    text-decoration: none;
    padding: 0 0.8rem !important;
    list-style: none;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1400px) {
  .header .navbar-brand {
    width: 40%;
  }
  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    text-decoration: none;
    padding: 0 0.8rem !important;
    list-style: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1350px) {
  .slider-content {
    width: 70%;
  }
  .slider-content h3 {
    font-size: 24px;
    line-height: 2.5rem;
    margin-bottom: 14px;
  }
  .slider-content h2 {
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .slider-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .slider-content a {
    padding: 4px 10px;
    font-size: 12px;
  }
}
/* @media only screen and (min-width: 1024px) and (max-width: 1366px) {
  html {
    overflow-x: hidden;
  }
  .mobile-navbar-btn {
    display: block;
    z-index: 999;
  }

  .header .logo {
    width: 80%;
  }
  .navbar-list {
    width: 100%;
    height: 100vh;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    gap: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: all 0.5s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-inner {
    background: #ffffff;
  }

  .navbar-list {
    flex-direction: column;
    align-items: center;
  }

  .active .navbar-list {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
    display: block;
  }

  .active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"] {
    display: none;
  }
} */
