<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
  Theme Main Style Sheet
*/
/*------------------------------
  Common Styles
------------------------------*/

.section-padding,
.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.post-title {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.page-title,
.post-title {
  word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
.post-title,
.site-branding .site-title,
.slider-title,
.promo-blocks .promo-block .promo-block-text,
.wp-block-cover,
.wp-block-cover-image {
  font-family: var(--heading-font);
}

.img-mx-w-50 {
  max-width: 50% !important;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../vendor/font-awesome/webfonts/fa-solid-900.woff2") format("woff2");
}


.fw-600{
  font-weight: 600 !important;
}

/*------------------------------
  TopBar
------------------------------*/
.topbar {
  background-color: var(--wp--preset--color--black) !important;
}

.topbar .navbar-nav ul li a {
  font-family: var(--wp--preset--font-family--heebo);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--wp--preset--color--white) !important;
  letter-spacing: 0.2em;
  line-height: 14px;
}

.topbar .navbar-nav ul li a::before,
ul.side_bar_social_links li.sidebar_social_li a::before,
.mobile_nav_social_links ul li a::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 500;
  font-size: 14px;
}

.topbar .navbar-nav ul li a.facebook::before,
ul.side_bar_social_links li.sidebar_social_li a.facebook::before,
.mobile_nav_social_links ul li a.facebook::before {
  content: "\f082";
}

.topbar .navbar-nav ul li a.instagram::before,
ul.side_bar_social_links li.sidebar_social_li a.instagram::before,
.mobile_nav_social_links ul li a.instagram::before {
  content: "\f16d";
}

.topbar .navbar-nav ul li a.youtube::before,
ul.side_bar_social_links li.sidebar_social_li a.youtube::before,
.mobile_nav_social_links ul li a.youtube::before {
  content: "\f167";
}

.topbar .navbar-nav ul li a.linkedin::before,
ul.side_bar_social_links li.sidebar_social_li a.linkedin::before,
.mobile_nav_social_links ul li a.linkedin::before {
  content: "\f08c";
}

.topbar_image {
  height: 200px;
  /* background: center / cover no-repeat !important; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*------------------------------
  Header
------------------------------*/
.yp__header,
.yp__header_mobile {
  font-family: var(--wp--preset--font-family--heebo);
  text-transform: uppercase;
  font-weight: 700;
  gap: 30px;
}

.yp__header li a,
.yp__header_mobile li a {
  font-family: var(--wp--preset--font-family--heebo);
  text-transform: uppercase;
  font-weight: 700;
  gap: 30px;
}

.offcanvas {
  max-width: 80% !important;
}

.navbar {
  height: 70px;
}

@keyframes fadeSlideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Default sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  transition: all 0.3s ease;
}

/* When it becomes fixed on scroll */
.site-header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  animation: fadeSlideDown 0.4s ease forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



/*------------------------------
  Hero Swiper Slider
------------------------------*/
.hero-swiper {
  height: 500px;
  position: relative;
}

.swiper-pagination.heroPagination {
  bottom: 50% !important;
  left: auto !important;
  right: 0;
  z-index: 1;
  pointer-events: auto;
  width: auto !important;
}

span.swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 0;
  background: var(--wp--preset--color--white);
  opacity: 1;
  transition: width 0.3s ease;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 70px;
}

span.swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
  width: 55px;
}

/* Slide Background Zoom Animation */
.slide-content {
  position: relative;
  background: center / 100% no-repeat;
}

.swiper-slide-active .slide-content {
  animation: zoomInBackground 10s ease-in-out infinite alternate;
}

@keyframes zoomInBackground {
  0% {
    background-size: 100%;
  }

  100% {
    background-size: 120%;
  }
}

.slide-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.61);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.swiper-slide-active .slide-content::before {
  opacity: 1;
}

/* Slide Content Overlay */
.slide-content .slider_info {
  margin-inline-start: 5em;
  max-width: 50%;
  color: var(--wp--preset--color--white);
  z-index: 2;
  position: relative;
}

.slider_info h2 {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
}

.slider_info a.slider_btn {
  display: inline-block;
  text-decoration: none;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  padding: 0 30px;
  line-height: 42px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.75rem;
  transition: all 0.4s ease;
}

.slider_info a.slider_btn:hover {
  transform: translateY(2px);
  background: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
}


.swiper.hero-swiper .swiper-slide .slide-content {
  height: 500px;
  position: relative;
  z-index: 2;
}

.swiper.hero-swiper .swiper-slide .slide-content .slider_info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiper_bottom_bar {
  height: 100px;
  background-image: linear-gradient(to right, #8224e3, #31d8cd);
  padding: 2em;
  color: #fff;
}

/*------------------------------
  Interested Topics
------------------------------*/
.interested_stories_section {
  padding: 80px 0;
}

.interested_stories_section .section_title {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-style: normal;
}

.interested_stories__block_column_grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  gap: 30px;

}

.interested_stories_section_block_column {
  position: relative;
}

.interested_stories_section_block_column .image-caption-wrapper {
  height: 240px;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.interested_stories_section_block_column .image-caption-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgb(57 57 58 / 25%);
}

.interested_stories_section_block_column .image-caption-wrapper a {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.interested_stories_section_block_column .image-caption-wrapper .image_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  margin: 0;
  border-radius: 0;
  color: #222;
  z-index: 3;
  display: block;
  padding: 10px 16px;
}

.interested_stories_section_block_column .image-caption-wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--wp--preset--color--black);
  opacity: 0;
  content: "";
  transition: opacity 0.4s;
}

.interested_stories_section_block_column .image-caption-wrapper::after {
  background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.interested_stories_section_block_column:hover .image-caption-wrapper::after {
  opacity: 0.5;
}

/*------------------------------
  Subscribe Form
------------------------------*/
.subscribe-form {
  /* padding: 80px 0; */
  position: relative;
}

.subscribe-form .s_form_container {
  color: var(--wp--preset--color--white);
}

.subscribe-form .s_form_container h5.widget-title {
  font-family: var(--wp--preset--font-family--poppins);
  ;
  font-size: 1.875rem;
  color: var(--wp--preset--color--white);
  margin: 0;
}

.subscribe-form .s_form_container p {
  font-family: var(--wp--preset--font-family--heebo);
  padding: 0;
  margin: 0;
  color: var(--wp--preset--color--white);
}


/*------------------------------
  Latest Articles
------------------------------*/

.latest-card__thumb {
  position: relative;
  width: 70%;
  overflow: hidden;
}

.post_list_container article {
  margin-bottom: calc(100% - 70%);
  max-height: 500px;
  height: 100%;
}

.post_list_container article .post_container {
  position: relative;
  /* height: 300px; */
}

.post_list_container article .featured-img a img {
  width: 75%;
  /* height: 300px; */
  height: 400px;
  object-fit: cover;
}

.post_list_container article .post-content {
  position: absolute;
  right: 0;
  bottom: -20%;
  width: 50%;
  background: #fff;
  box-shadow: 5px 5px 20px rgb(0 0 0 / 7%);
  padding: 22px 20px 30px;
}

.post-meta.date_post {
  position: absolute;
  top: -6%;
  left: 25%;
  background: #000;
  padding: 0 10px;
  margin-bottom: 0;
  background: #262626;
  border-radius: 999px;
}

.post-header .post-meta.date_post .meta-item time {
  color: #fff;
  line-height: 1.6;
}

.post-header .cat-links a {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  line-height: 25px;
}

.post-header .post-title {
  font-family: var(--heading-font);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  word-break: break-word;
}

.post-header .post-title a {
  color: var(--light-text-color);
}

.post-header .post-title:hover a {
  color: var(--primary-color);
}

.post-header .post-title::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-color);
}

.post-content .post-excerpt p {
  font-family: var(--body-font);
  font-size: 0.9375rem;
  color: var(--text-color);
}

.post-content .more-btn .button {
  padding: 0 20px;
  line-height: 32px;
  font-size: 10px;
  font-size: 0.625rem;
  background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.post-content .more-btn .button:hover {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

/*------------------------------
  Sidebar
------------------------------*/


h5.sidebar_sec_title {
  /* padding-left: 10px;
    border-left: 5px solid var(--primary-color); */
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  position: relative;
}

h5.sidebar_sec_title.wp-block-heading:before {
  content: "";
  height: 20px;
  width: 5px;
  background: var(--primary-color);
  position: relative;
  bottom: -1px;
}

ul.side_bar_social_links li.sidebar_social_li a::before {
  height: 30px;
  width: 30px;
  background: #000;
  color: #fff;
  padding: 0;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

.most_popular_post ul.wp-block-post-template {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 30px;
}

.most_popular_post .wp-block-group .taxonomy-category a {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.625rem;
}

.most_popular_post .wp-block-group h2.wp-block-post-title {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  font-size: 1rem;
  font-family: var(--heading-font);
  opacity: 0.7;
  margin: 0 !important;
}

.most_popular_post .wp-block-group h2.wp-block-post-title a {
  color: #000;
}

.most_popular_post .wp-block-group .wp-block-post-date {
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0.5;
}

.sidebar_section .most_popular .most_popular_post .post-card {
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.sidebar_section .most_popular .most_popular_post .post-card:hover {
    margin-bottom: 2rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}



figure.side_bar_ad_image_1 a,
figure.side_bar_ad_image_1 a img {
  max-height: 250px !important;
  width: 100%;
}

figure.side_bar_ad_image_1 a img {
  object-fit: cover;
}

.sidebar_newsletter .newsletter-form p {
  flex-direction: column;
  gap: inherit;
  align-items: flex-start;
}

.sidebar_newsletter .newsletter-form p span .wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  border: 2px solid #000;
}



/*------------------------------
  Popular Destinations
------------------------------*/

.popular_destination_section {
  background: var(--light-bg-color);
}

.popular-destinations .wp-block-column {
  height: 180px;
  width: 280px;
  background: rgb(54, 52, 54);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.popular-destination-card img {
  width: 100%;
  /* height: auto; */
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.category-card {
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
}

.popular-destinations.container.swiper-container.popular-destination-swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  overflow: hidden;
}

/*------------------------------
  Footer
------------------------------*/
.site-footer {
  background: #000;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 20px;
}

h5.footer_col_title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.875rem;
  position: relative;
  display: block;
  width: 100%;
  font-family: var(--body-font);
  color: #fff;
}

ul.footer_nav_menu li {
  position: relative;
}

ul.footer_nav_menu li a {
  /* opacity: .75; */
  /* transition: all .5s ease; */
  opacity: 1;
  font-weight: 600;
  position: relative;
  color: #fff;
}

/* ul.footer_nav_menu li a:hover{
  opacity: 1;
  font-weight: 600;
  margin-inline-start: 15px;
  transition: all .3s ease;
} */

ul.footer_nav_menu li a::before {
  content: "";
  position: absolute;
  left: -15px;
  bottom: 0;
  height: 100%;
  width: 3px;
  background: #fff;
}

ul.footer_nav_menu li a::before {
  opacity: 0;
  transition: opacity 0.3s ease;
}

ul.footer_nav_menu li a:hover::before {
  opacity: 1;
}

ul.footer_nav_menu li:has(&gt; a:hover) {
  margin-inline-start: 15px;
  transition: opacity 0.3s ease;
}


/*------------------------------
  Breadcrumbs
------------------------------*/

.breadcrumb ul li {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.breadcrumb ul li:not(:last-child) a::after {
  content: " &gt;&gt; ";
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  color: #000;
  font-family: var(--body-font);
  margin-left: 10px;
}

/*------------------------------
  Siingle Page / Post Page
------------------------------*/

.post-content-single,
.page-content {
  position: relative;
  /* margin-top: -110px; */
  margin-top: -35vh;
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  z-index: 9;
}


.single-page-hero-section {
  position: relative;
  min-height: 100vh;
  /* or desired height */
  overflow: hidden;
}

.single-page-hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  /* Adjust for visibility */
  padding: 100px 20px;
  text-align: center;
}

.hero-single-page-image {
  background: url('http://localhost/works/yourplatform/wp-content/uploads/2025/06/slide-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* for parallax effect */
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80vh;
  z-index: 1;
}

.hero-single-page-image::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: rgb(28 26 26 / 57%);
}

h1.single-page-hero-title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.single-page-hero-overlay .taxonomy-category a {
  background: #fff;
  padding: 2px 15px;
  margin: 3px;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
}

.single-page-hero-overlay .wp-block-post-terms__separator {
  display: none;
}

/*------------------------------
  Category Listing Page 
------------------------------*/

.category-archive .wp-block-query {
  margin-top: 2rem;
}

.category-archive .post-card {
  background: #fff;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 30px;
}

.category-archive .post-card img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  height: 200px;
}


/*------------------------------
  News Letter - Call To Action
------------------------------*/

.newsletter-form p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}

.newsletter-form p span .wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: ltr;
  height: 42px;
  border: none;
  color: #000;
  padding: 0 1em;
  width: 100%;
}

.newsletter-form p input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  box-shadow: none;
  /* background: transparent; */
  position: relative;
  z-index: 9;
  display: inline-block;
  padding: 0 30px;
  background: var(--primary-color);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 42px;
  text-transform: uppercase;
  text-align: center;
  transition: 0.4s;

}

.latest_art_sidebar_sec {
  display: flex;
  position: relative;
}

.sidebar_section {
  position: relative;
  z-index: 99;
}

.side_bar_content {
  transition: top 0.3s ease, position 0.3s ease;
  /* optional for smoother layout: */
  will-change: top, position;
}

/* Footer Menu */
/* ----- FOOTER MENU BASE STYLES ----- */

.footer_nav_menu .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_nav_menu .footer-menu li {
  margin-bottom: 10px;
  position: relative;
}

/* Parent link arrow icon (Font Awesome) */
.footer_nav_menu .menu-item-has-children&gt;a::after {
  content: "\f078";
  /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
  opacity: .3;
}

/* Submenu styles */
.footer_nav_menu .sub-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin-left: 1rem;
  padding-left: 0;
  list-style: none;
}

/* When open */
.footer_nav_menu .menu-item.open&gt;.sub-menu {
  max-height: 500px;
  /* adjust as needed */
  opacity: 1;
  visibility: visible;
  padding-top: 5px;
}

/* Rotate icon on open */
.footer_nav_menu .menu-item.open&gt;a::after {
  transform: rotate(180deg);
}


ul.footer_nav_menu li a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}


/* Header Submneus */
/* Hide submenu by default */
ul.yp__header li.menu-item-has-children ul.sub-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  background: #fff;
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  /* Always use flex for layout */
  position: absolute;
}

/* On hover, expand submenu */
ul.yp__header li.menu-item-has-children:hover ul.sub-menu {
  max-height: 500px;
  /* Large enough to fit content */
  opacity: 1;
  padding: 1em;
  /* Restore padding when visible */
}

/* Mobile Header */
#mobileSidebar {
  height: 100vh;
}

/* Base styles */
.yp__header_mobile li {
  position: relative;
  list-style: none;
}

/* Hide submenus by default */
.yp__header_mobile .sub-menu {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding-left: 1rem;
  margin-top: 5px;
}

/* Show submenu when parent has .open */
.yp__header_mobile li.menu-item.open&gt;.sub-menu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  gap: 10px;
  background: #d1d1d1;
}

/* Add toggle icon after menu items with children */
.yp__header_mobile li.menu-item-has-children&gt;a::after {
  content: "\f078";
  /* Font Awesome chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
  vertical-align: middle;
  cursor: pointer;
}

/* Rotate icon when open */
.yp__header_mobile li.menu-item.open&gt;a::after {
  transform: rotate(180deg);
}


ul.yp__header_mobile li.menu-item-has-children a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}


/* Sticky Sidebar */
.latest_art_sidebar_sec {
  display: flex;
  height: 100vh;
  overflow-y: auto;
  position: relative;
}

.latest_articles_section {
  flex: 3;
  padding: 10px;
}

.sidebar_section {
  flex: 1;
  padding: 10px;
  position: sticky;
  top: 0;
  align-self: flex-start; /* Ensures it starts from top */
}

.latest_art_sidebar_sec {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.latest_art_sidebar_sec::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


/* Paginations posts cards */
#ajax-pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.page-numbers {
  background: #f4f4f4bd;
  border-radius: 29%;
  color: #000;
  padding: 12px;
  cursor: pointer;
  line-height: 1;
  cursor: pointer;
}
.page-numbers.current {
  background: #601a97;
  color: #fff;
}
a.next.page-numbers,
a.prev.page-numbers {
  border-radius: 10px;
  background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: #fff;
}

a.page-numbers:hover{
  color: inherit;
}

.sticky-scroll {
  position: fixed;
  bottom: 0;
  width: 300px; /* or the width of your shorter section */
  /* adjust left/right if needed, e.g. left: 0 or right: 0 */
  background: white; /* or your bg color */
  z-index: 1000;
}


/* custom contact form */
.contact_info .cnt_info{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 1px 1px 5px #eed6d6;
  width: 70%;
}

.cnt_info span i.fas{
  font-size: 5em;
}

.footer_contact_info ul{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
}

.footer_contact_info ul li{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 5px;
    border-bottom: 1px solid #ffffff4d;
    padding-bottom: 15px;

}</pre></body></html>