/**
 * Theme Name:   GeneratePress Child
 * Theme URI:    https://generatepress.com
 * Description:  Child theme for GeneratePress theme
 * Author:       Your Name
 * Author URI:   https://example.com
 * Template:     generatepress
 * Version:      1.0.0
 * License:      GNU General Public License v2 or later
 * License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:  generatepress-child
 * Tags:         two-columns, three-columns, one-column, right-sidebar, left-sidebar, footer-widgets, blog, e-commerce, flexible-header, full-width-template, buddypress, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, rtl-language-support, featured-images, theme-options
 */

/* Add your custom styles below this line */

/* Citysave Custom Header Styles */
/* .citysave-header *, #page *{
	font-family: "Source Sans Pro", sans-serif !important;
} */
.citysave-header {
	background-color: #ffffff;
	width: 100%;
	position: relative;
}
.citysave-news-grid-pagination a.next.page-numbers,
.citysave-news-grid-pagination a.prev.page-numbers
{
    display:none;
}
.citysave-header-container {
	max-width: 90%;
	margin: 0 auto;
	padding: 0 20px;
}

.citysave-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

.citysave-header-desktop {
	display: flex;
}

.citysave-header-mobile {
	display: none;
}

/* Logo Styles */
.citysave-logo {
	flex-shrink: 0;
}

.citysave-logo a {
	text-decoration: none;
	display: inline-block;
}

.citysave-logo-hexagon {
	position: relative;
	width: 215px;
	height: 215px;
	display: flex;
	align-items: center;
	justify-content: center;
}


.citysave-logo-text {
	font-size: 24px;
	font-weight: bold;
	color: #0066CC;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Logo Image Styles */
.citysave-logo-has-image {
	padding: 10px;
}

.citysave-logo-image {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* Navigation Styles */
.citysave-navigation {
	padding-right: 30px;
	flex: 1;
	display: flex;
	justify-content: flex-end;
	margin: 0 0px;
}

.citysave-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 30px;
}

.citysave-menu li {
	margin: 0;
	position: relative;
}

.citysave-menu a {
	color: #333333;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: "Source Sans Pro", sans-serif;
	transition: color 0.3s ease;
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 5px;
	color: #000000;
}

.citysave-menu a:hover,
.citysave-menu .current-menu-item > a {
	color: #0066CC;
}

.citysave-menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 12px;
	margin-left: 0px;
	margin-top: 0px;
	background-image: url('assets/arrow_down.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
}

.citysave-menu .menu-item-has-children:hover > a::after {
	transform: rotate(-90deg);
}

/* Submenu Styles */
.citysave-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #ffffff;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	min-width: 200px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 999;
	border-radius: 4px;
}

.citysave-menu .menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.citysave-menu .sub-menu li {
	position: relative;
	margin: 0;
	width: 100%;
}

.citysave-menu .sub-menu a {
	padding: 12px 20px;
	display: block;
	color: #333333;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
	white-space: nowrap;
	font-family: "Source Sans Pro", sans-serif;
}

.citysave-menu .sub-menu a:hover {
	background-color: #f5f5f5;
	color: #4A98CD;
}

/* Nested Submenus */
.citysave-menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-left: 5px;
}

.citysave-menu .sub-menu .menu-item-has-children > a::after {
	content: 'ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶';
	font-size: 10px;
	margin-left: auto;
	transform: none;
}

.citysave-menu .sub-menu .menu-item-has-children:hover > a::after {
	transform: none;
}

/* Highlight FOR EMPLOYERS - Add class 'highlight-menu-item' to menu item in WordPress admin */
.citysave-menu .highlight-menu-item > a,
.citysave-menu .menu-item.current-menu-item > a {
	color: #4A98CD;
	font-weight: 600;
}

/* Header Buttons */
.citysave-header-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
	flex-shrink: 0;
}

.citysave-btn {
	padding: 8px 16px;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 6px;
	transition: all 0.3s ease;
	display: inline-block;
}

.citysave-btn-login {
	background-color: #E6AE10;
	color: #333333;
	font-size: 16px;
	font-weight: 700;
	color: #203D66;
	width: 150px;
	display: flex;
	justify-content: center;
}

.citysave-btn-login:hover {
	background-color: #FFC700;
	color: #000000;
}

.citysave-btn-contact {
	background-color: #203D66;
	color: #FAFAFA;
	width: 150px;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	align-items: center;
	justify-content: center;
}

.citysave-btn-contact:hover {
	background-color: #002244;
	color: #ffffff;
}

/* Header Separator */
.citysave-header-separator {
	height: 2px;
	background-color: #0066CC;
	width: 100%;
}

/* Mobile Header Styles */
.citysave-header-mobile {
	display: none;
}

.citysave-hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	position: relative;
	flex-direction: column;
	justify-content: space-between;
	width: 40px;
	height: 30px;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	}
	
.citysave-hamburger:focus,
.citysave-hamburger:active,
.citysave-hamburger:focus-visible {
	outline: none;
	box-shadow: none;
	border: none;
}

.citysave-hamburger-line {
	display: block;
		width: 100%;
	height: 3px;
	background-color: #203D66;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.citysave-hamburger.active .citysave-hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.citysave-hamburger.active .citysave-hamburger-line:nth-child(2) {
	opacity: 0;
}

.citysave-hamburger.active .citysave-hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.citysave-mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	}
	
.citysave-mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.citysave-mobile-menu-content {
	position: fixed;
	top: 0;
	right: -100%;
	width: 85%;
	max-width: 400px;
	height: 100vh;
	background-color: #ffffff;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	overflow-y: auto;
	padding: 80px 30px 30px;
	transition: right 0.3s ease;
	display: flex;
		flex-direction: column;
}

.citysave-mobile-menu-overlay.active .citysave-mobile-menu-content {
	right: 0;
}

/* Mobile Navigation Styles */
.citysave-navigation-mobile {
		width: 100%;
	margin-bottom: 30px;
}

.citysave-menu-mobile {
	flex-direction: column;
	width: 100%;
	gap: 0;
	align-items: flex-start;
}

.citysave-menu-mobile li {
	width: 100%;
	border-bottom: 1px solid #f0f0f0;
}

.citysave-menu-mobile a {
	padding: 15px 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 16px;
	flex: 1;
	text-decoration: none;
	color: inherit;
	}
	
.citysave-menu-mobile .menu-item-has-children {
	position: relative;
}

.citysave-menu-mobile .menu-item-has-children > a {
	padding-right: 50px;
	flex: 1;
}

.citysave-menu-mobile .menu-item-has-children .submenu-toggle {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	z-index: 20;
	pointer-events: auto;
}

.citysave-menu-mobile .menu-item-has-children .submenu-toggle::after {
	content: '';
	display: block;
	width: 14px;
	height: 12px;
	background-image: url('assets/arrow_down.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
}

.citysave-menu-mobile .menu-item-has-children.active .submenu-toggle::after {
	transform: rotate(180deg);
}

.citysave-menu-mobile .menu-item-has-children .submenu-toggle:focus,
.citysave-menu-mobile .menu-item-has-children .submenu-toggle:active {
	outline: none;
	box-shadow: none;
}

.citysave-menu-mobile .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background-color: #f9f9f9;
	margin-top: 0;
	padding: 0;
		border-left: 3px solid #0066CC;
	display: none !important;
	width: 100%;
	min-width: auto;
	}
	
.citysave-menu-mobile .sub-menu.active,
.citysave-menu-mobile li.menu-item-has-children.active > .sub-menu {
	display: block !important;
	}
	
.citysave-menu-mobile .sub-menu a {
	padding: 12px 15px;
		padding-left: 30px;
	padding-right: 40px;
	font-size: 14px;
	}
	
.citysave-menu-mobile .sub-menu .sub-menu {
		left: 0;
		margin-left: 0;
	margin-top: 0;
	}
	
/* Nested submenu toggle button */
.citysave-menu-mobile .sub-menu .menu-item-has-children {
	position: relative;
	}
	
.citysave-menu-mobile .sub-menu .menu-item-has-children .submenu-toggle {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	}
	
/* Mobile Header Buttons */
.citysave-header-buttons-mobile {
	flex-direction: column;
	width: 100%;
	gap: 15px;
	margin-top: auto;
	}
	
.citysave-header-buttons-mobile .citysave-btn {
	width: 100%;
	text-align: center;
	justify-content: center;
	}
.hide-on-desktop{
	display: none !important;
}
/* Mobile Responsive */
@media (max-width: 1024px) {
	
	/* Hide desktop header on mobile */
	.citysave-header-desktop {
		display: none;
	}
	
	/* Show mobile header */
	.citysave-header-mobile {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
	}
	
	/* Show hamburger button */
	.citysave-hamburger {
		display: flex;
	}
	
	/* Mobile logo adjustments */
	.citysave-logo-mobile .citysave-logo-hexagon {
		width: 120px;
		height: 120px;
	}
	
	.citysave-logo-mobile .citysave-logo-text {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.citysave-popup-button .premium-modal-box-modal-dialog .premium-modal-box-modal-footer button{
		left:85% !important;
		font-size:30px !important;
	
	}
	.citysave-iframe iframe {
		min-height: 2700px !important;
	}
	.elementor-element.e-con-full.citysave-vertical-line.e-flex.e-con.e-child {
		height:0%;
		flex-grow: 1 !important;
	}
	
	.citysave-news-form-container .email-container p{
		display:flex;
		flex-direction:column !important;
	}
	
	.citysave-mobile-menu-content button.submenu-toggle::after {
		display:none !important;
	}
	
	
	.citysave-news-form-container span.wpcf7-form-control-wrap {
		width:100% !important
	}
	
	.citysave-news-form-container input.wpcf7-form-control.wpcf7-submit.has-spinner.email-submit {
		/* padding:0px */
		max-width:100%;
		margin-left:0px;
		text-align:start;
		padding-left:20px;
	}
	.citysave-news-container{
		width:100% !important;
	}
	.citysave-urgent-action-form-wrapper *{
		max-width:100%;
	}
	.citysave-urgent-action-form-wrapper .citysave-form-title{
		font-size:30px !important;
		line-height:34px !important;
	}
	.citysave-urgent-action-form-wrapper .citysave-row {
		flex-direction:column;
	}

	.citysave-action-form-wrapper *{
		max-width:100%;
	}
	.citysave-overflow-hidden{
		overflow:hidden !important;
	}
	.citysave-action-form-wrapper .citysave-form-title{
		font-size:30px !important;
		line-height:34px !important;
	}
	.citysave-action-form-wrapper .citysave-row {
		flex-direction:column;
	}



	
	.hide-on-mobile{
		display: none !important;
	}
	.hide-on-desktop{
		display: block !important;
	}
	/* Mobile header adjustments */
	.citysave-logo-mobile .citysave-logo-hexagon {
		width: 100px;
		/* height: 100px; */
	}
	
	.citysave-logo-mobile .citysave-logo-text {
		font-size: 18px;
	}
	
	.citysave-mobile-menu-content {
		width: 90%;
		padding: 70px 20px 20px;
	}
}

.citysave-logo {
    position:absolute;
    top: 10px;
    z-index:100;
}
header.citysave-header {
    padding: 30px 0px;
    padding-bottom: 10px;
    z-index: 15;
}
.swiper-slide{
    margin:0px 1% !important;
}
 /* WRAPPER */
.testimonial-carousel-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 80px;
}

.testimonial-swiper {
	width: 100%;
	padding: 60px 0 20px 0;
	position: relative;
}

/* Base slide width: 30% */
.testimonial-swiper .swiper-slide {
	flex-basis: 30% !important;
	max-width: 30% !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
	will-change: transform, opacity, flex-basis;
}

/* Center slide width: 40% */
.testimonial-swiper .swiper-slide-active {
	flex-basis: 40% !important;
	max-width: 40% !important;
	opacity: 1;
}

/* Hex logo */
.hex-logo {
	width:150px;
	position:absolute;
	top: -22%;
	/* left: 25%; */
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform, width;
}



/* Box styles */
.testimonial-box {
	border-radius: 18px;
	padding: 20px 30px 20px;
	/* padding-top: 15px; */
	min-height: 280px;
	width: 100%;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: left;
	will-change: background-color, color, border;
}

/* Side slides: blue */
.swiper-slide .testimonial-box {
	background: #4A92C6;
	color: #fff;
	border: none;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Center slide: white */
.swiper-slide-active .testimonial-box {
	background: #fff !important;
	color: #000 !important;
	border: 3px solid #4A98CD !important;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Quotes */
.quote-icon {
	/* font-size: 60px; */
	/* height: 0px; */
	/* margin-bottom: 10px; */
	color: #fff;
	position: relative;
	display: inline-block;
}

.quote-icon img {
	display: block;
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show white quote for non-active slides */
.quote-icon .quote-white {
	display: block;
	opacity: 1;
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.quote-icon .quote-blue {
	display: block;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show blue quote for active slide */
.swiper-slide-active .quote-icon .quote-white {
	opacity: 0;
}

.swiper-slide-active .quote-icon .quote-blue {
	height: 70px;
    min-width: 70px;
	opacity: 1;
}

/* Author */
.testimonial-author {
	text-align: right;
	margin-top: 0px;
	font-weight: 600;
}

/* NAVIGATION BELOW */
.testimonial-nav {
	display: flex;
	justify-content: center;
	gap: 100px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 10;
}

.swiper-button-prev, .swiper-button-next {
	position: relative !important;
	width: 52px;
	height: 52px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 0 !important;
	margin-top: 0 !important;
	transform: translateY(0) !important;
}

.swiper-button-prev::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('assets/left.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.swiper-button-next::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('assets/right.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.swiper-button-disabled {
	opacity: 0.4 !important;
}

/* MOBILE */
@media(max-width: 991px) {
	.testimonial-swiper .swiper-slide, .swiper-slide-active {
		flex-basis: 100% !important;
		max-width: 100% !important;
		opacity: 1 !important;
	}
}
.swiper-slide-active .testimonial-box {
    font-family: "Source Sans Pro", sans-serif;
    font-size:18px;
    font-weight:400;
    line-height:26px;
    color:#203D66 !important;
}

.testimonial-author strong{
    font-weight:700;
    font-size:16px;
    line-height:30px;
    
}
.testimonial-author{
    font-weight:400;
}

/* ========================================
   Citysave Footer Styles
   ======================================== */

.citysave-footer {
	background-image: linear-gradient(90deg, #203D66 37%, #4A98CD 100%);
	width: 100%;
	position: relative;
	padding: 60px 0 40px;
	color: #ffffff;
	font-family: "Source Sans Pro", sans-serif;
}

.citysave-footer-top-bar {
	display: none;
}

.citysave-footer-container {
	max-width: 90%;
	margin: 0 auto;
	padding: 0 20px;
}

.citysave-footer-content {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.citysave-footer-logo a {
	text-decoration: none;
	display: inline-block;
}

.citysave-footer-logo-image {
	max-width: 200px;
	height: auto;
	display: block;
}

.citysave-footer-logo-text {
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Desktop Footer - Show by default */
.citysave-footer-desktop {
	display: block;
}

/* Mobile Footer - Hide by default */
.citysave-footer-mobile {
	display: none;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
	/* Hide desktop footer on mobile */
	.citysave-footer-desktop {
		display: none;
	}
	
	/* Show mobile footer on mobile */
	.citysave-footer-mobile {
		display: block;
	}
	
	/* Mobile Footer Styles */
	.citysave-footer-mobile {
		padding: 40px 0 30px;
	}
	
	.citysave-footer-content-mobile {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 30px;
	}
	
	/* Mobile Logo */
	.citysave-footer-logo-mobile {
		position: absolute;
		top: -50px;
		width: 150px;
		height: 150px;
		margin: 0 0 20px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.citysave-footer-logo-image-mobile {
		max-width: 100%;
		height: auto;
		width: 100%;
	}
	
	.citysave-footer-logo-text-mobile {
		font-size: 16px;
		font-weight: bold;
		color: #ffffff;
		text-transform: uppercase;
		letter-spacing: 1px;
	}
	
	/* Mobile Slogan */
	.cityspan-slogan-mobile {
		font-weight: 600;
		font-size: 24px;
		line-height: 32px;
		color: #E6AE10;
		text-align: left;
		width: 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}
	
	/* Mobile Contact Details */
	.citysave-contact-details-mobile {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 25px;
	}
	
	.citysave-contact-and-email-mobile {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		width: 100%;
	}
	
	/* Mobile Phone Number */
	.citysave-number-mobile {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 12px;
		color: #FFFFFF;
		font-size: 16px;
		font-weight: 400;
		text-decoration: none;
		transition: all 0.3s ease;
	}
	
	.citysave-number-mobile:hover {
		color: #E6AE10;
		text-decoration: underline;
		text-underline-offset: 4px;
		text-decoration-color: #E6AE10;
	}
	
	.citysave-number-mobile img {
		width: 24px;
		height: auto;
	}
	
	/* Mobile Email */
	.citysave-email-mobile {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
		width: 100%;
	}
	
	.citysave-email-mobile img {
		width: 24px;
		height: auto;
		flex-shrink: 0;
	}
	
	.citysave-emails-list-mobile {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.citysave-emails-list-mobile a {
		color: #FFFFFF;
		text-decoration: none;
		transition: all 0.3s ease;
		font-size: 14px;
		font-weight: 400;
	}
	
	.citysave-emails-list-mobile a:hover {
		color: #E6AE10;
		text-decoration: underline;
		text-underline-offset: 4px;
		text-decoration-color: #E6AE10;
	}
	
	/* Mobile Social Links */
	.citysave-social-links-mobile {
		display: flex;
		justify-content: flex-start;
		gap: 30px;
	}
	
	.citysave-social-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: #FFFFFF;
		text-decoration: none;
		transition: all 0.3s ease;
		width: 40px;
		height: 40px;
	}
	
	.citysave-social-link:hover {
		color: #E6AE10;
		transform: translateY(-3px) scale(1.1);
	}
	
	/* Mobile Privacy Policy */
	.citysave-privacy-policy-mobile {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		color: #FAFAFA;
		font-weight: 400;
		font-size: 11px;
		line-height: 18px;
		gap: 8px;
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.citysave-overflow-hidden-for-main-container{
		overflow:hidden !important;
	}
	.citysave-footer {
		padding: 40px 0 30px;
	}
	
	.cityspan-slogan-mobile {
		font-size: 20px;
		line-height: 28px;
	}
	
	.citysave-footer-logo-mobile {
		width: 120px;
		height: 120px;
	}
	
	.citysave-privacy-policy-mobile {
		font-size: 10px;
		line-height: 16px;
	}
}
.citysave-footer-logo {
    width:215px;
    height:215px;
    position:absolute;
    top:-45px
    
}
.citysave-footer-content {
    font-family: "Source Sans Pro";
}

footer.citysave-footer {
    z-index: 20;
}

.citysave-footer-desktop {
    padding-top: 120px;
}

.citysave-footer-content {
    display:flex;
    flex-direction:column;
}

.citysave-last-container {
    display:flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: 150px;
}

.citysave-contact-details {
    display:flex;
    flex-direction:column;
    align-items: flex-end;
    gap: 20px;
}
span.cityspan-slogan {
    font-weight:600;
    font-size:30px;
    line-height:38px;
    color:#E6AE10;
    width:350px;
}
.citysave-privacy-policy {
    display:flex;
    flex-direction:column;
    color:#FAFAFA;
    font-weight:400;
    font-size:12px;
    line-height:22px;
}
.citysave-privacy-policy span a{
	color:#E6AE10;
}
.citysave-privacy-policy span a:hover{
	color:white;
}
.citysave-contact-and-email {
    display:flex;
    flex-direction:row;
    gap: 30px;
}

.citysave-email {
    display:flex;
    gap: 12px;
    align-items: flex-start;
}
.citysave-emails-list {
    display:flex;
    flex-direction:column;
}

.citysave-emails-list a {
    color:#FFFFFF;
    text-decoration:none;
    transition: all 0.3s ease;
    font-size:16px;
    font-weight:400;
}

.citysave-emails-list a:hover {
    color:#E6AE10;
    text-decoration:underline;
    text-underline-offset: 4px;
    text-decoration-color:#E6AE10;
    transform: translateX(5px);
}

.citysave-social-links {
    display:flex;
    gap: 10px;
    font-size:16px;
    font-weight:400px;
    line-height:24px;
}

.citysave-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.citysave-social-link svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.citysave-social-link:hover {
    color: #E6AE10;
    transform: translateY(-3px) scale(1.1);
}

.citysave-social-link:hover svg {
    filter: drop-shadow(0 2px 4px rgba(230, 174, 16, 0.3));
}

.citysave-email img{
    margin-top:0px;
    width:24px;
}

.citysave-number {
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#FFFFFF;
    font-size:16px;
    font-weight:400px;
    text-decoration:none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.citysave-number:hover {
    color:#E6AE10;
    text-decoration:underline;
    text-underline-offset: 4px;
    text-decoration-color:#E6AE10;
    transform: translateX(5px);
}

.citysave-number img{
    margin-top:0px;
    width:24px;
    transition: transform 0.3s ease;
}

.citysave-number:hover img {
    transform: scale(1.1);
}
.swiper-slide.testimonial-slide.swiper-slide-next,
.swiper-slide.testimonial-slide.swiper-slide-prev{
    font-weight:400;
    font-size:14px;
    line-height:22px;
}

.swiper-slide.testimonial-slide.swiper-slide-next .testimonial-author,
.swiper-slide.testimonial-slide.swiper-slide-prev .testimonial-author{
    font-size:12px;
    font-weight:400;
}
.swiper-slide.testimonial-slide.swiper-slide-next .testimonial-author strong{
    font-weight:700;  
}

.swiper-slide.testimonial-slide.swiper-slide-active {
    margin-bottom:50px !important;
    margin-top:80px !important;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

div.swiper-wrapper {
    display:flex;
    align-items:flex-end;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-box {
    height:min-content;
    min-height: 10px;
}
.swiper-slide.testimonial-slide.swiper-slide-prev .testimonial-box p,
.swiper-slide.testimonial-slide.swiper-slide-next .testimonial-box p{
    margin-bottom:0px;
}

.swiper-slide.testimonial-slide.swiper-slide-prev .hex-logo,
.swiper-slide.testimonial-slide.swiper-slide-next .hex-logo{
    width:100px;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.swiper-slide.testimonial-slide.swiper-slide-active .testimonial-box p{
    margin-top:24px;
}
.testimonial-nav .swiper-button-prev ,
.testimonial-nav .swiper-button-next {
    width:40px !important;
}
.testimonial-carousel-wrapper .testimonial-swiper.swiper {
	min-height: 410px;
}

/* News Container Hover Effects */
.citysave-news-container {
	transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.citysave-news-arrow-and-text {
	display: none;
	opacity: 0;
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
div.swiper-wrapper {
    min-height: 430px;
}
.ok-buttons-with-arrows a{
    background-color:#E6AE10 !important;
    color:#203D66 !important;
}
.ok-buttons-with-arrows svg{
    fill:#203D66 !important;
}
.ok-buttons-with-arrows-3 svg{
    fill:#203D66 !important;
}
.ok-buttons-with-arrows *:hover{
    background-color:#4A98CD !important;
    color:#ffffff !important;

}
.ok-buttons-with-arrows:hover svg{
    fill:#ffffff !important;
}
.e-n-accordion details.e-n-accordion-item:last-child summary.e-n-accordion-item-title {
    border: none !important;
}
.citysave-vertical-line{
	min-height: 50px;
	height: 100%;
	transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Steps Plus/Minus Icons - Default State */
.citysave-plus {
	display: block;
}

.citysave-minus {
	display: none;
}
/* Card hover container styles */
.citysave-popup-button-container:hover {
    background-color: #E6AE10 !important;
    border: 3px solid #203D66 !important;
}
body:hover .citysave-popup-button-container button {
    background-color: #E6AE10 !important;
    /* border: 3px solid #203D66 !important; */
}
.citysave-popup-button-container button {
    background-color: #E6AE10 !important;
    /* border: 3px solid #203D66 !important; */
}

/* Target only the FIRST TWO direct h2 headings inside the card */
.citysave-popup-button-container:hover > .elementor-widget-heading:nth-of-type(1) h2,
.citysave-popup-button-container:hover > .elementor-widget-heading:nth-of-type(2) h2 {
    color: black !important;
}

/* Button styles on hover */
.citysave-popup-button-container:hover .citysave-popup-button-main .premium-modal-trigger-btn {
    background-color: #203D66 !important;
    color: white !important;
}

.citysave-popup-button-container .elementor-widget-heading ul{
	margin: 0 0 0 15px;
}

/* SVG on hover */
.citysave-popup-button-container:hover .citysave-popup-button-main .premium-modal-trigger-btn svg path {
    fill: #FFFFFF !important;
}

/* News Pagination Styles */
/* Base style */
.citysave-news-pagination h2 {
	cursor: pointer;
	padding: 8px 14px;
	/* border-radius: 6px; */
	transition: all 0.5s ease;
	color: white;
	/* default */
}

/* Hover effect for NON-ACTIVE */
.citysave-news-pagination h2:not(.active):hover {
	background-color: white;
	color: #15509D !important;
}

/* ACTIVE PAGE NUMBER */
.citysave-news-pagination h2.active {
	background-color: white;
	color: #15509D !important;
}

/* Base: all news containers (any element whose class contains this text) */
[class*="citysave-news-container-"] {
	opacity: 0;
	transition: opacity 1s ease;
}

/* Visible container */
[class*="citysave-news-container-"].active {
	opacity: 1;
}

/* Completely hidden containers */
[class*="citysave-news-container-"].hidden {
	display: none !important;
}
.citysave-news-form-container {
    width:100%;
    background-image: linear-gradient(90deg, #203D66 37%, #4A98CD 100%);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:50px;
    padding-bottom: 10px;
    border-radius:20px;
    font-family: "Source Sans Pro", sans-serif;
}
.citysave-news-form-container p{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:00px;
    align-items:center;
    justify-content:center;
    color:white
}
.citysave-news-form-container .email-container p{
    display:flex;
    gap:0px;
    flex-direction:row;
    min-height: 80px;
    width:100%;
    align-items: flex-start;
}
.citysave-news-form-container .headidng{
	font-size:55px;
    line-height:50px;
    font-weight:600;
}

.citysave-news-form-container span.subheading-bold {
    margin-top:20px;
    font-size:16px;
    line-height:26px;
    font-weight:700;
}

.citysave-news-form-container span.subheading {
    font-size:16px;
    line-height:26px;
    font-weight:400;
    margin-top:-20px;
    margin-bottom:40px
}

.citysave-news-form-container .email-container {
    width:100%;
}
.citysave-news-form-container .email-container span{
    width:70%;
}
.citysave-news-form-container .email-container span input{
    width:100%;
    min-height:60px;
}
.citysave-news-form-container .email-container span input::placeholder {
    	font-family: "Source Sans Pro", sans-serif !important;
	font-weight:400;
	font-size:16px;
	font-style:italic;

}
.citysave-news-form-container .wpcf7-spinner{
    display:none;
}

.citysave-news-form-container .email-container .email-submit{
    background-color:#E6AE10;
    padding-right:90px;
    margin-left: -20px;
    padding-left: 40px;
    background-image: url('https://citysave.digitalglue.website/app/uploads/2025/11/svgviewer-output-4.svg');
    background-size: 34px;      /* makes it fully cover the area */
    background-position: right 15px center; /* centers the image */
    background-repeat: no-repeat;/* prevents repeating */
    font-weight:700;
    font-size:22px;
    line-height:26px;
    min-height:60px;
    /* padding:10px 0px !important; */
    color:#203D66;
    border-radius: 0px;
}
.citysave-news-form-container .email-container .email-submit:hover{
	background-color: #4A98CD !important;
	color:white;
	background-image:url('https://citysave.digitalglue.website/app/uploads/2025/11/Vector_no_border.svg')
}

.citysave-action-form-wrapper {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    background-image: linear-gradient(90deg, #203D66 37%, #4A98CD 100%);
    border-radius:20px;
    padding:50px;
    padding-bottom: 30px;
    color:white;
    font-family: "Source Sans Pro", sans-serif;
}
.citysave-action-form-wrapper .citysave-row input::placeholder {
    	font-family: "Source Sans Pro", sans-serif !important;
	font-weight:700;
	font-size:14px;
    color:#D1D1D1;
	/* font-style:italic; */

}
.citysave-action-form-wrapper .citysave-row {
    width:100%;
    display:flex;
    gap:30px;
    justify-content:center;
    font-weight:700;
    font-size:16px;
    line-height:28px;
}

.citysave-action-form-wrapper .citysave-form {
    display:flex;
    width: 800px;
    gap:20px;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.citysave-action-form-wrapper .wpcf7-spinner{
    display:none;
}

.citysave-action-form-wrapper .citysave-submit-wrapper .citysave-submit-btn {
    background-color:#E6AE10;
    padding-right:90px;
    background-image: url('https://citysave.digitalglue.website/app/uploads/2025/11/svgviewer-output-4.svg');
    background-size: 34px;      /* makes it fully cover the area */
    background-position: right 15px center; /* centers the image */
    background-repeat: no-repeat;/* prevents repeating */
    font-weight:700;
    font-size:22px;
    line-height:26px;
    min-height:60px;
    /* padding:10px 0px !important */
    color:#203D66;
	border-radius:8px;
}
.citysave-action-form-wrapper .citysave-submit-wrapper .citysave-submit-btn:hover{
	background-color: #4A98CD !important;
	color:white;
	background-image:url('https://citysave.digitalglue.website/app/uploads/2025/11/Vector_no_border.svg')
}

.citysave-action-form-wrapper h2.citysave-form-title {
	font-weight:600;
	font-size:55px;
	line-height:55px;
	margin-bottom:40px;
}

.citysave-action-form-wrapper .citysave-submit-wrapper {
	align-self:flex-end;
	margin-right:10px;
}
.citysave-urgent-action-form-wrapper {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    background-image: linear-gradient(90deg, #203D66 37%, #4A98CD 100%);
    border-radius:20px;
    padding: 30px;
    color:white;
    font-family: "Source Sans Pro", sans-serif;
}
.citysave-urgent-action-form-wrapper .citysave-row input::placeholder {
    	font-family: "Source Sans Pro", sans-serif !important;
	font-weight:700;
	font-size:14px;
    color:#D1D1D1;
	/* font-style:italic; */

}
.citysave-urgent-action-form-wrapper .citysave-row,
.citysave-urgent-action-form-wrapper .citysave-row-full{
    width:100%;
    display:flex;
    gap:30px;
    justify-content: space-between;
    font-weight:700;
    font-size:16px;
    line-height:28px;
}

.citysave-urgent-action-form-wrapper .citysave-form {
    display:flex;
    width: 800px;
    gap:20px;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.citysave-urgent-action-form-wrapper .wpcf7-spinner{
    display:none;
}

.citysave-urgent-action-form-wrapper .citysave-submit-wrapper .citysave-submit-btn {
    background-color:#E6AE10;
    padding-right:90px;
    background-image: url('https://citysave.digitalglue.website/app/uploads/2025/11/svgviewer-output-4.svg');
    background-size: 34px;      /* makes it fully cover the area */
    background-position: right 15px center; /* centers the image */
    background-repeat: no-repeat;/* prevents repeating */
    font-weight:700;
    font-size:22px;
    line-height:26px;
    min-height:60px;
    /* padding:10px 0px !important */
    color:#203D66;
	border-radius:8px;
}
.citysave-urgent-action-form-wrapper .citysave-submit-wrapper .citysave-submit-btn:hover{
	background-color: #4A98CD !important;
	color:white;
	background-image:url('https://citysave.digitalglue.website/app/uploads/2025/11/Vector_no_border.svg')
}

.citysave-urgent-action-form-wrapper h2.citysave-form-title {
	width:730px;
	text-align:center;
	font-weight:600;
	font-size:40px;
	line-height:48px;
	margin-bottom:40px;
}

.citysave-urgent-action-form-wrapper .citysave-submit-wrapper {
	align-self:flex-end;
	margin-right:10px;
}
.citysave-urgent-action-form-wrapper .citysave-row-full textarea{
    max-height:100px;
}
.citysave-urgent-action-form-wrapper .citysave-row-full .citysave-field{
    width: 100%;
}

/* ========================================
   Simple Mobile Testimonial Carousel
   ======================================== */

/* Basic structure - you can style these */
.citysave-testimonial-mobile-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.citysave-testimonial-mobile-swiper {
	width: 100%;
	overflow: hidden;
}

.citysave-testimonial-mobile-slide {
	width: 100% !important;
	flex-shrink: 0 !important;
	box-sizing: border-box;
}

.citysave-testimonial-mobile-swiper .swiper-wrapper {
	display: flex;
	transform: translate3d(0, 0, 0);
}

.citysave-testimonial-mobile-swiper .swiper-slide {
	width: 100% !important;
	flex-shrink: 0 !important;
}

/* Add your styles for .citysave-testimonial-mobile-logo */
/* Add your styles for .citysave-testimonial-mobile-logo img */
/* Add your styles for .citysave-testimonial-mobile-review */
/* Add your styles for .citysave-testimonial-mobile-name */

/* Navigation arrows */
.citysave-testimonial-mobile-nav {
	display: flex;
	justify-content: center;
	gap: 100px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 10;
}

.citysave-testimonial-mobile-nav .swiper-button-prev,
.citysave-testimonial-mobile-nav .swiper-button-next {
	position: relative !important;
	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 0 !important;
	margin-top: 0 !important;
	transform: translateY(0) !important;
	cursor: pointer;
	z-index: 10;
	pointer-events: auto;
}

.citysave-testimonial-mobile-nav .swiper-button-disabled {
	opacity: 0.4 !important;
}

/* Show only on mobile */
@media (max-width: 1024px) {
	.citysave-testimonial-mobile-wrapper {
		display: block;
	}
}

/* Hide on desktop */
@media (min-width: 1025px) {
	.citysave-testimonial-mobile-wrapper {
		display: none;
	}
}
.citysave-logo.citysave-logo-mobile {
    top:30px;
    left:0px;
    width:200px !important;
    min-height:150px;

}
.citysave-logo.citysave-logo-mobile *{
    width:200px !important;
    min-height:130px;
}
.citysave-hamburger:focus{
	background-color: transparent;
}
#citysave-mobile-testimonial-slider .hex-logo {
    left:25%;
    z-index:10;
}
.citysave-mobile-testimonial-box.testimonial-box .quote-icon{
    margin-bottom:20px
}
.citysave-mobile-testimonial-box.testimonial-box {
    border:3px solid #4A98CD !important;
}
.citysave-mobile-slide.citysave-mobile-active {
    margin:auto;
}

/* Remove background color on button hover/focus/active */
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
a.button:hover,
button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
a.button:focus,
a.wp-block-button__link:not(.has-background):active,
a.wp-block-button__link:not(.has-background):focus,
a.wp-block-button__link:not(.has-background):hover {
	background-color: transparent !important;
}

.citysave-popup-button .premium-modal-box-modal-dialog .premium-modal-box-modal-footer {
    order:-1 !important;
    background-color:#80060600 !important;
    height:0px;
    overflow:visible !important;
    padding:0px;
	border: none;
    
}
.citysave-popup-button .premium-modal-box-modal-dialog .premium-modal-box-modal-footer button{
    position:absolute;
    /* left:0px; */
    left:96%;
    /* bottom:240px; */
    z-index:1;
    background-color:transparent !important;
	background-image: url('/app/themes/generatepress-child/assets/x-icon.png') !important;
	background-size: 34px;      /* makes it fully cover the area */
	background-position: center; /* centers the image */
	background-repeat: no-repeat;/* prevents repeating */
	width:40px;
	height:40px;
	border:none !important;
	font-size: 0;
}
.citysave-iframe iframe{
    min-height:1550px;
}
.citysave-extra-info a{
	color: white;
	text-decoration: underline;
}
.citysave-extra-info a:hover{
    color:#E6AE10;
}
.citysave-contact-hover {
    transition: 0.2s;
    cursor: pointer;
}

.citysave-contact-hover:hover {
    color: #E6AE10;
}
.contact-link{
	font-size: 18px !important;
	font-weight: 700;
}

.contact-link-call{
	font-size: 20px !important;
}

.contact-link:hover{
	color:#E6AE10;
}

.elementor-element.citysave-financial-confidence-card:hover{
    background-color:#203D66 !important;
    border-color:#E6AE10 !important;
}
.elementor-element.citysave-financial-confidence-card *{
	background-color:transparent !important;
}
.elementor-element.citysave-financial-confidence-card:hover *{
    color:#E6AE10 !important;
    /* background-color:#203D66 !important; */
    fill:#E6AE10 !important;
}
.ok-buttons-with-arrows span.elementor-button-content-wrapper:hover {
    background-color:transparent !important; 
}
.ok-buttons-with-arrows span.elementor-button-content-wrapper *:hover {
    background-color:transparent !important; 
}
.ok-buttons-with-arrows span.elementor-button-content-wrapper *{
    background-color:transparent !important; 
}
.ok-buttons-with-arrows span.elementor-button-content-wrapper {
    background-color:transparent !important; 
}
.ok-buttons-with-arrows span.elementor-button-text {
    margin-top:2px !important;
}
.ok-buttons-with-arrows span.elementor-button-text {
    text-shadow:none;
}

.citysave-popup-button div.premium-modal-box-modal:hover button.premium-modal-trigger-btn.premium-btn-lg.premium-button-none svg path{
    fill:#203d66 !important;
}
.citysave-popup-button-container:hover .citysave-inner-popup-button .premium-modal-trigger-btn {
    background-color: #E6AE10 !important;
    color: #203D66 !important;  
}
.citysave-popup-button-container:hover .citysave-inner-popup-button .premium-modal-trigger-btn svg path{
    fill: #203D66 !important;
}
.citysave-popup-button-container:hover .citysave-inner-popup-button .premium-modal-trigger-btn:hover{
    background-color: #4A98CD !important;
    color: #ffffff !important;  
}
.citysave-popup-button-container:hover .citysave-inner-popup-button .premium-modal-trigger-btn:hover svg path{
    fill: #ffffff !important;
}


.premium-modal-box-container .premium-modal-box-modal-dialog{
	overflow: visible !important;
}
.premium-modal-box-container .premium-modal-box-modal-dialog .premium-modal-box-modal-body{
	overflow: auto;
}
.premium-modal-box-container .premium-modal-box-modal-dialog .premium-modal-box-modal-footer .premium-modal-box-modal-lower-close{
	left: auto;
	right: -40px;
}


.citysave-steps-main-container, .progress-acrodion-wrapper{
	pointer-events: none;
}

.find-wrapper-loan-index{
	z-index: 4;
}