/*
Theme Name: JetGo - Child Theme
Theme URI: http://jetgotravel.com
Description: Child Theme, do modifications here.
Author: Emman
Author URI: http://ejostol.com
Template: jetgo
Version: 1.8.7
*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

.loader {
  width: 48px;
  height: 48px;
  border: 3px dotted #efefef;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #FF3D00;
  border-style: solid solid dotted;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 1s linear infinite;
  transform-origin: center center;
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
} 



.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}




iframe {
    width: 100%;
}




/*---------------------------------------------
BUTTONS
---------------------------------------------*/
.btn-orange {
    background: #FE6B41;
    color:#fff !important;
}

.btn-orange:hover {
    background: #1cbac8 !important;
}

/*---------------------------------------------
FONT
---------------------------------------------*/
.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}

/*---------------------------------------------
GENERIC
---------------------------------------------*/
body {
    word-break: break-word;
}

h1, h2, h3, h4, h5 {
  font-family: "Libre Baskerville", serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
}

.no-padding {
	padding:0;
}

.blue-text {
    color:#00a69a;
}


.green-title {
    color:#B2D233;
    font-weight: 800;
    font-size: 30px;    
    margin-bottom: 0px;
}

.orange, .orange p, .orange a {
	color:#fe6b41;
}

.blue, .blue a, .blue p {
	color:#5ecccf;
}

.white, .white a, .white p {
    color:#fff;
}

.subtitle {
    font-size: 30px !important;
    line-height: 38px !important;
    font-weight: 300;
}

.light {
    font-weight: 300 !important
}

.uppercase {
    text-transform: uppercase;
}
.s14 { font-size: 14px !important }
.s15 { font-size: 15px !important }
.s16 { font-size: 16px !important }
.s18 { font-size: 18px !important }
.s20 { font-size: 20px !important }
.s22 { font-size: 22px !important }
.s24 { font-size: 24px !important }
.s26 { font-size: 26px !important }
.s28 { font-size: 28px !important }
.s30 { font-size: 30px !important }
.s32 { font-size: 32px !important }
.s34 { font-size: 34px !important }
.s36 { font-size: 36px !important }
.s46 { font-size: 46px !important }
.s54 { font-size: 54px !important }
.s56 { font-size: 56px !important }
.s76 { font-size: 76px !important }

.bolder {
	font-weight: 700 !important;
}

.text-center {  text-align: center; }
.text-left {    text-align: left; }
.text-right {   text-align: right; }
.text-justify { text-align: justify; }

.rounded img, .rounded{
    border-radius: 50% !important;
    border: 4px solid #efefef;
}

.text-shadow, .text-shadow .fa, .text-shadow a {
    text-shadow: 0 0 25px #000;
}

.hard-shadow, .hard-shadow .fa, .hard-shadow a {
        text-shadow: 2px 2px 2px #000 !important;
}


ul li {
    /* list-style-type: none; */
    list-style-position: inside;
}

.blue-alpha {
    background: #6fc9bba8 !important;
    color: #fff !important;
    padding: 15px 15px !important;
}

.shadowed {
    box-shadow: 10px 11px 0px #0000002b;
}
.right-center {
    float:right;
}

.left-center {

}

.text-shadow {
	text-shadow: 0 0 10px #000 !important;
}

.no-overflow{
    overflow: hidden !important;
}

@media screen and (max-width: 959px) {
    .s76 { font-size: 46px !important }

    .left-center, .right-center {
        display: block !important;
        margin: 0 auto !important;
        float: none !important;
        text-align: center !important;        
    }


}

header.fullwidth .container {
    /* margin:0 auto; */
}

.clear, .clr {
    width: 100%;
    float:none;
    display: block;
    margin:0 auto;
    clear: both;
}

@media screen and (max-width:768px){

    .swap-on-mobile {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .swap-odd {
        flex-direction: column;
    }
    
}

.visible {
     overflow: visible !important; 
}



.circle-image {
    border-radius: 50%;
}


.slanted-box {
  background-color: #FF6A3D;
  padding: 10px 20px;
  color: #fff;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}



/*-----------------------------------------
FONTAWESOME FIXES
-----------------------------------------*/
#content .fa, #content .fas {
    font-weight: 900 !important;
}

/*--------------------------------------
EFFECTS
--------------------------------------*/
.rotate,  .rotate-left{
    transition: all 0.1s ease-in-out;
}

.rotate-left:hover {
    rotate: -4deg;
}

.rotate:hover {
	rotate: 4deg;
    scale: 1.1;
}

/*--------------------------------------
HEADER
--------------------------------------*/
#header {
    background: url(framework/images/topbase-bg.png) !important;
    background-size: cover !important;
}


#header .container, #logo-navigation{
	width: 98% !important;
	max-width: 100% !important;
	margin: 0 auto !important;
	display: block !important;

}

#search-btn, .header-icons-divider {
	display: none !important;
}

.header-v1 #navigation > ul > li {
	padding: 0 !important;
	height: auto !important;
}

/* -- NAVIGATION --*/
.skewed-background {
    display: inline-block;
    background-color: #ff6f3d; /* Adjust to match your design */
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    position: relative;
    transform: skew(-20deg);
    border-radius: 5px;
}

/* Adjust inner content to counteract skew */
.skewed-background span {
    display: inline-block;
    transform: skew(20deg);
}

/* Optional: Icon styling */
.skewed-background i {
    margin-right: 5px;
}

.header-v1 #navigation > ul > li > a {
    height: 70px !important;
        padding: 15px 20px;
    line-height: 43px;
    -o-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -khtml-transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    transition: all 0.1s ease-in-out;    
}
.header-v1 #navigation > ul > li {
    transform: skew(-40deg);	
}
.header-v1 #navigation > ul > li a {
	transform: skew(40deg);		
	text-decoration: none !important;
}

.header-v1 #navigation > ul > li.current-menu-item  {
    display: inline-block;
    background-color: #ff6f3d; /* Adjust to match your design */
    color: white !important;
    font-size: 18px;
    font-weight: bold !important;
    text-align: center;
    text-decoration: none;
    position: relative;
    transform: skew(-40deg);
}

.header-v1 #navigation > ul > li.current-menu-item a {
	color:#fff !important;
}

.header-v1 #navigation > ul > li:hover {
 	background-color: #ff6f3d;
 	transform: skew(-40deg);
}
.header-v1 #navigation > ul > li:hover a {
	transform: skew(40deg);	
	color:#fff !important;
}

.header-v1 #navigation > ul > li.current-menu-item a{
	transform: skew(40deg);	
}

/* -- LOGO -- */
.logo img {
	max-width: 280px;
}

#mobile-navigation .container ul {
    padding-left:0;
}

#mobile-navigation a {
    text-decoration: none !important;
}

/*--------------------------------------
HOME BOXES
--------------------------------------*/
#home-boxes .mega_info_box .mega-info-desc{
	font-family: "Libre Baskerville", serif !important;
	font-size: 20px;
	font-weight: bold;
    margin-top: -81px;
    color:#4e4e4e;
    background: #ffffffbf !important;
    display: block !important;
    padding: 17px 15px;
    position: relative;
}

#home-boxes .mega_info_box {
    margin-top: -180px;
    border: 7px #ffffff47 solid;
    box-sizing: revert;
    padding: 0;

}

#home-boxes .mega_info_box:hover {
    animation: flipEffect 0.5s ease-in-out;
    transform: scale(1.05);
    box-shadow: 0 0 10px #0000004f;
}

@media screen and (max-width:767px){

    #home-boxes .mega_info_box{
        margin-top:80px;
    }

}


/*-------------------------------------------
FOOTER NEWSLETTER, GET INVOLVED, AND FOLLOW 
-------------------------------------------*/
#footer-newsletter {
    background:#30302E url("framework/images/newsletter-bg.jpg");
    background-size: cover;
    padding: 120px 0;
    overflow: hidden;
    display: block;
}

#be-involved {
    background:#fff url("framework/images/bg-travel2.jpg");
    background-size: cover;
    padding: 80px 0 120px 0;
    overflow: hidden;
    display: block;   
}

#follow-us {
    background:#fff url("framework/images/follow-bg.jpg");
    background-size: cover;
    padding: 120px 0 120px 0;
    overflow: hidden;
    display: block;     
}

.follow-item {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;    
    font-size: 22px;
    text-align: center;
    background: #fff;
    width: 90%;
    padding: 23px 0 15px 0;
    display: block;
    margin:0 auto;
    text-decoration: none;
    box-shadow: 0 0 22px #000000c7;
    color:#4e4e4e;
}

.jetgotravel, .jetgoeurope, .jetgotropical {
    transition: all 0.1s ease-in-out;
}

.jetgotravel {
    rotate: -4deg;
}
.jetgotravel:hover {
    rotate: 0deg;  
}

.jetgoeurope {
    rotate: 4deg;
}

.jetgoeurope:hover {
    rotate: 0deg;
}

.jetgotropical:hover {
    transform: scale(1.03);
}

.follow-item img {
    margin-bottom:25px;
    display: inline-block;
}

#socmed {
    margin-top: 50px;
}

#socmed a {
    margin: 5px;
}

#socmed a img {
    transform: scale(0.9);
    transition: all 0.1s ease-in-out;    
}

#socmed a img:hover {
    transform: scale(1.09);
}

@media screen and (max-width:767px){

    .jetgotravel, .jetgoeurope, .jetgotropical {
        rotate: 0deg;
        margin-bottom: 30px;
    }

}


/*--------------------------------------
CPT INNER / HOSPITALITY / CITY?
--------------------------------------*/
.single-hospitality #fulltitle, .single-city #fulltitle {
    display: none !important;
}

.business-template-default #fulltitle {
    display: none;
}

.shadow-right {
    background: url(framework/images/shadow.png) top right no-repeat;
    background-size: 48px 100%;
    background-position: 102% 20px;
    padding-right: 51px;
}

#inner-hero-banner {
    background-size: cover !important;
    display: block;
    margin: 0 auto;
    padding-top: 160px;
    padding-bottom: 253px;
    text-align: center;
}


.business-template-default #inner-hero-banner {
    padding-top: 121px;
    padding-bottom: 143px;
}

.business-template-default .fa-phone-square-alt {
    line-height: 29px; 
}

.business-template-default .site-wrapper {
    background:#fff url('framework/images/subtle-white.jpg')top center no-repeat;
    background-position: 100% 390px;    
}

#logo-text {
    width: 200px;
    height: 200px;
    background: #fe6b41;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 79px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 32px;
    color: #fff;
    border: 7px solid #f15c32;
}

#logo-text.experience {
    background: #5ecccf;
    border: 7px solid #30c2cf;
}

span.star-rating {
    color: #fe6b41;
    font-size: 43px;
}


#inner-hero-banner h1 {
    color:#fff;
    padding: 15px 50px;
    background: #6f6e6ce8;
    border-radius: 50px;
    display: inline-block;
}

#result {
    padding: 30px 15px;    
}

.pin {
    margin-top: -10px;
}

.box-item{
    margin-bottom: 20px;
    border: 8px solid #ffffff69;
    display: block;
    margin: 0 auto;
    max-width: 260px;
    border-radius: 50px;
    box-shadow: 0 0 10px #9d9898;    
    transition: all 0.1s ease-in-out;
}
.box-item:hover {
    transform: scale(1.1);
}

.box-item-content {
    font-family: "Libre Baskerville", serif;
    color:#4e4e4e;
    position: relative;
    max-width: 260px;
    display: block;
    margin: 0 auto;
}

.box-item-content img {
    border-radius: 40px;
}

.box-item-content .box-title {
    text-align: center;
    position: absolute;
    bottom: 0;
    background: #ffffffb0;
    width: 100%;
    padding: 5px;
    border-radius: 0 0 40px 40px;    
}

#hero-boxes {
    margin: 0 auto;
    margin-top: -120px;
    max-width: 1030px;
    display: block;
    position: relative;
    z-index: 99999;
}

#travel-info h3 {
    margin-bottom: 30px;
}

.info-item {
    font-size: 15px;
    margin-right: 40px;
}

.info-icon {
    max-width: 25px;
}

#content-tab .tab-pane {
    padding: 30px 15px;
}

#content-nav button {
    font-weight: bold;
    text-transform: none;
    font-size: 22px;
    padding: 13px 42px;
    padding-left: 26px;
    position: relative;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
    background: #e9e9e9;
    color: #4e4e4e;
}

#content-nav button.active {
    background: #fe6b41;
    color:#fff;
}

#home-tab {
    margin: 0;
    z-index: 10;
    padding-right: 60px !important;
}

#search{
    margin-left: -39px;
    z-index: 9;
    padding-left: 45px !important;
    
}

#search:hover {
    z-index: 9 !important;
}

#lightgallery2 {
/*    display: flex;*/
}

#lightgallery2 img {
    max-height: 150px !important;
    min-height: 150px !important;
    margin: 5px;
}

#lightgallery2 a{
    text-decoration: none;
}

.lg-backdrop {
    z-index: 99999 !important;
}

.lg-outer {
    z-index: 99999 !important;
}

#slogan {
    float: none !important;
}


#search-tab button {
    background: transparent;
    color: #4e4e4e;
    border-radius: 30px;
    margin-right: 25px;
}

#content-nav {
    border:0;
}

#buttons {
    display: table;
    margin: 30px auto;

}

#gallery-title {
    padding-right: 80px !important;
    background:#67c5c7 !important;
}

.get-hospitality.active {
    background:#67c5c7 !important;
    color:#fff !important;
}


.business-result {
    display: flex;
    gap: 35px;
    margin-bottom: 30px;
    align-items: flex-start;
    border-bottom: 1px dashed #dadada;
    padding-bottom: 30px;
}

.business-thumbnail {
    width: 200px;
    height: 150px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.business-excerpt {
    flex-grow: 1;
}

.business-excerpt h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #0073aa;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}



@media screen and (max-width:767px){
    .shadow-right {
        padding: inherit;
        background: none;
    }
    .business-result {
        display: block;
    }
    .business-thumbnail {
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }
}

/*--------------------------------------
PARTNER PROFILE
--------------------------------------*/
#profile {
    margin-top: -150px;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.profile-info {
    padding-left: 30px;    
    padding-top: 50px;
    justify-content: left;
    align-items: center;    

}

.single-jetgo_partners .site-wrapper {
    background:#fff url('framework/images/subtle-white-2.jpg')top center no-repeat;
    background-position: 100% 390px;    
}

.single-jetgo_partners #profile h2{
    margin-bottom: 0;
    line-height: 36px;
}

.single-jetgo_partners #inner-hero-banner {
    padding-top: 100px;
    padding-bottom: 163px;
}


.profile-picture-container {
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background-size: cover;
    border: 10px solid #fff;
    box-shadow: 0 0 23px #0000008f;
}

a.social-icons {
    color: #919191;    
    text-decoration: none;
    font-size: 32px;
    margin-right: 15px;
}

.single-jetgo_partners #fulltitle {
    display: none;
}

.single-jetgo_partners #hero-boxes {
    margin-top: 60px;
}

.on-mobile #page-wrap {
    overflow: visible;
}

.website-link a {
    text-decoration: none;
    margin-bottom: 20px !important;
    display: block;
    padding-left: 5px;
    font-size: 25px;
}

@media screen and  (max-width:963px){

    .profile-picture-container {
        width: 330px;
        height: 330px;
        background-size: cover !important;
        display: block;
        margin: 0 auto;        
    }

    #profile {
        margin-top: -120px;
    } 

}
@media screen and  (max-width:767px){
    #profile {
        display: block;
        text-align: center;
    }
}

/*--------------------------------------
FOOTER
--------------------------------------*/
#footer {
    padding-top: 100px;
    padding-bottom: 100px;
}
#footer .menu a {
	font-size: 16px !important;
	text-decoration: none !important;
}

#footer .widget h3 {
	font: 24px Montserrat, Arial, Helvetica, sans-serif !important;
	font-weight: bold !important;
	color:#bababa !important;
}

@media screen and (max-width:990px) {
	#footer .container .four.columns {
	    width: 100% !important;
	}
	#footer .container {
		display: block;
	}	
}
@media screen and (min-width:990px) {
	#footer .container {
		display: flex;
	}

	#footer .container .four.columns {
	    width: 100% !important;
	}
}

/*--------------------------------------
RESTO FILTER
--------------------------------------*/
.restaurant-locator {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.location-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.location-dropdown {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.city-hero-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.restaurant-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.restaurant-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.restaurant-image {
    height: 200px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-details {
    padding: 15px;
}

.restaurant-rating {
    color: gold;
    font-size: 1.2em;
    margin: 5px 0;
}

.restaurant-address {
    color: #666;
    margin: 5px 0;
}


/* RESTO FILTER PAGE */
#restaurant-results .restaurant {
    margin-bottom: 35px;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 25px;
}

.resto-inner {
    display: flex;
}

.resto-inner a {
    text-decoration: none;
}

.resto-image {
    width: 150px;
    height: 150px;
    background-size: cover !important;
    margin-right: 10px;
}


@media (max-width: 768px) {
    .location-filters {
        flex-direction: column;
    }
    
    .restaurant-list {
        grid-template-columns: 1fr;
    }
}

.state-loader, .city-loader {
    position: absolute;
}

.location-filters select{
    width: 100%
}


/* HOTEL FILTER PAGE */
#hotel-results .hotel {
    margin-bottom: 35px;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 25px;
}

.hotel-inner {
    display: flex;
}

.hotel-inner a {
    text-decoration: none;
}

.hotel-image {
    width: 150px;
    height: 150px;
    background-size: cover !important;
    margin-right: 10px;
}

.hotel-state-loader, 
.hotel-city-loader {
    position: absolute;
}

.location-filters select {
    width: 100%;
}

@media (max-width: 768px) {
    .location-filters {
        flex-direction: column;
    }
    
    .hotel-list {
        grid-template-columns: 1fr;
    }
}

/* EXPERIENCE FILTER PAGE */
#experience-results .experience {
    margin-bottom: 35px;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 25px;
}

.experience-inner {
    display: flex;
}

.experience-inner a {
    text-decoration: none;
}

.experience-image {
    width: 150px;
    height: 150px;
    background-size: cover !important;
    margin-right: 10px;
}

.experience-state-loader, 
.experience-city-loader {
    position: absolute;
}

.btn-purple {
    background: #6a0dad;
    color: white !important;
}

.btn-purple:hover {
    background: #4b0082;
}

@media (max-width: 768px) {
    .location-filters {
        flex-direction: column;
    }
    
    .experience-list {
        grid-template-columns: 1fr;
    }
}
/*--------------------------------------
FLEX
--------------------------------------*/
.flex {
    display: flex;
}

.flex .fas, .flex i {
    width:30px;
    font-size: 20px;    
    color:#fe6b41;
    text-align: right;
    padding-right: 8px;

}

/*--------------------------------------
ARCHIVE
--------------------------------------*/
.archive .post-wrap {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 60px;
    align-items: stretch;
}
.archive .post-thumbnail {
    min-width: 200px;
    width: 300px;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}
.archive .post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 15px;
}
.archive .entry-title a {
    text-decoration: none;
}
.archive .archive-filter {
    display: flex;
    margin-bottom: 40px;
    gap: 15px;
}
.archive .search {
    max-width: 76%;
    border-radius: 0;
    height: 43px;
}
.archive .pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
    gap: 10px;
    margin-top: 40px;
}
.archive .pagination li {
    border: 1px solid #ccc;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
}
.archive .pagination li.active {
    background-color: #fe6b41;
    color: #fff;
    border-color: #fe6b41;
}

.archive .pagination a {
    text-decoration: none;
}

.archive .pagination .active .page {
    color:#fff !important;
}

.archive #region-list .list {
    padding-left: 0;
    margin-left: 20px;
    list-style: none;    
}
.archive #region-list .list li{
    margin-bottom:15px;
}

.archive .city .read-more-link {
    display: block;
    margin-top: 25px;
    text-decoration: none;
    background: #fe6b41;
    color: #fff;
    text-align: center;
    padding: 9px 4px;
    max-width: 200px;
    border-radius: 25px;
}

/*--------------------------------------
CITY CAROUSEL
--------------------------------------*/
.citycarousel-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.citycarousel-image {
  max-width: 400px;
  flex: 1 1 300px;
}

.citycarousel-image img {
  width: 100%;
  border-radius: 20px;
}

.citycarousel-text {
  flex: 1 1 300px;
  max-width: 500px;
}

.citycarousel-text h5 {
  font-weight: bold;
}

.citycarousel-stars {
  color: orange;
  font-size: 1.2rem;
}

.citycarousel-indicators [data-bs-target] {
  background-color: #6c757d;
}

.citycarousel-indicators .active {
  background-color: #0d6efd;
}

@media (max-width: 576px) {
  .citycarousel-wrapper {
    flex-direction: column;
  }
}

#citycarousel .carousel-indicators {
    bottom: -40px !important;
}

#citycarousel .carousel-control-prev,
#citycarousel .carousel-control-next {
  width: auto;
  height: auto;
  background: none;
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #000;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
}

#citycarousel:hover .carousel-control-prev,
#citycarousel:hover .carousel-control-next {
  opacity: 1;
}

#citycarousel .carousel-control-prev-icon,
#citycarousel .carousel-control-next-icon {
  display: none; /* Hide Bootstrap default icons */
}

#citycarousel .carousel-control-prev::after,
#citycarousel .carousel-control-next::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.8rem;
  color: #000;
}

#citycarousel .carousel-control-prev::after {
  content: "\f104"; /* fa-chevron-left */
}

#citycarousel .carousel-control-next::after {
  content: "\f105"; /* fa-chevron-right */
}

/*--------------------------------------
OVERRIDES
--------------------------------------*/
.container .sixteen.columns {
    width: 1260px;
}

@media only screen and (max-width: 767px) {
    .container {
        width: 100% !important;
        margin: 0 auto;
    }
    .container .sixteen.columns {
        width: 100% !important;
    }
}