:root {
    --text-black: #151515;
    --accent-red: #E91726;
    --text-gray: #555555;
    --light-gray: #B3B3B3;
    --text-white: #ffffff;
    --footer-gray: #EDEDED;
    --border-gray: #C0C0C0;
    --arrows-color: #333333;
}

.sect-service {
    margin-top: 65px;
}

.sect-service .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-image {
	width: 40%;
	height: 65vh;
	object-fit: cover;
}

.service-content {
    width: 55%;
    height: auto;
}

.service-description {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
	.sect-service .container {
		flex-direction: column-reverse;
	}
	
	.service-image, .service-content {
		width: 100%;
	}
	
	.service-content {
		margin-bottom: 25px;
	}
}