@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");

p {
  color: #37353e;
}
li {
  color: #37353e !important;
}

.p-light {
  color: #fff6f6 !important;
}

.cs-logo img {
  width: 100px;
}

.cs-logo {
  display: flex;
  align-items: center;
}

.cs-logo .company-name {
  display: flex;
  flex-direction: column;
}

.cs-logo span {
  font-size: 24px;
  font-weight: 800;
  color: var(--cs-color-primary);
}

.cs-logo .company-name span:nth-child(2) {
  font-size: 15px;
  font-weight: 500;
  font-family: "Courgette", sans-serif;
}

.hero-accent {
  color: #f7c85c;
  font-family: "Courgette", cursive;
  font-weight: 400;
}

.landing-page-hero .slide-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 190px);
  justify-content: center;
  padding: 140px 0 40px;
}

/* Blog listing filter + pagination */
.blog-filter {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.blog-filter-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-filter-form label {
  font-weight: 600;
  color: #111;
}

.blog-filter-form select {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 220px;
  background: #fff;
}

.blog-grid {
  row-gap: 32px;
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover .blog-item {
  transform: translateY(-4px);
}

.blog-item {
  transition: transform 0.2s ease;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.blog-pagination a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
}

.blog-pagination a.active,
.blog-pagination a:hover {
  background: #f7c85c;
  border-color: #f7c85c;
  color: #111;
}

/* Lighter highlight for section title underline */
.wpo-section-title h2 span::before,
.wpo-section-title-s2 h2 span::before {
  background: #fbe3a0;
}

/* Blog single adjustments */
.blog-single-page #header .wpo-site-header {
  background: #1c1817;
}

.blog-single-page .wpo-site-header .navbar-nav > li > a {
  color: #fff;
}

.blog-single-page .wpo-site-header .navbar-nav > li > a:hover {
  color: #f7c85c;
}

.blog-single-content .col-lg-8 {
  max-width: 70%;
}

.blog-single-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-single-date {
  color: #777;
  margin-bottom: 18px;
}

/* Blog cards consistency */
.blog-item .image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-item .image {
  border-radius: 12px;
  overflow: hidden;
}

.blog-item .blog-content h2 {
  min-height: 60px;
}

.wpo-hero-slider .slide-title h1,
.wpo-hero-slider-s2 .slide-title h1 {
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.wpo-section-title h2,
.wpo-section-title-s2 h2,
.wpo-section-title-tp h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.offerings-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  box-sizing: border-box;
  background: #1c1817 url(../images/noice.png);
  background-repeat: repeat;
  color: #f5f5f5;
  overflow: visible;
  opacity: 1;
  transform: none;
}

.offerings-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.offerings-left {
  position: relative;
  height: auto;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.offerings-left-inner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.offerings-left-inner small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #f7c85c;
}

.offerings-left-inner h2 {
  font-size: 42px;
  margin: 10px 0 18px;
  color: #ffffff;
}

.offerings-left-inner p {
  color: #c9c9c9;
  line-height: 1.7;
}

.offerings-right {
  height: calc(100vh - 160px);
  width: 100%;
  overflow: hidden;
  background: transparent;
  scroll-snap-type: y mandatory;
}

.offerings-scroll {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  min-height: 30vh;
  padding: 36px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    transform 0.7s ease,
    opacity 0.7s ease;
  scroll-snap-align: center;
}

.service-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-media {
  width: 230px;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1b1c;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  width: calc(100% - 300px);
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #ffffff;
}

.service-item p {
  color: #c9c9c9;
  max-width: 520px;
}

.landing-page-heading-cs {
  font-size: clamp(38px, 4.8vw, 58px);
  color: white;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.landing-page-hero p {
  font-size: 20px;
  color: white;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.landing-page-hero .slide-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.destinations-section-cs .image {
  width: 100%;
  height: 250px;
}

.destinations-section-cs .image img {
  width: 100%;
  height: 100%;
}

.destinations-section-cs .card-single .text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.destinations-section-cs .card-single .text p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.destinations-section-cs .card-single .destination-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.destinations-section-cs .card-single .destination-meta .meta-item {
  font-size: 12px;
  background: #f5e3a2;
  color: #1a1a1a;
  padding: 4px 10px;
  border-radius: 999px;
}

.wpo-service-section-s3 .row > [class*="col-"] {
  display: flex;
}

.wpo-service-section-s3 .wpo-service-item {
  width: 100%;
  height: 100%;
}

.wpo-service-section-s3 {
  background: #fdf7e5;
}

.wpo-service-section-s3 .row {
  row-gap: 30px;
}

/* Footer refinements */
.wpo-site-footer .contact-ft ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.wpo-site-footer .contact-ft ul li {
  color: rgba(255, 255, 255, 0.6) !important;
}

.wpo-site-footer .wpo-lower-footer ul.copyright li,
.wpo-site-footer-s2 .wpo-lower-footer ul.copyright li {
  color: #fff !important;
}

.wpo-site-footer .contact-ft ul li a:hover {
  color: #f7c85c;
}

.wpo-site-footer .widget-title h3 {
  text-transform: none;
  letter-spacing: 0.5px;
}

.wpo-site-footer .wpo-upper-footer .row {
  align-items: flex-start;
}

.wpo-site-footer .social ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #f7c85c;
}

.wpo-site-footer .contact-ft i {
  color: #f7c85c;
}

.wpo-site-footer .contact-ft ul li {
  color: #f1f5f9;
}

.wpo-site-footer .wpo-lower-footer {
  position: relative;
  margin-top: 24px;
  padding-top: 24px;
}

.wpo-site-footer .wpo-lower-footer::before {
  display: none;
}

.wpo-site-footer .wpo-lower-footer {
  border-top: none !important;
}

/* Remove green accents */
:root {
  --bs-success: #f7c85c;
  --bs-success-rgb: 247, 200, 92;
}

.btn-success,
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background-color: #f7c85c !important;
  border-color: #f7c85c !important;
  color: #111 !important;
}

.alert-success,
.list-group-item-success {
  background-color: rgba(247, 200, 92, 0.18) !important;
  border-color: rgba(247, 200, 92, 0.35) !important;
  color: #1a1a1a !important;
}

.link-success {
  color: #f7c85c !important;
}

.text-success {
  color: #f7c85c !important;
}

.bg-success {
  background-color: #f7c85c !important;
}

.border-success {
  border-color: #f7c85c !important;
}

.progress.green .progress-left .progress-bar {
  border-color: #f7c85c;
}

.wpo-site-footer .fi,
.wpo-site-footer .ti,
.wpo-site-footer .contact-ft i {
  color: #f7c85c !important;
}

.wpo-site-footer .contact-ft li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wpo-site-footer .contact-ft .material-symbols-outlined,
.wpo-site-footer .footer-social .material-symbols-outlined {
  font-size: 20px;
  color: #f7c85c;
}

.wpo-site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 200, 92, 0.35);
  border-radius: 50%;
}

/* Hero slide content: remove max-width constraint */
.wpo-hero-slider .slide-content,
.wpo-hero-slider-s2 .slide-content {
  max-width: none !important;
}

/* Footer CTA banner */
.footer-cta {
  padding: 60px 0 20px;
}

.footer-cta-card {
  background: #f6ead6;
  border-radius: 28px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.footer-cta-content h2 {
  margin-bottom: 12px;
}

.footer-cta-content p {
  max-width: 520px;
  margin-bottom: 20px;
}

.footer-cta-image img {
  width: 240px;
  height: auto;
  display: block;
}

/* Footer headings + link arrows */
.wpo-site-footer .widget-title h3 {
  font-size: 16px;
  color: #f7c85c;
  letter-spacing: 0.2px;
}

.wpo-site-footer .contact-ft a,
.wpo-site-footer .contact-ft li a {
  color: #ffffff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.wpo-site-footer .contact-ft a::after,
.wpo-site-footer .contact-ft li a::after {
  content: "↗";
  display: inline-block;
  transform: rotate(-45deg);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: #f7c85c;
  font-size: 12px;
}

.wpo-site-footer .contact-ft a:hover,
.wpo-site-footer .contact-ft li a:hover {
  color: #ffe4a3;
}

.wpo-site-footer .contact-ft a:hover::after,
.wpo-site-footer .contact-ft li a:hover::after {
  transform: rotate(0deg);
  color: #ffe4a3;
}

/* Modern footer layout (reference-based) */
.footer-modern {
  background: #0f1300;
  padding: 0;
  position: relative;
}

.footer-modern::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -200px;
  height: 240px;
  background: linear-gradient(
    180deg,
    #f2f2f2 0%,
    rgba(242, 242, 242, 0.65) 45%,
    rgba(242, 242, 242, 0) 100%
  );
  pointer-events: none;
}

.footer-modern .footer-shell {
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.footer-modern .footer-hero {
  background: url("../images/footer-banner-mount-kenya-2.webp") center
    center/cover no-repeat;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 24px 70px;
  position: relative;
}

.footer-modern .footer-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  height: 220px;
  background: linear-gradient(
    180deg,
    #f2f2f2 0%,
    rgba(242, 242, 242, 0.55) 55%,
    rgba(242, 242, 242, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.footer-modern .footer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.35) 40%,
    rgba(18, 24, 0, 0.95) 100%
  );
}

.footer-modern .footer-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.footer-modern .footer-hero-content h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-modern .footer-hero-content p {
  margin-bottom: 16px;
  color: #3f3f3f;
}

.footer-modern .footer-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 18px 10px 20px;
  border: 1px solid #e5e5e5;
  color: #151515;
  font-weight: 600;
}

.footer-modern .footer-hero-btn .material-symbols-outlined {
  background: #111;
  color: #fff;
  border-radius: 50%;
  padding: 6px;
  font-size: 16px;
}

.footer-modern .footer-main {
  background: #131700;
  color: #e6e6e6;
  padding: 32px 60px 24px;
  position: relative;
}

.footer-modern .footer-main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -170px;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgba(19, 23, 0, 0) 0%,
    rgba(19, 23, 0, 0.7) 55%,
    rgba(19, 23, 0, 1) 100%
  );
  pointer-events: none;
}

.footer-modern .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: 80%;
  margin: 0 auto;
  padding: 50px;
}

.footer-modern .footer-block h3 {
  font-size: 13px;
  color: #f7c85c;
  margin-bottom: 14px;
  text-transform: none;
}

.footer-modern .footer-block p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-modern .footer-contact-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-modern .footer-contact-list .material-symbols-outlined {
  color: #f7c85c;
  font-size: 18px;
}

.footer-modern .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-modern .footer-links a {
  color: #ffffff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.footer-modern .footer-links a::after {
  content: "↑";
  display: inline-block;
  transform: rotate(45deg);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: #f7c85c;
  font-size: 10px;
}

.footer-modern .footer-links a:hover {
  color: #ffe4a3;
}

.footer-modern .footer-links a:hover::after {
  transform: rotate(0deg);
  color: #ffe4a3;
}

.footer-modern .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-modern .footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(247, 200, 92, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7c85c;
}

.footer-modern .footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-modern .footer-meta a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-modern .footer-meta a:hover {
  color: #f7c85c;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p + p {
  margin-top: 14px;
}

/* Footer column dividers */
.wpo-site-footer .wpo-upper-footer .footer-row {
  align-items: stretch;
}

.wpo-site-footer .wpo-upper-footer .footer-col {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wpo-site-footer .wpo-upper-footer .footer-divider {
  padding-left: 0;
}

.wpo-site-footer .wpo-upper-footer .footer-divider::before {
  display: none;
}

/* Remove built-in footer vertical separators */
.wpo-site-footer .wpo-upper-footer .col:nth-child(2) .widget::before,
.wpo-site-footer .wpo-upper-footer .col:nth-child(3) .widget::before,
.wpo-site-footer-s2 .wpo-upper-footer .col:nth-child(2) .widget::before,
.wpo-site-footer-s2 .wpo-upper-footer .col:nth-child(3) .widget::before {
  display: none !important;
}

.wpo-site-footer .wpo-upper-footer .col:nth-child(2) .widget::after,
.wpo-site-footer .wpo-upper-footer .col:nth-child(3) .widget::after,
.wpo-site-footer-s2 .wpo-upper-footer .col:nth-child(2) .widget::after,
.wpo-site-footer-s2 .wpo-upper-footer .col:nth-child(3) .widget::after {
  display: none !important;
}

/* Form UI */
.modern-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: #171717;
}

.modern-form .form-control {
  border: 1px solid #dfe3ea;
  background: #fbfbfa;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: none;
  color: #171717;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.modern-form .form-control:focus {
  border-color: rgba(247, 200, 92, 0.95);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(247, 200, 92, 0.16);
  outline: none;
}

.modern-form textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.modern-form .theme-btn {
  width: auto;
  min-width: 180px;
  padding: 14px 28px;
  background: #171717;
  border-color: #171717;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.modern-form .theme-btn:hover {
  background: #0f0f0f;
  border-color: #0f0f0f;
}

.form-panel {
  background: #ffffff;
  border: none;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
}

.contact-section-modern {
  background:
    radial-gradient(
      circle at top left,
      rgba(247, 200, 92, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
}

.contact-intro {
  margin-bottom: 34px;
}

.contact-intro h2 {
  margin-bottom: 16px;
}

.contact-intro p {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-modern {
  position: relative;
  overflow: hidden;
}

.contact-form-modern::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(247, 200, 92, 0.14) 0%,
    rgba(247, 200, 92, 0) 72%
  );
  pointer-events: none;
}

.contact-form-grid {
  row-gap: 2px;
}

.contact-form-modern .form-group {
  margin-bottom: 18px;
}

.contact-form-modern .form-control::placeholder {
  color: #9ca3af;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

.site-form-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.site-form-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-form-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.site-form-loader-inner p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #171717;
}

/* HTML: <div class="loader"></div> */
.loader {
  display: inline-grid;
  width: 90px;
  aspect-ratio: 1;
  animation: l3-0 5s steps(10) infinite;
}

.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
}

.loader:before {
  clip-path: polygon(
    100% 50%,
    90.45% 79.39%,
    65.45% 97.55%,
    34.55% 97.55%,
    9.55% 79.39%,
    0% 50%,
    9.55% 20.61%,
    34.55% 2.45%,
    65.45% 2.45%,
    90.45% 20.61%,
    100% 50%,
    85.6% 24.14%,
    63.6% 8.15%,
    36.4% 8.15%,
    14.4% 24.14%,
    6% 50%,
    14.4% 75.86%,
    36.4% 91.85%,
    63.6% 91.85%,
    85.6% 75.86%,
    94% 50%,
    85.6% 24.14%
  );
  background: #574951;
}

.loader:after {
  background: #83988e;
  clip-path: polygon(
    100% 50%,
    65.45% 97.55%,
    9.55% 79.39%,
    9.55% 20.61%,
    65.45% 2.45%
  );
  margin: 27%;
  translate: 46% 0;
  transform-origin: right;
  animation: l3-1 0.5s linear infinite;
}

@keyframes l3-0 {
  to {
    rotate: 1turn;
  }
}

@keyframes l3-1 {
  0% {
    rotate: 18deg;
  }

  to {
    rotate: -18deg;
  }
}

/* Destination card UI */
.destinations-grid .destination-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.destinations-grid .destination-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #1f2937;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.destinations-grid .destination-meta .meta-item .material-symbols-outlined {
  font-size: 18px;
  color: #111827;
}

.destinations-grid .theme-btn {
  width: auto;
  text-align: center;
}

.destinations-section-cs .card-single .destination-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.destinations-section-cs .card-single .destination-meta .meta-item {
  background: transparent;
  border: 0;
  color: #1f2937;
  padding: 0;
}

.destination-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #f7c85c;
  color: #111827;
  font-size: 14px;
}

.destination-cta:hover {
  background: #f7c85c;
  color: #111827;
}

.destinations-section-cs .destination-cta {
  margin-top: 6px;
}

.wpo-service-section-s3 .wpo-service-icon span {
  background: #fff6d6;
}

.wpo-service-section .wpo-service-wrap .wpo-service-item .wpo-service-icon span,
.wpo-service-section-s2
  .wpo-service-wrap
  .wpo-service-item
  .wpo-service-icon
  span,
.wpo-service-section-s3
  .wpo-service-wrap
  .wpo-service-item
  .wpo-service-icon
  span {
  border: 0;
}

.wpo-service-section
  .wpo-service-wrap
  .wpo-service-item
  .wpo-service-icon
  span:before,
.wpo-service-section-s2
  .wpo-service-wrap
  .wpo-service-item
  .wpo-service-icon
  span:before,
.wpo-service-section-s3
  .wpo-service-wrap
  .wpo-service-item
  .wpo-service-icon
  span:before {
  background: transparent;
}

.wpo-testimonial-section-s2 .testimonial-left-item .image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f7c85c;
}

.wpo-testimonial-section-s2 .testimonial-left-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.wpo-testimonial-section .wpo-testimonial-wrap .testimonial-text p,
.wpo-testimonial-section-s2 .wpo-testimonial-wrap .testimonial-text p {
  text-decoration: none;
}

.wpo-testimonial-section-s2 {
  background: #ffffff;
}

.wpo-testimonial-section-s2::before {
  display: none;
}

.wpo-faq-section .accordion-button {
  text-transform: none !important;
}

.about-banner {
  background: url(../images/banner-giraffe-near-resort.webp) no-repeat center
    top/cover;
}

.services-banner {
  background: url(../images/banner-wildebeasts-in-savannah.webp) no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.destinations-banner {
  background: url(../images/banner-hot-air-baloon.webp) no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.wpo-page-title {
  min-height: 600px;
}

.about-page .wpo-page-title .wpo-breadcumb-wrap p {
  color: #ffffff;
}

.services-page .wpo-page-title .wpo-breadcumb-wrap p {
  color: #ffffff;
}

.service-detail .service-detail-row {
  margin-bottom: 50px;
}

.service-detail .service-detail-row:last-child {
  margin-bottom: 0;
}

.service-detail .service-detail-row.reverse {
  flex-direction: row-reverse;
}

.services-page .wpo-about-title span {
  display: inline-block;
  margin-bottom: 10px;
}

.services-page .wpo-about-title h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.services-page .wpo-section-title {
  margin-bottom: 24px;
}

.services-page .wpo-section-title p {
  margin-top: 12px;
}

.services-page .wpo-service-item {
  height: 100%;
}

.services-page .services-overview .row > [class*="col-"] {
  display: flex;
}

.services-page .service-compare .values-list {
  gap: 12px;
}

.services-page .service-compare {
  background: #1c1817 url(../images/noice.png);
  color: #ffffff;
}

.services-page .service-compare .wpo-section-title h2,
.services-page .service-compare .wpo-section-title p,
.services-page .service-compare .compare-card h3,
.services-page .service-compare .compare-card p {
  color: #ffffff;
}

.services-page .service-compare-cards {
  row-gap: 24px;
}

.services-page .compare-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.services-page .compare-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-page .compare-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.services-page .compare-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.services-page .compare-card p {
  margin: 0;
}

.services-page .wpo-faq-section .accordion-button {
  text-transform: none !important;
}

.services-page .wpo-faq-section .accordion-item {
  margin-bottom: 12px;
}

.services-page .wpo-faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.services-page .wpo-faq-section .wpo-faq-wrapper {
  display: flex;
  justify-content: center;
}

.services-page .wpo-faq-section .wpo-faq-wrapper .row {
  width: 100%;
  max-width: 900px;
}

.services-page .wpo-faq-section .col-lg-5 {
  display: none;
}

.services-page .wpo-faq-section .col-lg-7 {
  width: 100%;
}

.services-page .wpo-faq-left-img-wrap {
  padding-right: 40px;
}

.services-page .wpo-page-title .wpo-breadcumb-wrap {
  text-align: center;
}

.services-page .wpo-page-title .wpo-breadcumb-wrap h1 {
  color: #ffffff;
}

.services-page .services-overview .wpo-section-title {
  text-align: center;
}

.services-page .service-compare .wpo-section-title {
  text-align: center;
}

.services-page .booking-process .process-title {
  text-align: left;
}

.services-page .cta-split .cta-left {
  text-align: left;
}

.services-page .services-overview .wpo-service-icon span {
  background: #fff6d6;
}

.services-page .services-overview .wpo-service-icon span:before {
  background: transparent;
}

.services-page .services-overview .wpo-service-icon span {
  border: 0;
}

.services-page .services-overview .service-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #1c1817;
  border: 1px solid #1c1817;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
}

.services-page .services-overview .service-cta:hover {
  color: #f7c85c;
  border-color: #f7c85c;
}

.services-page .service-detail .service-cta {
  display: inline-block;
  margin-top: 12px;
}

.services-page .service-detail .wpo-about-img {
  width: 100%;
}

.services-page .service-detail .wpo-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.services-page .service-detail .wpo-about-text {
  padding-left: 20px;
}

.services-page .service-detail .service-detail-row.reverse .wpo-about-text {
  padding-left: 0;
  padding-right: 20px;
}

.services-page .services-overview .wpo-section-title small {
  background: #fff2c4;
  color: #1c1817;
}

.services-page .wpo-page-title .wpo-breadcumb-wrap {
  opacity: 1;
}

.destinations-page .wpo-page-title .wpo-breadcumb-wrap {
  opacity: 1;
}

.destinations-page .wpo-page-title .wpo-breadcumb-wrap p {
  color: #ffffff;
}

.destinations-intro .wpo-section-title {
  margin-bottom: 0;
  text-align: left;
}

.destinations-intro p {
  margin-bottom: 0;
}

.destination-card {
  border: 0;
  background: transparent;
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.destination-content {
  padding-top: 16px;
  max-width: none;
}

.destination-card {
  width: 100%;
}

.destinations-grid .row {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-items: stretch;
}

.destination-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.destination-meta {
  display: flex;
  gap: 12px;
  font-weight: 600;
  margin-top: 10px;
  flex-wrap: wrap;
}

.destination-card .theme-btn {
  margin-top: 12px;
}

.destination-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #1c1817;
  padding: 6px 10px;
  background: #fff2c4;
  border-radius: 999px;
}

.destination-meta .material-symbols-outlined {
  font-size: 16px;
  line-height: 1;
  color: #1c1817;
}

.destinations-grid .row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
}

.destinations-grid .row > [class*="col-"] {
  width: 100%;
  max-width: none;
  padding: 0;
}

.destinations-page .wpo-faq-section .wpo-faq-wrapper {
  display: flex;
  justify-content: center;
}

.destinations-page .wpo-faq-section .wpo-faq-wrapper .row {
  width: 100%;
  max-width: 900px;
}

.destinations-page .wpo-faq-section .col-lg-5 {
  display: none;
}

.destinations-page .wpo-faq-section .col-lg-7 {
  width: 100%;
}

.destinations-page .wpo-faq-section .accordion-button {
  text-transform: none !important;
}

.destinations-page .wpo-testimonial-section-s2::before {
  display: none;
}

.destinations-page .wpo-testimonial-section-s2 {
  background: #ffffff;
}

.services-page .services-overview .wpo-service-item,
.services-page .service-detail .service-detail-row,
.services-page .service-compare .values-list li,
.services-page .booking-process .process-title > *,
.services-page .booking-process .process-list .wpo-service-item,
.services-page .wpo-faq-section .accordion-item,
.services-page .cta-split .cta-left > *,
.services-page .cta-split .cta-image img {
  opacity: 0;
}

.about-page .wpo-about-title {
  margin-bottom: 16px;
}

.about-page .wpo-about-title h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  font-weight: 600;
}

.about-page .wpo-about-title h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.cta-split .container {
  background: #f45b26 url(../images/noice.png);
  border-radius: 24px;
}

.cta-split .cta-left {
  text-align: left;
  padding: 50px;
}

.cta-split .cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
}

.cta-split .cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page .wpo-about-area .wpo-about-img,
.about-page .wpo-about-area .wpo-about-text > *,
.about-page .vision-mission-section .vision-mission-item,
.about-page .values-section .wpo-about-text > *,
.about-page .values-section .wpo-about-img,
.about-page .wpo-service-section-s3 .wpo-service-item,
.about-page .booking-process .process-title > *,
.about-page .booking-process .process-list .wpo-service-item,
.about-page .cta-split .cta-left > *,
.about-page .cta-split .cta-image img {
  opacity: 0;
}

.about-page .wpo-about-title span {
  display: inline-block;
  margin-bottom: 10px;
}

.about-page .wpo-section-title {
  margin-bottom: 24px;
}

.about-page .wpo-section-title p {
  margin-top: 12px;
}

.about-page .wpo-about-text h5 {
  margin: 0 0 16px;
}

.about-page .wpo-about-text p {
  margin: 0 0 16px;
}

.about-page .section-padding {
  padding: 80px 0;
}

.about-page .section-padding.pt-0 {
  padding-top: 40px;
}

.vision-mission-section .row {
  row-gap: 30px;
}

.vision-mission-section {
  background: #1c1817 url(../images/noice.png);
  padding: 80px 0;
}

.values-section .wpo-about-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .services-page .service-detail {
    padding-top: 70px;
  }

  .services-page .service-detail .service-detail-row,
  .services-page .service-detail .service-detail-row.reverse {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column !important;
    row-gap: 18px;
    margin-bottom: 34px;
  }

  .services-page .service-detail .service-detail-row.reverse > div:first-child {
    order: 2;
  }

  .services-page .service-detail .service-detail-row.reverse > div:last-child {
    order: 1;
  }

  .services-page .service-detail .service-detail-row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .services-page .service-detail .wpo-about-text,
  .services-page .service-detail .service-detail-row.reverse .wpo-about-text {
    padding: 0;
  }

  .services-page .service-detail .wpo-about-img {
    max-width: 100%;
  }

  .services-page .service-detail .wpo-about-img img {
    height: 240px;
    border-radius: 14px;
  }

  .services-page .service-detail .wpo-about-title {
    margin-bottom: 10px;
  }

  .services-page .service-detail .wpo-about-title h3 {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .services-page .service-detail .wpo-about-text p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.65;
  }

  .services-page .service-detail .theme-btn {
    margin-top: 6px;
  }
}

@media (max-width: 575px) {
  .services-page .service-detail .service-detail-row,
  .services-page .service-detail .service-detail-row.reverse {
    margin-bottom: 28px;
    row-gap: 14px;
  }

  .services-page .service-detail .wpo-about-img img {
    height: 180px;
    border-radius: 12px;
  }

  .services-page .service-detail .wpo-about-title h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .services-page .service-detail .wpo-about-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .services-page .service-detail .theme-btn {
    width: auto;
    min-width: 0;
    padding: 10px 14px;
    font-size: 12px;
  }
}

.vision-mission-section .vision-mission-item {
  padding: 0;
}

.vision-mission-section .vision-mission-item img {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 16px;
}

.vision-mission-section .vision-mission-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.vision-mission-section .vision-mission-item p {
  margin-bottom: 0;
  color: white;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.values-list li {
  padding-left: 18px;
  position: relative;
}

.values-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f7c85c;
  position: absolute;
  left: 0;
  top: 8px;
}

.booking-process {
  padding: 80px 0;
  background-color: white;
}

.booking-process .process-list {
  row-gap: 20px;
}

.booking-process .wpo-service-item {
  margin-bottom: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.booking-process .process-title {
  text-align: left;
  margin-bottom: 0;
}

.booking-process .wpo-service-wrap {
  padding-top: 0;
}

.booking-process .wpo-service-item,
.booking-process .wpo-service-text {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
}

.booking-process .process-list {
  row-gap: 16px;
}

.booking-process.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.booking-process .process-title .theme-btn {
  margin-top: 16px;
}

.booking-process .wpo-service-text {
  position: relative;
  padding: 0;
}

.booking-process .process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1c1817;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
}

.booking-process .wpo-service-text h3 {
  margin-bottom: 6px;
}

.wpo-testimonial-section
  .wpo-testimonial-wrap
  .testimonial-left-item
  .image::before,
.wpo-testimonial-section-s2
  .wpo-testimonial-wrap
  .testimonial-left-item
  .image::before {
  content: none;
  display: none;
}

.wpo-testimonial-section .wpo-testimonial-wrap .testimonial-left-item .image,
.wpo-testimonial-section-s2
  .wpo-testimonial-wrap
  .testimonial-left-item
  .image {
  width: 80px;
  height: 80px;
  max-width: none;
  padding-top: 0;
  padding-left: 0;
}

.wpo-service-section-s3 .wpo-service-wrap .wpo-service-item {
  background-color: transparent;
  padding: 20px;
}

.cs-benefits {
  background: #1c1817 url(../images/noice.png);
}

.cta-banner .row {
  align-items: center;
}

.blog-item .image {
  height: 250px;
}

.blog-item .image img {
  height: 100%;
}

.wpo-blog-section .blog-item .image .thumb span,
.wpo-blog-section-s2 .blog-item .image .thumb span {
  background-color: #f5e3a2;
}

/* Responsive overrides */

@media (max-width: 991px) {
  .blog-single-content .col-lg-8 {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .landing-page-hero .slide-content {
    min-height: 680px;
    padding: 130px 0 32px;
  }

  .landing-page-heading-cs,
  .wpo-hero-slider-s2 .slide-title h1 {
    font-size: clamp(34px, 6vw, 52px);
    line-height: 1.08;
  }

  .landing-page-hero p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 560px;
  }

  .home-page .wpo-section-title h2,
  .home-page .wpo-section-title-s2 h2 {
    font-size: 38px;
    line-height: 1.15;
  }

  .wpo-header-style-4 .header-right .theme-btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .wpo-faq-section .wpo-faq-wrapper .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .landing-page-hero .slide-content {
    min-height: 560px;
    padding: 110px 0 24px;
  }

  .landing-page-heading-cs,
  .wpo-hero-slider-s2 .slide-title h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .landing-page-hero .slide-title-sub span {
    font-size: 12px;
  }

  .landing-page-hero p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 320px;
  }

  .landing-page-hero .slide-btns {
    gap: 10px;
  }

  .landing-page-hero .slide-btns .theme-btn,
  .landing-page-hero .slide-btns .theme-btn-outline {
    min-width: 0;
    width: auto;
    padding: 12px 14px;
    font-size: 12px;
  }

  .home-page .wpo-section-title h2,
  .home-page .wpo-section-title-s2 h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .home-page .wpo-section-title p,
  .home-page .wpo-section-title-s2 p {
    font-size: 15px;
  }

  .wpo-header-style-4 .header-right {
    display: none;
  }

  .cs-logo img {
    width: 74px;
  }

  .cs-logo span {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h1,
  .landing-page-heading-cs,
  .wpo-hero-slider .slide-title h1,
  .wpo-hero-slider-s2 .slide-title h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-tp h2,
  .about-page .wpo-about-title h2,
  .services-page .wpo-about-title h2,
  .blog-single-title {
    font-size: 27px;
    line-height: 1.15;
  }

  .offerings-left-inner h2,
  .footer-modern .footer-hero-content h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  .about-page .wpo-about-title h3,
  .service-item h3,
  .vision-mission-section .vision-mission-item h3,
  .booking-process .wpo-service-text h3,
  .services-page .compare-card h3,
  .destinations-section-cs .card-single .text h3,
  .destination-content h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .blog-item .blog-content h2 {
    min-height: 0;
    font-size: 22px;
    line-height: 1.25;
  }

  .footer-modern .footer-block h3,
  .wpo-site-footer .widget-title h3 {
    font-size: 13px;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .wpo-page-title .wpo-breadcumb-wrap h1,
  .landing-page-heading-cs,
  .wpo-hero-slider .slide-title h1,
  .wpo-hero-slider-s2 .slide-title h1 {
    font-size: 26px;
  }

  .wpo-section-title h2,
  .wpo-section-title-s2 h2,
  .wpo-section-title-tp h2,
  .about-page .wpo-about-title h2,
  .services-page .wpo-about-title h2,
  .blog-single-title,
  .offerings-left-inner h2,
  .footer-modern .footer-hero-content h2 {
    font-size: 24px;
  }

  .about-page .wpo-about-title h3,
  .service-item h3,
  .vision-mission-section .vision-mission-item h3,
  .booking-process .wpo-service-text h3,
  .services-page .compare-card h3,
  .destinations-section-cs .card-single .text h3,
  .destination-content h3 {
    font-size: 17px;
  }

  .blog-item .blog-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .blog-filter {
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .offerings-section {
    height: auto;
    padding: 60px 0;
  }

  .offerings-inner {
    grid-template-columns: 1fr;
  }

  .offerings-left {
    height: auto;
  }

  .offerings-left-inner {
    position: relative;
    height: auto;
    padding: 60px 24px 20px;
  }

  .offerings-right {
    height: auto;
    overflow: visible;
  }

  .offerings-scroll {
    padding: 50px 24px 70px;
  }

  .service-item {
    min-height: auto;
    padding: 24px 20px;
    grid-template-columns: 120px 1fr;
    gap: 18px;
  }
}

@media (max-width: 991px) {
  .footer-cta-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-cta-image {
    justify-self: start;
  }
}

@media (max-width: 991px) {
  .footer-modern .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-modern .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .form-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .contact-intro {
    margin-bottom: 24px;
  }

  .contact-form-actions .theme-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 991px) {
  .destinations-grid .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wpo-site-header .mobail-menu button {
    background-color: transparent;
  }

  .wpo-site-header .mobail-menu button span {
    background-color: #f5e3a2;
  }

  .wpo-site-header .mobail-menu {
    display: flex;
    justify-content: flex-end;
  }

  .wpo-site-header .navbar-header {
    display: flex;
    justify-content: flex-start;
  }

  .wpo-site-header .navbar-header .navbar-brand {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .destinations-grid .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .landing-page-heading-cs,
  .wpo-hero-slider-s2 .slide-title h1 {
    font-size: 29px;
  }

  .home-page .wpo-section-title h2,
  .home-page .wpo-section-title-s2 h2 {
    font-size: 27px;
  }

  .landing-page-hero .slide-btns {
    width: 100%;
  }

  .landing-page-hero .slide-btns .theme-btn,
  .landing-page-hero .slide-btns .theme-btn-outline {
    width: calc(50% - 5px);
    justify-content: center;
    text-align: center;
  }

  .offerings-left-inner h2 {
    font-size: 32px;
  }

  .service-item {
    flex-direction: column;
    padding: 10px;
  }

  .service-content {
    width: 100%;
  }

  .service-media {
    width: 100%;
  }

  .offerings-left-inner {
    padding: 0;
  }

  .offerings-left {
    width: 100%;
  }

  .offerings-scroll {
    padding: 0;
  }

  .offerings-right {
    margin-top: 24px;
  }

  .footer-modern .footer-grid {
    width: 100%;
    padding: 0px;
  }

  .footer-modern .footer-main {
    padding: 10px;
  }

  .destinations-grid {
    padding: 80px 20px;
  }

  .blog-filter-form {
    margin-bottom: 24px;
  }

  .slide-btns {
    display: flex;
    flex-direction: column;
  }

  .landing-page-hero .slide-btns .theme-btn,
  .landing-page-hero .slide-btns .theme-btn-outline {
    width: 100%;
  }

  .wpo-hero-slider,
  .wpo-hero-slider-s2 {
    height: 600px;
  }
}
