/* CSS Document */

/* Defaults
---------------------------------------------------------------------------- */

.section {
	clear: both;
	position: relative;
}


/* Feature
---------------------------------------------------------------------------- */

.feature .gb-block-container .gb-container-content {
	margin: 0;
}


/* About
---------------------------------------------------------------------------- */


/* Services
---------------------------------------------------------------------------- */

.services ul.links {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	grid-gap: 10px 2%;
	margin: 0;
	padding: 0;
}

.services ul.links li {
	align-items: stretch;
	display: flex;
	flex: 0 0 calc(50% - ((2% * 1) / 2));
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 30px;
}

.services ul.links a {
	align-content: flex-start;
	color: #231f20;
	cursor: pointer;
	flex: 1 0 100%;
	font-family: "Cormorant", serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
	padding: 15px;
	position: relative;
	text-decoration: none;
	transform-origin: 0 50%;
	transition: all .2s ease-in-out;
	white-space: normal;
	width: auto;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: subpixel-antialiased;
}

.services ul.links a::before {
	background-color: #958932;
	border-radius: 100%;
	content: '';
	display: inline-block;
	height: 25px;
	left: -20px;
	position: absolute;
	top: 20	px;
	transition: all .2s ease-in-out;
	width: 25px;
}

.services ul.links a::after {
	content: '\f101';
	font-family: 'Font Awesome 6 Free';
	font-size: 10px;
	left: 0;
	padding-left: 2px;
	position: relative;
	top: -1px;
	transition: left .2s ease-in-out;
}

.services ul.links a:focus,
.services ul.links a:hover {
	color: #3b638d;
	text-decoration: none;
	transform: scale(1.05);
}
.services ul.links a:focus::before,
.services ul.links a:hover::before {
	background-color: #c1b783;
}

.services ul.links a:focus::after,
.services ul.links a:hover::after {
	left: 3px;
}


/* Why
---------------------------------------------------------------------------- */

.why .unique {
	border-radius: 10px;
	padding: 20px;
}

.why ul li {
	line-height: 1.2;
	margin-bottom: 13px;
	padding: 0;
}

.why .unique p:last-child {
	margin: 0;
}



/* Blog
---------------------------------------------------------------------------- */

.blog {
	font-size: 18px;
}

.blog .gb-block-post-grid .is-grid,
.blog .gb-block-post-grid .gb-is-grid {
	grid-gap: 20px 10%;
}

.blog .gb-block-post-grid-image {
	aspect-ratio: 2/1;
	border-radius: 10px;
	height: auto;
	overflow: hidden;
	margin-bottom: 25px;
}

.blog .gb-block-post-grid-image a img {
	opacity: 1;
	transition: all .2s ease-in-out;
}

.blog .gb-block-post-grid-image a:focus img,
.blog .gb-block-post-grid-image a:hover img {
	opacity: .8;
	transform: scale(1.025);
}

.blog h4.gb-block-post-grid-title,
.blog h4.gb-block-post-grid-title a {
	color: #958932;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.blog h4.gb-block-post-grid-title a:focus,
.blog h4.gb-block-post-grid-title a:hover {
	color: #231f20;
	text-decoration: none;
}

.blog .gb-block-post-grid .gb-block-post-grid-byline {
	display: none;
}

.blog a.gb-block-post-grid-more-link {
	color: #958932;
	cursor: pointer;
	font-family: "Cormorant", serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .5px;
	line-height: 1.25;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .2s ease-in-out;
	white-space: normal;
	width: auto;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: subpixel-antialiased;
}

.blog a.gb-block-post-grid-more-link::after {
	content: '\f101';
	font-family: 'fontawesome';
	font-size: 10px;
	left: 0;
	padding-left: 2px;
	position: relative;
	top: -1px;
	transition: left .2s ease-in-out;
}

.blog a.gb-block-post-grid-more-link:focus,
.blog a.gb-block-post-grid-more-link:hover {
	color: #231f20;
	text-decoration: none;
}

.blog a.gb-block-post-grid-more-link:focus::after,
.blog a.gb-block-post-grid-more-link:hover::after {
	left: 3px;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (max-width: 767px) {
	
	.services ul.links li {
		flex-basis: 100%;
	}
	
	.blog .gb-block-post-grid .is-grid, 
	.blog .gb-block-post-grid .gb-is-grid {
		grid-template-columns: 100%;
	}
	
}