/* Homepage only CSS */

/* ==========================================
   SERVICES OVERVIEW
========================================== */

section.services-overview {
    padding-bottom: 144px;
}

.services-overview-box {
    position: relative;
    background: #EEF4F9;
    border-radius: 12px;
    padding: 55px 50px 0;
    overflow: visible;
    height: 350px;
}

/* Background circles */

.services-overview-box::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 100px;
    width: 236px;
    height: 236px;
    border-radius: 50%;
    background: rgba(7, 90, 145, 0.05);
}

.services-overview-box::after {
    content: "";
    position: absolute;
    right: 210px;
    top: 180px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: rgba(7, 90, 145, 0.04);
}

.services-overview .heading-2 {
    margin-bottom: 22px;
}

.services-overview .heading-2 span {
    color: var(--primary);
}

.services-overview-text {
    max-width: 440px;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    position: relative;
    z-index: 2;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    bottom: -45px;
    z-index: 3;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 18px;
}

.service-card h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

/* ==================================================
   AREAS SECTION
================================================== */

.areas-section {
    background: var(--white);
}

.section-heading-center {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 30px;
}

.section-heading-center .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.section-heading-center .heading-2 {
    margin-bottom: 18px;
}

.section-heading-center p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 180%;
}

.areas-map img {
    width: 100%;
    max-width: 610px;
    height: auto;
    display: block;
}

/* Responsive */

@media (max-width: 991px) {
	
	.services-overview-box {
        padding: 40px 30px;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        bottom: 0;
        margin-top: 40px;
    }
	
	.section-heading-center {
        margin-bottom: 40px;
    }

    .areas-map img {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {

    .services-cards {
        grid-template-columns: 1fr;
    }

    .services-overview-box::before,
    .services-overview-box::after {
        display: none;
    }

    .services-overview-text {
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
	
	.column-left-padding {
    	padding-left: 0;
	}
	
	.care-cta-box {
        padding: 30px 20px;
    }

    .care-cta-actions .btn-primary,
    .care-cta-actions .btn-secondary {
        width: 100%;
        min-width: 100%;
        font-size: 16px;
    }
	
	.section-heading-center p {
        font-size: 16px;
    }
	
	.services-overview-box {
        padding: 20px 20px;
    }
	
	.care-cta-content .heading-2 {
		width: 100%;
	}
	
	
}