/* START PAGE WIDE STYLES */
/* Consider changing these to a default.css file */
body{
	margin: 0;
	text-align: center;
	background-color: #C0C0C0;
	width: 100%;
}

h2{
	font-size: 5rem;
	font-weight: bold;
	margin: 1% auto 0 auto;
}

@media(max-width: 1024px){
	h2{
		font-size: 4rem;
	}
}

img{
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.cta-btn{
	border: double black 4px;
	background: linear-gradient(135deg, #FFD700, #FFA500);
	padding: 2.5% 10%;
	font-weight: bold;
	color: black;
	text-decoration: none;
	border-radius: 10px;
	font-size: 1.5rem;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
	word-break: keep-all;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: auto;
	display: block;
}
/* END PAGE WIDE STYLES */
/* START SERVICES SECTION */
#services-section{
	margin-bottom: 5%;
}

#services-section h4{
	font-size: 1.25rem;
	margin: 0 auto 2% auto;
	font-weight: 400;
	font-style: italic;
}

#services-main{
	display: flex;
	justify-content: space-evenly;
}

.services-card{
	width: 30%;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	margin: 2% 0;
	display: grid;
	grid-template-rows: 1fr 1fr 2fr;
	text-decoration: none;
	font-style: normal;
	color: black;
}

.services-card h3{
	font-size: 2rem;
	margin: 0 2.5%;
	padding: 2% 0;
}

.services-card:hover{
	background-color: rgba(255, 255, 255, 0.8);
}

.services-card-header{
	margin-top: auto;
	margin-bottom: auto;
}

.image-container{
	display: flex;
}

.image-container img{
	width: 100%;
	background-position: center;
	background-size: cover;
}

.service-quick-info{
	text-align: center;
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-quick-info p{
	padding: 0 1%;
}

.service-cta{
	font-style: italic;
	font-size: 1rem;
	margin: 0 auto 10px auto;
}

#services-finance-banner{
	width: 60%;
}

@media(max-width: 650px) {
	#services-main{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.services-card{
		width: 80%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.image-container img{
		height: 50%;
	}
}

@media screen and (min-width: 720px) {
	.services-card{
		grid-template-rows: 1fr 2fr 2fr;
	}
}

@media(min-width: 1120px) {
	.services-card{
		grid-template-rows: 1fr 4fr 2fr;
	}
}

@media(min-width: 1400px) {
	.services-card{
		grid-template-rows: 1fr 5fr 2fr;
	}
}

@media(min-width: 1800px) {
	.services-card{
		grid-template-rows: 1fr 6fr 2fr;
	}
}

/* END SERVICES SECTION */
/* START INSULATION SECTION */
#insulation-section h3{
	margin: 5% auto 0 auto;
	font-size: 2rem;
	font-weight: bold;
}

#insulation-section p{
	width: 75%;
	margin: 3% auto 3% auto;
	font-size: 1.5rem;
}

#insulation-img-wrapper{
	margin: auto;
	position: relative;
}

#insulation-img-wrapper div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: opacity(35%);
	background-image: radial-gradient(circle, rgba(161, 208, 250, 0.5) 0%, rgba(0, 85, 255, 0.5) 100%);
	background-position: center;
}

#insulation-img-wrapper img{
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	filter: brightness(85%) saturate(35%) contrast(80%);
}

#insulation-cta{
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	-ms-grid-columns: 2fr 1fr 1fr;
	grid-template-columns: 2fr 1fr 1fr;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 100%;
	margin: 0 auto;
}

#insulation-cta p{
	font-size: 2rem;
	margin: 0 auto;
	width: 100%;
}

#insulation-section hr{
	width: 90%;
	margin: 1% auto;
	height: 1px;
	border-radius: 36px;
	background-color: black;
	border-color: black;
	color: black;
}

#insulation-cta-you{
	text-align: center;
	padding: 0%;
	-ms-grid-column: 1;
	grid-column: 1;
	    grid-column-start: 1;
	-ms-grid-column-span: 2;
	grid-column-end: 3;
	-ms-grid-row: 1;
	grid-row: 1;
	    grid-row-start: 1;
	-ms-grid-row-span: 1;
	grid-row-end: 2;
}

#insulation-cta-more{
	text-align: center;
	padding: 0%;
	-ms-grid-column: 2;
	grid-column: 2;
	    grid-column-start: 2;
	-ms-grid-column-span: 2;
	grid-column-end: 4;
	-ms-grid-row: 2;
	grid-row: 2;
	    grid-row-start: 2;
	-ms-grid-row-span: 1;
	grid-row-end: 3;
}

#insulation-section a{
	margin: 2.5% auto;
}

@media(min-width: 1000px) {
	#insulation-img-wrapper{
		width: 80%;
		margin: 0 auto;
	}

	#insulation-section h3{
		font-size: 3rem;
		margin: 5% 5% 3% 5%;
	}
}

@media(min-width: 1560px) {
	#insulation-img-wrapper{
		width: 60%;
		margin: 0 auto;
	}
}
/* END INSULATION SECTION */
/* START GETTING STARTED SECTION */

#get-started-section{
	background-image: url(../assets/working.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 5%;
}

#get-started-header{
	background-color: rgba(0, 0, 0, 0.75);
	padding: 0 2%;
	width: 90%;
	margin: 0 auto;
	color: white;
}

#get-started-section h3{
	font-size: 2rem;
	margin: 0 auto 1% auto;
	font-style: italic;
	color: whitesmoke;
}

#get-started-section img{
	display: block;
	width: 100%;
	height: 50%;
}

.step-card{
	display: flex;
	margin: 2.5% 5%;
	justify-content: center;
	align-items: center;
	color: white;
	background-color: rgba(0, 0, 0, 0.65);
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	min-width: 50%;
	max-width: 100%;
	justify-content: space-evenly;
}

.step-card p{
	font-weight: 600;
}

.step-placeholder{
	border: none;
}

.step-card h4{
	font-size: 3rem;
	margin: 0;
	border-radius: 180px;
	height: -webkit-min-content;
	height: -moz-min-content;
	height: min-content;
	padding: 1%;
	margin: 1%;
	font-weight: 900;
}

.step-card h4:last-child{
	border-left: solid 5px #38515e;
}

.step-card h4:first-child{
	border-right: solid 5px #38515e;
}

.step-card p{
	font-size: 1.5rem;
	padding: 0 2%;
}

@media(max-width: 700px) {
	br{
		display: none;
	}

	.step-card, #get-started-header{
		width: 85%;
	}
}

/* END GETTING STARTED SECTION */
/* START WHY US SECTION */
#why-us-section{
	background-color: #4CAF50;
	background: linear-gradient(293deg, #4CAF50, #2E7D32);
	padding-bottom: 2.5%;
}

#why-us-header{
	background-color: rgba(0, 0, 0, 0.75);
	padding-bottom: 1%;
	width: 100%;
	margin: 0 auto 2% auto;
	color: white;
}

#why-us-header-content h3{
	margin: 0 auto;
	padding-top: 2.5%;
	font-size: 2rem;
	font-weight: bold;
}

#why-us-header-content h4{
	font-size: 2rem;
	margin: 0 auto;
}

#why-us-section em{
	font-style: italic;
	text-decoration: underline;
	font-weight: bolder;
}

#why-us-list-content{
	margin: 0 auto;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 95%;
}

#why-us-list-content ul{
	list-style: disclosure-closed;
	text-align: start;
}

#why-us-list-content ul li{
	font-size: 2rem;
	margin: 3.5% 0;
}

#why-us-cta-btn-wrapper{
	display: flex;
	justify-content: flex-end;
}

#why-us-extra{
	margin-left: auto;
	margin-right: auto;
	font-size: 1rem;
	text-align: center;
	margin-top: 1px;
}

#why-us-cta-btn-wrapper a{
	margin: 2.5% auto;
}

#why-us-list-content ul li br{
	display: initial;
}

#why-us-header-content{
	margin: 0 auto 1% auto;
	max-width: 100%;
}

@media(min-width: 1000px) {
	#why-us-header-content h3{
		font-size: 3rem;
	}

	#why-us-header-content h4{
		font-size: 2.5rem;
	}

	#why-us-list-content ul li br{
		display: none;
	}

	#why-us-list-content{
		margin: 0 5% 0 auto;
	}

	#why-us-section a{
		margin: 2.5% auto 2.5% 5%;
	}

	#why-us-header-content{
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin: 0 auto 1% 1%;
		max-width: 99%;
	}
}

/* END WHY US SECTION */

/* FAQ styles */
#faq{
    margin: 40px auto;
    padding: 20px;
    /* background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    max-width: 800px;
    min-width: 70%;
}

dt {
    font-weight: bold;
    font-size: 1.1em;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-top: 10px;
}

dt:hover {
    background: #f0f0f0;
}

dt::after {
    content: "▼";
    font-size: 1.2em;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
}

dt.active::after {
    transform: rotate(180deg);
}

dd {
    padding: 15px;
    margin: 0;
    display: none;
    background: #ffffff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    font-size: 1em;
    /* line-height: 1.4; */
    color: #555;
	text-align: start;
}

/* End FAQ */