:root {
  --royalholidays-primary: #ffe5dd;
  --royalholidays-secondary: #fcd8ce;
  --royalholidays-third-color: #e0a58c;
  --royalholidays-forth-color: #82bfc0;
  --royalholidays-fifth-color: #cdf1f0;
  --royalholidays-sixth-color: #e5e5e6;
  --royalholidays-bg-color: #fdefea;
  --royalholidays-dark-black: #000000;
}

/* Home Page banner css start */
.hero-three__title {
  margin-bottom: 20px;
  font-family: "Playfair Display";
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--royalholidays-dark-black);
  font-size: 45px;
}

@media (width: 1024px) {
  .hero-three__title {
    font-size: 65px !important;
  }
}

@media (min-width: 768px) {
  .hero-three__title {
    font-size: 82px;
  }
}

.hero-three__subtitle {
  letter-spacing: 0.1em;
  font-family: system-ui;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-three__subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.title-highlight {
  color: var(--royalholidays-third-color);
  font-style: italic;
}

/* Home page banner css end */

/* service section start */
@media (min-width: 768px) {
  .team-two__item__title {
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 32px;
    color: var(--royalholidays-dark-black);
  }
}

.team-two__item__title {
  font-family: Urbanist;
  font-size: 30px;
  line-height: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--royalholidays-dark-black);
}

/* service section end */

/* Header css start */
.main-header__logo {
  background-color: unset;
}

.main-header__inner {
  border-radius: unset;
  padding-right: unset;
}

.topbar-one {
  background-color: var(--royalholidays-bg-color);
}

.main-header__logo {
  padding: unset;
}

.royalholidays-btn-booking {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  font-family: "Urbanist";
  background-color: var(--royalholidays-third-color);
  color: var(--royalholidays-black);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  transition: 500ms;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.royalholidays-btn-booking::before {
  position: absolute;
  content: "";
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  font-family: "Urbanist";
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-radius: 0.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

/* fix booking form validation error */
.trip-book-form .form-control.is-invalid {
  border-color: #ced4da !important;
  background-image: none !important;
}

.royalholidays-btn-booking:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.royalholidays-btn-booking::after {
  content: "";
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.1, 0, 0.3, 1);
  transition-delay: 0s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.royalholidays-btn-booking:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.royalholidays-btn-booking span {
  display: block;
  position: relative;
  z-index: 2;
}

.royalholidays-btn-booking:hover span {
  animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.main-menu .main-menu__list>li {
  padding-top: 10px;
  padding-bottom: 10px;
}

@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}

@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

a.royalholidays-btn-booking:hover,
.royalholidays-btn-booking::after {
  background-color: var(--royalholidays-secondary) !important;
  color: var(--royalholidays-black) !important;
}

/* form bot field */
.field-bot {
  position: absolute;
  left: -9999px;
  height: 1px !important;
  width: 1px !important;
  opacity: 0 !important;
}

@media (min-width: 1025px) {
  .modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 800px;
  }
}

.custom-modal {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
}

.modal-layout {
  display: flex;
  width: 100%;
  height: 500px;
}

.modal-left {
  width: 45%;
  background: url("../images/email-images/travel-tourism.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.left-content {
  position: absolute;
  bottom: 50px;
  left: 40px;
  color: #2c2c2c;
}

.left-title {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
}

.modal-right {
  width: 60%;
  background: #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header__logo img {
  height: 80px;
}

.main-header__btn {
  margin-left: auto;
}

@media (max-width: 768px) {
  .main-header__inner {
    padding: 10.5px 24px;
  }
}

.main-header__nav {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
  color: unset;
  text-shadow: unset;
}

.main-menu .main-menu__list li ul li>a::after {
  color: var(--royalholidays-forth-color);
  color: var(--royalholidays-third-color);
  text-shadow: 0 0 0.5px currentColor;
}

.main-menu .main-menu__list li ul li>a::after {
  color: var(--royalholidays-forth-color);
}

.topbar-one__inner {
  padding: 5px 0;
}

.hero-three__sub-title {
  color: var(--royalholidays-third-color);
}

.hero-three {
  padding: 50px 0 110px;
}

/* change title with image */
.hero-three__title,
.hero-three__image__item img {
  transition: opacity 0.5s ease-in-out;
}

.hero-three__title.fade-out,
.hero-three__image__item img.fade-out {
  opacity: 0;
}

.hero-three__title.fade-in,
.hero-three__image__item img.fade-in {
  opacity: 1;
}

/* Header css end */
.btn-close-x {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.custom-body {
  flex-grow: 1;
  overflow-y: hidden;
}

.modal-right .form-control {
  background: #f5e8db;
  border: none;
  height: 46px;
}

.modal-right .form-control:focus {
  outline: none;
  box-shadow: none;
  background: #f2ddc9;
}

.e-form-label {
  font-weight: 600;
  color: #333;
}

.enquiry-btn {
  background: #b66a55;
  border: none;
  padding: 12px;
  border-radius: 6px;
  color: #fff;
}

.enquiry-btn:hover {
  background: #a05848;
}

.error {
  color: red;
  position: initial;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  display: none;
  z-index: 999999;
}

.cookie-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
}

.cookie-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cookie-box p {
  font-size: 14px;
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
}

.reject-btn {
  background: #f2f2f2;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.reject-btn:hover {
  background: #e4e4e4;
}

.accept-btn {
  background-color: var(--royalholidays-third-color);
  color: var(--royalholidays-black);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.accept-btn:hover {
  background: #ff7a7a;
}

/* link css for expriance page */
.explore-link:hover {
  color: var(--royalholidays-base) !important;
}

.royalholidays-text-primary {
  color: var(--royalholidays-base) !important;
}

.royalholidays-titles {
  font-family: "Roboto", serif !important;
}

/* contact us start */
.royalholidays-contact-bg {
  background-color: var(--royalholidays-bg-color) !important;
}

/* contact us end */
.page-header {
  background-color: var(--royalholidays-secondary);
}

P.hero-three__subtitle {
  margin: 0;
  color: var(--royalholidays-dark-black);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "Urbanist";
  line-height: 1.25rem;
}

@media (min-width: 768px) {
  P.hero-three__subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.team-two {
  background-color: var(--royalholidays-bg-color);
  padding: 0px 0px 88px;
}

.team-two__item__image::after {
  background: unset;
  content: unset;
}

.team-two__item__image::before {
  background: unset;
}

.team-two__item__title a:hover {
  color: var(--royalholidays-dark-black);
}

h6.team-two__item__title {
  margin: 0;
  font-family: var(--royalholidays-heading-font);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  text-transform: unset;
  margin-bottom: 12px;
  color: var(--royalholidays-third-color);
}

.team-two__item__title {
  color: var(--royalholidays-dark-black);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  font-family: Urbanist;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}

.team-two::after {
  background-color: unset;
}

.from-white-to-fdefea {
  background: linear-gradient(to bottom, #ffffff 0%, #f9f4f2 40%, #fdefea 100%);
}

.main-header {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #fff;
  z-index: 999;
}

.about-three {
  padding: 0px 0;
}

.sec-title__tagline {
  color: var(--royalholidays-third-color);
}

.about-three__list__item__text {
  max-width: unset;
  font-weight: 300;
  font-size: 17px;
  line-height: 25px;
}

.blog-three {
  padding: 50px 0px 50px;
}

.blog-three__item__title {
  font-weight: 200;
  font-size: 16px;
}

.blog-three__item__author__date {
  background-color: var(--royalholidays-third-color);
}

.blog-three__item__author__date {
  color: var(--royalholidays-black);
  font-weight: 500;
}

p.review-title {
  color: var(--royalholidays-black);
  font-weight: 400;
}

.scroll-to-top::after {
  color: var(--royalholidays-third-color);
}

.scroll-to-top::before {
  border: 2px solid rgb(var(--royalholidays-third-color), 0.3);
}

.page-header {
  background-color: var(--royalholidays-secondary);
}

.royalholidays-breadcrumb li a:hover {
  background-size: 100% 1px;
  color: var(--royalholidays-forth-color) !important;
}

.rounded-circle {
  border-radius: 30% !important;
}

.about-three {
  padding: 50px 0;
}

.celebrations,
.curated {
  background-color: var(--royalholidays-bg-color);
}

.experience-cards {
  padding: 80px 0;
}

.exp-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 0 0 transparent;
  transition: all 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-5px);
}

.exp-premium {
  background: #ffe6e6;
}

.exp-signature {
  background: #f9ddde;
}

.exp-platinum {
  background: #f8d7d8;
}

.exp-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 130px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .exp-title {
    font-size: 16px;
  }

  .exp-title span {
    font-size: 13px;
  }
}

.exp-title span {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

.exp-desc {
  min-height: 140px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.exp-trip-box {
  margin-top: 25px;
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 14px;
}

.page-header {
  @media (min-width: 768px) {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-header__title {
  @media (min-width: 768px) {
    font-size: 40px;
  }
}

@media (max-width: 425px) {
  .royalholidays-section-bg-primary {
    padding: 1rem !important;
  }
}

.explore-link:hover {
  color: var(--royalholidays-base) !important;
}

.royalholidays-text-primary {
  color: var(--royalholidays-base) !important;
}

.royalholidays-titles {
  font-family: "Roboto", serif !important;
}

.royalholidays-contact-bg {
  background-color: var(--royalholidays-bg-color) !important;
}

/* contact us end */

.sec-title__tagline {
  color: var(--royalholidays-third-color);
}

.blog-three {
  padding: 50px 0px 50px;
}

.blog-three__item__title {
  font-weight: 200;
  font-size: 16px;
}

.blog-three__item__author__date {
  background-color: var(--royalholidays-third-color);
}

.blog-three__item__author__date {
  color: var(--royalholidays-black);
  font-weight: 500;
}

p.review-title {
  color: var(--royalholidays-black);
  font-weight: 400;
  font-family: Urbanist;
  font-weight: 500;
  text-transform: uppercase;
}

.scroll-to-top::after {
  color: var(--royalholidays-third-color);
}

.scroll-to-top::before {
  border: 2px solid rgb(var(--royalholidays-third-color), 0.3);
}

.cta-three__inner {
  background: var(--royalholidays-bg-color);
  padding: 45px 130px;
  border-bottom: 5px solid var(--royalholidays-third-color);
}

.page-header {
  background-color: var(--royalholidays-bg-color);
}

.royalholidays-breadcrumb li a:hover {
  background-size: 100% 1px;
  color: var(--royalholidays-forth-color) !important;
}

.rounded-circle {
  border-radius: 30% !important;
}

.about-three {
  padding: 50px 0;
}

.celebrations,
.curated {
  background-color: var(--royalholidays-secondary);
}

.experience-cards {
  padding: 50px 0 0 0;
}

.exp-card {
  background: #ffffff;
  padding: 40px 30px 0px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 0 0 transparent;
  transition: all 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-5px);
}

.exp-premium {
  background: var(--royalholidays-bg-color);
}

.exp-signature {
  background: var(--royalholidays-bg-color);
}

.exp-platinum {
  background: var(--royalholidays-bg-color);
}

.exp-icon img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.exp-title span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.exp-desc {
  min-height: 96px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.exp-trip-box {
  margin-top: 25px;
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 14px;
}

.page-header {
  @media (min-width: 768px) {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-header__title {
  @media (min-width: 768px) {
    font-size: 40px;
  }
}

.royalholidays-section-bg-primary {
  background-color: var(--royalholidays-bg-color) !important;
}

@media (max-width: 425px) {
  .royalholidays-section-bg-primary {
    padding: 1rem !important;
  }
}

/* link css for expriance page */
.explore-link:hover {
  color: var(--royalholidays-base) !important;
}

.royalholidays-text-primary {
  color: var(--royalholidays-base) !important;
}

.royalholidays-titles {
  font-family: "Roboto", serif !important;
}

/* contact us start */
.royalholidays-contact-bg {
  background-color: var(--royalholidays-bg-color) !important;
}

/* contact us end */

.royalholidays-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
  color: #333 !important;
}

.explore-link:hover {
  color: var(--royalholidays-third-color) !important;
}

.sec-title,
.contact-page .sec-title {
  padding-bottom: 0px;
}

.contact-info__icon {
  background-color: var(--royalholidays-forth-color);
}

.contact-info__icon::after {
  border: 1px dashed var(--royalholidays-forth-color);
}

.contact-page {
  padding: 50px 0;
}

.contact-info__item::after {
  display: none;
}

.contact-page {
  padding: 0 0 50px 0;
}

.contact-info__text a:hover {
  color: var(--royalholidays-third-color);
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #a05848;
}

.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid #cfa07f;
}

.travel-guide-modal {
  max-width: 850px;
}

.travel-modal-content {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  border-radius: 10px;
}

.travel-modal-wrapper {
  display: flex;
  min-height: 550px;
}

.btn-close-travel {
  position: absolute;
  top: 8px;
  right: 15px;
  width: 32px;
  height: 32px;
  border: 1px solid #333;
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.btn-close-travel:hover {
  background: #333;
  color: #fff;
  transform: rotate(90deg);
}

.travel-left-section {
  flex: 1;
  background: linear-gradient(135deg,
      var(--royalholidays-third-color) 0%,
      var(--royalholidays-secondary) 100%);
  padding: 21px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.travel-left-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

.travel-image-wrapper {
  position: relative;
  z-index: 1;
  margin: 20px 0;
}

.travel-main-img {
  max-width: 304px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.travel-social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.travel-social-icon:hover {
  transform: translateY(-3px);
}

.travel-social-icon img {
  width: 20px;
  height: 20px;
}

.travel-right-section {
  flex: 1;
  background: #fef8f3;
  padding: 34px 35px;
  overflow-y: auto;
}

.travel-form-subtitle {
  font-size: 1rem;
  font-style: italic;
  color: var(--royalholidays-black);
  margin-bottom: 5px;
  font-weight: 400;
}

.travel-form-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 5px;
}

.travel-sign-up {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}

.travel-form-group {
  margin-bottom: 0px;
}

.travel-label {
  display: block;
  font-size: 0.8rem;
  color: var(--royalholidays-black);
  font-style: italic;
  margin-bottom: 5px;
}

.travel-input {
  width: 100%;
  padding: 11px 14px;
  border: 0;
  background: var(--royalholidays-bg-color);
  font-size: 0.9rem;
  color: #333;
  outline: 0;
  margin-bottom: 2px;
}

.travel-input:focus {
  background: #eddcc7;
}

.travel-input::placeholder {
  color: #999;
}

.travel-divider {
  text-align: center;
  color: #c17a5f;
  font-style: italic;
  margin: 0px 0;
  font-size: 0.9rem;
}

.travel-phone-group {
  gap: 8px;
}

.travel-country-code {
  width: 70px;
  padding: 11px 8px;
  border: 0;
  background: var(--royalholidays-bg-color);
  font-size: 0.9rem;
  text-align: center;
  outline: 0;
}

.travel-phone-input {
  flex: 1;
}

.travel-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--royalholidays-third-color);
  color: var(--royalholidays-black);
  border-radius: 10px;
  border: 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Urbanist;
}

.travel-submit-btn:hover {
  background: #a6614a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 122, 95, 0.3);
}

#success_message,
#contact_message {
  margin: 12px 0;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 768px) {
  .travel-modal-wrapper {
    flex-direction: column;
    flex-direction: column-reverse;
    /* reverse order */
  }

  .travel-guide-modal {
    max-width: 427px;
  }

  .travel-left-section {
    padding: 35px 25px;
  }

  .travel-right-section {
    padding: 35px 25px;
  }

  .tg-ultimate {
    font-size: 2.2rem;
  }

  .tg-year {
    font-size: 2.8rem;
  }

  .travel-main-img {
    max-width: 180px;
  }
}

@media (max-width: 576px) {
  .travel-guide-modal {
    margin: 0.5rem;
  }

  .travel-left-section {
    padding: 30px 20px;
  }

  .travel-right-section {
    padding: 30px 20px;
  }

  .tg-ultimate {
    font-size: 1.8rem;
  }

  .tg-year {
    font-size: 2.2rem;
  }

  .travel-main-img {
    max-width: 150px;
  }

  .btn-close-travel {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}

.travel-modal-wrapper #name-error,
.travel-modal-wrapper #email-error,
.travel-modal-wrapper #number-error {
  font-size: 12px;
}

label {
  display: inline-block !important;
}

/* preloader starts */
/* PRELOADER FULLSCREEN */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  overflow: hidden;
}

/* WRAPPER */
.loader-wrapper {
  position: relative;
  animation: floatBox 4s ease-in-out infinite;
}

/* GLOW BEHIND LOGO */
.glow-bg {
  position: absolute;
  width: 240px;
  height: 240px;
  top: -50px;
  left: -50px;
  border-radius: 50%;
  filter: blur(45px);
  animation: glowColor 5s infinite alternate ease-in-out;
}

/* LOGO */
.loader-logo {
  width: 200px;
  height: auto;
  animation: rotateLogo 4.4s infinite ease-in-out,
    pulseLogo 2.8s infinite ease-in-out;
  transform-origin: center;
}

/* COLOR CHANGING GLOW */
@keyframes glowColor {
  0% {
    background: #fde9e3;
  }

  25% {
    background: #f5dfd9;
  }

  50% {
    background: #e9ccbf;
  }

  75% {
    background: #aac7c8;
  }

  100% {
    background: #d8f4f3;
  }
}

/* LONGER FLOATING MOTION */
@keyframes floatBox {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* SOFT, LONG ROTATION */
@keyframes rotateLogo {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* SLOW SMOOTH PULSE */
@keyframes pulseLogo {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

/* FADE OUT WHEN PAGE LOADS */
.fade-out {
  opacity: 0;
  transition: opacity 0.9s ease-out;
}

/* preloader end */
.main-footer {
  background-color: var(--royalholidays-dark-black);
}

.main-footer--three .main-footer__middle {
  padding-top: 60px;
  padding-bottom: 10px;
}

.cta-three__inner {
  border-radius: unset;
  margin-bottom: unset;
}

.cta-three {
  padding: 0px 0px;
}

/* about us page css start */
.about-section {
  padding: 3rem 1rem;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 221%;
  background: var(--royalholidays-primary);
  z-index: 1;
}

.about-image-wrapper img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 0;
  transform: translateY(-145px);
}

.about-title {
  font-family: "serif";
  font-size: clamp(2rem, 8vw, 64px);
  color: #000;
  margin-bottom: 2rem;
}

.about-card {
  border-radius: 4px;
  background: var(--royalholidays-primary);
  ;
}

.about-text {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-text {
    font-size: .875rem;
  }
}

.signature {
  font-style: italic;
}

@media (max-width: 991px) {
  .about-section {
    padding: 2rem 1rem;
  }

  .about-image-wrapper {
    padding-bottom: 60px;
    margin-bottom: 2rem;
  }

  .about-image-wrapper img {
    transform: translateY(0px);
  }

  .about-card {
    padding: 2rem !important;
  }

  .cta-three__inner {
    padding: 1.5rem;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .about-section {
    padding: 1.5rem 1rem;
  }

  .about-title {
    margin-bottom: 1.5rem;
  }

  .about-image-wrapper {
    padding-bottom: 40px;
    margin-bottom: 1.5rem;
    min-height: 300px;
  }

  .about-image-wrapper::before {
    width: 100%;
  }

  .about-image-wrapper img {
    transform: translateY(0px);
  }

  .about-card {
    padding: 1.5rem !important;
  }

  .about-text {
    line-height: 1.6;
  }

  .cta-three {
    /* margin-top: 1rem; */
    padding: 1rem;
  }

  .cta-three__inner {
    padding: 1rem;
  }

  .cta-three__newsletter__box {
    margin-top: 1rem;
  }

  .royalholidays-btn-booking {
    /* width: 50%; */
    text-align: center;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .about-section {
    padding: 1rem;
  }

  .about-image-wrapper {
    min-height: 250px;
    padding-bottom: 30px;
  }

  .about-card {
    padding: 1rem !important;
  }

  .cta-three__inner {
    padding: 0.75rem;
  }
}

@media (max-width: 991px) {
  .about-image-wrapper::before {
    display: none;
  }
}

@media (min-width: 999px) and (max-width: 1199px) {
  .about-image-wrapper::before {
    height: 220%;
  }

  .about-image-wrapper img {
    transform: translateY(-121px);
  }
}

@media (min-width: 1200px) {
  .about-section {
    padding: 5rem 1rem;
  }

  .about-image-wrapper::before {
    height: 163%;
  }
}

@media (min-width: 1400px) {
  .about-image-wrapper::before {
    height: 122%;
  }

  .about-image-wrapper img {
    transform: translateY(-171px);
  }
}

/* faq page css start */
.faq-title {
  font-family: "Georgia", serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.faq-img {
  max-width: 300px;
}

.faq-box {
  background: var(--royalholidays-primary);
  border-radius: 6px;
}

.faq-item {
  background: transparent !important;
  border: none;
}

.accordion-button {
  background: transparent !important;
  font-size: 18px;
  font-weight: 600;
  box-shadow: none !important;
  padding-left: 0;
}

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

.faq-answer {
  font-style: italic;
  font-size: 17px;
  color: #444;
  padding-left: 0;
}

.accordion-button::after {
  font-size: 14px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .cta-three__content__title {
    font-size: 14px;
    /* margin: 25px; */
  }
}

.royalholidays-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover,
.royalholidays-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--royalholidays-third-color);
}

@media (max-width: 768px) {
  .main-header__right {
    margin-right: 0px;
  }

  .mobile-nav__btn {
    margin-right: 0px;
  }
}

#typewriterText {
  color: var(--royalholidays-dark-black);
  font-weight: 700;
  font-style: italic;
}

.mobile-nav__social a {
  color: var(--royalholidays-black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: var(--royalholidays-third-color);
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    gap: 45px;
  }
}

@media (width: 1024px) {
  .main-header__inner {
    padding: 27.5px 24px;
  }
}

.royalholidays-map {
  padding-right: 2rem;
  padding-right: 2rem;
}

.map-frame {
  width: 100% !important;
  height: 38rem;
  height: 38rem;
  border: 0;
  display: block;
}

/* privacy policy page starts */

.policy-hero-img {
  max-width: 260px;
}

.policy-title {
  font-size: 60px;
  font-weight: 700;
}

.policy-box {
  background-color: var(--royalholidays-bg-color);
  padding: 40px 60px 40px 80px;
  border-radius: 4px;
}

@media (max-width: 425px) {
  .policy-box {
    background-color: #f4edda;
    padding: 20px 30px 20px 40px;
  }
}

/* privacy policy page end */
/* career page css start */
.career-wrapper {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

.career-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 800px;
  height: 650px;
  background: url("../images/career/career-background.svg") no-repeat center/contain;
  z-index: 0;
  pointer-events: none;
}

.careers-section {
  position: relative;
  z-index: 1;
}

.careers-container {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}

.careers-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.circular-image {
  width: 100%;
  max-width: 400px;
  padding: 12px;
}

.circular-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-top: 50px;
}

.careers-content {
  flex: 1;
}

.careers-heading {
  font-family: "Georgia", serif;
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1.875rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.careers-description {
  font-family: "Campton";
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.why-work-section {
  background-color: rgb(255 243 241 / 1);
  padding: 80px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-work-container {
  max-width: 900px;
  text-align: center;
}

.section-heading {
  font-family: "arial";
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-description {
  line-height: 1.8;
  font-size: 18px;
  font-family: "Campton";
}

@media (max-width: 991px) {
  .career-wrapper::before {
    width: 500px;
    height: 500px;
    left: -40px;
    top: -20px;
  }

  .circular-image img {
    margin-top: 0px;
  }

  .careers-container {
    gap: 2.5rem;
  }

  .careers-heading {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
    margin-bottom: 1.5rem;
  }

  .careers-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .career-wrapper {
    padding: 2rem 0;
  }

  .career-wrapper::before {
    width: 600px;
    height: 600px;
    left: -40px;
    top: -20px;
  }

  .careers-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .careers-image-wrapper {
    min-height: 300px;
    order: -1;
  }

  .circular-image {
    max-width: 280px;
    width: 280px;
    height: 280px;
    padding: 12px;
  }

  .circular-image img {
    height: 115%;
    margin-top: unset;
    width: 110%;
  }

  .careers-heading {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .careers-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .career-wrapper {
    padding: 1.5rem 0;
  }

  .career-wrapper::before {
    width: 600px;
    height: 400px;
    left: -90px;
    top: -30px;
  }

  .careers-container {
    gap: 1.5rem;
  }

  .circular-image {
    max-width: 220px;
    width: 220px;
    height: 220px;
  }

  .careers-heading {
    font-size: clamp(1.3rem, 6vw, 2rem);
    letter-spacing: 1px;
    margin-bottom: 0.875rem;
  }

  .careers-description {
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) {
  .mobile-logo {
    display: none;
  }
}

.main-menu .main-menu__list>li>a {
  letter-spacing: 0.1em;
}

.team-two__item__image img {
  border-radius: unset;
}

.hero-three {
  padding: 50px 0 50px;
}

.team-two__item__image {
  margin-bottom: 2.25rem;
}

.team-two__item__text {
  font-size: 17px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: var(--royalholidays-black);
  text-transform: unset;
  text-align: left;
}

.team-two {
  margin-bottom: 20px;
}

.sec-title__title {
  font-family: Urbanist;
  margin-bottom: 2rem;
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
}

.about-three .gutter-y-60 {
  --bs-gutter-y: 30px;
}

.text-primary-500 {
  --tw-text-opacity: 1;
  color: var(--royalholidays-third-color);
  font-style: italic;
}

.curated-offerings .hero .sec-title__title,
.celebration .hero .sec-title__title,
.experiences .hero .sec-title__title,
.policy-hero-section .policy-title,
.about-section .about-title,
.faq .faq-title {
  font-family: Playfair Display;
  font-weight: 500;
  line-height: 1.0;
  font-size: 45px;
  padding-bottom: 10px;
  color: var(--royalholidays-dark-black);
}

.curated .sec-title__title,
.celebrations .sec-title__title,
.expr .sec-title__title,
.index .sec-title__title {
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
}

.curated .sec-title__text,
.celebrations .sec-title__text,
.expr .sec-title__text {
  font-family: "Urbanist";
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 1;
}

.expr .sec-title {
  background-color: var(--royalholidays-bg-color);
  padding: 5vh 5vh;
}

@media (min-width: 768px) {

  .curated-offerings .hero .sec-title__title,
  .celebration .hero .sec-title__title,
  .experiences .hero .sec-title__title,
  .policy-hero-section .policy-title,
  .faq .faq-title {
    font-size: 90px;
  }

  .curated-offerings .hero .sec-title__text,
  .celebration .hero .sec-title__text,
  .experiences .hero .sec-title__text {
    letter-spacing: 0.025em;
    font-size: 17px;
    line-height: 28px;
  }

  .curated .sec-title__title,
  .celebrations .sec-title__title,
  .expr .sec-title__title,
  .index .sec-title__title {
    font-size: 28px;
    line-height: 32px;
  }

  .curated .sec-title__text,
  .celebrations .sec-title__text,
  .expr .sec-title__text {
    letter-spacing: 0.025em;
    font-size: 17px;
    line-height: 25px;
  }

  .faq .faq-title {
    letter-spacing: 0;
  }
}

@media (min-width: 1025px) {

  .curated .sec-title__text,
  .celebrations .sec-title__text {
    padding-right: 110px;
  }

  .curated .revs .sec-title,
  .celebrations .revs .sec-title {
    padding-left: 100px;
  }

  .celebrations .revs .sec-title {
    padding-left: 150px;
  }

  .curated .revs .sec-title__text,
  .celebrations .revs .sec-title__text {
    padding-right: 0px !important;
  }

  .about-section .about-title {
    font-size: 90px;
    padding-left: 150px;
    letter-spacing: 0;
  }
}

.gm-style .place-card {
  display: none !important;
}

.blog-three__item__thumb {
  border-radius: 0px 0px;
}

/* cta style */
.cta-three__content__title {
  font-weight: 100;
  font-size: 20px;
  line-height: 130%;
  text-transform: capitalize;
  color: unset;
  letter-spacing: .1em;
  text-transform: capitalize;
}

.cta-three {
  padding: 5px 0;
  background: #fdeeee;
  /* optional – matches your screenshot */
}

.cta-three .col-lg-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Vertical Lines */
.middle-col {
  border-left: 1px solid var(--royalholidays-black);
  border-right: 1px solid var(--royalholidays-black);
  padding: 20px;
}

/* Center social icons */
.main-footer__social a {
  margin: 0 10px;
  font-size: 22px;
  color: var(--royalholidays-third-color);
}

.main-footer__social a:hover {
  color: white;
}

/* Title styling */
.middle-col p {
  margin-bottom: 15px;
  text-align: center;
  text-transform: capitalize;
  font-size: 17px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .middle-col {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #d0c0c0;
    border-bottom: 1px solid #d0c0c0;
    padding: 20px 0;
    margin: 20px 0;
  }
}

.cta-three__inner {
  border: unset;
  border-radius: unset;
}

.blog-three__item__thumb img {
  border-radius: 0px 0px;
}

.blog-three__item__title {
  text-transform: unset;
  font-style: italic;
  font-weight: 100;
}

@media (min-width: 768px) {
  .blog-three__item__title {
    letter-spacing: .025em;
    font-size: 17px;
    line-height: 25px;
    text-align: center;
  }
}

.blog-three__item__title {
  text-align: center;
}

.review-title {
  text-align: center;
}

.blog-three__item {
  background: var(--royalholidays-bg-color);
}

.team-two__item__title a {
  color: var(--royalholidays-black);
  text-decoration: underline;
}

.team-two__item__title a {
  background: unset;
  transition: unset;
}

.blog-three__item__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: var(--royalholidays-bg-color);
}

.contact-page__form #name-error,
.contact-page__form #email-error,
.contact-page__form #phone-error,
.contact-page__form #number-error,
.contact-page__form #subject-error,
.contact-page__form #message-error {
  font-size: 13px;
  margin-bottom: 0;
}

.form-one__group {
    grid-gap: 5px 27px;
  background: var(--royalholidays-bg-color);
}

.team-two__item__title a {
  color: var(--royalholidays-black);
  text-decoration: underline;
}

.team-two__item__title a {
  background: unset;
  transition: unset;
  grid-gap: 5px 27px;
}

.main-footer__social a:hover {
  background-color: var(--royalholidays-base);
  padding: 15px;
}

.contact-page .sec-title__title {
  letter-spacing: unset;
}

.iti__country-container {
  height: 50px;
}

/* .blob-img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;

  -webkit-mask: url("data:image/svg+xml,%3Csvg id='visual' viewBox='0 0 645 600' width='645' height='600' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1'%3E%3Cg transform='translate(305.70037065092254 287.27453367220835)'%3E%3Cpath d='M123.9 -138.3C160.9 -116.7 191.2 -77.9 198.9 -35C206.6 8 191.6 55 165.5 91.1C139.3 127.2 102 152.4 60.1 169.5C18.2 186.7 -28.2 195.8 -65.1 181.3C-102 166.7 -129.4 128.6 -146.6 89.2C-163.9 49.9 -171.1 9.2 -165.4 -30.3C-159.8 -69.7 -141.3 -108 -111.6 -130.9C-81.8 -153.8 -40.9 -161.3 1.3 -162.8C43.5 -164.3 87 -159.9 123.9 -138.3' fill='%23CA8E75'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;

  mask: url("data:image/svg+xml,%3Csvg id='visual' viewBox='0 0 645 600' width='645' height='600' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1'%3E%3Cg transform='translate(305.70037065092254 287.27453367220835)'%3E%3Cpath d='M123.9 -138.3C160.9 -116.7 191.2 -77.9 198.9 -35C206.6 8 191.6 55 165.5 91.1C139.3 127.2 102 152.4 60.1 169.5C18.2 186.7 -28.2 195.8 -65.1 181.3C-102 166.7 -129.4 128.6 -146.6 89.2C-163.9 49.9 -171.1 9.2 -165.4 -30.3C-159.8 -69.7 -141.3 -108 -111.6 -130.9C-81.8 -153.8 -40.9 -161.3 1.3 -162.8C43.5 -164.3 87 -159.9 123.9 -138.3' fill='%23CA8E75'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;

  -webkit-mask-type: alpha;
  mask-type: alpha;
} */

/* Parent wrapper controlling size */


/* .mask-blob-2 {
  -webkit-mask: url("/assets/masks/blob (1).svg") center/contain no-repeat;
  mask: url("/assets/masks/blob (1).svg") center/contain no-repeat;
}

.mask-blob-3 {
  -webkit-mask: url("/assets/masks/blob (2).svg") center/contain no-repeat;
  mask: url("/assets/masks/blob (2).svg") center/contain no-repeat;
}

.mask-blob-4 {
  -webkit-mask: url("/assets/masks/blob (3).svg") center/contain no-repeat;
  mask: url("/assets/masks/blob (3).svg") center/contain no-repeat;
}

.mask-blob-5 {
  -webkit-mask: url("/assets/masks/blob (4).svg") center/contain no-repeat;
  mask: url("/assets/masks/blob (4).svg") center/contain no-repeat;

} */

.blob-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1.3;
  margin: 0 auto;
}

.blob-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.blob-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M256 -224C308 -188 339 -128 339 -70C339 -12 308 44 272 92C236 140 195 180 143 193C92 206 30 193 -23 166C-77 139 -122 98 -148 48C-174 -2 -181 -62 -165 -118C-149 -175 -110 -227 -58 -254C-6 -281 56 -284 109 -266C162 -247 205 -206 256 -224Z' transform='translate(200 200)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M256 -224C308 -188 339 -128 339 -70C339 -12 308 44 272 92C236 140 195 180 143 193C92 206 30 193 -23 166C-77 139 -122 98 -148 48C-174 -2 -181 -62 -165 -118C-149 -175 -110 -227 -58 -254C-6 -281 56 -284 109 -266C162 -247 205 -206 256 -224Z' transform='translate(200 200)'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blob-wrapper {
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .blob-wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}

.contact-page .sec-title__title {
  letter-spacing: unset;
}

.iti__country-container {
  height: 50px;
}

.about-three__image__item {
  -webkit-mask: unset;
  mask: unset;
}

.trip-book-form #first_name-error,
.trip-book-form #last_name-error,
.trip-book-form #date-error,
.trip-book-form #email-error,
.trip-book-form #phone-error,
.trip-book-form #city-error,
.trip-book-form #visit-error,
.trip-book-form #destination-error,
.trip-book-form #NumberOfDays-error,
.trip-book-form #departure-error,
.trip-book-form #flexibleDates-error,
.trip-book-form #budget-error,
.trip-book-form #aboutus-error,
.trip-book-form #message-error,
.contact-page__form .text-contact {
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  ;
  font-size: 14px;
}

.exp-heading {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 30px;
  line-height: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  color: var(--royalholidays-dark-black);

}

.fix-align-icon {
  margin-top: 40px;
}

.contact-info__item {
  padding: 5px 15px 20px;
}

@media (max-width:768px) {
  .royalholidays-map {
    padding-right: 0rem;
    padding-bottom: 2rem;
    /* padding-right: 2rem; */
  }

  .exp-title {
    font-size: 16px;
  }
}
.reviews-intro {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.review-card {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid var(--royalholidays-secondary);
    background-color: var(--royalholidays-bg-color);
    height: 100%;
}

.review-stars i {
    color: var(--royalholidays-third-color);
    font-size: 15px;
    margin-right: 3px;
}

.review-text {
    margin: 16px 0 20px;
    line-height: 1.7;
    color: #444;
}

.review-author strong {
    display: block;
    font-size: 16px;
}

.review-author span {
    font-size: 14px;
    color: #777;
}
