@charset "UTF-8";

.header-image-About {
	background-image: url(../images/Headers/About.jpg);
    background-size: cover;
	height: 400px;
}
.header-image-Projects {
	background-image: url(../images/Headers/Projects.jpg);
    background-size: cover;
	height: 400px;
}
.header-image-Reviews {
	background-image: url(../images/Headers/Reviews.jpg);
    background-size: cover;
	height: 400px;
}
.header-image-Contact {
	background-image: url(../images/Headers/Contact.jpg);
    background-size: cover;
	height: 400px;
}
.header-image-Privacy {
	background-image: url(../images/Headers/Privacy.jpg);
    background-size: cover;
	height: 400px;
}
p {
	text-align: justify
}
h1, h2, h3, h4, h5, h6 {
	text-wrap: balance;
}
.paragraph-text {
	margin: 40px 0;
}
.ImageBoarderRound {
	border: 1px solid #6D6D6D;
	padding: 2px;
	border-radius: 150px;
	margin-right: 10px;
	float: left;
}
.ImageBoarderRoundFloatLeft {
	border: 1px solid #6D6D6D;
	padding: 2px;
	border-radius: 150px;
	margin-right: 10px;
	float: left;
}
.ImageBoarderRoundFloatRight {
	border: 1px solid #6D6D6D;
	padding: 2px;
	border-radius: 150px;
	margin-right: 10px;
	float: right;
}
figure {
	border: 1px #cccccc solid;
	padding: 4px;
	margin: auto;
}
figcaption {
	background-color: rgb(109, 109, 109);
	color: white;
	font-style: italic;
	padding: 2px;
	text-align: center;
}
.grid {
	--column-count: 3;
	display: grid;
	gap: 1rem;
	margin-bottom: 20px;
	grid-template-columns:
		repeat(var(--column-count), 1fr);
}
.grid[data-columns="1"] {
	--column-column-count: 1;
}
.grid[data-columns="2"] {
	--column-column-count: 2;
}
.grid[data-columns="3"] {
	--column-column-count: 3;
}
.grid[data-columns="4"] {
	--column-column-count: 4;
}
@media (width < 577px) {
	.grid { --column-count: 1; }
}
@media (width > 577px) {
	.grid { --column-count: 2; }
}
@media (width > 992px) {
	.grid { --column-count: 3; }
}
.card {
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
}
/* Collapsible FAQ Menu */ 
/* Style the button that is used to open and close the collapsible content */
 .collapsible {
	background-color: #FFFFFF; 
	/* color: white; */
	cursor: pointer;
	padding: 10px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	/* font-size: 15px; */
 }
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
 .active, .collapsible:hover {
	background-color: #F1ABCA;
 }
  /* Style the collapsible content. Note: hidden by default */
  /* Animated Collapsible (Slide Down) */
 .content {
	/* padding: 0 18px; */
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background-color: #f1f1f1;
} 
  /* Icons */
.collapsible:after {
	content: '\02795'; /* Unicode character for "plus" sign (+) */
	font-size: 13px;
	color: white;
	float: right;
	margin-left: 5px;
 }
.active:after {
	content: "\2796"; /* Unicode character for "minus" sign (-) */
 }
.footer {
	color: #f8f9fa; /* controls text color */
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
}
.footer-links {
	display: flex;
	/* justify-content: center; */
}
.footer-links li {
	margin: 0 10px;
}
.footer-links a {
	color: #f8f9fa; /* controls text color */
	text-decoration: none;
}