/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

.page-header.jumbo {
    background-size: cover;
    background-position: center;
    aspect-ratio: 1400 / 467;
}

.jumbo header h1 {
	font-size: 86px;
}

.home-h2 {
	font-size: 48px;
	color: #185C33;
}

.button-border {
	border-radius: 8px;
	font-weight: bold;
	border: 2px solid #275D38;
	color: #275D38;
}

.main-btns {
	display: flex;
	gap: 20px;
	align-items: baseline;
}

.price-tag {
	align-self: center;
	position: absolute;
}

.new-merchants {
	background-color: #ECF0ED;
	padding: 2rem 2rem 2rem 4rem;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 8px;
	margin-left: 7rem;
}

.img-text {
	display: flex;
}

.arrow-text {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

/* Accordion */

details:not(.accordion-unstyled) {
    summary {
		padding: 20px 15px;
		color: #275D38;
		background-color: #F7F7F7;
	}
	}

details:not(.accordion-unstyled) {
    summary::after {
	background-color: transparent;
    color: #275D38;
    content: "\f078";
    transition: transform 0.5s ease-in-out;
	right: 10px;
	}
	}

details:not(.accordion-unstyled) {
	&[open]>summary::after { 
	transform: rotate(180deg);
	content: "\f078";
	}
}
	

.card-title {
	font-size: 16px;
	font-weight: bold;
}

.card-name {
	font-size: 20px;
	color: #275D38;
	text-transform: uppercase;
}

.email-contact {
	display: flex;
	gap: .5rem;
}

.accordion-unstyled {
	display: block;
	background-color: #F7F7F7;
	margin-bottom: 10px;
	border-radius: 5px;
	align-items: center;
	justify-content: space-between;
	position: relative;
	cursor: pointer;
}

.accordion-unstyled:after {
	display: flex;
	font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    position: absolute;
    top: 2rem;
    bottom: 0;
    right: 0;
    margin: auto;
    height: auto;
    width: 30px;
	border-radius: 0 3px 3px 0;
	background-color: transparent;
    color: #275D38;
    content: "\f078";
    transition: transform 0.5s ease-in-out;
}

.summary-pad {
	padding: 1rem;
}

.accordion-content {
	background-color: white;
	padding: 0 10px 5px;
	border-radius: 0 0 3px 3px;
	margin: 10px 0px;
}

.fa-envelope {
	color: #275D38;
	padding-top: .3rem;
}


/*End mobile and up styles*/
/* ====================== Phone Only ========================== */
@media only screen and (max-width: 768px) {
	.jumbo header h1 {
		font-size: 61px;
	}
	.page-header.jumbo {
		background-position: 70% 50%;
	}
	.img-text {
		flex-direction: column;
	}
	.price-tag {
		position: relative;
		margin-bottom: -1.5rem;
	}
	.new-merchants {
		margin-left: 0;
		padding: 2rem;
	}
}
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	
	
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	
	
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/