.text-line {
  white-space: nowrap;
  display: block;
}

.hero-bg {
  background-image: url("../images/hero-bg.png");
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-elite.hero-bg {
  padding-top: 380px;
  padding-bottom: 150px;
}

.hero-elite .hero-content-royal {
  margin-top: 20px;
}

@media (max-width: 1880px) {
  .hero-elite.hero-bg {
    padding-top: 380px;
    padding-bottom: 130px;
  }

  .hero-bg {
    background-position: center 20px;
  }

  .hero-elite .section-title h1 {
    font-size: 76px;
  }

  .hero-elite .section-title p {
    font-size: 17px;
  }
}

@media (max-width: 1600px) {
  .hero-elite.hero-bg {
    padding-top: 320px;
    padding-bottom: 120px;
  }

  .hero-bg {
    background-position: center 30px;
  }

  .hero-elite .section-title h1 {
    font-size: 66px;
  }

  .hero-elite .section-title p {
    font-size: 16px;
  }
}

@media (max-width: 1400px) {
  .hero-elite.hero-bg {
    padding-top: 260px;
    padding-bottom: 100px;
  }

  .hero-bg {
    background-position: center 50px;
  }

  .hero-elite .section-title h1 {
    font-size: 58px;
  }

  .hero-elite .section-title p {
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .hero-elite.hero-bg {
    padding-top: 260px;
    padding-bottom: 80px;
  }

  .hero-bg {
    background-position: center 60px;
  }

  .hero-elite .section-title h1 {
    font-size: 48px;
  }

  .hero-elite .section-title p {
    font-size: 15px;
  }

  .hero-elite .hero-content-royal {
    margin-top: 15px;
  }
}

@media (max-width: 1050px) {
  .hero-elite.hero-bg {
    padding-top: 260px;
    padding-bottom: 70px;
  }

  .hero-bg {
    background-position: center 50px;
  }

  .hero-elite .section-title h1 {
    font-size: 42px;
  }

  .hero-elite .hero-content-royal {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .hero-elite.hero-bg {
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0;
  }

  .hero-bg {
    background-position: center 25px;
  }

  .hero-elite .section-title h1 {
    font-size: 40px;
  }

  .hero-elite .section-title p {
    font-size: 14px;
  }

  .hero-elite .hero-content-royal {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .hero-elite.hero-bg {
    padding-top: 180px;
    padding-bottom: 50px;
  }

  .hero-bg {
    background-position: center 40px;
  }

  .hero-elite .section-title h1 {
    font-size: 28px;
  }

  .hero-elite .section-title p {
    font-size: 13px;
  }

  .hero-elite .hero-content-royal {
    margin-top: 5px;
  }
}
.service-footer-text {
  color: #4b5563 !important;
}

.service-footer-text:hover {
  color: #0e0e0e !important;
}

.link-light {
  color: var(--white-color) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--white-color);
  transition: all 0.3s ease-in-out;
}

.link-light:hover {
  color: var(--accent-color) !important;
  border-bottom-color: var(--accent-color);
}

.fa-star {
  color: #eab308 !important;
}

.faq-btn .btn-default:hover::before {
  background: url("../images/arrow-light.svg") no-repeat center center !important;
  background-size: cover !important;
  filter: none !important;
}

.hero-elite .section-title h1,
.hero-elite .section-title h3,
.hero-elite .section-title p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

@media (max-width: 991px) {
  .footer-links-box-royal {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-links-royal {
    border-bottom: 1px solid var(--dark-divider-color);
  }

  .footer-links-royal h3 {
    cursor: pointer;
    padding: 15px 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links-royal h3::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
  }

  .footer-links-royal.active h3::after {
    content: "−";
  }

  .footer-links-royal ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .footer-links-royal.active ul {
    max-height: 300px;
    padding-bottom: 15px;
  }
}

.about-text-wrapper {
  position: relative;
}

.show-more-btn {
  display: none;
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
}

.show-more-btn:hover {
  color: #33a033;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .about-text-wrapper {
    max-height: 275px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .about-text-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }

  .about-text-wrapper.expanded {
    max-height: 1000px;
  }

  .about-text-wrapper.expanded::after {
    opacity: 0;
  }

  .show-more-btn {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .faq-cta-box-royal {
    max-width: 250px;
    padding: 15px 20px;
  }

  .satisfy-client-image {
    width: 40px;
    height: 40px;
  }

  .faq-cta-box-content-royal h2 {
    font-size: 22px;
  }

  .faq-cta-box-content-royal p {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .faq-image-royal img {
    max-height: 350px;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .faq-image-royal img {
    max-height: 280px;
  }

  .faq-cta-box-royal {
    max-width: 200px;
    padding: 12px 15px;
  }

  .satisfy-client-image {
    width: 32px;
    height: 32px;
  }

  .faq-cta-box-content-royal h2 {
    font-size: 18px;
  }

  .faq-cta-box-content-royal p {
    font-size: 11px;
  }
}

.testimonial-item-author .testimonial-author-content h3,
.testimonial-item-author .testimonial-author-content p {
  white-space: nowrap;
}

.page-team-single.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.page-team-single-box.p-4 {
  padding: 1.5rem !important;
  padding-bottom: 1rem !important;
}

.team-single-image {
  min-width: 450px;
  max-width: 450px;
}

.team-about-content {
  flex: 1;
}

.team-about-content .section-title p {
  margin-bottom: 15px;
}

.team-contact-list {
  gap: 10px;
  margin-bottom: 15px;
}

.team-contact-item {
  padding: 10px;
}

.team-member-about {
  gap: 30px;
}

@media (max-width: 991px) {
  .team-single-image {
    min-width: 100%;
    max-width: 100%;
  }
}

.testimonial-col.hidden {
  display: none;
}

#show-more-btn {
  cursor: pointer;
}
