/* Hero section styles */

.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: calc((0.29 * 100vw) + 1019.79px);
}

.hero-content-container {
    width: 600px;
    padding: 24px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    border-radius: 16px;
}

.hero-section .section-heading {
    margin-bottom: 24px;
    font-size: 2.25em;
}

.hero-body {
    margin: 0 0 24px;
    color: #000;
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
}

.service-areas-container {
    width: min-content;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: min-content min-content;
    column-gap: 4rem;
    row-gap: 0.75rem;
}

.hero-service-area-link {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.hero-service-area-link > svg {
    width: 1.75rem;
}

.hero-service-area-link > p {
    text-wrap: nowrap;
}

.hero-service-area {
    font-size: 1rem;
    font-weight: 700;
}

.hero-cta {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-content-container {
	width: 80%;
    }

    .hero-section .section-heading {
	line-height: 2.5rem;
    }
}

@media (max-width: 425px) {
    .hero-img {
	width: 300%;
	transform: translateX(-50%);
    }

    .hero-content-container {
	width: 85%;
	padding: 12px;
    }

    .hero-section .section-heading, .hero-body {
	margin-bottom: 10px;
    }

    .service-areas-container {
	width: 100%;
	margin-bottom: 16px;
	column-gap: unset;
	row-gap: 0.5rem;
	justify-content: space-between;
    }

    .hero-service-area-link {
	column-gap: 8px;
    }
}

/* Social proof section styles */

main {
    padding-left: 10vw;
    padding-right: 10vw;
    display: flex;
    column-gap: 4vw;
}

.review-carousel {
    height: 540px;
    flex: 2;
    position: relative;
    overflow: hidden;
    --hr-margin: 40px;
}

.reviews-container {
    margin: var(--hr-margin) 0 0;
    transition: transform 200ms linear;
}

.review-container {
    display: flex;
    flex-direction: column;
    row-gap: 28px;
}

.review-header {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.review-header > img {
    width: 80px;
}

.reviewer {
    font-weight: 600;
}

.review-stars {
    display: flex;
    column-gap: 4px;
}

.review-stars > svg {
    width: 16px;
}

.review {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
    font-style: italic;
}

.review-hr {
    margin: var(--hr-margin) 0;
    border: solid 1px #999;
}

.review-carousel-fade {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(#FFF, transparent 15% 85%, #FFF);
}

.social-proof-right-container {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-proof-heading {
    margin: 0;
    text-align: left;
}

.social-proof-heading > p:first-child {
    font-size: 6rem;
    line-height: 84px;
}

.social-proof-heading > p:last-child {
    font-size: 2.25rem;
}

.social-proof-body {
    margin: 0 0 10%;
    font-size: 1.25rem;
    line-height: 150%;
}

.social-proof-ctas-container {
    display: flex;
    column-gap: 32px;
}

.social-proof-cta-ghost {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

@media (max-width: 768px) {
    .review-stars {
	column-gap: 2px;
    }

    .review-stars > svg {
	width: 14px;
    }

    .social-proof-ctas-container {
	column-gap: 8px;
    }
}

@media (max-width: 600px) {
    main {
	padding-left: 8px;
	padding-right: 8px;
	display: block;
    }

    .social-proof-right-container {
	display: unset;
    }

    .social-proof-heading > p:first-child {
	font-size: 7rem;
	line-height: 64px;
    }

    .social-proof-heading > p:last-child {
	font-size: 2rem;
    }

    main .section-subheading {
	margin: 0 0 12px;
    }

    .social-proof-body {
	margin: 0;
	font-size: 1.4rem;
    }

    .review-carousel {
	height: 400px;
	margin: 60px 0 40px;
	display: block;
	flex: unset;
	--hr-margin: 24px;
    }

    .review-container {
	row-gap: 12px;
    }

    .review-header > img {
	width: 50px;
    }

    .review-stars {
	column-gap: 4px;
    }

    .review-stars > svg {
	width: 16px;
    }

    .review {
	height: 76px;
	-webkit-line-clamp: 4;
	font-size: 16px;
    }

    .social-proof-ctas-container {
	column-gap: 32px;
    }
}

/* Project showcase section styles */

.project-showcase-section {
    background-color: #F0F0F0;
}

.projects-container {
    margin: 0 0 48px;
    display: flex;
    justify-content: center;
    column-gap: 24px;
}

.project {
    width: 240px;
    height: 240px;
    border-radius: 32px;
}

.project:nth-child(1) {
    background-color: lightblue;
}

.project:nth-child(2) {
    background-color: lightgreen;
}

.project:nth-child(3) {
    background-color: salmon;
}

.project:nth-child(4) {
    background-color: pink;
}

.project-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
}

.project-nav > svg:nth-child(1) {
    transform: rotate(180deg);
}

.project-nav-circle {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #C0C0C0;
}

/* Financing section styles */

.financing-section {
    padding-left: 10vw;
    padding-right: 10vw;
    --img-width: 170px;
}

.financing-section > .section-heading {
    margin-bottom: 8px;
}

.financing-subheading {
    text-align: center;
}

.financing-timeline-container {
    margin: 50px 0 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.financing-check-container {
    width: var(--img-width);
    margin: 0 -20px;
    align-content: center;
}

.financing-check-container:first-child {
    margin-left: 0;
}

.financing-check-container:last-child {
    margin-right: 0;
}

.financing-check {
    display: block;
    width: 64px;
    margin: 0 auto;
}

.financing-timeline-line {
    height: 2px;
    flex-grow: 1;
    background-color: var(--secondary-color);
    border-radius: 1px;
}

.financing-steps-container {
    margin: 0 0 48px;
    display: flex;
    justify-content: center;
    justify-content: space-between;
}

.financing-step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.financing-step-container > p {
    margin: 0 0 32px;
    text-align: center;
    font-size: 1.5rem;
}

.financing-step-container > img {
    width: var(--img-width);
    height: 209px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.financing-steps-container > div:nth-child(1) > img {
    border-radius: 56px;
    transform: rotate(-18deg);
}

.financing-steps-container > div:nth-child(2) > img {
    object-position: 20% 20%;
    border-radius: 100px;
    transform: rotate(10deg);
}

.financing-steps-container > div:nth-child(3) > img {
    border-radius: 36px;
}

.financing-section > .cta-button {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .financing-section {
	--img-width: 80px;
    }

    .financing-check {
	width: 32px;
    }

    .financing-timeline-line {
	width: 68px;
    }

    .financing-steps-container {
	margin: 0 0 48px;
    }

    .financing-steps-container img {
	height: 123px;
    }
}

/* Mission statement section styles */

.mission-statement-section {
    padding: 100px calc((0.446 * 100vw) - 354.462px) 160px;
    display: flex;
    align-items: end;
    justify-content: center;
    column-gap: 2vw;
}

.mission-statement-heading-container {
    width: fit-content;
}

.mission-statement-heading-container h1 {
    width: fit-content;
    margin: 0;
    text-wrap: nowrap;
    font-size: 2.25rem;
}

.mission-statement-heading-container > h1 {
    margin: 0 0 0 auto;
}

.mission-statement-heading-top {
    display: flex;
    align-items: end;
    justify-content: end;
}

.mission-statement-heading-top > img {
    width: 140px;
    object-fit: contain;
}

.mission-statement-heading-container > h1 {
    color: var(--tertiary-color);
}

.mission-statement-body {
    line-height: 160%;
}

@media (max-width: 768px) {
    .mission-statement-section {
	padding: 40px 8px;
    }

    .mission-statement-heading-top > img {
	width: 100px;
    }
}

@media (max-width: 600px) {
    .mission-statement-section {
	display: block;
    }

    .mission-statement-heading-container {
	margin: 0 0 24px;
    }

    .mission-statement-body {
	font-size: 16px;
    }
}

/* Services section styles */

.services-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary-color);
}

.services-section > .section-heading {
    color: #FFF;
}

.service-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content min-content;
    gap: 24px;
}

.service-card {
    max-width: 316px;
    height: 248px;
    padding: 16px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #FFF;
    border-radius: 16px;
}

.service-card > svg {
    width: 72px;
    margin: 0 0 8px;
}

.service-card-heading {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 900;
}

.service-card-body {
    font-size: 14px;
}

@media (max-width: 600px) {
    .service-cards-container {
	display: block;
    }

    .service-card {
	margin: 0 0 12px;
    }

    .service-card:last-child {
	margin: 0;
    }

    .service-card-heading {
	font-size: 22px;
    }

    .service-card-body {
	font-size: 16px;
    }
}

/* Service areas section styles */

.service-areas-section {
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #111;
}

.service-areas-map {
    width: 1440px;
    display: block;
    opacity: 0.4;
}

.service-areas-content-container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-areas-section .section-heading {
    margin: 0 0 60px;
    color: #FFF;
    font-size: 3.5rem;
    font-weight: 600;
}

.service-areas-buttons-container {
    width: 700px;
    margin: 0 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2vw;
    row-gap: 1vw;
}

.service-areas-button {
    padding: 10px 0;
    background-color: var(--tertiary-color);
    border: 2px solid #FFF;
    border-radius: 4px;
    color: #FFF;
    text-align: center;
    text-wrap: nowrap;
}

.service-areas-button:last-child {
    /* grid-column: 2 / 3; */
}

.service-areas-link {
    margin: 0 auto;
    color: #FFF;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .service-areas-buttons-container {
	width: calc((0.679 * 100vw) + 95.16px);
    }
}

@media (max-width: 425px) {
    .service-areas-map {
	width: 800px;
    }

    .service-areas-content-container {
	padding: 0 8px;
    }

    .service-areas-section .section-heading {
	margin: 0 0 20px;
	font-size: 28px;
    }

    .service-areas-buttons-container {
	width: 100%;
	margin: 0 0 20px;
	column-gap: 4px;
	row-gap: 8px;
    }

    .service-areas-link {
	font-size: 20px;
    }
}

/* FAQ section styles */

.faq-wrapper {
    position: relative;
}

.faq-button {
    width: 65%;
    /* padding: 0 24px 24px; */
    padding: 0 24px 0;
    margin: 0 auto 8px;
    background-color: #EEE;
    border-radius: 20px;
    cursor: pointer;
    transition: 400ms;
    position: relative;
    overflow: hidden;
}

.faq-minimize-content {
    /* padding-top: 24px; */
    display: flex;
    align-items: center;
    column-gap: 32px;
    background-color: #EEE;
    position: relative;
    z-index: 1;
}

.faq-heading {
    font-size: 1.5rem;
}

.faq-expand-icon {
    width: 18px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    font-size: 32px;
    font-weight: 600;
    transition: 250ms linear;
}

.faq-expand-icon-vertical {
    width: 4px;
    height: 18px;
    background-color: #000;
    transition: 250ms linear;
}

.faq-expand-icon-horizontal {
    width: 18px;
    height: 4px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-body {
    margin: 20px 0 0;
    padding: 0 24px 0 0;
    font-size: 1.25rem;
    position: absolute;
    opacity: 0;
    transform: translateY(-100%);
    z-index: 0;
    transition: 400ms;
}

.faq-body-expanded {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 425px) {
    .faq-button {
	width: calc(100% - 24px);
	padding: 0 12px 0;
	margin: 0 0 8px;
    }

    .faq-minimize-content {
	column-gap: 10px;
    }

    .faq-heading {
	font-weight: 500;
    }

    .faq-body {
	margin: 12px 0 0;
    }
}

/* Why Us section styles */

.why-us-section {
    padding-left: 3vw;
    padding-right: 3vw;
}

.why-us-section > .section-heading {
    display: none;
}

.why-us-content-container {
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4vw;
}

.why-us-content-container > img {
    width: 320px;
    object-fit: cover;
}

.why-us-copy-container > .section-heading {
    text-align: left;
}

.why-us-point {
    width: fit-content;
    margin: 0 0 28px;
    display: flex;
    column-gap: 1vw;
    align-items: center;
}

.why-us-point:last-child {
    margin: 0;
}

.why-us-point > svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.why-us-point-copy {
    display: flex;
    align-items: flex-end;
    column-gap: 12px;
}

.why-us-point-heading {
    font-size: 1rem;
    font-weight: 900;
}

.why-us-point-body {
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .why-us-content-container > img {
	width: calc((0.508 * 100vw) - 200px);
	height: calc((0.391 * 100vw) + 20px);
    }
}

@media (max-width: 768px) {
    .why-us-copy-container > .section-heading {
	width: 371px;
	margin: 0 0 24px;
    }

    .why-us-content-container > img {
	width: calc((0.536 * 100vw) - 151.429px);
	height: 320px;
    }

    .why-us-point {
	margin: 0 0 16px;
    }

    .why-us-point-copy {
	display: block;
    }
}

@media (max-width: 600px) {
    .why-us-section > .section-heading {
	display: block;
    }

    .why-us-content-container {
    }

    .why-us-copy-container > .section-heading {
	display: none;
    }

    .why-us-content-container > img {
	width: calc((0.357 * 100vw) - 14.286px);
	height: 240px;
    }

}
