/* #Media Queries
================================================== */
/* Large Devices, Wide Screens */


@media only screen and (min-width : 1200px) and (max-width : 1400px) {

	.phone-cta-btn{
		padding: 8px 41px;
	}
	.navbar-brand img{
		width: 100%;
	}
	#menu-main-menu{
		gap: 15px;
	}}

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

	.img-mobile-logo{
		display: block;
		width: 100vw;
		height: 150px;
	}

	.title-primary {
		font-size: 70px;
		line-height: 60px;
	} 

	.navbar-expand-lg .navbar-toggler{
		display: block !important;
	}

	.navbar-phone-cta{
		display: none !important;
	}

	/* Services Section */
	.services-grid {
		gap: 25px;
	}
	
	.service-card {
		width: 260px;
		height: 320px;
	}

	/* Navbar/Header styles */
	.navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
		transition: all 0.3s ease;
	}

	/* Change to cross icon when menu is open */
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
		background-image: url('/wp-content/uploads/2025/09/Union.svg');
		background-size: 20px 20px;
		background-repeat: no-repeat;
		background-position: center;
	}

	/* Mobile navbar collapse for tablets */
	.header-row-nav {
		position: relative;
	}

	#navbar-content {
		flex-direction: column;
		align-items: flex-start;
		width: 100vw;
		background-color: var(--dark-blue);
		position: fixed;
		top: 95px; 
		left: 0;
		right: 0;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
		z-index: 9999;
		max-height: calc(100vh - 150px);
		overflow-y: auto;
		margin: 0;
	}

	/* Permitir que Bootstrap maneje la transición de collapse */
	.navbar-collapse {
		flex-direction: column;
		align-items: flex-start;
	}

	.navbar-collapse.show {
		display: flex;
		justify-content: start;
	}

	/* Suavizar la animación durante el estado "collapsing" */
	.navbar-collapse.collapsing {
		transition: height .35s ease;
	}

	.navbar-nav {
		flex-direction: column;
		width: 100%;
		align-items: flex-start !important;
		margin: 0;
		margin-top: 20px;
		padding: 0px;
	}

	.navbar-nav .nav-item {
		width: 100%;
		display: block;
		align-items: flex-start;
		margin: 0;
	}

	.navbar-nav .nav-link {
		padding: 20px;
		width: 100%;
		border-bottom: 1px solid var(--light-gold);
		color: white !important;
		font-size: 18px;
		text-decoration: none;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.navbar-nav .nav-link:last-child {
		border-bottom: 1px solid var(--light-gold);
	}

	#menu-main-menu {
		width: 100%;
		gap: 0 !important;
		align-items: stretch !important;
		border-top: 1px solid var(--light-gold);
	}

	#menu-main-menu li {
		width: 100%;
		display: block !important;
		align-items: stretch !important;
	}

	#menu-main-menu li:hover {
		background: rgba(199, 222, 238, 0.1);
	}

	/* Dropdown functionality for mobile */
	.navbar-nav .dropdown-toggle::after {
		display: block;
		border: none;
		content: "▼";
		font-size: 12px;
		margin-left: auto;
		color: var(--light-gold);
		transition: transform 0.3s ease;
	}

	.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
		transform: rotate(180deg);
	}

	.navbar-nav .dropdown-menu {
		display: none !important;
		position: static;
		float: none;
		width: 100%;
		margin: 0;
		padding: 0;
		border: none;
		border-radius: 0;
		box-shadow: none;
		background-color: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(5px);
	}

	.navbar-nav .dropdown-menu.show {
		display: block !important;
	}

	.navbar-nav .dropdown-item {
		padding: 15px 20px;
		color: var(--dark-blue) !important;
		background: white;
		border-bottom: 1px solid rgba(238, 205, 175, 0.3);
		font-size: 16px;
		text-decoration: none;
		display: block;
		width: 100%;
	}

	.nav-link.show{
		background: radial-gradient(68.46% 61.89% at 50% 50%, #C7DEEE 0%, #89C5EE 100%);
		color: var(--dark-blue) !important;
	}
	
	.nav-link.show::after{
		color: var(--dark-blue) !important;
	}

	.navbar-nav .dropdown-item:last-child {
		border-bottom: none;
	}

	.navbar-nav .dropdown-item:hover,
	.navbar-nav .dropdown-item:focus {
		background-color: var(--light-gold);
		color: var(--dark-blue) !important;
	}

	/* Disable hover dropdowns in mobile */
	.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
		display: none;
	}

	
	.main-logo {
		max-height: 40px;
	}
	
	.phone-cta-btn {
		padding: 6px 15px;
		
	}
	
	.hello-bar-link {
		font-size: 0.85rem;
	}

	/* Ensure navbar toggler is visible */
	.navbar-toggler {
		display: block !important;
		border: none;
		padding: 4px 8px;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	/* Hide horizontal menu items when collapsed */
	.navbar-nav .nav-item:not(.d-lg-none) {
		display: none;
	}

	#navbar-content:not(.show) .navbar-nav .nav-item {
		display: none;
	}

	#navbar-content.show .navbar-nav .nav-item {
		display: block;
	}
}

/* Medium to Large Devices - 992px to 1180px */
@media only screen and (min-width: 993px) and (max-width: 1180px) {
	.hero-van-wrapper {
		max-width: 370px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {	
	.about-us-section{
		padding: 20px 0 60px 0 !important;
	}
	.aloha-section{
		padding: 20px 0;
	}

	.about-us-section .row{
		flex-direction: column-reverse;
		gap: 45px;
	}

	.about-us-section .row div{
		width: 100%;
	}

	.about-content{
		text-align: center;
	}

	.slider-dots{
		display: flex;
		justify-content: center;
	}

	.about-us-section .row div:last-child{
		padding-left: 0;
	}

	.about-us-section .row div:first-child{
		padding-right: 0;
	}

	.aloha-line{
		width: 100%;
	}

	.title-primary {
        font-size: 60px;
        line-height: 50px;
    }
	.hero-heading{
		font-size: 60px;
		line-height: 50px;
		max-width: 100%;
	}

	.hero-text p{
		max-width: 100%;
	}


	/* About Section */
	.about-content {
		padding-left: 0;
		padding-top: 30px;
	}
	
	.about-text {
		text-align: center;
	}

	.featured-article-card {
		display: flex !important;
		flex-direction: column;
		grid-template-columns: none;
	}
	.blog-posts-header{
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 25px;
		
	}

	.blog-category-filter{
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between;
	}

	.blog-category-select{
		min-width: auto;
		width: auto;
	}

	.services-list-section::before {
		top: -110px;
	}


	.navbar-phone-cta-bar{
		display: block;
		position: fixed;
		bottom: 0;
		z-index: 9999;
		background-color: var(--dark-blue);
		width: 100%;
		padding: 10px 0;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		transform: translateY(100%);
    	transition: transform 0.3s ease-in-out;
	}
	
	.navbar-phone-cta-bar.is-visible {
		transform: translateY(0);
	}

	.lirc-image{
		min-height: 100%;
	}

	.navbar-phone-cta-bar .btn-primary-custom{
		padding: 10px 100px;
	}
	
	.about-cta {
		text-align: center;
	}

	 .quick-links-menu, .resources-menu{
		width: 50%;
	}
	.post-content-wrapper{
		flex-direction: column-reverse;
		align-items: normal;
	}
	
	.post-main-content{
		max-width: 100%;
		flex: 1 1 100%;
	}
	.post-sidebar{
		max-width: 100%;
		flex: 1 1 100%;
	}
	.single-post-hero-top-row{
		flex-direction: column;
		gap: 20px;
	}
	.single-post-hero-content{
		padding-bottom: 60px;
	}

	.air-conditioning-menu, .resources-menu, .quick-links-menu{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	/* Footer */
	.footer-bottom-content {
		justify-content: center;
		text-align: center;
		gap: 15px;
	}

	.footer-contact{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.footer-contact-item span{
		max-width: 100%;
	}

	/* Home Hero */
	.hero-content {
		padding-left: 0;
		padding-top: 30px;
		text-align: center;
	}
	
	.hero-bottom-section .row {
		justify-content: center;
	}
	.post-sidebar-inner{
		max-width: 100%;
		flex: 1 1 100%;
	}
	
	.hero-review-logos {
		justify-content: center;
	}

	.footer {
		padding: 40px 0 100px;
	}

	/* Services Section */
	.services-list-section {
		padding: 60px 0;
	}
	.service-areas-content{
		padding: 50px 20px;
	}
	
	.services-grid {
		gap: 20px;
	}
	.team-modal-inner{
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.team-modal-left{
		max-width: 100%;
		flex: 1 1 100%;
	}
	.team-modal-right{
		max-width: 100%;
		flex: 1 1 100%;
		padding: 0;
	}
	
	.service-card {
		width: 240px;
		height: 300px;
	}
	.service-areas-map{
		border-radius: 0;
	}
	
	.service-card-content {
		padding: 25px 20px;
	}
	.residential-hero-logo-row{
		justify-content: flex-start;
	}
		/* Residential Hero Responsive */
		.residential-hero-wrapper {
			grid-template-columns: 1fr;
			display: flex;
			flex-direction: column;
			gap: 30px;
		}
	
		.residential-hero-title {
			margin-bottom: 40px !important;
		}
	
		.residential-hero-left {
			order: 1;
		}
	
		.residential-hero-right {
			order: 2;
		}
	
		.residential-hero-van-wrapper {
			max-width: 350px;
		}
	
	.service-card-hover {
		top: 25px;
		left: 20px;
		right: 20px;
		bottom: 25px;
	}

	.hero-logo-wrapper {
		left: 10px;
		transform: translate(0, 50%);
		max-width: 180px;
		width: 32%;
	}

	.hero-van-wrapper {
		right: 0;
		max-width: 220px;
		width: 38%;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 576px) {

	.title-primary {
        font-size: 35px;
        line-height: 32px;
    }

	/* Resources Section */
	.resource-card-content {
		padding: 15px;
	}
	
	.resource-card-title {
		font-size: 1.1rem;
	}
	
	.resource-card-image {
		height: 160px;
	}

	/* Footer */
	.footer-reviews-container {
		flex-direction: column;
		gap: 20px;
	}
	
	.footer-contact-item {
		margin-bottom: 12px;
		font-size: 0.9rem;
	}
	
	.footer-menu-title {
		font-size: 1rem;
		text-align: center;
	}
	
	.footer-social-icon {
		width: 25px;
		height: 25px;
	}
	
	.footer-legal-link {
		font-size: 0.8rem;
	}

	/* Home Hero */
	.hero-image {
		border-radius: 15px;
		max-height: 300px;
	}
	
	.hero-text {
		font-size: 0.95rem;
	}
	
	.hero-review-logos {
		gap: 10px;
		flex-direction: row;
		align-items: center;
	}
	
	/* Services Section */
	.service-card {
		height: 250px;
	}
	
	.service-card-content {
		padding: 20px 15px;
	}
	
	.service-card-hover {
		top: 20px;
		left: 15px;
		right: 15px;
		bottom: 20px;
	}
	
	.service-card-title,
	.service-card-title-hover {
		font-size: 1.2rem;
	}
	
	.service-card-description {
		font-size: 0.8rem;
	}
	
	.service-cta-btn-hover, .service-cta-btn {
		padding: 0px 15px !important;
		font-size: 16px !important;
	}

	/* Hero Logo and Van Responsive */
	

	.internal-hero-logo-van-title {
		font-size: 70px;
		line-height: 1.1;
	}

	/* Mission & Vision Responsive */
	.mission-vision-section {
		padding: 50px 0;
	}

	.mission-vision-section-title {
		font-size: 60px;
		line-height: 50px;
	}

	.mission-vision-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.mission-vision-title {
		font-size: 40px;
	}

	/* Careers Accordion Responsive */
	.careers-accordion-section {
		padding: 40px 0 50px 0;
	}

	.careers-accordion-title {
		font-size: 60px;
		line-height: 50px;
		margin-bottom: 40px;
	}

	.accordion-header {
		padding: 15px 30px;
	}

	.accordion-title {
		font-size: 35px;
	}

	.accordion-body {
		padding: 30px;
	}

	@keyframes slideInFromRight {
		0% {
			transform: translateX(100%) translateY(30%);
			opacity: 0;
		}
		100% {
			transform: translateX(0) translateY(30%);
			opacity: 1;
		}
	}

}

/* Small Devices, Tablets - 768px */
@media only screen and (max-width : 768px) {
	.blog-post-card {
		flex: 0 1 calc(50% - 10px);
		min-width: calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

/* Extra Small Devices, Phones - 480px */ 
@media only screen and (max-width : 480px) {

	/* Hero Logo and Van Mobile */
	.hero-logo-wrapper {
		left: 5px;
		max-width: 140px;
		width: 30%;
	}

	.hero-van-wrapper {
		max-width: 180px;
		width: 35%;
	}

	.internal-hero-logo-van-title {
		font-size: 50px;
		line-height: 1;
	}

	/* Mission & Vision Mobile */
	.mission-vision-section {
		padding: 40px 0;
	}

	.mission-vision-section-title {
		font-size: 50px;
		line-height: 45px;
	}

	.mission-vision-title {
		font-size: 35px;
	}

	.mission-vision-grid {
		gap: 30px;
	}

	/* Careers Accordion Mobile */
	.careers-accordion-section {
		padding: 40px 0;
	}

	.careers-accordion-title {
		font-size: 50px;
		line-height: 45px;
		margin-bottom: 30px;
	}

	.accordion-header {
		padding: 15px 20px;
	}

	.accordion-title {
		font-size: 28px;
	}

	.accordion-icon {
		width: 30px;
		height: 30px;
	}

	.accordion-icon svg {
		width: 20px;
		height: 20px;
	}

	.accordion-body {
		padding: 20px;
	}

	.job-description h3 {
		font-size: 22px;
	}



	/* Form Section Responsive */
	.form-section {
		padding: 80px 0 50px 0;
	}

	.form-van-wrapper {
		max-width: 370px;
	}


	.form-container {
		padding: 20px;
		margin-top: 60px;
	}

	.form-inner {
		padding: 50px 25px;
	}

	.form-title {
		font-size: 60px;
	}

	.form-wrapper .gform_wrapper .gfield.form_width {
		flex: 1 1 100%;
	}

	.form-wrapper .gform_wrapper .gfield.form_half_width {
		flex: 0 0 calc(50% - 10px);
	}

	@keyframes slideInFromLeft {
		0% {
			transform: translateX(-100%) translateY(-50%);
			opacity: 0;
		}
		100% {
			transform: translateX(-50%) translateY(-50%);
			opacity: 1;
		}
	}

	/* Featured Article Responsive */
	.featured-article-section {
		padding: 15px 0 50px 0;
	}

	.featured-article-section-title {
		font-size: 60px;
		line-height: 50px;
		margin-bottom: 30px;
	}

	.featured-article-card {
		display: flex !important;
		flex-direction: column;
		grid-template-columns: none;
	}

	.featured-article-image {
		border-radius: 4px 4px 0 0;
		min-height: 300px;
		width: 100%;
		height: 250px;
	}

	.featured-article-image img {
		border-radius: 4px 4px 0 0;
	}

	.featured-article-content {
		padding: 30px 25px;
		align-items: center;
		text-align: center;
	}

	.featured-article-title {
		text-align: center;
	}

	.featured-article-categories {
		justify-content: center;
	}

	.featured-article-date {
		text-align: center;
	}

	.featured-article-excerpt {
		text-align: center;
	}

	.featured-article-cta {
		width: 100%;
	}

	.featured-article-cta .btn-primary-custom {
		width: 100%;
	}

	/* Blog Posts Responsive */
	.blog-posts-section {
		padding: 50px 0 15px 0;
	}

	.blog-posts-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}

	.blog-posts-title {
		font-size: 60px;
		line-height: 50px;
	}

	.blog-category-filter {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		width: 100%;
	}

	.blog-category-label {
		font-size: 25px;
	}

	.blog-posts-grid {
		gap: 20px;
	}

	.blog-post-card {
		flex: 0 1 calc(50% - 10px);
		min-width: calc(50% - 10px);
		max-width: calc(50% - 10px);
	}

	/* Financing & CTA */
	.financing-content {
		padding: 30px 20px;
		border-radius: 25px;
	}
	
	.financing-logo {
		max-width: 150px;
	}
	
	.cta-content {
		padding: 30px 20px;
	}
	
	.cta-text {
		font-size: 0.95rem;
	}
	
	.review-logos-container {
		gap: 15px;
		flex-direction: column;
	}
	
	.review-logo {
		max-height: 40px;
	}

	/* About Section */
	.slide-image {
		height: 300px;
	}
	
	.about-slider-container {
		min-height: 300px;
		padding-bottom: 40px;
	}
	
	.about-slider {
		height: 300px;
	}
	
	.about-slider .slide-item {
		min-height: 300px;
	}
	
	.about-content {
		padding-top: 20px;
	}
	
	.slider-arrow {
		width: 35px;
		height: 35px;
	}
	
	.slider-arrow span {
		font-size: 16px;
	}
	
	.slider-dot {
		width: 30px;
		height: 30px;
		font-size: 11px;
		gap: 8px;
	}
	
	.slider-dots {
		gap: 8px;
		bottom: -16px;
	}

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 767px) {
	.post-cta-wrapper{
		flex-direction: column;
		align-items: flex-start;
	}
	.hello-bar-content{
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.title-primary {
        font-size: 55px;
        line-height: 45px;
		text-align: center;
    }
	.financing-content h2{
		max-width: 100%;
	}

	.header-row-black {
        height: 30px;
    }
    
    .header-row-hello {
        padding: 0;
    }    
    .phone-cta-btn {
        padding: 5px 12px;
    }
    
    .hello-bar-link {
        font-size: 0.8rem;
    }


	.aloha-line{
		width: 100%;
	}
	.home-hero{
		margin-top: 0;
	}

	.home-hero .container .row{
		flex-direction: column-reverse;
		gap: 35px;
	}

	.header-row-nav{
		background-color: var(--dark-blue) !important;
	}

	/* Form Section Mobile */
	.form-section {
		padding: 60px 0 40px 0;
	}

	.form-van-wrapper {
		max-width: 280px;
	}

	.form-container {
		padding: 15px;
		margin-top: 40px;
	}

	.form-inner {
		padding: 40px 20px;
	}

	.form-title {
		font-size: 45px;
		margin-bottom: 25px;
	}

	@keyframes slideInFromLeft {
		0% {
			transform: translateX(-100%) translateY(-50%);
			opacity: 0;
		}
		100% {
			transform: translateX(-50%) translateY(-50%);
			opacity: 1;
		}
	}

	.form-wrapper .gform_wrapper input[type="text"],
	.form-wrapper .gform_wrapper input[type="email"],
	.form-wrapper .gform_wrapper input[type="tel"],
	.form-wrapper .gform_wrapper textarea,
	.form-wrapper .gform_wrapper select {
		padding: 10px 12px;
		font-size: 14px;
	}

	.form-wrapper .gform_wrapper .gfield.form_width,
	.form-wrapper .gform_wrapper .gfield.form_half_width {
		flex: 1 1 100%;
	}

	/* Featured Article Mobile */
	.featured-article-section {
		padding: 15px 0 40px 0;
	}

	.featured-article-section-title {
		font-size: 50px;
		line-height: 45px;
		margin-bottom: 30px;
	}

	.featured-article-image {
		height: 200px;
		min-height: 200px;
	}

	.featured-article-content {
		padding: 25px 20px;
	}

	/* Blog Posts Mobile */
	.blog-posts-section {
		padding: 40px 0 15px 0;
	}

	.blog-posts-title {
		font-size: 45px;
		line-height: 40px;
	}

	.blog-category-filter {
		gap: 15px;
		width: 100%;
	}

	.blog-category-label {
		font-size: 40px;
		margin-bottom: -5px;
	}

	.blog-post-card {
		flex: 1 1 100%;
	}

	.blog-post-image {
		height: 200px;
	}

	/* Financing & CTA */
	.financing-content {
		padding: 40px 30px;
		border-radius: 30px;
		margin: 20px;
	}
	
	.financing-text {
		font-size: 1rem;
	}
	
	.btn-primary-custom {
		padding: 10px 25px;
		font-size: 24px;
	}
	
	.cta-content {
		padding: 40px 30px;
		margin: 20px;
	}
	
	.cta-text {
		font-size: 1rem;
	}
	
	.review-logos-container {
		gap: 20px;
		flex-direction: row;
	}
	
	.review-logo {
		max-height: 45px;
	}

	/* About Section */
	.about-us-section {
		padding: 60px 0;
	}
	
	.slide-image {
		height: 400px;
	}
	
	.about-slider-container {
		min-height: 400px;
		padding-bottom: 40px;
	}
	
	.about-slider {
		height: 400px;
	}
	
	.about-slider .slide-item {
		min-height: 400px;
	}
	
	.about-text {
		font-size: 1rem;
	}
	
	.slider-arrow {
		width: 40px;
		height: 40px;
	}

	.slider-arrow img{
		width: 100%;
	}
	
	.slider-arrow span {
		font-size: 18px;
	}
	
	.slider-nav {
		padding: 0;
	}
	
	.slider-dot {
		width: 35px;
		height: 6px;
		font-size: 12px;
	}

	/* Resources Section */
	.resources-section {
		padding: 60px 0;
	}
	
	.resource-card-content {
		padding: 20px;
	}
	
	.resource-card-title {
		font-size: 1.2rem;
	}
	
	.resource-card-excerpt {
		font-size: 0.9rem;
	}
	
	.resource-card-image {
		height: 180px;
	}

	/* Footer */
	.footer {
		padding: 40px 0 100px;
		margin-top: -2px;
	}
	
	.footer-row {
		padding: 20px 0;
	}
	
	.footer-menu-title {
		font-size: 40px;
		margin-bottom: 15px;
	}
	
	.footer-reviews-container {
		gap: 25px;
		flex-direction: row;
	}
	
	.footer-bottom-content {
		flex-direction: column-reverse;
		gap: 10px;
		text-align: center;
	}
	
	.footer-social-links {
		order: 1;
	}
	
	.footer-lmh-text {
		order: 2;
	}
	
	.footer-copyright {
		order: 3;
	}
	
	.footer-legal-link {
		order: 4;
		margin-left: 0;
		margin: 0 10px;
	}
	.post-content-section{
		background-size: 0;
	}

	/* Home Hero */
	.home-hero {
		padding: 60px 0;
	}
	
	.hero-text {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
	
	.hero-cta {
		margin-right: 0;
		margin-bottom: 15px;
		display: block;
		text-align: center;
	}
	
	.hero-review-logos {
		gap: 12px;
	}
	
	.hero-bottom-section .col-auto {
		width: 100%;
		text-align: center;
	}

	/* Services Section */
	.services-grid {
		flex-direction: row;
		align-items: center;
		gap: 25px;
	}
	
	.service-card {
		width: 46%;
		max-width: 350px;
		height: 280px;
	}
	
	.service-card-title,
	.service-card-title-hover {
		font-size: 27px;
	}

	.aloha-section{
		padding: 40px 20px;
	}
	
	.service-card-description {
		font-size: 0.85rem;
	}

	

}

@media only screen and (min-width : 992px) and (max-width : 1400px) {
	.services-list-section::before {
		top: -110px;
	}
}