/* Footer */
.site-footer {
	background-color: var(--rp-headlines);
	padding: 100px 20px;
}

.site-footer .container {
	max-width: 1180px;
    padding: 0;
}

.footer-title {
	font-family: var(--font-heading);
	font-weight: var(--weight-bold);
	font-size: var(--heading-md-size);
	line-height: var(--heading-md-line);
	color: var(--rp-white);
	margin-bottom: 20px;
}


.footer-btn.btn.btn-red {
	background-color: var(--rp-pale-red);
	color: var(--rp-white);
	padding: 16px 27px;
	border: 1px solid var(--rp-pale-red);
}

.footer-btn.btn.btn-small.btn-outline {
	color: var(--rp-white);
	border: 1px solid var(--rp-white);
	padding: 16px 27px;
}

.footer-btn.btn.btn-small.btn-outline:hover {
	color: var(--rp-bright-red);
	border-color: var(--rp-bright-red);
}

.footer-cta-wrapper {
	display: flex;
	gap: 10px;
    padding-bottom: 65px;
    border-bottom: 1px solid var(--rp-pale-cyan);
    margin-bottom: 65px;
}

@media (max-width: 991px) {
    .site-footer {
        padding: 60px 20px;
    }

    .footer-cta-wrapper {
        padding-bottom: 40px;
        border-bottom: 1px solid var(--rp-pale-pink);   
        margin-bottom: 40px;
    }
}

.footer-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 65px 20px;
    padding-bottom: 65px;
    margin-bottom: 65px;
    border-bottom: 1px solid var(--rp-pale-cyan);
}

.footer-menu-grid .footer-title {
    font-size: var(--heading-xs-size);
    line-height: var(--heading-xs-line);
    margin-bottom: 12px;
}

.footer-menu-grid .footer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu-grid .footer-menu-list .menu-item a {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--paragraph-md-size);
    line-height: var(--paragraph-md-line);
    color: var(--rp-medium-grey);
    text-decoration: none;
}

.footer-bottom .site-logo .custom-logo {
    height: 58px;
    max-height: 58px;
}

.footer-bottom .footer-copyright {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--paragraph-md-size);
    line-height: var(--paragraph-md-line);
    color: var(--rp-medium-grey);
}

@media (max-width: 991px) {
    .footer-menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px 20px;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--rp-pale-pink);
    }

    .footer-bottom .site-logo {
        margin-bottom: 20px;
    }

    .site-footer .phone-icon path {
        fill: var(--rp-pale-pink);
        width: 34px;
        height: 34px;
    }
}