/* Custom CSS */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*, body h1, body h2, body h3, body h4, body h5, body h6, body p {
	font-family: "Inter", sans-serif;
	font-size: unset;
	line-height: unset;
	font-weight: unset;
	text-transform: unset;
}

:root {
  --lithos-white: #FFF;
  --lithos-black: #1A1A1A;
  --lithos-gray: #999999;
  --lithos-blue: #274C77;
  --lithos-darkblue: #19314d;
  --lithos-verydarkblue: #13253a;
  --lithos-medblue: #386fad;
  --lithos-liteblue: #9fbde0;
  --lithos-gold: #E6B222;
  --lithos-containermax: 1400px;
}

html {
  scroll-behavior: smooth;
}

.entry-content p {
	font-size: 1.1rem;
	line-height: 1.5em;
	font-weight: 400;
	color: var(--lithos-black);
	margin: 5px 0px 30px 0px;
	font-family: "Inter", sans-serif;
}

.entry-content ul,
.entry-content ol {
	padding: 0px 0px 0px 50px;
	max-width: 800px;
	margin: 0 auto 30px auto;
}

.entry-content ul li,
.entry-content ol li {
	font-size: 1.1rem;
	line-height: 1.0em;
	font-weight: 400;
	color: var(--lithos-black);
	margin: 0px 0px 12px 0px;
	font-family: "Inter", sans-serif;
}

.entry-content ul li::marker,
.entry-content ol li::marker {
  color: var(--lithos-blue);
}

.entry-content blockquote {
	border-left: solid 2px var(--lithos-black);
	padding: 20px 30px;
	max-width: 800px;
	margin: 0 auto 20px auto;
	position: relative;
	left: 10px;
}

.entry-content h1 {
	font-size: 2.2rem;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--lithos-black);
	margin: 10px 0px 20px 0px;
	font-family: "Inter", sans-serif;
}

.entry-content h2 {
	font-size: 1.5rem;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--lithos-blue);
	margin: 10px 0px 20px 0px;
	font-family: "Inter", sans-serif;
}

.entry-content h3 {
	font-size: 1.3rem;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--lithos-black);
	margin: 10px 0px 20px 0px;
	font-family: "Inter", sans-serif;
}

.entry-content h4 {
	font-size: 1.2rem;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--lithos-gray);
	margin: 10px 0px 20px 0px;
	font-family: "Inter", sans-serif;
}

.entry-content h5 {
	font-size: 1.2rem;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--lithos-black);
	margin: 10px 0px 20px 0px;
	font-family: "Inter", sans-serif;
}

.entry-content h6 {
	font-size: 0.9rem;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--lithos-black);
	margin: 10px 0px 10px 0px;
	font-family: "Inter", sans-serif;
}

.entry-content hr {
    border: none;
    background: #DDD;
    margin: 50px 0px;
}

.entry-content > p:last-child,
.entry-content > h1:last-child,
.entry-content > h2:last-child,
.entry-content > h3:last-child,
.entry-content > h4:last-child,
.entry-content > h5:last-child,
.entry-content > h6:last-child,
.entry-content > ul:last-child,
.entry-content > ol:last-child {
	margin: 5px 0px 0px 0px;
}

.page-content, .entry-content, .entry-summary {
    margin: 0;
}

.narrower-content {
	max-width: 900px;
}

.narrower-content-center {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* --------- START SCROLLBAR CSS ----------- */

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--lithos-black); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  transition: all ease 0.3s;
  border-radius: 4px;
  background-color: var(--lithos-darkblue);
  transition: background-color ease 0.3s;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--lithos-medblue);
  transition: background-color ease 0.3s;
}

/* ---------- END SCROLLBAR CSS ------------ */

/* ---------- START STICKY FOOTER CSS ------------ */

.lithos-page-wrap {
	min-height: calc(100vh - 300px);
	position: relative;
	overflow-x: visible;
}

.lithos-footer-wrapper {
	height: 300px;
	background: var(--lithos-black);
	position: relative;
}

body.logged-in .lithos-page-wrap {
	min-height: calc(100vh - 332px);
}

/* ---------- END STICKY FOOTER CSS ------------ */

body {
	/*overflow-x: hidden;*/
}

body.page,
body.post {
	margin-bottom: 0px;
}

.lithos-fixed-header-wrapper {
    position: sticky;
    width: 100%;
    z-index: 1000;
    top: 0;
    height: 120px;
}

.lithos-nav-container {
    display: flex;
    max-width: var(--lithos-containermax);
    width: 100%;
    height: 100%;
    margin: 0px auto;
    position: relative;
    justify-content: space-between;
    padding: 0px 50px;
}

.lithos-site-header {
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all ease 0.3s;
	backdrop-filter: blur(5px);
	border-bottom: solid 1px var(--lithos-medblue);
}

.lithos-site-header:after {
	position: absolute;
	top: 100%;
    content: '';
    display: block;
    width: 100%;
    height: 40px;
   	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent, transparent);
   	mix-blend-mode: multiply;
}

.lithos-site-header.lithos-site-header-scroll {
	height: 50px;
}

.lithos-site-header.lithos-site-header-scroll .site-branding a img {
    height: 28px;
}

.lithos-site-header.lithos-site-header-scroll .site-branding {
    padding-bottom: 5px;
}

body.admin-bar .lithos-fixed-header-wrapper {
	top: 32px;
}

/*body.admin-bar .lithos-site-header.lithos-site-header-scroll {
	top: 32px;
}*/

.lithos-site-header:before {
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.87);
	mix-blend-mode: multiply;
	position: absolute;
	top: 0px;
	left: 0px;
}

.lithos-site-header .lithos-main-navigation {
    width: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lithos-site-header .site-branding {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding-right: 30px;
	padding-bottom: 8px;
}

.lithos-site-header.lithos-site-header-scroll .site-branding {
	padding-right: 20px;
}

.lithos-site-header .site-branding:before {
	position: absolute;
	width: 100vw;
	height: 100%;
	display: block;
	background: var(--lithos-blue);
	content: '';
	right: 0px;
	top: 0px;
}

.lithos-site-header .site-branding:after {
	position: absolute;
	width: 100vw;
	height: 100%;
	display: block;
	background-image: linear-gradient(to bottom left, var(--lithos-medblue), var(--lithos-blue));
	/*background: var(--lithos-blue);*/
	content: '';
	right: 0px;
	top: 0px;
	z-index: 5;
	transition: all ease 0.3s;
	opacity: 0.0;
}

.lithos-site-header .site-branding:hover:after {
	transition: all ease 0.3s;
	opacity: 1.0;
}


.lithos-site-header .site-branding a {
	z-index: 10;
}

.lithos-site-header .site-branding a:focus {
	outline: none;
}

.lithos-site-header .site-branding a img {
	height: 40px;
	width: auto;
	transition: all ease 0.3s;
}

.lithos-main-navigation .menu-item {
	display: block;
}

.lithos-main-navigation .menu-item svg {
	display: inline-block;
	height: 22px;
	fill: var(--lithos-black);
	position: relative;
    bottom: 2px;
    margin-right: 2px;
}

.lithos-main-navigation ul {
    gap: 40px;
}

.main-navigation ul ul.sub-menu {
    flex-direction: column;
    gap: 0px;
    padding-top: 15px;
}

.lithos-main-navigation .menu-item,
.lithos-main-navigation .menu-item a {
	color: rgba(255,255,255,0.8);
	transition: all ease 0.3s;
	text-decoration: none;
	font-size: 1rem;
	line-height: 1em;
	font-family: "Inter", sans-serif;
	font-weight: 400;
}

.lithos-main-navigation .menu-item:hover,
.lithos-main-navigation .menu-item a:hover {
	color: rgba(255,255,255,1.0);
	transition: all ease 0.3s;
	text-decoration: none;
}

.lithos-main-navigation .menu-item .sub-menu .menu-item a {
	padding: 15px 20px;
	background: var(--lithos-blue);
	transition: all ease 0.3s;
}

.lithos-main-navigation .menu-item .sub-menu .menu-item:first-child a {
	border-radius: 3px 3px 0px 0px;
}

.lithos-main-navigation .menu-item .sub-menu .menu-item:last-child a {
	border-radius: 0px 0px 3px 3px;
}

.lithos-main-navigation .menu-item .sub-menu .menu-item a:hover {
	background: var(--lithos-medblue);
	padding-left: 25px;
}

.lithos-page-wrap .site-main {
	/*padding-top: 120px;*/
}

.page-template-page-fullsize .lithos-page-wrap .site-main {
	padding-top: 0px;
}

.lithos-page-wrap .site-main article {
    max-width: var(--lithos-containermax);
    width: 100%;
    margin: 0px auto;
    position: relative;
    padding: 100px 50px 100px 50px;
}

.page-template-page-fullwidth .lithos-page-wrap .site-main article {
    max-width: var(--lithos-containermax);
    width: 100%;
    margin: 0px auto;
    position: relative;
    padding: 100px 50px 100px 50px;
}

.page.page-template-page-fullsize .lithos-page-wrap .site-main article {
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
    position: relative;
    padding: 0px 0px 0px 0px;
}

body .lithos-page-wrap .site-main article .entry-footer {
	max-width: var(--lithos-containermax);
	margin: 0 auto;
	padding: 0px 50px;
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	z-index: 20;
}

body.home .lithos-page-wrap .site-main article .entry-footer {
	bottom: 15px;
}

.page-template-page-fullsize .lithos-page-wrap .entry-content {
	margin: 0px;
}

.lithos-page-wrap .site-main .entry-header .entry-title {
	font-family: "Inter", sans-serif;
	font-size: 1.5rem;
	line-height: 1em;
	font-weight: 500;
	color: var(--lithos-black);
	text-align: center;
}

.lithos-footer-widget {
	margin: 0;
	width: 100%;
	height: 100%;
}

.lithos-footer-main .lithos-footer-container {
    width: 100%;
    height: 100%;
    padding: 0px 30px 0px 30px;
    max-width: 700px;
    margin: 0px auto 0px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lithos-footer-logo-box .lithos-footer-logo {
	height: 70px;
}

ul.lithos-footer-menu {
    padding: 0px;
    margin: 20px 0px 0px 0px;
}

ul.lithos-footer-menu li {
	list-style-type: none;
	display: block;
	margin-bottom: 7px;
}

ul.lithos-footer-menu li:last-child {
	margin-bottom: 0px;
}

ul.lithos-footer-menu li a {
	display: inline-block;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 1.1rem;
	line-height: 1em;
	transition: all ease 0.3s;
}

ul.lithos-footer-menu li a:hover {
	color: rgba(255, 255, 255, 1.0);
	text-decoration: none;
}

ul.lithos-footer-menu li a svg {
	fill: var(--lithos-black);
	height: 20px;
	margin-right: 5px;
	position: relative;
	bottom: 2px;
}

.lithos-footer-main {
	height: 240px;
}

.lithos-404 {
	border: solid 3px var(--lithos-black);
	max-width: 700px;
	width: calc(100% - 60px);
	margin: 70px auto;
	padding: 50px;
	background: var(--lithos-white);
}

.lithos-404 .page-title {
	text-align: center;
	color: var(--lithos-black);
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.2em;
	margin: 0px;
}

.lithos-404 .page-content {
	margin: 0px;
}

.site-branding .site-title {
	color: var(--lithos-white);
	margin: 0;
}

.site-branding .site-title a {
	color: rgba( 255, 255, 255, 0.8);
	font-size: 2.2rem;
	line-height: 1em;
	text-decoration: none;
	transition: all ease 0.3s;
}

.site-branding .site-title a:hover {
	color: rgba( 255, 255, 255, 1.0);
	text-decoration: none;
}

.flex-side-right-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 100px;
}

.flex-side-right-wrapper .entry-content {
    flex-grow: 1;
}

.flex-side-right-wrapper .flex-side-right-content {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 300px;
    height: auto;
    /*border: dotted 1px #CCC;*/
}

.lithos-right-side-cta-widget {
	justify-self: end;
	margin: auto 0 0 0;
}

.lithos-sidebar-cta p {
	font-size: 1.2rem;
	line-height: 1.6em;
	padding: 0px;
	margin-bottom: 17px;
	color: var(--lithos-gray);
	font-weight: 500;
}

.lithos-cta-link {
	display: flex;
	flex-direction: row;
	justify-content: left;
	position: relative;
	transition: all ease 0.3s;
	left: 0px;
	gap: 10px;
	text-decoration: none;
}

.lithos-cta-link:hover {
	left: 7px;
	text-decoration: none;
}

.lithos-cta-link .lithos-cta-link-caret {
	width: 20px;
	position: relative;
	margin: auto 0;
}

.lithos-cta-link .lithos-cta-link-text {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1em;
	color: var(--lithos-blue);
	margin: auto 0;
}

.lithos-page-header {
	background-color:#e9e9e9;
    background-size:cover;
    background-position:center;
    padding: 120px 0 110px 0;
	overflow: hidden;
	position: relative;
}

.lithos-page-header::before {
    content:'';
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.5); /* light overlay fits this design */
}

.lithos-page-header:after {
	width: 100%;
	height: 20px;
	background-image: linear-gradient(to bottom, transparent, transparent, rgba(0,0,0,0.05));
	content: '';
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	mix-blend-mode: multiply;
}

.lithos-page-header .container {
	width: 100%;
	max-width: var(--lithos-containermax);
	margin: 0 auto;
	padding: 0px 50px;
	text-shadow: 0 0 4px rgba(255, 255, 255, 1.0), 0 0 15px rgba(255, 255, 255, 1.0);
	position: relative;
	z-index: 2;
}

.lithos-page-header .container .page-title {
	font-size: 1.2rem;
	line-height: 1.0em;
	color: var(--lithos-gray);
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
	max-width: 700px;
}

.lithos-page-header .container .page-headline {
	font-size: 2.5rem;
	line-height: 1.4em;
	color: var(--lithos-blue);
	font-weight: 700;
	max-width: 700px;
	margin: 0px;
}

.lithos-page-header .container .page-headline span {
	display: inline-block;
}

.lithos-services-widget {
	margin: 0px;
}

.lithos-services-wrapper {
	display: block;
	width: 100%;
	background: var(--lithos-blue);
	position: relative;
}

.lithos-services-wrapper:before {
	content: '';
	display: block;
	width: 100%;
	height: 30px;
	background-image: linear-gradient(to bottom, rgba(25, 49, 77, 0.7), transparent, transparent);
	position: absolute;
	top: 0px;
	left: 0px;
}

.lithos-services-container {
	position: relative;
	max-width: var(--lithos-containermax);
	margin: 0 auto;
	z-index: 1;
	padding: 0px 50px;
}

.lithos-services-cards {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 100px;
	padding: 100px 0px;
	border-top: solid 1px var(--lithos-darkblue);
	border-bottom: solid 1px var(--lithos-darkblue);
}

.lithos-service-card-item {
	text-decoration: none;
	position: relative;
	bottom: 0px;
	transition: all ease 0.3s;
}

.lithos-service-card-item:hover {
	text-decoration: none;
	bottom: 4px;
}

.lithos-service-card-item .lithos-service-card-title {
	display: flex;
	gap: 15px;
	opacity: 0.9;
	transition: all ease 0.3s;
	margin-bottom: 20px;
}

.lithos-service-card-item:hover .lithos-service-card-title {
	opacity: 1.0;
	transition: all ease 0.3s;
}

.lithos-service-card-title img {
	width: 20px;
	object-fit: contain;
}

.lithos-service-card-title .lithos-service-card-title-text {
	color: var(--lithos-white);
	font-size: 1.8rem;
	font-weight: 500;
}

.lithos-service-card-item .lithos-service-card-text {
	font-size: 1.1rem;
	line-height: 1.8em;
	color: var(--lithos-white);
	opacity: 0.8;
	transition: all ease 0.3s;
}

.lithos-service-card-item:hover .lithos-service-card-text {
	opacity: 1.0;
	transition: all ease 0.3s;
}

.lithos-services-bottom-image-holder {
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    overflow: hidden;
}

img.lithos-services-bottom-image {
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    position: relative;
    object-fit: cover;
    object-position: top center;
}

.lithos-services-footer {
	display: flex;
	height: 300px;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.lithos-services-footer p {
	font-size: 1.3rem;
	line-height: 1em;
	margin: 0px;
	text-align: center;
	color: var(--lithos-liteblue);
	font-style: italic;
	font-weight: 400;
	letter-spacing: 1px;
}

.lithos-services-footer p span {
	display: inline-block;
}

.lithos-services-header {
	text-align: center;
	height: 300px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.lithos-services-header h1 {
	color: var(--lithos-gold);
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0px 0px 10px 0px;
}

.lithos-services-header h2 {
	color: var(--lithos-white);
	font-size: 2.7rem;
	margin: 0px;
	font-weight: 600;
}

.lithos-services-header h2 span {
	display: inline-block;
}

.lithos-plans-widget-wrapper {
	padding: 100px 0px;
}

.lithos-plans-widget-container {
	max-width: var(--lithos-containermax);
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	gap: 100px;
}

.lithos-plans-widget-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lithos-caret-link {
	display: inline-flex;
	flex-direction: row;
	text-decoration: none;
	gap: 10px;
	position: relative;
	left: 0px;
	transition: all ease 0.3s;
}

.lithos-caret-link:hover {
	text-decoration: none;
	left: 7px;
}

.lithos-caret-link img {
	width: 20px;
	margin: auto 0;
}

.lithos-caret-link span {
	font-size: 1.4rem;
	line-height: 1.0em;
	color: var(--lithos-blue);
	font-weight: 700;
	display: block;
	margin: auto 0;
}

.lithos-plans-widget-left h1,
.lithos-about-widget-left h1 {
    color: var(--lithos-gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0px 0px 10px 0px;
}

.lithos-plans-widget-left h2,
.lithos-about-widget-left h2 {
    color: var(--lithos-blue);
    font-size: 2.7rem;
    line-height: 1.2em;
    margin: 0px 0px 20px 0px;
    font-weight: 600;
}

.lithos-plans-widget-left h2 span,
.lithos-about-widget-left h2 span {
    display: inline-block;
}

.lithos-plans-widget-left p,
.lithos-about-widget-left p {
    font-size: 1.1rem;
    line-height: 1.7em;
    font-weight: 400;
    color: var(--lithos-black);
    margin: 5px 0px 40px 0px;
    font-family: "Inter", sans-serif;
}

.lithos-plans-widget-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 350px;
	flex-grow: 0;
	flex-shrink: 0;
}

.lithos-plans-widget,
.lithos-about-widget  {
	margin: 0;
}

.lithos-plans-widget .lithos-caret-link,
.lithos-about-widget .lithos-caret-link {
	margin-right: auto;
}

.lithos-about-widget-wrapper {
	background: var(--lithos-blue);
	padding: 100px 50px;
}

.lithos-about-widget-container {
	max-width: var(--lithos-containermax);
	margin: 0 auto;
	padding: 0px;
	background: var(--lithos-white);
	display: flex;
	flex-direction: row;
	align-items: stretch;
	position: relative;
	overflow: hidden;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
	border-radius: 2px;
}

.lithos-about-widget-left {
	padding: 100px 0px 100px 50px;
	flex: 1 1 55%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lithos-about-widget-right {
	flex: 1 1 45%;
	align-self: stretch;
	position: relative;
	left: 100px;
}

img.lithos-about-pillars {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: left center;
}

.lithos-cta-widget {
	margin: 0;
}

.lithos-cta-widget-wrapper {
	background: var(--lithos-black);
}

.lithos-cta-widget-container {
	max-width: var(--lithos-containermax);
	padding: 0px 50px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: end;
}

.lithos-cta-widget-link {
	display: flex;
	gap: 10px;
	text-decoration: none;
	position: relative;
	left: 0px;
	transition: all ease 0.3s;
}

.lithos-cta-widget-link:hover {
	display: flex;
	gap: 10px;
	text-decoration: none;
	left: 7px;
}

.lithos-cta-widget-link img {
	width: 20px;
}

.lithos-cta-widget-link span {
	font-size: 1.5rem;
	line-height: 1em;
	margin: auto 0;
	font-weight: 600;
	color: var(--lithos-white);
}

.lithos-cta-widget-left {
	padding: 50px 70px 50px 50px;
	background: var(--lithos-gold);
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.lithos-cta-widget-left:before {
	width: 100vw;
	height: 100%;
	right: 0px;
	top: 0px;
	content: '';
	display: block;
	position: absolute;
	/*background: var(--lithos-gold);*/
	background-image: linear-gradient(to right, #cf9e17 , #E6B222);
}

.lithos-cta-widget-left h2 {
	margin: 0px;
	font-weight: 700;
	color: var(--lithos-white);
	font-size: 2.7rem;
	line-height: 1em;
	z-index: 1;
}

.lithos-cta-widget-right {
	padding: 0px 30px 0px 70px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.lithos-footer-widget {
	margin: 0;
}

.lithos-footer-content-wrapper {
	padding: 0px;
	position: relative;
	background: #555;
}

.lithos-footer-content-wrapper .lithos-footer-background-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	object-fit: cover;
	mix-blend-mode: multiply;
	opacity: 0.5;
}

.lithos-footer-content-container {
	position: relative;
	margin: 0 auto;
	max-width: var(--lithos-containermax);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 50px;
	padding: 100px 50px;
}

.lithos-footer-contact-info {
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.lithos-footer-contact-info img.lithos-footer-logo {
	width: 300px;
	margin-bottom: 20px;
}

.lithos-footer-contact-info p {
	color: var(--lithos-white);
	font-size: 1.1rem;
	line-height: 1em;
	margin: 0px 0px 10px 0px;
	color: #AAA;
	font-weight: 300;
}

.lithos-footer-contact-info p:last-child {
	margin: 0px 0px 0px 0px;
}

.lithos-footer-contact-info p span {
	display: inline-block;
}

.lithos-footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 100px;
}

.lithos-footer-links-group {
	display: flex;
	flex-direction: column;
}

.lithos-footer-links ul {
	padding: 0px;
	margin: 0px;
}

.lithos-footer-links ul li {
	list-style-type: none;
	margin: 0px 0px 7px 0px;
	padding: 0px;
}

.lithos-footer-links ul li:last-child {
	margin: 0px 0px 0px 0px;
}

.lithos-footer-links ul li a {
	color: #AAA;
	transition: all ease 0.3s;
	font-size: 1.1rem;
	line-height: 1em;
	text-decoration: none;
	font-weight: 300;
}

.lithos-footer-links ul li a:hover {
	color: #FFF;
	text-decoration: none;
}

.lithos-footer-links h4 {
	color: #FFF;
	font-size: 1.1rem;
	line-height: 1em;
	font-weight: 600;
	line-height: 1em;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}

.lithos-footer-copyright-etc {
	padding: 0px;
	position: relative;
}

.lithos-footer-copyright-etc:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: var(--lithos-black);
	mix-blend-mode: multiply;
	opacity: 0.5;
}

.lithos-footer-copyright-etc-container {
	max-width: var(--lithos-containermax);
	width: 100%;
	margin: 0 auto;
	padding: 50px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 100px;
	position: relative;
	z-index: 1;
}

.lithos-footer-copyright-etc-container p {
	color: #777;
	font-size: 1rem;
	line-height: 1em;
	margin: 0px;
}

.lithos-footer-copyright-etc-container p span {
	display: inline-block;
}

.lithos-footer-copyright-etc-container p:first-child span:first-child {
	margin-right: 20px;
}

.lithos-footer-copyright-etc-container p a {
	color: #777;
	text-decoration: none;
	transition: all ease 0.3s;
}

.lithos-footer-copyright-etc-container p a:hover {
	color: var(--lithos-white);
	text-decoration: none;
}

.lithos-homepage-welcome-wrapper {
	width: 100%;
	height: calc(100vh - 300px);
	min-height: 700px;
	position: relative;
	overflow: hidden;
}

img.lithos-homepage-welcome-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	object-fit: cover;
}

.lithos-homepage-welcome-wrapper-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	z-index: 10;
}

.lithos-homepage-welcome-container {
	max-width: var(--lithos-containermax);
	width: 100%;
	margin: auto auto 0 auto;
	padding: 0px 50px 100px 50px;
	position: relative;
}

.lithos-home-cta-link {
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
	margin: 0px;
	text-decoration: none;
	position: relative;
	left: 0px;
	transition: all ease 0.3s;
}

.lithos-home-cta-link:hover {
	text-decoration: none;
	left: 7px;
}

.lithos-home-cta-link img {
	width: 20px;
}

.lithos-home-cta-link span {
	color: var(--lithos-white);
	font-size: 1.7rem;
	line-height: 1em;
	margin: auto 0;
	font-weight: 500;
}

.entry-content .lithos-homepage-welcome-container h1 {
    font-size: 3.8rem;
    line-height: 1.2em;
    font-weight: 600;
    color: var(--lithos-white);
    margin: 0px 0px 30px 0px;
    font-family: "Inter", sans-serif;
    max-width: 800px;
}

.entry-content .lithos-homepage-welcome-container h1 span {
    display: inline-block;
}

.entry-content .lithos-homepage-welcome-container h3 {
    font-size: 1.4rem;
    line-height: 1em;
    font-weight: 500;
    color: var(--lithos-gold);
    margin: 0px 0px 70px 0px;
    font-family: "Inter", sans-serif;
    max-width: 800px;
    font-style: italic;
}

.entry-content .lithos-homepage-welcome-container h3 span {
    display: inline-block;
}

.lithos-homepage-welcome-image-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		to top,
		rgba(0,0,0,0.95) 0%,
		rgba(0,0,0,0.85) 15%,
		rgba(0,0,0,0.65) 32%,
		rgba(0,0,0,0.45) 48%,
		rgba(0,0,0,0.22) 62%,
		rgba(0,0,0,0.08) 75%,
		rgba(0,0,0,0.00) 88%
	);
	pointer-events: none;
}


.lithos-plans-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin: 70px auto;
}

.lithos-plans-cards-container .lithos-plan-card .lithos-plan-card-image-holder {
    width: 100%;
    height: 150px;
    position: relative;
}

.lithos-plans-cards-container .lithos-plan-card .lithos-plan-card-image-holder img.lithos-plan-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lithos-plans-cards-container .lithos-plan-card .lithos-plan-card-image-holder span.lithos-plan-card-image-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		to top,
		rgba(0,0,0,0.65) 0%,
		rgba(0,0,0,0.50) 20%,
		rgba(0,0,0,0.32) 40%,
		rgba(0,0,0,0.18) 60%,
		rgba(0,0,0,0.08) 75%,
		rgba(0,0,0,0.00) 90%
	);
	pointer-events: none;
}

.lithos-plans-cards-container .lithos-plan-card {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    background: var(--lithos-white);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    height: 100%;
}

.lithos-plans-cards-container .lithos-plan-card .lithos-plan-card-text-holder {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lithos-plans-cards-container .lithos-plan-card h2 {
	color: var(--lithos-white);
	background: var(--lithos-blue);
	font-size: 1.25rem;
	letter-spacing: 0.3px;
	line-height: 1.4em;
	padding: 20px 30px;
	margin: 0px;
	font-weight: 500;
}

.lithos-plans-cards-container .lithos-plan-card p {
	line-height: 1.7em;
	font-size: 1rem;
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 20px 0px;
	color: #676767;
	min-height: 160px;
	border-bottom: solid 1px #EEE;
}

.lithos-plans-cards-container .lithos-plan-card ul {
	margin-top: auto;
	padding: 0px 0px 0px 18px;
	justify-self: end;
}

.lithos-plans-cards-container .lithos-plan-card ul li {
	line-height: 1.4em;
	font-size: 1rem;
}

.lithos-contact-form-wrapper {
	background: var(--lithos-white);
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
	border-radius: 3px;
	display: flex;
	max-width: var(--lithos-containermax);
	/*width: calc(100% - 40px);*/
	width: 100%;
	margin: 50px auto;
}

.lithos-contact-form-left {
	flex: 0 0 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--lithos-blue);
	padding: 30px;
}

.lithos-contact-form-left-top img {
	width: 200px;
	margin: 0px 0px 30px 0px;
}

.lithos-contact-form-left-top p {
	font-size: 0.95rem;
	line-height: 1.5em;
	color: var(--lithos-white);
	font-weight: 400;
	margin: 0px 0px 15px 0px;
}

.lithos-contact-form-right {
	flex: 1 1 100%;
	padding: 30px;
}

.lithos-contact-form-left-bottom p {
	font-size: 0.85rem;
	line-height: 1.6em;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
	margin: 0px;
}

.lithos-contact-form-left-bottom p a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all ease 0.3s;
}

.lithos-contact-form-left-bottom p a:hover {
	color: rgba(255, 255, 255, 1.0);
	text-decoration: none;
}

.fluentform .lithos-contact-form .ff-el-input--label label {
    font-size: 0.9rem;
    font-weight: 500;
}

.fluentform .lithos-contact-form .ff-el-form-control {
    border-radius: 3px;
}

.lithos-btn {
	border-radius: 3px;
	border: none;
	background: var(--lithos-black);
	color: var(--lithos-white);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 14px 28px;
	font-size: 1.05rem;
	line-height: 1em;
	cursor: pointer;
	transition: all ease 0.3s;
}

.lithos-btn:hover {
	background: var(--lithos-darkblue);
}

.lithos-btn-blue {
	background: var(--lithos-blue);
}

.lithos-btn-blue:hover {
	background: var(--lithos-medblue);
}

.fluentform .lithos-contact-form .ff-el-group:last-child {
    margin-bottom: 0px;
}

.fluentform .lithos-contact-form .ff-field_container,
.fluentform .lithos-contact-form .ff-column-container {
	margin-bottom: 15px;
}

.lithos-contact-form-disclaimer-container p {
	font-size: 0.85rem;
	line-height: 1.6em;
	color: #555;
	font-weight: 300;
	margin: 0px;
}

.lithos-contact-form-disclaimer-container p a {
	color: var(--lithos-blue);
	font-weight: 500;
	text-decoration: none;
	transition: all ease 0.3s;
}

.lithos-contact-form-disclaimer-container p a:hover {
	color: var(--lithos-medblue);
	text-decoration: none;
}

.lithos-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.lithos-team-card {
    background: var(--lithos-white);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.lithos-team-portrait {
	position: relative;
}

.lithos-team-portrait img {
	object-fit: cover;
}

.lithos-team-card-text {
	padding: 15px;
}

h3.lithos-team-name {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    line-height: 1em;
    color: blue;
    padding: 0px;
    font-weight: 600;
    color: var(--lithos-blue);
}

.lithos-team-role {
    font-weight: 500;
    font-style: italic;
    font-size: 1.0rem;
    line-height: 1em;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    color: var(--lithos-gray);
    border-bottom: solid 1px #DEDEDE;
}

.lithos-team-bio {
    font-size: 0.97rem;
    line-height: 1.5em;
    color: #333;
    font-weight: 300;
}

.lithos-team-portrait-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;

	/*background: linear-gradient(
		to top,
		rgba(0,0,0,0.32) 0%,
		rgba(0,0,0,0.24) 15%,
		rgba(0,0,0,0.14) 28%,
		rgba(0,0,0,0.07) 38%,
		rgba(0,0,0,0.00) 48%
	);*/

	background: linear-gradient(
	to top,
	rgba(10, 20, 35, 0.30) 0%,
	rgba(10, 20, 35, 0.22) 15%,
	rgba(10, 20, 35, 0.12) 28%,
	rgba(10, 20, 35, 0.05) 38%,
	rgba(10, 20, 35, 0.00) 48%
	);
}

/* ----------------------------------------------------- */

@media screen and (max-width: 1800px) {


}

/* ----------------------------------------------------- */

@media screen and (max-width: 1500px) {

	.lithos-about-widget-wrapper {
    padding: 50px;
	}

}

/* ----------------------------------------------------- */

@media screen and (max-width: 1400px) {

	.lithos-team-grid {
	max-width: 600px;
    grid-template-columns: 1fr 1fr;
	}

}

/* ----------------------------------------------------- */

@media screen and (max-width: 1300px) {

	.lithos-service-card-title .lithos-service-card-title-text {
    font-size: 1.5rem;
	}

	.lithos-service-card-item .lithos-service-card-text {
    font-size: 1.0rem;
	}

	.lithos-cta-widget-left {
    padding: 30px 50px 30px 50px;
	}

	.lithos-cta-widget-left h2 {
    font-size: 2.0rem;
	}

	.lithos-cta-widget-right {
    padding: 0px 30px 0px 50px;
	}

	.lithos-cta-widget-link span {
    font-size: 1.3rem;
	}

	.lithos-footer-links {
    gap: 50px;
	}

	.entry-content .lithos-homepage-welcome-container h1 {
    font-size: 3.1rem;
    margin: 0px 0px 20px 0px;
	}

	.entry-content .lithos-homepage-welcome-container h3 {
    font-size: 1.1rem;
    margin: 0px 0px 40px 0px;
    }


	.lithos-home-cta-link span {
    font-size: 1.4rem;
	}

	.lithos-home-cta-link img {
    width: 17px;
	}

	.lithos-homepage-welcome-container {
    padding: 0px 50px 50px 50px;
	}

	.lithos-homepage-welcome-wrapper {
	min-height: 500px;
    max-height: 800px;
	}

}

/* ----------------------------------------------------- */

@media screen and (max-width: 1100px) {

	.lithos-page-header {
    padding: 70px 0 70px 0;
	}

	.lithos-page-header .container .page-title {
    font-size: 1.0rem;
	}

	.lithos-page-header .container .page-headline {
    font-size: 2.1rem;
    line-height: 1.4em;
    max-width: 500px;
	}

	.flex-side-right-wrapper {
    flex-direction: column;
    gap: 50px;
	}

	.flex-side-right-wrapper .flex-side-right-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-top: 50px;
    border-top: solid 1px #EEE;
	}

	.flex-side-right-wrapper .flex-side-right-content .lithos-right-side-cta-widget {
	width: unset;
    /*justify-self: end;
    margin: 0 0 0 auto;*/
	}

	.page .lithos-page-wrap .site-main article {
    padding: 70px 50px 70px 50px;
	}

	.lithos-services-header {
    height: 240px;
	}

	.lithos-services-cards {
    gap: 50px;
    padding: 70px 0px;
	}

	.lithos-service-card-title .lithos-service-card-title-text {
    font-size: 1.3rem;
	}

	.lithos-service-card-item .lithos-service-card-text {
    font-size: 0.95rem;
	}

	.lithos-services-footer {
    height: 240px;
	}

	.lithos-services-footer p {
    font-size: 1.0rem;
	}

	.lithos-services-header h2 {
    font-size: 2.2rem;
	}

	.lithos-services-header h1 {
    font-size: 1.0rem;
	}

	.lithos-plans-widget-left h2,
	.lithos-about-widget-left h2 {
    font-size: 2.2rem;
	}

	.lithos-plans-widget-container {
    gap: 50px;
	}

	.lithos-plans-widget-right {
    width: 240px;
	}

	.lithos-footer-content-container {
    flex-direction: column;
    gap: 50px;
	}

	.lithos-footer-links-group {
    width: fit-content;
	}

	.lithos-footer-contact-info {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
	}

	.lithos-footer-links {
    width: fit-content;
    margin: 0 auto;
    gap: 50px;
	}

	.lithos-footer-copyright-etc-container {
    padding: 25px 50px;
	}

	.lithos-contact-form-left {
    flex: 0 0 230px;
	}

	.lithos-plans-cards-container {
    display: block;
    grid-template-columns: unset;
    gap: unset;
    margin: 50px auto;
	}

	.lithos-plans-cards-container .lithos-plan-card {
    max-width: 500px;
    margin: 0 auto 50px auto;
	}

	.lithos-plans-cards-container .lithos-plan-card p {
    min-height: unset;
	}

	.lithos-plans-cards-container .lithos-plan-card ul {
    margin: 0px;
	}

}

/* ----------------------------------------------------- */

@media screen and (max-width: 1000px) {


}


/* ----------------------------------------------------- */

@media screen and (max-width: 900px) {


    .lithos-services-header {
    height: 200px;
    }

    .lithos-services-footer {
    height: 200px;
	}

    .lithos-services-header h2 {
    font-size: 2.0rem;
    }

    .lithos-plans-widget-left h2,
    .lithos-about-widget-left h2 {
    font-size: 2.0rem;
	}

	.lithos-services-cards {
	flex-direction: column;
	gap: 70px;
    }

    .lithos-service-card-item {
    max-width: 400px;
    margin: auto;
	}

	.lithos-services-bottom-image-holder {
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    overflow: hidden;
	}

	.lithos-services-footer p {
    font-size: 0.9rem;
    line-height: 1.4em;
    }

    .lithos-about-widget-left {
	padding: 50px 0px 50px 50px;
	flex: 1 1 55%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	}

	.lithos-cta-widget-left h2 {
    font-size: 1.5rem;
    }

    .lithos-cta-widget-link span {
    font-size: 1.2rem;
    }

    .lithos-footer-content-container {
    padding: 50px 25px;
	}

	.lithos-contact-form-wrapper {
    flex-direction: column;
    gap: 50px;
    background: none;
    box-shadow: none;
	}

	.lithos-contact-form-left {
	display: block;
	flex: unset;
	text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    order: 2;
	}

	.lithos-contact-form-left-top {
	display: block;
    width: 100%;
    margin: 0px 0px 0px 0px;
	}

	.lithos-contact-form-right {
	background: var(--lithos-white);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    order: 1;
	}

	.lithos-contact-form-left-top p:last-child {
    margin: 0px 0px 0px 0px;
	}

}

/* ----------------------------------------------------- */

@media screen and (max-width: 782px) {

	/*body.admin-bar .lithos-site-header {
    top: 46px;
    height: unset;
	}*/

	body.admin-bar .lithos-fixed-header-wrapper {
	top: 0px;
	}

	.lithos-fixed-header-wrapper {
	position: relative;
    top: auto;
    height: auto;
	}

	.lithos-site-header {
	position: relative;
	height: auto;
	}

	.lithos-site-header.lithos-site-header-scroll {
		height: auto;
	}

	.lithos-nav-container {
	height: auto;
	align-items: stretch;
    display: block;
    padding: 0px;
    background: var(--lithos-black);
	}

	.lithos-site-header .site-branding {
	width: 200px;
	margin-right: auto;
	flex-grow: 0;
    padding: 15px 20px 20px 50px;
    transition: all ease 0.3s;
	}

	.lithos-site-header .site-branding a img {
    height: 25px;
	}

	.lithos-site-header.lithos-site-header-scroll .site-branding {
	width: 200px;
    padding: 15px 20px 20px 50px;
	}

	.lithos-site-header.lithos-site-header-scroll .site-branding a img {
    height: 25px;
	}

	.lithos-main-navigation ul.nav-menu {
    /*display: block;*/
	}

	.lithos-site-header .lithos-main-navigation {
    width: 100%;
	}

	.menu-main-navigation-container {
    /*position: absolute;*/
    top: 100%;
    background: var(--lithos-blue);
    width: 100vw;
    left: 0;
    text-align: center;
    padding: 0px;
	}

	.lithos-main-navigation .menu-item a {
    padding: 15px 0px;
    background: var(--lithos-blue);
	}

	.lithos-main-navigation .menu-item a:hover {
    padding: 15px 0px;
    background: var(--lithos-medblue);
	}

	.lithos-main-navigation .menu-toggle {
    position: absolute;
    width: auto;
    top: 10px;
    right: 10px;
    padding: 10px;
    background: none;
    border-radius: 0px;
    border: none;
	}

	.lithos-main-navigation .menu-toggle svg {
    width: 30px;
    fill: var(--lithos-gray);
    transition: all ease 0.3s;
    cursor: pointer;
	}

	.lithos-main-navigation .menu-toggle:hover svg {
    fill: var(--lithos-white);
	}

	.lithos-main-navigation ul ul.sub-menu {
    box-shadow: none;
    float: unset;
    position: relative;
    top: unset;
    left: unset;
    z-index: unset;
    padding: 0px;
	}

	.lithos-main-navigation .menu-item .sub-menu .menu-item a {
    background: var(--lithos-verydarkblue);
    color: var(--lithos-gray);
    width: 100%;
    border-radius: 0px 0px 0px 0px !important;
    padding: 15px 0;
	}

	.lithos-main-navigation .menu-item .sub-menu .menu-item a:hover {
    background: var(--lithos-darkblue);
    color: var(--lithos-white);
    padding: 15px 0;
	}

	/* Mobile: keep submenu hidden by default */
	.lithos-main-navigation.toggled .sub-menu {
	display: none;
	}

	/* Mobile: show submenu only when parent is opened */
	.lithos-main-navigation.toggled .menu-item-has-children.submenu-open > .sub-menu {
	display: block;
	}

	/* Optional but useful */
	.lithos-main-navigation.toggled .menu-item-has-children > a {
	cursor: pointer;
	}

	.lithos-plans-widget-wrapper {
    padding: 70px 0px;
	}

	.lithos-plans-widget-left {
	order: 2;
	}

	.lithos-plans-widget-right {
	order: 1;
	flex-direction: row;
	margin: 0 auto;
	}

	.lithos-plans-widget-container {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    gap: 20px;
    }

    .lithos-plans-widget-left h1,
    .lithos-about-widget-left h1 {
    font-size: 1.0rem;
	}

	.lithos-plans-widget-left p,
	.lithos-about-widget-left p {
    font-size: 1.0rem;
	}

	.lithos-plans-widget-left .lithos-caret-link {
    justify-content: center;
	}

	.lithos-about-widget-wrapper {
    padding: 25px 25px;
	}

	.lithos-about-widget-left {
	padding: 50px 25px;
	display: block;
	text-align: center;
	}

	.lithos-about-widget-right {
	display: none;
	}

	.lithos-plans-widget .lithos-caret-link, 
	.lithos-about-widget .lithos-caret-link {
    margin: auto;
	}

	.lithos-cta-widget-left {
    padding: 25px;
    }

    .lithos-cta-widget-left h2 {
    font-size: 1.3rem;
    }

    .lithos-cta-widget-link img {
    width: 15px;
	}

	.lithos-cta-widget-link span {
    font-size: 1.1rem;
    }

    .lithos-cta-widget-right {
    padding: 0px 25px;
    }

    .lithos-footer-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    }

    .lithos-footer-links-group {
    width: 100%;
    }

	.lithos-footer-contact-info p {
    font-size: 1.0rem;
    line-height: 1.2em;
	}

	.lithos-footer-links h4 {
    font-size: 1.0rem;
	}

	.lithos-footer-links ul li a {
    font-size: 1.0rem;
	}

	.lithos-footer-copyright-etc-container {
    padding: 25px 50px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    }

    .lithos-footer-copyright-etc-container p {
    font-size: 0.9rem;
    line-height: 1.2em;
	}

	.lithos-footer-copyright-etc-container p:first-child span:first-child {
	margin-right: unset;
	}

	.entry-content .lithos-homepage-welcome-container h1 {
    font-size: 2.5rem;
    }

    .entry-content .lithos-homepage-welcome-container h3 {
    font-size: 0.9rem;
    margin: 0px 0px 30px 0px;
    }

    .lithos-home-cta-link span {
    font-size: 1.2rem;
    }

    .lithos-home-cta-link img {
    width: 15px;
    }

    .lithos-homepage-welcome-container {
    padding: 0px 50px 30px 50px;
    }


/* ----------------------------------------------------- */

@media screen and (max-width: 767px) {

	.lithos-contact-form-disclaimer-container p {
    font-size: 0.8rem;
    line-height: 1.6em;
	}

	.fluentform .lithos-contact-form .ff-el-input--label label {
    font-size: 0.8rem;
    font-weight: 500;
	}

	.fluentform .lithos-contact-form .ff-t-cell {
	margin-bottom: 10px;
	}

}


/* ----------------------------------------------------- */

@media screen and (max-width: 670px) {

	.lithos-page-header {
    padding: 40px 0 40px 0;
	}

	.lithos-page-header .container .page-title {
    font-size: 1.0rem;
	}

	.lithos-page-header .container .page-headline {
    font-size: 1.8rem;
    max-width: 450px;
	}

	.page .lithos-page-wrap .site-main article {
    padding: 40px 50px 40px 50px;
	}

	.entry-content p {
    font-size: 0.98rem;
	}

	.entry-content ul li, .entry-content ol li {
    font-size: 0.98rem;
	}

	.entry-content ul, .entry-content ol {
    padding: 0px 0px 0px 30px;
	}

	.entry-content h2 {
    font-size: 1.3rem;
    line-height: 1.4em;
	}

	.lithos-services-header h2 {
    font-size: 1.5rem;
    }

    .lithos-service-card-title .lithos-service-card-title-text {
    font-size: 1.2rem;
    }

    .lithos-service-card-title img {
    width: 14px;
	}

	.lithos-plans-widget-left h2,
	.lithos-about-widget-left h2 {
    font-size: 1.5rem;
    }

    .lithos-plans-widget-left p,
    .lithos-about-widget-left p {
    font-size: 0.98rem;
    }

    .lithos-cta-widget-wrapper {
    padding: 0px;
    border-top: solid 2px var(--lithos-gold);
    border-bottom: solid 2px var(--lithos-gold);
	}

    .lithos-cta-widget-container {
    max-width: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	}

	.lithos-cta-widget-left {
    padding: 30px 25px 0 25px;
    text-align: center;
    background: none;
    }

    .lithos-cta-widget-left h2 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--lithos-gold);
    }

    .lithos-cta-widget-left:before {
    display: none;
    }

    .lithos-cta-widget-right {
    padding: 25px 25px 30px 25px;
    text-align: center;
    }

    .lithos-cta-widget-link {
    margin: auto;
	}

	.lithos-homepage-welcome-container {
    padding: 0px 25px 30px 25px;
    }

    .entry-content .lithos-homepage-welcome-container h1 {
    font-size: 2.0rem;
    }

    .entry-content .lithos-homepage-welcome-container h3 {
    line-height: 1.4em;
    }

    .lithos-homepage-welcome-wrapper {
    min-height: 370px;
    max-height: 500px;
    }

    .lithos-team-grid {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
    grid-template-columns: 1fr;
	}

}


/* ----------------------------------------------------- */

@media screen and (max-width: 570px) {

	.lithos-page-header .container .page-title {
    font-size: 0.9rem;
	}

	.lithos-page-header .container .page-headline {
    font-size: 1.6rem;
    max-width: 400px;
	}

	.page .lithos-page-wrap .site-main article {
    padding: 40px 25px 40px 25px;
	}

	.lithos-page-header .container {
    padding: 0px 25px;
	}

	.flex-side-right-wrapper {
    gap: 40px;
    }

    .flex-side-right-wrapper .flex-side-right-content {
    padding-top: 40px;
    padding-bottom: 20px;
    }

    .lithos-services-container {
    padding: 0px 25px;
	}

	.entry-content .lithos-homepage-welcome-container h1 {
    font-size: 1.6rem;
    }

}

