@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&amp;family=Oldenburg&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&amp;family=Mulish:wght@400;500;600;700;800&amp;family=Newsreader:opsz,wght@6..72,700&amp;display=swap");

:root {
  --white-f: #ffffff;
  --black-0: #000000;
  --black: #050505;
  --black-2: #1d1d1d;
  --orange: #7b3931;
  --inter: "Inter", sans-serif;
  --mulish: "Mulish", serif;
  --bs-white-rgb: 255, 255, 255;
}
th:first-child,
td:first-child {
  width: 20px; /* 1st column */
}

th:nth-child(2),
td:nth-child(2) {
  width: 30%; /* 2nd column */
}

th:nth-child(3),
td:nth-child(3) {
  width: 70%; /* 3rd column */
}

a {
  transition: 0.4s ease;
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
  color: rgb(37 46 70) !important;
}

a:hover {
  color: #fff !important;
}

li {
  text-align: -webkit-match-parent;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

:root {
  --rv-11-radius: 20px 0;
}

/* product-section */
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.product-section {
  background-color: #f5f6fa;
  margin: 0;
  padding: 20px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: #7b3931;
  font-weight: 600;
}

.row {
  --bs-gutter-x: -1.5rem !important;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.product-card {
  background-color: white;
  border-radius: 24px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  /* margin-bottom: 20px; */
}

.product-title {
  margin-top: 10px;
  font-size: 22px;
  color: #7b3931;
  font-weight: 700;
  margin-bottom: 5px;
}

.product-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.product-description {
  font-size: 13px;
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
}

.more-btn {
  border: 1px solid #7b3931;
  color: #0f254e;
  background: transparent;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.more-btn:hover {
  background-color: #7b3931;
  color: white;
}

.custom-footer {
  padding-top: 30px;
}

@media (max-width: 768px) {
  .product-card {
    width: 100%;
    max-width: 340px;
  }
}

/* pagination  */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  font-family: Arial, sans-serif;
}

.pagination-btn {
  padding: 10px 20px;
  background-color: #843f38;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pagination-btn:hover {
  background-color: #843f38;
}

.pagination-btn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.page-info {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

/* about vision */
.contact-layout1 {
  margin-bottom: 20px;
  padding: 20px 20px;
}

.about-sec-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.about_us_box {
  flex: 1 1 300px;
  max-width: 280px;
  height: 450px;
  border: 3px solid #333;
  border-radius: 30px;
  padding: 15px 15px 25px; /* extra padding at bottom */
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* box itself stays clean-edged */
}

.about_us_box .about_us_icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 10px;
}

.about_us_box .about_us_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.about_us_box h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 5px;
  overflow-wrap: anywhere;
  flex: 0 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/* NEW: single scroll wrapper for all body content */
.about_us_box .about_us_body {
  flex: 1 1 auto;
  min-height: 0; /* critical for overflow to work in flexbox */
  overflow-y: auto;
  overflow-wrap: anywhere;
  padding-right: 4px; /* small gap so text doesn't sit under the scrollbar */
}

.about_us_box .about_us_body::-webkit-scrollbar {
  width: 2px;
}
.about_us_box .about_us_body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}
.about_us_box .about_us_body::-webkit-scrollbar-track {
  background: transparent;
}

/* ul/p/li no longer need their own flex or overflow rules */
.about_us_box ul {
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.about_us_box p,
.about_us_box li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding-bottom: 10px;
}

/* Rotating border colors to match Mission/Vision/Value style */
.about_us_box.card-color-1 {
  border-color: #7b1fa2;
} /* purple */
.about_us_box.card-color-2 {
  border-color: #f5a623;
} /* gold */
.about_us_box.card-color-3 {
  border-color: #1a73e8;
} /* blue */

@media (max-width: 768px) {
  .about-sec-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px;
    margin-top: 20px; /* small side breathing room instead of huge gutters */
  }

  .about_us_box {
    flex: none;
    width: 100%;
    max-width: 420px; /* comfortable reading width, not full bleed */
    height: 420px; /* slightly shorter than desktop, still fixed so scroll works */
  }

  .about_us_box .about_us_icon {
    width: 110px;
    height: 110px;
  }

  .about_us_box h2 {
    font-size: 28px;
  }

  .about_us_box .about_us_body {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .about_us_box {
    max-width: 100%; /* let it fill the screen on very small phones */
    height: 400px;
  }
}

/* about vision end */

.fancybox-layout2 .fancybox-item {
  display: block;
  margin-bottom: 20px;
  border-radius: 30px;
}

.fancybox-brown {
  background-color: #773135;
  color: #fff;
  border-radius: 30px;
}

.fancybox-item {
  position: relative;
}

.fancybox-item .fancybox-icon {
  font-size: 64px;
  line-height: 1;
}

.fancybox-layout2 .fancybox-item .fancybox-icon {
  /* flex: 0 0 80px; */
  max-width: 100%;
  color: #773135;
  text-align: center;
  padding: 10px;
}

.fancybox-layout2 .fancybox-item .fancybox-title-white {
  font-size: 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #ffffffff;
}

.fancybox-layout2 .fancybox-item .fancybox-title {
  font-size: 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #1f2283;
}

.fancybox-dark {
  background-color: #ffffffff;
  color: #1f2283;
  border-radius: 30px;
}

.sec-sec {
  text-align: center;
  /* width: 50%; */
  padding: 15px 40px;
  border: 1px solid #fff;
  box-sizing: border-box;
  margin: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* footer section */

.footer-sec {
  /* position: relative; */
  background-color: hsl(224, 31%, 21%);
  /* margin-top: 25px; */
  padding-top: 45px;
}

.footer-logo a {
  color: rgb(255, 255, 255);
  padding-top: 5px;
  font-size: 16px;
}

.footer-links,
.footer-courses,
.footer-newsletter {
  z-index: 5;
  position: relative;
}

.links-courses {
  color: white;
  font-size: 20px;
  font-family: var(--mulish);
  font-weight: bold;
  position: relative;
  z-index: 5;
}

.footer-ul {
  margin-top: 28px;
  position: relative;
  z-index: 5;
}

.footer-ul2 {
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.footer-ul li {
  color: rgb(255, 255, 255);
  line-height: 2;
  font-size: 16px;
}

.footer-ul2 li {
  color: rgb(255, 255, 255);
  line-height: 2;
  font-size: 16px;
}

.small-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 20px 70px;
  margin-top: 40px;
  position: relative;
  z-index: 5;
  font-size: 16px;
}

.small-footer .copyright {
  color: rgb(255, 255, 255);
}

.small-footer a {
  color: rgb(255, 255, 255);
}

.follow-us {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: -11px;
  position: relative;
  z-index: 5;
}

.follow-us h6 {
  margin-bottom: 0;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.follow-us-ul {
  gap: 10px;
}

.follow-us-ul a {
  height: 40px;
  width: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2117647059);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  color: white;
}

@media screen and (max-width: 479px) {
  .footer-sec .col-6 {
    width: 100%;
  }
  .first-sec {
    width: 95% !important;
  }
  .youtube-link {
    gap: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .wrapper .footer-sec {
    padding-top: 60px;
  }
}

.footer-logo {
  z-index: 5;
  position: relative;
  margin-top: -20px;
}

@media screen and (max-width: 991px) {
  .footer-logo {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-logo {
    text-align: center;
  }
}

.footer-logo .logo-text {
  font-size: 16px;
  font-family: var(--mulish);
  color: rgb(255, 255, 255);
  margin-bottom: 25px;
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .footer-logo .logo-text {
    margin-top: 10px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .footer-logo .logo-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 575px) {
  .footer-logo .logo-text {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .footer-logo .logo-text {
    font-size: 13px;
  }
}

.footer-logo .logo-text br {
  display: none;
}

@media screen and (max-width: 767px) {
  .footer-logo .logo-text br {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .footer-logo .logo-text br {
    display: none;
  }
}

.footer-logo a {
  color: rgb(255, 255, 255) !important;
  padding-top: 5px;
  font-size: 16px;
}

@media screen and (max-width: 575px) {
  .footer-logo a {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .footer-logo a {
    font-size: 13px;
  }
}

.footer-logo a:hover {
  color: white;
}

@media screen and (max-width: 575px) {
  .footer-logo {
    text-align: center;
  }
}

.footer-links,
.footer-courses,
.footer-newsletter {
  z-index: 5;
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer-links,
  .footer-courses,
  .footer-newsletter {
    text-align: center;
    padding-left: 25%;
  }
}

.links_courses {
  color: white;
  font-size: 20px;
  font-family: var(--mulish);
  font-weight: bold;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 991px) {
  .links_courses {
    margin-top: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .footer-ul {
    margin-top: 15px;
  }

  .footer-ul2 {
    margin-top: 15px;
  }
}

.footer-ul li {
  color: rgb(255, 255, 255);
  line-height: 2;
  font-size: 16px;
}

.footer-ul2 li {
  color: rgb(255, 255, 255);
  line-height: 2;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  .footer-ul li {
    line-height: 2.2;
  }

  .footer-ul2 li {
    line-height: 2.2;
  }
}

@media screen and (max-width: 575px) {
  .footer-ul li {
    font-size: 15px;
  }

  .footer-ul2 li {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .footer-ul li {
    font-size: 13px;
  }

  .footer-ul2 li {
    font-size: 13px;
  }
}

.footer-ul li a {
  color: rgb(255, 255, 255) !important;
  font-size: 16px;
  font-family: "mulish", sans-serif;
}

.footer-ul2 li a {
  color: rgb(255, 255, 255) !important;
  font-size: 16px;
  font-family: "mulish", sans-serif;
}

@media screen and (max-width: 575px) {
  .footer-ul li a {
    font-size: 15px;
  }

  .footer-ul2 li a {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .footer-ul li a {
    font-size: 13px;
  }

  .footer-ul2 li a {
    font-size: 13px;
  }
}

.footer-ul li:hover a {
  color: rgb(255, 255, 255);
}

.footer-ul2 li:hover a {
  color: rgb(255, 255, 255);
}

.footer_newsletter {
  margin: 40px 0;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 991px) {
  .footer_newsletter {
    margin: 25px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer_newsletter form {
    justify-content: center;
  }
}

.footer_newsletter input {
  background-color: #2e364e;
  border-color: rgb(255, 255, 255);
  color: white;
  padding-left: 10px;
  padding-right: 20px;
  font-size: 16px;
}

@media screen and (max-width: 575px) {
  .footer_newsletter input {
    font-size: 15px;
  }
}

.footer_newsletter ::-moz-placeholder {
  color: rgb(255, 255, 255);
  opacity: 1;
  /* Firefox */
}

.footer_newsletter ::placeholder {
  color: rgb(255, 255, 255);
  opacity: 1;
  /* Firefox */
}

.footer_newsletter ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: rgb(255, 255, 255);
}

.footer_newsletter-btn {
  color: white;
  background-color: #1569fd;
  height: 50px;
  width: 50px;
  margin-left: -10px;
}

@media screen and (max-width: 479px) {
  .footer_newsletter-btn {
    height: 40px;
  }
}

.follow-us {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: -11px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .follow-us {
    justify-content: center;
  }
}

.follow-us h6 {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .follow-us h6 {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .follow-us h6 {
    font-size: 13px;
  }
}

.follow-us-ul {
  gap: 10px;
}

.follow-us-ul a {
  height: 40px;
  width: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2117647059);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  color: white;
}

@media screen and (max-width: 479px) {
  .follow-us-ul a {
    height: 30px;
    width: 30px;
  }
}

.follow-us-ul a:hover {
  background-color: #000;
  color: white;
}

.follow-us-ul a i {
  font-size: 15px;
}

@media screen and (max-width: 479px) {
  .follow-us-ul a i {
    font-size: 12px;
  }
}

.footer-shape1 {
  position: absolute;
  bottom: 0;
  left: -50px;
  z-index: 2;
}

@media screen and (max-width: 575px) {
  .footer-shape1 {
    display: none;
  }
}

.footer-shape3 {
  position: absolute;
  right: 100px;
  top: 300px;
}

@media screen and (max-width: 575px) {
  .footer-shape3 {
    display: none;
  }
}

banner-subtitle-text {
  color: #fff;
  font-size: medium;
}

@media screen and (max-width: 991px) {
  .small-footer {
    margin-top: 45px;
  }
}

@media screen and (max-width: 767px) {
  .small-footer {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .small-footer {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .small-footer {
    font-size: 13px;
    padding: 20px 10px !important;
  }
}

.small-footer a {
  color: rgb(255, 255, 255) !important;
}

.small-footer a:hover {
  color: #fff;
}

.small-footer .copyright {
  color: rgb(255, 255, 255);
}

@media screen and (max-width: 767px) {
  .small-footer .copyright {
    margin-bottom: 20px;
  }
}

.small-footer .privacy-policy {
  color: rgb(255, 255, 255);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px 20px !important;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .mwt {
    width: 50% !important;
  }

  .short-desc {
    padding: 10px !important;
  }

  .tds-des {
    min-width: auto;
    border-top-right-radius: 10px;
  }

  .tds-image {
    min-width: auto;
    border-radius: 0px;
  }

  .tds-paragraph {
    font-size: 11px;
  }

  .minus-ml-90 {
    margin-left: -90px;
  }

  .minus-ml-70 {
    margin-left: -70px;
  }

  .minus-ml-125 {
    padding-top: 8px;
    margin-left: -125px;
  }

  .minus-ml-115 {
    margin-left: -115px;
  }

  .minus-ml-50 {
    margin-left: -50px;
  }

  .minus-ml-60 {
    margin-left: -60px;
  }

  .minus-ml-80 {
    margin-left: -80px;
  }

  .minus-ml-35 {
    margin-left: -35px;
  }

  .minus-ml-15 {
    margin-left: -15px;
  }

  .minus-ml-13 {
    margin-left: -13px;
  }

  .minus-ml-40 {
    margin-left: -40px;
  }

  .section-title {
    font-size: 35px !important;
    margin-bottom: 10px !important;
  }
}

/* Certificates */
.section-title {
  font-family: var(--inter);
  color: var(--black);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  /* margin-bottom: 28px; */
}

.certificate-img {
  width: 240px;
  height: 190px;
  border-radius: 8px;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.outer-box {
  border: 1px solid #333;
  margin: 20px;
}

.typical {
  margin-top: 20px;
}

.call-to-action {
  background:
    linear-gradient(rgb(228 228 228), rgb(228 228 228)),
    url(../img/background_02.png) center center;
  background-size: cover;
  /* padding: 30px 0; */
}

.companylogo_ul {
  display: flex;
}

.companylogo_u1li {
  padding: 2%;
}

.mset-1,
.mset-4 {
  margin-top: -30%;
}

.companylogoStyle {
  position: relative;
}

.companylogoStyle .comp-iconBg {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.companylogoStyle .comp-icon {
  width: 100%;
  max-width: 100%;
  width: 80%;
  top: 16%;
  left: 10%;
  position: absolute;
  cursor: pointer;
}

.companylogo li {
  background-repeat: no-repeat;
  background-size: 100%;
  width: 23%;
  position: relative;
  display: inline-block;
  padding: 1%;
}

.companylogo li:nth-child(4n + 2) {
  background-color: red;
}

.companylogo li:nth-child(4n + 3) {
  background-color: yellow;
}

.companylogo li img.comp-iconBg {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.companylogo li img.comp-icon {
  position: absolute;
  width: 60%;
  top: 32%;
  left: 19%;
}

.companylogo_ul {
  display: flex;
}

.companylogoStyle {
  position: relative;
}

.companylogoStyle .comp-iconBg {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.companylogoStyle .comp-icon {
  width: 100%;
  max-width: 100%;
  width: 80%;
  top: 16%;
  left: 10%;
  position: absolute;
  cursor: pointer;
}

.companylogo_u1li {
  padding: 2%;
}

.mset-1,
.mset-4 {
  margin-top: -30%;
}

.companylogoStyle:hover img.comp-icon {
  animation: zoom-in-zoom-out 2s ease infinite;
}

.companylogo li:hover img.comp-icon {
  animation: zoom-in-zoom-out 2s ease infinite;
}

.youtube-link {
  /* margin-top: 20px; */
  /*padding-top: 20px;*/
  /*padding-left: 60px;*/
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Arial, sans-serif;
}

.youtube-link img {
  width: auto;
  height: 100px;
}

.youtube-link .link-list {
  display: flex;
  flex-direction: column;
}

.youtube-link a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.youtube-link a:hover {
  text-decoration: underline;
  color: #252e46 !important;
}

.product-description a:hover {
  color: #000 !important;
}

@media screen and (max-width: 575px) {
  .youtube-link {
    padding-left: 0px !important;
  }

  .youtube-link img {
    width: auto;
    height: 30px;
  }

  .youtube-link .link-list {
    font-size: 10px;
  }
}

.first-sec {
  text-align: center;
  width: 85%;
  padding: 15px 40px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  margin: auto;
  background: #f4f5f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* header-transperent
 */

.rv-28-border-for-menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2117647059);
  background-color: #07070700;
  position: relative;
  z-index: 1000;
}

.rv-28-border-for-menu.fixed {
  background-color: rgba(0, 0, 0) !important;
}

.rv-28-menu {
  display: flex;
  padding: 10px 0;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .rv-28-menu {
    justify-content: center;
  }
}

@media screen and (max-width: 575px) {
  .rv-28-menu {
    padding: 15px 12px;
  }
}

.rv-28-menu .rv-3-def-btn {
  background-color: #7e3c35;
  border: 1px solid #ffffff;
  padding: 0;
  margin-left: 15px;
  height: 40px;
  line-height: 40px;
}

.rv-28-menu .rv-3-def-btn:hover {
  background-color: white;
}

.rv-28-menu .rv-3-def-btn i {
  padding-left: 0;
}

@media screen and (max-width: 991px) {
  .rv-28-menu .rv-1-header-mobile-menu-btn {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    height: 40px;
  }
}

@media screen and (max-width: 991px) {
  .rv-28-menu .rv-1-header-nav__sidebar {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

.rv-28-menu .rv-1-header-nav__sidebar .a-banner-btn {
  margin-left: 20px;
}

.rv-28-menu .rv-28-menubar__list {
  margin-left: 120px;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 1399px) {
  .rv-28-menu .rv-28-menubar__list {
    margin-left: 90px;
    gap: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .rv-28-menu .rv-28-menubar__list {
    gap: 0px;
    margin-left: 60px;
  }
}

@media screen and (max-width: 991px) {
  .rv-28-menu .rv-28-menubar__list {
    margin-left: 0;
  }
}

.rv-28-menu .rv-28-menubar__list li {
  position: relative;
}

.rv-28-menu .rv-28-menubar__list li .sub-menu a {
  color: #050505;
}

.rv-28-menu .rv-28-menubar__list li a {
  font-size: 17px;
  font-family: var(--mulish);
  color: white !important;
  font-weight: bold;
}

.rv-28-menu .rv-28-menubar__list li a::before {
  background-color: #843f38;
}

.rv-28-menu .rv-28-menu-BookNow {
  margin-left: auto;
  color: white !important;
  display: flex;
  align-items: center;
}

.rv-28-menu .rv-28-menu-BookNow a {
  color: white !important;
}

@media screen and (max-width: 575px) {
  .rv-28-menu .rv-28-menu-BookNow .hide-sm-device {
    display: none;
  }
}

.rv-28-menu .a-book-btn {
  padding: 15px 30px;
  color: white;
  background-color: #38a9e0;
  font-size: 14.5px;
  background-color: #843f38;
  padding: 10px 30px;
  margin-left: 30px;
  border-radius: 10px;
}

.rv-28-menu .a-book-btn:hover {
  background-color: black;
}

.rv-28-menu .a-book-btn i {
  margin-left: 3px;
}

@media screen and (max-width: 1199px) {
  .rv-28-menu .a-book-btn {
    margin-left: 20px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 991px) {
  .rv-28-menu .a-book-btn {
    display: none;
  }
}

.rv-28-menu .res-menu-btn {
  display: none;
}

@media screen and (max-width: 991px) {
  .rv-28-menu .res-menu-btn {
    display: block;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 25px;
  }
}

.a-banner {
  position: relative;
  margin-top: -134px;
  min-height: 500px;
  overflow: hidden;
}

.a-banner img {
  width: 100%;
}

@media screen and (max-width: 1599px) {
  .a-banner img {
    height: 560px;
  }
}

@media screen and (max-width: 1399px) {
  .a-banner img {
    height: 500px;
  }
}

@media screen and (max-width: 1199px) {
  .a-banner img {
    height: 640px;
  }
}

@media screen and (max-width: 991px) {
  .a-banner img {
    height: 560px;
  }
}

@media screen and (max-width: 767px) {
  .a-banner img {
    height: 480px;
    object-fit: cover;
  }
}

.rv-header-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.27);
}

.a-banner-content {
  padding-top: 180px;
}

@media screen and (max-width: 1199px) {
  .a-banner-content {
    padding-top: 220px;
  }
}

@media screen and (max-width: 991px) {
  .a-banner-content {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .a-banner-content {
    padding-top: 180px;
  }
}

.a-banner-content .a-banner-subtitle {
  font-size: 18px;
  font-family: var(--oldenburg);
  font-weight: 400;
  color: #1569fd;
  margin-bottom: 0;
  color: #000;
}

@media screen and (max-width: 767px) {
  .a-banner-content .a-banner-subtitle {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .a-banner-content .a-banner-subtitle {
    font-size: 16px;
  }
}

.a-banner-content .a-banner-title__text {
  font-size: 50px;
  font-family: var(--inter);
  font-weight: 800;
  margin-top: 10px;
  color: white;
  font-size: 70px;
  line-height: 1.12;
  margin: 0;
  padding: 0;
}

.banner-title__text P {
  font-family: var(--inter);
  font-weight: 400;
  margin: 0;
  /* margin-top: 10px; */
  color: white;
  font-size: 20px;
  line-height: 1.5;
}

.banner-title__text span {
  font-family: var(--inter);
  font-weight: 400;
  margin: 0;
  /* margin-top: 10px; */
  color: white;
  font-size: 20px;
  line-height: 1.5;
}

.a-banner-content #page-content.banner-title__text > p:first-of-type,
.a-banner-content #enquiry-form.banner-title__text > p:first-of-type {
  display: inline;
  margin: 0;
  padding: 0;
}

.a-banner-content #page-content.banner-title__text > p:not(:first-of-type) {
  margin: 0;
  padding: 0;
}

.a-banner-content #page-content.banner-title__text > .site-name,
.a-banner-content #enquiry-form.banner-title__text > .site-name {
  display: inline;
  margin: 0;
  padding: 0;
}
.brand-sup {
  font-size: 0.4em !important;
  vertical-align: super !important;
  line-height: 0 !important;
  position: relative !important;
  top: -0.6em !important;
}

.brand-sup-option {
  font-size: 2px !important;
  vertical-align: super !important;
  line-height: 0 !important;
  position: relative !important;
  top: -0.6em !important;
}

@media screen and (max-width: 1399px) {
  .a-banner-content .a-banner-title__text {
    font-size: 42px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1199px) {
  .a-banner-content .a-banner-title__text {
    font-size: 36px;
  }
}

@media screen and (max-width: 991px) {
  .a-banner-content .a-banner-title__text {
    font-size: 32px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .a-banner-content .a-banner-title__text {
    font-size: 28px;
    margin-top: 5px;
  }
}

@media screen and (max-width: 575px) {
  .a-banner-content .a-banner-title__text {
    font-size: 25px;
  }
}

@media screen and (max-width: 479px) {
  .a-banner-content .a-banner-title__text {
    font-size: 22px;
  }
}

@media screen and (max-width: 1599px) {
  .a-banner-content .a-banner-title__text {
    font-size: 65px;
  }
}

@media screen and (max-width: 1399px) {
  .a-banner-content .a-banner-title__text {
    font-size: 60px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .a-banner-content .a-banner-title__text {
    font-size: 48px;
  }
}

@media screen and (max-width: 991px) {
  .a-banner-content .a-banner-title__text {
    font-size: 40px;
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  .a-banner-content .a-banner-title__text {
    font-size: 36px;
    line-height: 1.15;
  }
}

@media screen and (max-width: 575px) {
  .a-banner-content .a-banner-title__text {
    font-size: 32px;
  }
}

@media screen and (max-width: 479px) {
  .a-banner-content .a-banner-title__text {
    font-size: 26px;
  }
}

@media screen and (max-width: 479px) {
  .a-banner-content .a-banner-title__text br {
    display: none;
  }

  .a-banner-btn {
    margin-top: 5px !important;
  }
}

.a-banner-btn {
  padding: 15px 30px;
  color: white !important;
  background-color: #843f38;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 10px;
}

.a-banner-btn:hover {
  color: white;
  background-color: #000;
}

.a-banner-btn i {
  margin-left: 3px;
}

@media screen and (max-width: 1399px) {
  .a-banner-btn {
    margin-top: 29px;
    padding: 10px 15px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .a-banner-btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 575px) {
  .a-banner-btn {
    padding: 7px 12px;
  }
}

@media screen and (max-width: 479px) {
  .a-banner-btn {
    padding: 7px 12px;
    font-size: 13px;
  }
}

.a-request .request-quote {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-radius: 5px;
  background-color: white;
  padding: 20px 15px;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  z-index: 2;
  margin-top: -50px;
}

@media screen and (max-width: 991px) {
  .a-request .request-quote {
    margin-top: -15px;
  }
}

.a-request .request-quote input {
  border: solid 1px #e8e8e8;
  padding-left: 10px;
  height: 50px;
}

.a-request .request-quote input ::placeholder {
  color: #000;
}

.a-request .request-quote input:hover::placeholder {
  color: white;
}

.a-request .request-quote input:hover,
.a-request .request-quote select:hover {
  background-color: #823a37;
  color: white;
}

@media screen and (max-width: 575px) {
  .a-request .request-quote input {
    font-size: 15px;
    height: 40px;
  }
}

.a-request .request-quote .nice-select {
  height: 50px;
  line-height: 50px;
}

@media screen and (max-width: 575px) {
  .a-request .request-quote .nice-select {
    font-size: 15px;
    height: 40px;
  }
}

.a-request .request-quote .nice-select .list {
  width: 100%;
}

.a-request .request-quote .request-quote_book {
  color: white;
  background-color: #843f38;
  border-radius: 5px;
  width: 100%;
  padding: 8px !important;
  height: 49px;
}

.a-request .request-quote .request-quote_book:hover {
  background-color: black;
}

@media screen and (max-width: 767px) {
  .a-request .request-quote .request-quote_book {
    padding: 10px 0;
  }
}

@media screen and (max-width: 575px) {
  .a-request .request-quote .request-quote_book {
    font-size: 15px;
    height: 40px;
  }
}

@media screen and (max-width: 991px) {
  .a-request .request-quote {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* about section */

.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 67px 7px 70px;
  background-color: #fff;
  max-width: 1200px;
  margin: 0px auto;
  /* border-radius: 16px; */
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); */
}

.about-image {
  flex: 1 1 450px;
  max-width: 450px;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 16px;
}

.about-content {
  flex: 1 1 450px;
  max-width: 650px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #7b3931;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 14px !important;
}

.about-content ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0 0 1em;
}
.about-content ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin: 0 0 1em;
}
.about-content li {
  margin-bottom: 0.4em;
}

.about_us_box ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0 0 1em;
}
.about_us_box ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin: 0 0 1em;
}
.about_us_box li {
  margin-bottom: 0.4em;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 30px 16px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 24px 16px;
  }

  .about-content {
    max-width: 100%;
    max-height: none; /* remove the cap so it grows naturally */
  }

  .about-image {
    max-width: 100%;
    max-height: 325px;
  }

  .about-content h2 {
    font-size: 22px;
    text-align: center;
  }

  .about-content p {
    font-size: 12px;
    text-align: justify;
  }

  .youtube-heading {
    font-size: 16px;
  }
  .enquiry-form-section {
    margin-top: -30px !important;
  }
}

/* form on banner */
/* Section containing the form */
.enquiry-form-section {
  width: 100%;
  display: flex;
  justify-content: center;
  /* Adjust margin-top to position it below your header/image, as seen in your screenshot */
  margin-top: -50px;
  /* Example: Pull it up over the background image */
  padding: 0 15px;
  /* Add some horizontal padding for smaller screens */
  box-sizing: border-box;
  z-index: 9;
  /* Ensure form is above background content */
  position: relative;
  /* Needed if you want to position it absolutely on top of another element */
}

/* White container for the form fields */
.form-container {
  background-color: #fff;
  border-radius: 8px;
  /* Rounded corners for the container */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
  padding: 20px;
  width: 100%;
  max-width: 1000px;
  /* Maximum width of the form container */
  box-sizing: border-box;
  /* Include padding in element's total width */
}

/* Form layout using Flexbox */
.enquiry-form {
  display: flex;
  flex-wrap: wrap;
  /* Allow form groups to wrap to the next line */
  gap: 15px;
  /* Space between form groups */
  align-items: stretch;
  /* Make all items stretch to the same height */
}

/* Individual form group styling */
.form-group {
  flex: 1;
  /* Each group takes equal space by default */
  min-width: 200px;
  /* Minimum width before wrapping */
  box-sizing: border-box;
}

/* Input fields and Select dropdown styling */
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  outline: none;
  box-sizing: border-box;
  /* Include padding/border in element's total width */
  height: 50px;
  /* Fixed height for inputs/selects */
}

.form-group input::placeholder,
.form-group select option[disabled]:first-child {
  color: #999;
  /* Placeholder text color */
}

.form-group input:focus,
.form-group select:focus {
  border-color: #843f38;
  /* Highlight border on focus */
  box-shadow: 0 0 0 3px rgba(132, 63, 56, 0.2);
  /* Soft focus ring */
}

/* Specific styling for the select dropdown to match image */
.form-group select {
  /* Custom arrow for select if needed, otherwise browser default */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2C114.7L146.2%2C255.5L5.4%2C114.7c-7.8-7.8-20.5-7.8-28.3%2C0c-7.8%2C7.8-7.8%2C20.5%2C0%2C28.3l154.6%2C154.6c3.9%2C3.9%2C8.9%2C5.9%2C14.2%2C5.9s10.3-2%2C14.2-5.9l154.6-154.6c7.8-7.8%2C7.8-20.5%2C0-28.3C307.5%2C106.9%2C294.8%2C106.9%2C287%2C114.7z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  /* Position arrow */
  background-size: 10px;
  /* Size of the arrow */
  padding-right: 35px;
  /* Make space for the custom arrow */
}

/* Dropdown scroll behavior (native browser behavior) */
/* The scrollbar appears automatically if there are enough options */

/* Button styling */
.form-group button {
  width: 100%;
  padding: 12px 15px;
  background-color: #843f38;
  /* Your brand color for the button */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 50px;
  /* Match height of inputs */
}

.form-group button:hover {
  background-color: #6a322c;
  /* Slightly darker on hover */
}

/* Responsive adjustments */

/* For screens smaller than 768px (tablets in portrait, larger phones) */
@media (max-width: 768px) {
  .enquiry-form {
    flex-direction: column;
    /* Stack items vertically */
    gap: 10px;
    /* Reduce gap */
  }

  .form-group {
    width: 100%;
    /* Each group takes full width */
    min-width: unset;
    /* Remove min-width constraint */
  }

  .form-container {
    padding: 15px;
    /* Reduce padding of the container */
  }

  /* Adjust button height slightly if desired */
  .form-group button {
    height: 48px;
    font-size: 16px;
  }
}

/* For screens smaller than 480px (small phones) */
@media (max-width: 480px) {
  .form-container {
    border-radius: 5px;
    /* Slightly less rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .form-group input,
  .form-group select,
  .form-group button {
    padding: 10px 12px;
    font-size: 16px;
    height: 45px;
    /* Slightly smaller height */
  }
}

/* contact section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 30px 60px;
}

.info-boxes {
  flex: 1 1 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1 1 calc(50% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.info-card .icon {
  background: #7b3931;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 18px;
  color: #07294d;
  margin-bottom: 10px;
}

.info-card p,
.info-card a {
  color: #6c757d;
  font-size: 16px;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
  color: #252e46 !important;
}

.contact-form {
  flex: 1 1 500px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  font-size: 24px;
  color: #07294d;
  margin-bottom: 10px;
}

.contact-form p {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-group input,
.form-group textarea {
  flex: 1 1 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.form-group.half input {
  flex: 1 1 calc(50% - 10px);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background: #7b3931;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  font-size: 16px;
}

.form-submit:hover {
  background: #662d26;
}

@media (max-width: 768px) {
  .info-card {
    flex: 1 1 100%;
  }

  .form-group.half input {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .info-card {
    flex: 1 1 100%;
  }

  .form-group.half input {
    flex: 1 1 100%;
  }
}

/* header-light(white) */
/* Base Header Styles */
.rv-1-header {
  padding: 6px 0;
  background-color: var(--white-f);
  /* Ensure white background for the header */
  box-shadow: 0px 1px 2px 0px rgba(11, 23, 40, 0.1);
  position: relative;
  /* Default position */
  z-index: 99;
  /* Ensure it's above other content by default */
}

/* Sticky Header Styles */
.to-be-fixed.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  /* Slightly stronger shadow for fixed state */
  z-index: 1000;
  /* Higher z-index when fixed to ensure it's always on top */
  transition: all 0.4s ease;
  /* Smooth transition for stickiness */
  background: var(--white-f);
  /* Ensure white background when fixed */
  animation: fadeIn 0.5s ease-out;
  /* Add a subtle fade-in animation */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Styles */
.rv-1-logo img {
  width: 200px;
  /* As per your HTML */
  height: auto;
  display: block;
}

/* Navigation Menu Styles */
.rv-inner-header__nav > ul {
  display: flex;
  justify-content: center;
  /* Center the navigation items */
  gap: 18px;
  /* Space between navigation items */
  margin: 0;
  /* Remove default ul margin */
  padding: 0;
  /* Remove default ul padding */
  list-style: none;
  /* Remove bullet points */
}

.rv-1-header__nav > ul > li {
  position: relative;
  line-height: 50px;
  /* Adjust line height to vertically align text */
}

.rv-1-header__nav > ul a {
  color: #6c757d;
  /* Default link color, similar to Bootstrap's muted text */
  position: relative;
  padding: 0 5px;
  /* Adjust padding for better clickable area */
  font-weight: 500;
  text-decoration: none;
  /* Remove underline */
  transition: color 0.3s ease;
}

.rv-1-header__nav > ul a.active,
.rv-1-header__nav > ul a:hover {
  color: var(--orange) !important;
  font-weight: 600;
  /* Hover/active color */
}

/* Active Link Indicator (Home link) */
.rv-1-header__nav > ul a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* Position at the bottom of the link */
  width: 100%;
  height: 2px;
  background-color: var(--orange);
  /* Red color for the line */
  transition: width 0.3s ease;
}

/* Contact Us Link Specific Style */
.rv-1-header__nav > ul a :active {
  color: var(--orange);
  /* Specific color for "Contact us" */
}

/* Download Brochure Button */
.rv-inner-header-right-btns a:last-child {
  background-color: var(--black);
  color: #fff !important;
  margin-right: 0px;
  padding: 10px 30px;
  /* Adjust padding */
  border-radius: 6px;
  border: 1px solid var(--black);
  text-decoration: none;
  display: inline-block;
  /* Ensure padding works */
  line-height: normal;
  /* Reset line-height to fit padding */
  font-size: 16px;
  /* Match existing font size */
  /* font-weight: 600; */
  /* Match existing font weight */
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.rv-inner-header-right-btns a:hover {
  background-color: var(--white-f);
  color: var(--black) !important;
}

/* Mobile Menu Button (Hamburger) */
.rv-1-header-mobile-menu-btn {
  background-color: var(--orange);
  /* Adjusted to match your image's red button */
  border-color: var(--orange);
  border-radius: 10px;
  /* As per your existing CSS */
  padding: 0;
  text-align: center;
  aspect-ratio: 1;
  /* Makes it a square */
  font-size: 20px;
  height: 45px;
  /* Consistent height */
  width: 45px;
  /* Consistent width */
  display: inline-flex;
  /* Use flexbox to center icon */
  justify-content: center;
  align-items: center;
  color: var(--white-f);
  /* Icon color */
  border: none;
  /* Remove default button border */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rv-1-header-mobile-menu-btn:hover {
  background-color: #a04242;
  /* Slightly darker red on hover */
}

/* Mobile Close Button (X-mark) in Sidebar */
.sidebar-close-btn {
  background-color: transparent;
  /* Transparent for the close button */
  border: none;
  font-size: 25px;
  /* Larger icon */
  color: #333;
  /* Dark color for the icon */
  cursor: pointer;
  padding: 5px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  /* Medium to small screens */
  .rv-1-header-nav__sidebar {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: rgb(255, 255, 255);
    position: fixed;
    height: 100%;
    z-index: 999;
    top: 0;
    right: 0;
    width: 300px;
    transform: translate(100%, 0);
    /* Hidden by default */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: 0.6s cubic-bezier(0.16, 0.71, 0.17, 1);
    overflow-y: auto;
    /* Allow scrolling if menu content is too long */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  }

  .rv-1-header-nav__sidebar.open {
    /* Class to show sidebar */
    transform: translate(0, 0);
  }

  .rv-1-header-nav__sidebar > * {
    padding: 15px 25px 30px;
  }

  .rv-1-header-nav__sidebar .sidebar-heading {
    border-bottom: 1px solid #c5c5c5;
    padding-bottom: 15px;
  }

  .rv-1-header__nav > ul {
    flex-direction: column;
    /* Stack links vertically */
    align-items: flex-start;
    /* Align links to the left */
    gap: 0;
    /* Remove gap for vertical stacking */
  }

  .rv-1-header__nav > ul > li {
    width: 100%;
    /* Make list item full width */
    line-height: normal;
    padding: 10px 0;
    /* Add vertical padding */
    text-align: left;
    /* Align text to left */
  }

  .rv-1-header__nav > ul a {
    padding: 5px 0;
    /* Adjust padding for mobile links */
    display: block;
    /* Make links block level to take full width */
    width: 100%;
  }

  .rv-1-header__nav > ul a.active::after {
    display: none;
    /* Hide active line on mobile */
  }

  .rv-inner-header-right-btns {
    margin-right: 15px;
    /* Adjust margin for mobile button */
  }

  .rv-inner-header-right-btns a.d-sm-inline-block {
    display: none !important;
    /* Hide download button on small screens */
  }

  /* Order changes for responsiveness */
  .col-md-6.order-2.order-lg-1 {
    order: 2;
  }

  .col-lg-3.col-8.col-xxs-6.text-end.order-1.order-lg-2 {
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  /* Smaller screens (e.g., tablets in portrait) */
  .rv-1-header-mobile-menu-btn {
    height: 40px;
    width: 40px;
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  /* Extra small screens (e.g., phones) */
  .rv-1-logo img {
    width: 150px;
    /* Adjust logo size for very small screens */
  }

  .rv-1-header-mobile-menu-btn {
    height: 35px;
    width: 35px;
    font-size: 16px;
  }

  .rv-1-header-nav__sidebar {
    width: 250px;
    /* Adjust sidebar width for smaller phones */
  }
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  /* Below the sidebar but above page content */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s cubic-bezier(0.16, 0.71, 0.17, 1),
    visibility 0.6s;
}

/* .mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
} */

/* breadcrumb */

.hero-section {
  position: relative;
  width: 100%;
  height: 300px;
  /* Adjust height as needed */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  /* Center content horizontally */
  align-items: center;
  /* Center content vertically */
  color: #fff;
  /* Text color for content on the background */
  text-align: center;
  overflow: hidden;
  /* Important for image scaling */
}

.hero-content {
  z-index: 1;
  /* Ensure content is above the background */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  /* Space between heading and breadcrumb */
}

.hero-content h1 {
  font-size: 4em;
  /* Adjust font size as needed */
  font-weight: 600;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Optional: add text shadow for readability */
}

/* Breadcrumb Styling */
.breadcrumb {
  display: flex;
  /* Use flexbox for horizontal alignment */
  list-style: none;
  /* Remove default list bullets */
  padding: 0;
  margin: 0;
  background: transparent;
  /* Make background transparent */
  font-size: 1em;
}

.breadcrumb-item {
  position: relative;
  /* For the separator */
  padding: 0 15px;
  /* Adjust padding for spacing */
  color: #eee;
  /* Light gray for non-active links */
}

.breadcrumb-item a {
  color: #fff !important;
  /* Inherit color from parent */
  text-decoration: none;
  /* Remove underline from links */
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #fff;
  /* Lighter color on hover */
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  /* The separator character */
  position: absolute;
  left: -5px;
  /* Adjust position of the separator */
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  /* Color of the separator */
}

.breadcrumb-item.active {
  color: #fff;
  /* White for the active item */
  font-weight: bold;
  /* Make active item bold */
  cursor: default;
  /* No pointer for current page */
}

/* Hide separator for the first item */
.breadcrumb-item:first-child::before {
  content: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 300px;
    /* Adjust height for smaller screens */
  }

  .hero-content h1 {
    font-size: 2em;
    /* Smaller heading for mobile */
  }

  .breadcrumb {
    font-size: 0.9em;
    /* Slightly smaller font for breadcrumb */
  }

  .breadcrumb-item {
    padding: 0 10px;
    /* Reduce padding for smaller screens */
  }

  .breadcrumb-item + .breadcrumb-item::before {
    left: -3px;
    /* Adjust separator position */
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 250px;
    /* Even smaller height for very small screens */
  }

  .hero-content h1 {
    font-size: 1.8em;
  }

  .breadcrumb-item {
    padding: 0 8px;
    /* Further reduce padding */
  }

  .breadcrumb-item + .breadcrumb-item::before {
    left: -2px;
    font-size: 0.8em;
    /* Make separator smaller */
  }
}

/* blog section */

.blog-section {
  max-width: 550px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  /* Important: needed to make shadow visible */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  /* ✅ This adds the soft shadow */
  border-radius: 16px;
  /* Optional: to match image rounding */
}

.blog-section h1 {
  font-size: 36px;
  color: #7b3931;
  margin-bottom: 30px;
  line-height: 1.4;
}

.image-wrapper {
  padding: 10px;
  border: 4px solid #7b3931;
  border-radius: 16px;
  overflow: hidden;
  max-width: 500px;
  /* Controls the max image container width */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  /* ✅ Centers the block horizontally */
  width: 100%;
  /* ✅ Allows responsiveness */
}

.image-wrapper img {
  width: 100%;
  /* ✅ Scales image to fit container */
  height: auto;
  /* ✅ Keeps aspect ratio */
  border-radius: 10px;
  display: block;
}

/* Small screen (phones) */
@media (max-width: 480px) {
  .blog-section {
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .blog-section h1 {
    font-size: 26px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .blog-section h1 {
    font-size: 22px;
  }
}

/* Products details page */

.det-wrapper {
  padding: 0 30px;
  margin-top: 20px;
}

.det-container {
  display: flex;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  flex-wrap: wrap;
}

.left-box {
  background-color: #0f3048;
  color: white;
  padding: 40px;
  flex: 1;
}

.left-box h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.left-box h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.left-box p {
  font-size: 1rem;
  /*font-style: italic;*/
}

.right-box {
  flex: 1;
  background-color: #fff;
}

.right-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.description {
  background-color: #e7e7e7;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0 0 20px 20px;
}

.card {
  border: 1px solid #999;
  border-radius: 12px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.det-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  text-align: center;
}

.left h1 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.circle-img {
  width: 250px;
  height: 250px;
  border: 2px solid #7e3f3f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.circle-img img {
  max-width: 70%;
  max-height: 70%;
}

.right {
  flex: 2;
}

.right h2 {
  color: #7e3f3f;
  font-size: 26px;
  margin-top: 0;
}

.right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

button {
  padding: 10px 25px;
  border-radius: 6px;
  border: 1px solid #000;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.enquiry {
  background-color: #7e3f3f;
  color: white;
}

.enquiry a {
  background-color: #7e3f3f;
  color: white !important;
}

.enquiry a:hover {
  /* background-color: #ffffff; */
  color: #000 !important;
}

.back {
  background-color: #000;
  color: white;
}

.det-des {
  margin-top: 0px;
  font-size: 16px;
}

.spec-table-det-container {
  border: 1px solid #999;
  border-radius: 10px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.spec-table-det-container h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

thead th {
  background-color: #6f2c2c;
  color: #fff;
  padding: 10px;
  border: 1px solid #999;
  text-align: left;
}

tbody td {
  border: 1px solid #999;
  padding: 10px;
  vertical-align: top;
}

tbody tr:nth-child(odd) td {
  background-color: #f5f5f5;
}

tbody tr:hover td {
  background-color: #dbdbdb;
  transition: 0.3s ease;
}

.info-box {
  border: 1px solid #999;
  border-radius: 10px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.info-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0px 0 5px;
}

.info-box p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 7px;
}

.accreditations-slider {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px 30px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.accreditations-slider h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.slider-det-wrapper {
  display: flex;
  gap: 50px;
  overflow-x: hidden;
  padding: 10px 0;
}

.slider-det-wrapper img {
  height: 70px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.swiper-slide {
  text-align: center;
  padding: 5px 0;
  border-color: #d3d3d31f;
  border-style: solid;
  border-radius: 10px;
  min-height: 100%;
}

.swiper-slide img {
  width: 100%;
  max-width: auto;
  height: 162px;
  display: block;
  margin: 0 auto;
  padding: 10px;
}

.spec-table-det-container h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 5px;
}

.disclaimer-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 24px;
  padding-bottom: 10px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.spec-table-det-container p {
  margin-bottom: 3px !important;
}

.disclaimer-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
}

.disclaimer-box p,
.disclaimer-box li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclaimer-box ol {
  padding-left: 1.2rem;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
  .footer-sec {
    padding-top: 50px;
  }

  .links-courses {
    margin-bottom: 0px;
    margin-top: 10px;
    text-align: start;
  }

  .footer-ul {
    margin-top: 10px !important;
    text-align: start;
  }

  .footer-ul2 {
    margin-top: 10px !important;
    text-align: start;
  }

  .small-footer {
    margin-top: 30px;
  }

  .det-container {
    flex-direction: column;
  }

  .left-box h1 {
    font-size: 1.8rem;
  }

  .left-box h2 {
    font-size: 1.2rem;
  }

  .circle-img {
    width: 180px;
    height: 180px;
  }

  .det-content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .buttons button {
    width: 100%;
  }

  thead th {
    font-size: 7px;
  }

  tbody tr {
    margin-bottom: 20px;
  }

  tbody td {
    font-size: 7px;
    position: relative;
    text-align: left;
    border: none;
    border: 1px solid #ccc;
  }
}

@media (max-width: 768px) {
  .left-box,
  .right-box {
    /* padding: 20px; */
    text-align: center;
  }

  .custom-footer {
    text-align: start;
    padding-left: 25%;
  }

  .minus-mt-9 {
    margin-top: -9px;
  }
}

.super {
  font-size: 20px;
  top: -1.5em;
  display: inline-block;
  position: relative;
}

/*product category page*/
.accordion-button:not(.collapsed) {
  background-color: #fff !important;
}

.cate-sec {
  padding: 20px 100px 25px 120px;
}

.product-according {
  list-style: none;
  padding-left: 0px;
}

.product-according li {
  padding: 10px;
  background-color: #cfe2ff;
  padding-left: 30px;
  margin-bottom: 5px;
  margin-top: 5px;
  position: relative;
}

.product-according li:nth-child(1) {
  background-color: #cfe2ff;
}

.product-according li:nth-child(1)::before {
  content: "";
  width: 23px;
  background-color: #32a1d9;
  left: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute;
}

.product-according li:nth-child(2) {
  background-color: #ffea74;
}

.product-according li:nth-child(2)::before {
  content: "";
  width: 23px;
  background-color: #fa8124;
  left: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute;
}

.product-according li:nth-child(3) {
  background-color: #f6ffcf;
}

.product-according li:nth-child(3)::before {
  content: "";
  width: 23px;
  background-color: #db4a39 !important;
  left: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute;
}

.product-according li a {
  list-style: none;
  padding-left: 0px;
  color: #000 !important;
}

.cate-card {
  background-color: white;
  border-radius: 40px 0px 40px 0px;
  padding-bottom: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.cate-card-1 {
  background-color: white;
  border-radius: 24px;
  padding: 30px;
  width: 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin: 10px;
}

.cate-card:hover {
  transform: translateY(-5px);
}

.cate-card-1:hover {
  transform: translateY(-5px);
}

.cate-title {
  margin-top: 5px;
  font-size: 20px;
  color: #7b3931;
  font-weight: 600;
  margin-bottom: 5px;
}

.subcate-title {
  text-align: center;
  margin-bottom: 0px;
  color: #28365b;
  font-weight: 600;
  font-size: -webkit-xxx-large;
}

.subcate-btn {
  text-align: center;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .cate-card {
    width: 100%;
    max-width: 340px;
  }

  .subcate-title {
    font-size: xx-large !important;
  }
}

/* blog details */
.top-bar {
  background: url("../img/blog/bg.png");
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: cover;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.blog-box ol,
li {
  margin-bottom: 1px;
}

.blog-box p {
  margin-bottom: 0px;
}

.blog-box {
  padding: 20px 20px;
  background: #fff;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-box h2 {
  color: #7b3931;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0px;
}

.faq-item {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  .blog-box {
    padding: 20px 15px;
  }

  .blog-img {
    position: relative;
    width: 100%;
    /* height: 300px; */
    display: flex;
    justify-content: cover;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
  }

  .blog-card {
    margin: 10px !important;
  }

  .cate-sec {
    padding: 20px 20px 10px 10px;
  }
}

.faq-title {
  color: #28365b;
  font-size: 20px;
  font-weight: 600;
}

.accordion {
  --bs-accordion-active-bg: var(--white-f) !important;
  --bs-accordion-btn-focus-box-shadow: var(--white-f) !important;
}

.blog-img {
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 0 15px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.blog-meta {
  font-size: 0.85rem;
  color: #888;
}

/* custom header top */
@media (min-width: 768px) {
  header nav.second-nav .second-nav-list {
    padding: 0;
  }
}

@media (min-width: 768px) {
  nav.second-nav .second-nav-list {
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
  }
}

.top-navbar {
  margin-top: 0;
  margin-bottom: 0rem;
  color: #fff;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin-right: 20px;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #000000ff !important;
}

.navbar {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-width: 150px;
}
.navbar-brand {
  padding: 5px;
}

.bg-brown {
  background-color: rgb(132 63 56 / 31%);
}
a.nav-link {
  color: #fff !important;
}

.sticky-top {
  height: 60px;
  /* position: sticky; */
  top: 0;
  z-index: 931;
}
.navbar-toggler {
  display: none;
}
.enquiry-form-section .form-group {
  margin-bottom: 0px !important;
}

/* certifications */
.certi {
  height: 120px;
  width: 120px;
  border-color: #843f3894;
  border-style: solid;
  background-color: white;
  border-end-start-radius: 40px;
  border-start-end-radius: 40px;
}

.certi-tds {
  /* border-color:#d3d3d31f;
    border-style: solid;
    border-radius: 10px; */
  height: 150px !important;
  width: 100%;
}

/* Client Logo List */

.grid,
.grid div {
  display: grid;
}

.grid {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  grid-gap: 1rem;
}

.grid div {
  padding: 0rem;
  position: relative;
}

.grid div::before {
  content: "";
  /* display: block; */
  padding-bottom: 100%;
}

.grid div figure,
.grid div::before {
  grid-row: 1;
  grid-column: 1;
  justify-self: center;
  align-self: center;
}

.client-logo-media img {
  filter: grayscale(0);
}

.client-logo-media img:hover {
  filter: grayscale(1);
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
    grid-gap: 0.2rem !important;
  }

  .certi {
    height: 70px !important;
    width: 100%;
    border-style: groove;
    background-color: white;
    border-end-start-radius: 20px;
    border-start-end-radius: 20px;
  }
}

/* dynamic code css change */
.product-title .tm-mark {
  font-size: 0.4em;
  vertical-align: super;
}

.tm-mark-hero-product {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 800 !important;
}
.product-left-content h1 {
  margin-bottom: 4px;
  line-height: 1.1;
}

.product-left-content h2 {
  margin-top: 0;
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-left-content p {
  margin-top: 0;
  margin-bottom: 0;
}

.product-left-content-hero-product {
  font-size: 0.4em;
  vertical-align: super;
  margin-left: -2px;
}

/* Default / fallback for anything not TM, SM, or R */
.brand-sup {
  font-size: 0.5em !important;
  vertical-align: super !important;
  line-height: 0 !important;
  position: relative !important;
  top: -0.4em !important;
}

.brand-sup-tm {
  font-size: 0.7em !important;
  vertical-align: super !important;
  line-height: 0 !important;
  position: relative !important;
  top: -0.1em !important;
}

.brand-sup-sm {
  font-size: 0.4em !important;
  vertical-align: super !important;
  line-height: 0 !important;
  position: relative !important;
  top: -0.6em !important;
}

.brand-sup-r {
  font-size: 0.95em !important;
  vertical-align: super !important;
  line-height: 0 !important;
  position: relative !important;
  top: -0.1em !important;
}

/* Bigger for the hero heading, but with a smaller "top" magnitude
   since top is relative to this element's own (now larger) font-size */
.a-banner-title__text .brand-sup-r {
  font-size: 0.75em !important;
  vertical-align: baseline !important;
  top: -0.55em !important;
}

.product2-title .brand-sup-r {
  font-size: 0.75em !important;
  vertical-align: baseline !important;
  top: -0.55em !important;
}

.subcate-title .brand-sup-r {
  font-size: 0.75em !important;
  vertical-align: baseline !important;
  top: -0.55em !important;
}

.img-description .brand-sup-r {
  font-size: 1.2em !important;
  vertical-align: baseline !important;
  top: -0.33em !important;
}

.a-banner-title__text .brand-sup-tm {
  font-size: 0.7em !important;
  vertical-align: baseline !important;
  top: -0.55em !important;
}
.brand-sup-option {
  font-size: 2px !important;
  vertical-align: super !important;
  line-height: 0 !important;
  position: relative !important;
  top: -0.6em !important;
}
/* bala sir */
.enquiry-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.enquiry-message {
  margin: 0 0 14px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
}
.enquiry-message-success {
  color: #1b5e20;
  background: #eafaf1;
  border-color: #9ad4a4;
}
.enquiry-message-error {
  color: #842029;
  background: #f8d7da;
  border-color: #f1aeb5;
}

/* Languge */
.dropdown-menu.lang-dropdown-menu .dropdown-item.lang-option:hover,
.dropdown-menu.lang-dropdown-menu .dropdown-item.lang-option:focus,
.dropdown-menu.lang-dropdown-menu .dropdown-item.lang-option.active {
  color: #0d6efd !important;
  background-color: #f4f5f7 !important;
}

/* hide google bnner */
.skiptranslate {
  display: none !important;
}

iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

body {
  top: 0px !important;
  position: static !important;
}

/* laungauge button sep10 */
.lang-switcher {
  margin-right: -32px;
  margin-left: 13px;
}
.hp2-lang-btn {
  padding: 9px 13px !important;
  font-weight: 100 !important;
}
.home-lang-btn {
  color: white;
  font-size: 13px;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  font-weight: 300;
  padding: 6px 10px;
  white-space: nowrap;
  width: fit-content;
  padding: 10px 10px;
}
.home-lang-btn:hover,
.home-lang-btn:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff !important;
}
/* end */

/* languge scrollbar */
.dropdown-menu.lang-dropdown-menu {
  max-height: 320px !important;
  overflow-y: auto !important;
}

.dropdown-menu.lang-dropdown-menu::-webkit-scrollbar {
  width: 6px !important;
}

.dropdown-menu.lang-dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #9e9e9e !important;
  border-radius: 10px !important;
}

.dropdown-menu.lang-dropdown-menu::-webkit-scrollbar-track {
  background: transparent !important;
  border-radius: 10px !important;
}
/* Languge End */
/* header marque tag */
.top-navbar {
  margin: 0;
  padding: 8px 0 10px;
  line-height: 1.5;
  overflow: visible;
}

/* manage spacing for aboutus description */
/* .rich-content p,
.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    margin: 0 !important;
    padding: 0 !important;
}
*/
.rich-content .rc-gap {
  margin-top: 12px !important;
}
/* End description spacing*/
@media (max-width: 425px) {
  .lang-switcher.dropdown.header1-language.notranslate,
  .lang-switcher.dropdown.notranslate {
    display: none;
  }
}
