.search-wrap-overlay {
	position: fixed;
	top: -100%;
	left: 0;
	background-color: #fffffff2;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	z-index: 9999;
}

#searchform {
	width: 100%;
	max-width: 870px;
	display: flex;
}

#searchform-input {
	width: 100%;
	height: 70px;
	padding: 13px 20px 10px;
	border-radius: 0;
	font-weight: 100;
	font-size: 27px;
	font-family: 'FG Book', sans-serif;
	outline: none;
	border: none;
	color: #4b9dd3;
	background-color: transparent;
	border-bottom: solid 1px #4b9dd3;
}

#searchform-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #4b9dd3;
}

#searchform-input::-moz-placeholder { /* Firefox 19+ */
	color: #4b9dd3;
}

#searchform-input:-ms-input-placeholder { /* IE 10+ */
	color: #4b9dd3;
}

#searchform-input:-moz-placeholder { /* Firefox 18- */
	color: #4b9dd3;
}

#searchform-submit {
	border-radius: 0;
	border: none;
	background-color: #ffffff00;
	color: #4b9dd3;
	outline: none;
	height: 70px;
	cursor: pointer;
	width: 70px;
	border-bottom: solid 1px #4b9dd3;
}

#searchform-submit i {
	font-size: 30px;
	transition: .2s;
}

#searchform-submit:hover i {
	transform: scale(1.2);
}

#searchform-submit:active i {
	transform: scale(1.1);
}


.display-menu {
	margin: 20px 0;
	padding: 0;
	list-style: none;
}

.display-menu.left {
	text-align: left;
}

.display-menu.center {
	text-align: center;
}

.display-menu.right {
	text-align: right;
}

.display-menu > li > a {
	font-size: 21px;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	transition: .2s;
	font-weight: 100;
	font-family: 'FG Demi', sans-serif;
}

.display-menu > li > a:hover {
	color: #aed2ea;
}

.display-menu ul {
	display: none;
}


.sql-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
}

.sql-list a {
	display: block;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	margin: 2px 0;
	cursor: pointer;
	transition: .2s;
	font-family: 'FG Book', sans-serif;
}

.sql-list a:visited {
	color: #fff;
}

.sql-list a:hover {
	color: #aed2ea;
}



a.black-button {
	display: block;
	padding: 14px 10px;
	border: solid 1px #151515;
	background-color: #151515;
	font-weight: 100;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
	margin: 10px 0;
	cursor: pointer;
	transition: .2s;
	text-decoration: none;
	font-family: 'FG Demi', sans-serif;
}

a.black-button:visited {
	color: #fff;
}

a.black-button:hover {
	border: solid 1px #fff;
	background-color: transparent;
	color: #fff;
}

a.white-button {
	display: block;
	padding: 13px 10px 11px;
	border: solid 1px #fff;
	background-color: #fff;
	color: #4b9dd3;
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
	margin: 10px 0;
	cursor: pointer;
	font-family: 'FG Demi', sans-serif;
	text-decoration: none;
	transition: .2s;
}

a.white-button:visited {
    color: #4b9dd3;
}

a.white-button:hover {
	border: solid 1px #fff;
	background-color: transparent;
	color: #fff;
}



.ks-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 25px 0;
}

.ks-anchor {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	text-decoration: none;
	cursor: pointer;
	transition: .2s;
}

.ks-anchor i {
	color: #fff;
	transition: .2s;
}

.ks-anchor:hover i {
	color: #aed2ea;
}





.domain-header {
	margin: 60px 0 40px;
}

.domain-title {
	margin: 0;
	font-size: 90px;
	font-family: 'FG Extra Comp', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 80px;
}

.domain-hook {
	font-size: 22px;
	font-weight: 100;
	color: #454545;
	max-width: 500px;
	display: block;
	font-family: 'FG Book', sans-serif;
}

.domain-archive-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 60px auto 80px;
}

.domain-archive-item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	margin: 10px 0;
}

.domain-archive-item .domain-archive-item-title {
	margin: 0 10px 0 0;
	color: #22272d;
	font-size: 22px;
	font-family: 'FG Book', sans-serif;
	font-weight: 400;
	line-height: 31px;
	transition: .2s;
	cursor: pointer;
}

.domain-archive-item .domain-archive-item-title:hover {
	color: #3a7ca7;
}

.domain-archive-item i {
	font-size: 12px;
	color: #3a7ca7;
	position: relative;
	top: -2px;
	right: -5px;
}


@-webkit-keyframes mover {
    0% { transform: translateX(0); }
    50% { transform: translateX(7px); }
	100% { transform: translateX(0); }
} 
@-moz-keyframes mover {
    0% { transform: translateX(0); }
    50% { transform: translateX(7px); }
	100% { transform: translateX(0); }
} 
@-o-keyframes mover {
    0% { transform: translateX(0); }
    50% { transform: translateX(7px); }
	100% { transform: translateX(0); }
} 
@keyframes mover {
    0% { transform: translateX(0); }
    50% { transform: translateX(7px); }
	100% { transform: translateX(0); }
}

.domain-archive-item:hover  i {
	-webkit-animation: mover .5s infinite linear;
    -moz-animation: mover .5s infinite linear;
    -o-animation: mover .5s infinite linear;
    animation: mover .5s infinite linear;
}

.tax-domain #primary .display-menu {
	position: absolute;
	top: 0;
	right: 0;
}

.tax-domain #primary .display-menu a {
	color: #22272d;
	font-size: 14px;
	font-family: 'FG Demi', sans-serif;
	transition: .2s;
	cursor: pointer;
}

.tax-domain #primary .display-menu a:hover {
	color: #3a7ca7;
}

.tax-domain #primary .display-menu a:after {
	content: "\f054";
	margin: 0 0 0 10px;
	font-size: 9px;
	color: #3a7ca7;
	font-family: "Font Awesome 5 Free";
	visibility: visible;
	font-weight: 900;
	position: relative;
	top: -2px;
}

.tax-domain #primary .display-menu .current-menu-item a {
	color: #3a7ca7;
}

.info-item-header {
	border-bottom: solid 2px #272727;
	font-family: 'FG Extra Comp', sans-serif;
	text-transform: uppercase;
	font-size: 62px;
	line-height: 48px;
	font-weight: 100;
	margin: 40px 0 20px;
}

.info-item-child  {
	margin: 20px 0;
}

.info-item-anchor {
	text-decoration: none;
}

.info-item-title {
	color: #3a7ca7;
	line-height: 28px;
	font-size: 24px;
	margin: 5px 0;
	width: fit-content;
	font-weight: 100;
	width: -moz-fit-content;
	font-family: 'FG Demi', sans-serif;

}

.info-item-child.has-excerpt {

}

h3.info-item-faq-title {
	color: #454545;
	line-height: 28px;
	font-size: 24px;
	margin: 5px 0;
	width: fit-content;
	font-weight: 100;
	width: -moz-fit-content;
	font-family: 'FG Demi', sans-serif;
}

.info-item-faq-content .info-item-child {
	margin-bottom: 60px;
}

.info-item-child.has-excerpt .info-item-title {
	border-bottom: solid 3px #4b9dd3;
}

.info-item-faq-wrap {
	margin-top: 80px;
}

.info-item-faq-title {
	margin: 10px 0;
	font-family: 'FG Extra Comp', sans-serif;
	font-size: 48px;
	line-height: 49px;
}

.info-item-faq-content {
	margin: 40px 0;
}

.search .page-title {
	font-family: 'FG Extra Comp', sans-serif;
	font-size: 42px;
	font-weight: 100;
}

.search article {
	margin: 40px 0;
}

.search .entry-title {
	line-height: 32px;
	margin: 0;
}

.search .entry-title a {
	display: block;
	font-family: 'FG Demi', sans-serif;
	font-size: 32px;
	text-decoration: none;
	color: #202020;
	line-height: 32px;
	margin: 0 0 10px;
	cursor: pointer;
	transition: .2s;
}

.search .entry-title a:visited {
	color: #202020;
}

.search .entry-title a:hover {
	color: #3a7ca7;
}

.search .entry-title a:active {
	color: #202020;
}

.search .entry-summary p {
	margin: 0;
	font-size: 16px;
}

.search .entry-footer {
	display: none;
}

.nav-links a {
	font-family: 'FG Book', sans-serif;
	text-decoration: none;
	color: #4b9dd3;
	cursor: pointer;
	transition: .2s;
}

.nav-links a:visited {
	color: #4b9dd3;
}

.nav-links a:hover {
	color: #22272d;
}

.nav-links a:active {
	color: #4b9dd3;
}

.info-item-content {
	margin: 40px 0 0;
}

.info-item-content h1,
.info-item-content h2,
.info-item-content h3{
	margin: 20px 0;
}

.info-item-content ul,
.info-item-content ol{
	margin: 20px 0 20px 20px;
	font-family: 'FG Book', sans-serif;
}

.info-item-content h1 {
	font-size: 42px;
}

.info-item-content h2 {
	font-size: 32px;
}

.info-item-content h3 {
	font-size: 26px;
}

.info-item-content h4 {
	font-size: 22px;
}

.info-item-content h5 {
	font-size: 18px;
}

.info-item-content h6 {
	font-size: 16px;
}

@media ( max-width: 1169px ) {
	.info-item-header {
		font-size: 56px;
		margin: 20px 0 10px;
	}
	.info-item-content {
		margin: 20px 0 0;
	}
}


@media ( max-width: 991px ) {
	.domain-header {
		margin: 30px 0 20px;
	}
	.domain-title,
	.page-title {
		font-size: 72px;
		line-height: 70px;
	}
	.domain-hook {
		font-size: 18px;
	}
	.domain-archive-flex {
		margin: 30px auto 40px;
	}
	.domain-archive-flex a {
		margin: 15px 0;
	}
	.domain-archive-flex h3 {
		font-size: 21px !important;
	}
	.domain-archive-flex i {
		top: 2px;
	}
	.info-item-header {
		font-size: 52px;
	}
	
	#searchform {
		max-width: 600px;
	}
	#searchform input[type="text"] {
		height: 60px;
		font-size: 20px;
		padding: 10px;
	}
	#searchform button {
		height: 60px;
		width: 60px;
	}
	#searchform button i {
		font-size: 27px;
	}
}


@media ( max-width: 767px ) {
	.domain-title,
	.page-title {
		font-size: 56px;
		line-height: 50px;
		margin-bottom: 10px;
	}
	.domain-hook {
		font-size: 17px;
	}
	.domain-archive-flex {
		flex-direction: column;
	}
	.domain-archive-flex a {
		width: 80% !important;
		margin: 15px auto;
	}
	.archive .display-menu {
		display: none;
	}
	.domain-archive-flex h3 {
		font-size: 18px !important;
		line-height: 28px !important;
	}
	.domain-archive-flex a {
		margin: 11px 0;
	}
	.info-item-header {
		font-size: 46px;
	}
	
	#searchform {
		max-width: 500px;
	}
	#searchform input[type="text"] {
		height: 50px;
		font-size: 19px;
		padding: 10px;
	}
	#searchform button {
		height: 50px;
		width: 50px;
	}
	#searchform button i {
		font-size: 24px;
	}
}

@media ( max-width: 599px ) {
	.domain-title,
	.page-title {
		font-size: 42px;
		line-height: 40px;
	}
	.domain-hook {
		font-size: 16px;
	}
	.domain-archive-flex a {
		width: 95% !important;
	}
	.info-item-header {
		font-size: 38px;
		margin: 0;
	}
	.domain-archive-flex h3 {
		font-size: 17px !important;
		line-height: 24px !important;
	}
	.domain-archive-flex a {
		margin: 6px 0;
	}

	#searchform {
		max-width: 300px;
	}
	#searchform input[type="text"] {
		height: 40px;
		font-size: 17px;
		padding: 8px;
	}
	#searchform button {
		height: 40px;
		width: 40px;
	}
	#searchform button i {
		font-size: 19px;
	}

	#interior-menu > li > a {
		margin: 0 10px !important;
		font-size: 14px !important;
	}
}

@media ( max-width: 499px ) {
	#interior-menu > li > a {
		margin: 0 9px !important;
		font-size: 13px !important;
	}
	.domain-archive-flex h3 {
		font-size: 15px !important;
		line-height: 19px !important;
	}
}

@media ( max-width: 399px ) {
	#interior-menu > li > a {
		margin: 0 7px !important;
		font-size: 12px !important;
	}
	.domain-archive-flex h3 {
		font-size: 14px !important;
		line-height: 19px !important;
	}
}