/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* ================================
   Services Hero Section
   ================================ */

.services-header {
    width: 100%;
    background-color: #6ED2FA;
    padding: 5% 10% 0 10%;
}

.services-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Left side (takes available space) */
.services-text {
    flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

/* Right side (takes required space only) */
.services-image {
    flex: 0 0 auto;
    width: 300px;
    height: 270px;
}

.services-image img {
    max-width: 300px;
    width: 100%;
    height: 100%;
    object-fit: contain;
	object-position: bottom
}

/* Typography */
.services-title {
    font-size: 5rem !important;
    font-weight: 700;
	margin-bottom: 0;
}

.services-subtitle {
    font-size: 2rem !important;
	margin-bottom: 0;
}
@media (max-width: 1300px) {
	.services-title {
		font-size: 4rem !important;
	}
}

@media (max-width: 1105px) {
	.services-title {
		font-size: 3rem !important;
	}
}

@media (max-width: 767px) {
	.services-title {
		font-size: 2.5rem !important;
	}
	.services-subtitle {
		font-size: 1.5rem !important;
	}
}
/* Responsive */
@media (max-width: 1024px) {
	.services-header {
		padding: 150px 0 100px  0;
	}
    .services-content {
        flex-direction: column;
        text-align: center;
		gap: 5px;
    }

    .services-image{
       display: none;
    }
}