@charset "UTF-8";
/* CSS Document */

*, 
*::before, 
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
}

:root {
	--clr-body-bg: #F5F5F5;
	--clr-card-bg: #FFFFFF;
	--clr-section-bg: #E5E5E5;
	--clr-text: #1A1A1A;
	--clr-primary700: #078383;
	--clr-success: #21A64D;
	--clr-warning: #D28E4B;
	--clr-error: #A62121;
	--clr-info: #214DA6;

	--clr-darkmode-bg: #DDDDDD;
	--clr-darkmode: #ffb01c;
	--darkmode: flex-start;
}

.darkmode {
	--clr-body-bg: #1A1A1A;
	--clr-card-bg: #2A2A2A;
	--clr-section-bg: #333333;
	--clr-text: #FFFFFF;

	--clr-darkmode-bg: #333333;
	--clr-darkmode: #8a00aa;
	--darkmode: flex-end;
}

.dark-mode-toggle {
	margin-left: 12px;
	background-color: var(--clr-darkmode-bg);
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: var(--darkmode);
}

.dark-mode-switch {
	margin: 4px;
	width: 16px;
	height: 16px;
	background-color: var(--clr-darkmode);
	border-radius: 50%;
}

html, body {
	margin: 0;
	height: 100%;
}

html {
	font-family: Helvetica Neue, Helvetica, Arial, Sans-Serif;
	scroll-behavior: smooth;
}

body {
	padding: 0;
	background-color: var(--clr-body-bg);
	color: var(--clr-text);
	overflow-y: scroll;
/*	overflow-x: hidden;*/
/* 	THIS IS CAUSING A HEADER AND NAVIGATION ISSUE BUT FIXES THE FOOTER PROBLEM 
	display: flex;
	flex-direction: column;
	min-height: 100%;
*/
}

p {
	margin: auto;
}

body:after {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	z-index: -1;
	content: url("../img/sarah-lee-QURU8IY-RaI-unsplash.jpg");
}


.container-under-construction {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: auto;
	min-height: 400px;
}

/********* SERVICES PAGE - LOCATIONS SECTION ************/

.container-locations {
	display: flex;
	flex-direction: column;
	text-align: left;
	gap: 32px;
}

.group-locations:first-child {
	padding-top: 20px;
}

.group-locations *{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/********* PRICING PAGE ************/
.container-pricing-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pricing-card {
	display: flex;
	flex-direction: column;
	padding: 16px;
	border-radius: 12px;
	background-color: #FFFFFF;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
	border-top: 3px solid var(--clr-primary700);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.pricing-card-upper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}

.pricing-card-lower {
	display: flex;
	flex-direction: row;
}

.pricing-card ul {
	padding-top: 8px;
}

.pricing-card ul li {
	list-style-type: disc;
	margin-left: 16px;
	padding-top: 4px;
}

/********* WORK EXAMPLES PAGE ************/

.container-work-examples {
	display: flex;
	flex-direction: row;
	gap: 16px;
	width: 100%;
	height: auto;
}

@media (max-width: 480px) {
	.container-work-examples {
		flex-direction: column;
	}
}

@media (min-width: 991px) {
	.container-work-examples {
		flex-direction: column;
		gap: 24px;
	}
}

.group-work-examples {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 16px;
	width: 100%;
	height: auto;
}

@media (max-width: 480px) {
	.group-work-examples {
		flex-direction: column;
	}
}

@media (min-width: 991px) {
	.group-work-examples {
		flex-direction: row;
		gap: 24px;
	}
}

.card-work-example {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
	width: 100%;
	height: 240px;
}

.card-work-example h2 {
	pointer-events: auto;
	text-align: center;
	color: #FFFFFF;
	padding-bottom: 0;
}

.card-work-example h2:hover {
	color: #ADF0F0;
}

/********* RESOURCES AND TOOLS PAGE ************/

.container-resources {
	display: flex;
	flex-direction: row;
}

.group-resources {
	display: flex;
	flex-direction: column;
	gap: 24px;
	border-radius: 16px;
	width: 100%;
	height: auto;
}

@media (min-width: 991px) {
	.group-resources {
		flex-direction: row;
	}
}

.card-resources {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 400px;
	border-radius: 16px;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
}

@media (min-width: 480px) {
	.card-resources {
		flex-direction: row;
	}
}

.card-resources-image {
	border-radius: 16px 16px 0 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 100%;
	height: 100%;
}

@media (min-width: 480px) {
	.card-resources-image {
		border-radius: 16px 0 0 16px;
	}
}

.card-resources-text {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	padding: 20px;
}

.container-tools {
	padding-top: 24px;
	display: flex;
	flex-direction: row;
}

.group-tools {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	gap: 24px;
}

@media (min-width: 991px) {
	.group-tools {
		flex-direction: row;
	}
}

.group-tools-large {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 400px;
}

.group-tools-small {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	height: 400px;
	gap: 24px;
}

.card-tools-large,
.card-tools-small {
	display: flex;
	flex-direction: column;
	height: auto;
	border-radius: 16px;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
}

.card-tools-large {
	width: 100%;
}

@media (min-width: 480px) {
	.card-tools-large {
		flex-direction: row;
	}
}

.card-tools-small {
	width: 45%;
	flex-grow: 1;
}

.card-tools-image {
	border-radius: 16px 16px 0 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 100%;
	height: 100%;
}

@media (min-width: 480px) {
	.card-tools-image {
		border-radius: 16px 0 0 16px;
	}
}

.card-tools-text {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	padding: 20px;
}

/*********************GLOSSARY***********************/

.container-az-search {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	max-width: 720px;
	margin: 0 auto;
	-webkit-overflow-x: scroll;
	overflow-x: scroll;
	scrollbar-color: #555555 #1a1a1a;		/*Firefox Supported*/
}

/*Supported by all other browsers*/
.container-az-search::-webkit-scrollbar-track {
	background: #1a1a1a;
}
.container-az-search::-webkit-scrollbar-thumb {
	background: #555555;
}

.group-az-search {
	display: flex;
	flex-direction: row;
	font-size: 20px;
	color: #FFFFFF80;
}

.group-az-search div span {
	overflow: hidden;
	padding: 0 12px;
}

.glossary-category {
	scroll-margin-top: 140px;
	border-top: 1px solid #cccccc; 
	padding-top: 20px; 
	padding-bottom: 40px; 
}

.container-glossary-content {
	display: flex;
	flex-direction: column;
}

@media (min-width: 991px) {
	.container-glossary-content {
		flex-direction: row;
	}
}

.group-glossary-category h2{
	width: 20px;
}

@media (min-width: 991px) {
	
}

.group-glossary-main {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (min-width: 991px) {
	.group-glossary-main {
		padding-left: 40px;
	}
}

.glossary-term {
	
}

/*********************FAQ**************************/


.faq-container {
	width: 100%;
	max-width: 600px;
}

.faq-item {
	background-color: var(--clr-card-bg);
	border-radius: 12px;
	padding: 16px;	
	margin: 16px 0;
}

.faq-item:hover {
	background-color: #DEF6F6;
}

.question {
    cursor: pointer;
    font-weight: bold;
    position: relative;
	padding-left: 28px;

}

.arrow-down {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--clr-text);
    transition: transform 0.3s ease;
}

.answer {
	margin-top: 10px;
	padding-left: 28px;
    display: none;
}

.show {
    display: block;
}

.rotate-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/*********************FOOTER***********************/

footer {
/* 	THIS IS CAUSING A HEADER AND NAVIGATION ISSUE BUT FIXES THE FOOTER PROBLEM 
	margin-top: auto;
*/
	background-color: #1a1a1a;
	width: 100%;
	height: auto;
}

.footer-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 480px;
	margin: auto;
}

.footer-container-logo {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-width: 480px;
	margin: auto;
	padding-bottom: 40px;
}

.footer-group-logo {
	width: fit-content;
	height: 50px;
	display: flex;
	align-items: center;
	text-decoration: none;
}

.footer-logo {
	background-image: url(../img/LKG-logo-white.svg);
	background-size: cover;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}	

.footer-container-categories {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-bottom: 80px;
}

.footer-category {
	padding-bottom: 16px;
}

.footer-category-content {
    display: none;
	flex-direction: column;
	gap: 12px;
}

.arrow-down-white {
	position: relative;
	top: 16px;
	margin-right: 8px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #FFFFFF;
    transition: transform 0.3s ease;
}

@media (min-width: 991px) {
	.arrow-down-white {
		display: none;
	}
}	

.rotate-arrow-white {
	transform: rotate(180deg);
}

@media (max-width: 991px) {
	.footer-category {
		border-bottom: 1px solid #555555;
	}
	.footer-category:hover {
		cursor: pointer;
		color: #078383;
	}
	.footer-category:hover .arrow-down-white {
		border-top: 6px solid #078383;
	}
	.footer-category-content li:first-child {
		padding-top: 16px;
	}
}
/* Media query for screen sizes over 991 pixels */
@media (min-width: 991px) {
	.footer-category-content,
	.footer-category-content.show {
		display: flex; /* Hide content by default for smaller screens */
	}
}

.footer-container-socials {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
}

.footer-container-socials a {
	width: 40px;
	height: 40px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.footer-container-socials a:hover {
	background-color: #078383;
}

.footer-social-facebook {
	background-image: url(../img/logos/facebook-f-brands-solid-white.svg);
	background-size: 16px;
}

.footer-social-linkedin {
	background-image: url(../img/logos/linkedin-in-brands-solid-white.svg);
	background-size: 20px;
}

.footer-social-youtube {
	background-image: url(../img/logos/youtube-brands-solid-white.svg);
	background-size: 26px;
}

.footer-social-twitch {
	background-image: url(../img/logos/twitch-brands-solid-white.svg);
	background-size: 22px;
}

.google-maps {
	width: 100%;
	height: 100%;
	border-radius: 16px;
}

a {
	cursor: pointer;
}
/*			compare slider video
main {
	display: grid;
	place-items: center;
}
*/

/*
.scroll-to-top {
	display: none;
	position: fixed;
	z-index: 1000;
	bottom: 8px;
	right: 8px;
	width: 60px;
	height: 60px;
	background-color: #4C5872;
	color: #F5F5F5;
	border-radius: 50%;
	cursor: pointer;
	font-size: 28px;
	text-align: center;
	padding-top: 8px;
}

.scroll-to-top:hover {
	background-color: #283755;
}
*/

section{
	position: relative;
	padding: 80px 0;
}

.section-small {
	padding: 40px 0 80px;
}

.first-section {
	padding-top: 20px;
}

div {
	display: block;
}

img {
	display: block;
	max-width: 100%;
}


/**************************** HEADINGS & TEXT ***************************/
.heading-size-h1, 
.heading-size-h2, 
.heading-size-h3, 
.heading-size-h4, 
.heading-size-h5, 
.heading-size-h6 {
	font-weight: 700;
	color: var(--clr-text);
	margin: 0;
}

.heading-size-h1 {
	font-size: 2rem;
	line-height: 1.2;
	padding-bottom: 1.5rem;	
}

.heading-size-h2 {
	font-size: 1.8rem;
	line-height: 1.3;
	padding-bottom: 1.5rem;
}

.heading-size-h3 {
	font-size: 1.6rem;
	line-height: 1.3;
	padding-bottom: 0.75rem;
}

.heading-size-h4 {
	font-size: 1.4rem;
	line-height: 1.3;
	padding-bottom: 0.75rem;
}

.heading-size-h5 {
	font-size: 1.2rem;
	line-height: 1.4;
}

.heading-size-h6 {
	font-size: 1rem;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.heading-size-h1 {
		font-size: 3rem;
		line-height: 1.4;
		padding-bottom: 1.5rem;	
	}
	
	.heading-size-h2 {
		font-size: 2.5rem;
		line-height: 1.3;
		padding-bottom: 1.5rem;
	}
	
	.heading-size-h3 {
		font-size: 2rem;
		line-height: 1.3;
		padding-bottom: 0.75rem;
	}
	
	.heading-size-h4 {
		font-size: 1.7rem;
		line-height: 1.3;
		padding-bottom: 0.75rem;
	}
	
	.heading-size-h5 {
		font-size: 1.4rem;
		line-height: 1.4;
	}
	
	.heading-size-h6 {
		font-size: 1.2rem;
		line-height: 1.5;
	}
}

.text-size-regular, 
.text-size-small, 
.text-size-tiny {
	font-weight: 400;
	line-height: 1.5;
	/*margin: 0;*/
}

.text-size-regular {
	font-size: 1rem;
}

.text-size-small {
	font-size: 0.9rem;
}

.text-size-tiny {
	font-size: 0.8rem;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

sup {
	vertical-align: super;
	font-size: 0.65rem;
}

/* DIVIDER
h1::after, h2::after {
	content: "";
	margin: 24px 0;
	width: 80px;
	height: 5px;
	border-radius: 5px;
	display: block;
	background: #078383;
}
*/

.white-text {
	color: #F5F5F5;
}

.black-text {
	color: #1A1A1A;
}

.highlight-primary, .highlight-primary * {
	color: var(--clr-primary700);
}

.highlight-primary:hover, .highlight-primary:hover * {
	color: #004040;
}

.text-neutral-300 {
	color: #9EA9BD;
}

.highlight-primary-2 {
	color: #ADF0F0;
}

.highlight-blue500 {
	color: #214DA6;
}

.text-link:hover {
	color: #078383;
	cursor: pointer;
}

.headline-space {
	margin-top: 70px;
}

.content-wrapper {
	margin: 0 24px;
}
/******* LAYOUTS & GRIDS ************/

.home-hero-container {
	display: flex;
	flex-direction: column;		
	justify-content: space-between;
}

.dual-50-50 .feature {
	padding: 20px 0;
}

.container-2-buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 1rem;
}

.container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.container-50 {
	width: 100%;
}

.container-60 {
	width: 100%;
}

.dual-content-1, .dual-content-2 {
	position: relative;
	height: auto;
}

.dual-content-vertical-center {
	align-items: center;
	align-self: center;
}


.even-columns,
.gridish,
.content-sidebar{
	display: flex;
	gap: 32px;
}

.even-columns > * {
	flex-basis: 100%;
}

.even-columns-stack-center {
	flex-direction: column;
	text-align: center;
}

.gridish {
	flex-wrap: wrap;
}

.gridish-small {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.gridish-multirow-small {
	padding-top: 16px;
}

.gridish-multirow-big {
	padding-top: 32px;
}

.gridish > * ,
.gridish-small > * {
	flex: 1 1 300px;
}

.gridish-square > * {
	flex: 1 1 160px;
}

.content-sidebar {
	flex-wrap: wrap;
}

.content-sidebar .content-sidebar-40 {
	flex: 1 1 40%;
}

.content-sidebar .content-sidebar-60 {
	flex: 1 1 60%;
}

/*********************** ACTIONS & UI/UX *****************************/

.clickable {
	cursor: pointer;
}

.hover-grow:hover {
	transform: scale(1.02);
}

/*********************** BUTTONS & CARDS *****************************/

.card-container-full {
	display: flex;
	width: 100%;
	height: 400px;
	position: relative;
	transition: transform 0.7s ease;
}

.card-container-full-item {
	position: relative;
	overflow: hidden;
	flex: 0 0 auto;
	width: 100%;
	height: 100%;
	margin-right: 40px;
	display: block;
	text-decoration: none;
	background-color: #FFFFFF;
	border-radius: 20px;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
	/*box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);*/
	transition: all 0.3s ease-in-out;
}

/*hue level 400 and 600*/
.card-container-full-color-1 {
	background: linear-gradient(to bottom, #4BD2D2, #149A9A);
}

.card-container-full-color-2 {
	background: linear-gradient(to bottom, #D28E4B, #9A5714);
}

.card-container-full-color-3 {
	background: linear-gradient(to bottom, #4BD278, #149A41);
}

.card-container-full-image {
	position: absolute;
	background-size: cover;
	width: 100%;
	height: 400px;
	display: block;
	border-radius: 20px;
}

.card-container-full-image-gradient {
	background: linear-gradient(to bottom, #4BD2D2, #149A9A);
}

.card-container-full-text {
	position: absolute;
	width: 100%;
	height: 400px;
	color: #1A1A1A;
	padding: 40px 20px;
	border-radius: 20px;
}

.card-container-service-overview {
	display: flex;
	flex-direction: column;
	align-content: center;
}

.card-container-service-overview-image {
	width: 100%;
	height: 100%;
	align-content: flex-end;
}

.card-container-service-overview-image img {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 400px;
}

.card-container-text-filter {
	background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255,255,255,0)80%);
}

.card-container-half {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
}

.image-background {
	width: 100%;
	height: 300px;
	background-size: cover;
	border-radius: 10px;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
}

/****************************** TESTIMONIAL CARD ***************************************/

.testimonial-card {
	display: flex;
	flex: 1 1 30%;
	flex-direction: column;
    scroll-snap-align: start;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 32px 16px;
    text-align: center;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
	display: inline-block;
	background-color: #777777;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
}

/****************************** TESTIMONIAL MINI CARD ***************************************/

.testimonial-mini-card {
	display: flex;
	flex-direction: column;
	width: auto;
	height: 140px;
	background-color: var(--clr-card-bg);
	border-radius: 8px;
	padding: 8px;
	gap: 2px;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
}

.testimonial-mini-card-info {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.testimonial-mini-card-info p{
	margin: initial;
}

.testimonial-mini-card-photo {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #777777;
}

.testimonial-mini-card-rating {
	display: flex;
	flex-direction: row;
	gap: 8px;
}

.testimonial-mini-card-text {
	display: flex;
	flex-direction: row;
}

#testimonial-empty {
	background-color: #bbbbbb;
	background-image: url(../icons/user-solid-grey.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

/****************************** BLOG ARTICLES ***************************************/

.blog-topic-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-tab {
	background-color: #FFFFFF;
	color: #283755;
	padding: 12px;
	border-radius: 8px;
}

.blog-tab:hover {
	background-color: #283755;
	color: #FFFFFF;
}

.blog-tab-selected {
	background-color: #283755;
	color: #FFFFFF;
	padding: 12px;
	border-radius: 8px;
}

.blog-content-1 {
	display: none;
}

.blog-content-2 {
	display: none;
}

.blog-content-1.blog-content-selected-1,
.blog-content-2.blog-content-selected-2 {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.container-blog-column-spotlight {
	width: 100%;
	background-color: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
}

.container-blog-column-spotlight p {
	padding: 0 16px 16px 16px;
}

.blog-post-thumbnail {
	display: flex;
	flex-direction: row;
	justify-content: center;
	border-radius: 16px 16px 0 0;
}

.container-blog-column {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.article-post {
	background-color: #FFFFFF;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
}

.article-post h3{
	padding-bottom: 1rem;
}

/************************************* CONTACT US *****************************************************/
.contact-us-image {
	display: flex;
	justify-content: center;
}


/******** CONTAINERS ************/
.custom-shape-divider-top-1717941587 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1717941587 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.custom-shape-divider-top-1717941587 .shape-fill {
    fill:var(--clr-body-bg);
}

.custom-shape-divider-bottom-1717941950 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1717941950 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.custom-shape-divider-bottom-1717941950 .shape-fill {
    fill: var(--clr-body-bg);
}

.section-bg-teal {
	background: -webkit-linear-gradient(top, #078383, #004040);
	padding: 80px 0;
}

.container-text-centered {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.container-centered {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*******HEADER******/

.header-main {
/*if we change to sticky with top0, then it works until the top button 1000px down shows up*/	
	position: static;
	z-index: 2000;
/*	background-color: #F5F5F5;		*/
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nav-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.header-main-logo {
	width: fit-content;
	height: 50px;
	display: flex;
	align-items: center;
	text-decoration: none;
}

.header-main-logo:hover {
	cursor: pointer;
	transition: all 0.3s ease 0s;
}
/* glow logo when hovered
.header-main-logo:hover .header-logo {
	box-shadow: 0px 5px 15px #078383;
}
*/

.header-main-logo:hover .logo-name {
	color: #078383;
}

.header-logo {
	background-image: url(../img/LKG-logo.svg);
	background-size: cover;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.header-main-logo-text {
	margin-left: 16px;
	display: column;
	align-items: center;
}

.header-main-logo-text p {
	margin: 0;
}

.header-main-nav {
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-main-nav-menu {
	display: flex;
	list-style: none;
}

.header-main-nav ul li {
	display: inline;
	float: left;
	max-width: 100%;
}

.header-main-nav ul li a {
	display: flex;
	padding: 0 24px;
	line-height: 80px;
/*	font-size: 1rem;		*/
	text-decoration: none;
/*	transition: 0.3s ease;	*/
}

.header-main-nav ul li a:hover {
	cursor: pointer;
	color: #078383;
}

@media (min-width: 991px) {
	.arrow-down-header {
		position: relative;
		top: 38px;
		margin-left: 8px;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 4px solid var(--clr-text);
		transition: transform 0.3s ease;
	}
}	

.header-main-nav ul li a:hover .arrow-down-header {
	border-top: 4px solid #078383;
}

.lock-scroll {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.burger-menu {
	display: none;
	cursor: pointer;
}

.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	transition: all 0.3 ease-in-out;
	-webkit-transition: all 0.3 ease-in-out;
	background-color: var(--clr-text);
}

/******************************* LOGO SHOWCASE *******************************/

.resume-container {
	width: 100%;
}

@-webkit-keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-300px * 4))}
}

@webkit-keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-300px * 4))}
}

.resume-logo-container {
	display: flex;
	flex-direction: column;
	padding-top: 20px;
	height: 180px;
	width: 100%;
	max-width: 800px;
	margin: auto;
	overflow: hidden;
	position: relative;
}

.resume-logo-container::before, .resume-logo-container::after {
	background: linear-gradient(to right, var(--clr-body-bg) 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 200px;
	position: absolute;
	width: 60px;
	z-index: 2;
}

.resume-logo-container::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.resume-logo-container::before {
	left: 0;
	top: 0;
}

.resume-logo-row {
	-webkit-animation: scroll 45s linear infinite;
	animation: scroll 45s linear infinite;
	display: flex;
	flex-direction: row;
	gap: 32px;
	width: calc(300px *8);
}

.resume-logos {
	height: 100px;
	width: 300px;
}



/****************************** HOME HERO ************************************/

.highlight {
	background: -webkit-linear-gradient(left, #078383, #004040);
 	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.underline-big {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 4px;
	text-decoration-color: #078383;
	text-underline-offset: 0.5rem;
}

.underline-small {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.25rem;
}

.underline-small:hover {
	color: #078383;
	text-decoration-color: #078383;
}

.underline-small-color {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 1.5px;
	text-decoration-color: #078383;
	text-underline-offset: 0.25rem;
}

.underline-small-color:hover {
	text-decoration: none;
}

.home-hero-text {
	text-align: center;
}

.home-hero-image {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
	overflow: visible;
}

.home-hero-image-container {
	position: relative;
	display: flex;
	justify-content: space-between;
	overflow: clip;
	width: 100%;
	height: 300px;
	margin-bottom: 12px;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
}
	
#myphoto {
	background-image: url("../img/hero.jpg");
	background-size: cover;
	background-position: 0% 50%;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
}

#myvideo {
	background-size: cover;
	background-position: 50% 50%;
	object-fit: cover;
	position: relative;	
	width: 100%;
	height: auto;
	overflow: clip;	
	border-radius: 10px;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
}

#about-hero-img {
	background-image: url("../img/LKG-Digital.jpg");
	background-size: cover;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
}

.home-hero-image-controls {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	align-self: flex-start;
	justify-content: center;
}

.play-video-container {
	display: flex;
	flex-direction: row;
	align-self: center;
	align-items: center;
	justify-content: flex-start;
	width: 60%;
	height: 100%;
}

.play-video-button {
	display: flex;
	text-decoration: none;
	color: #1A1A1A;
}

.play-video-button:hover {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 1.5px;
	text-decoration-color: #078383;
	text-underline-offset: 5px;
	cursor: pointer;
}

.icon-play-video {
	background-image: url("../icons/play-video.svg");
	width: 28px;
	height: 28px;
	border-radius: 24px;
	margin-right: 8px;
	transition: all 0.3s ease 0s;
}

.play-video-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #078383;
}

.video-details-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: 40%;
	height: auto;
	
}

.icon-video-time {
	margin-right: 8px;
	width: 20px;
	height: 20px;
	background-image: url("../icons/icon-time.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

.home-hero-image-controls-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #c5c5c5;
}

.section-content {
	position: static;
}

.card-bg-primary {
	background: linear-gradient ,#078383, #004040;
}

.glass {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.card-image {
	width: 100%;
	height: auto;
	border-radius: 12px 12px 0 0;
}

.card-text {
	padding: 0 20px 20px;
}

.card-text h3 {
	padding-bottom: 8px;
}

.card-text-centered {
	text-align: center;
}

.container-grid-squares {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.container-card-square {
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.container-grid-squares {
		grid-template-columns: repeat(2, 1fr);
	}
}

.card-square {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background-color: var(--clr-card-bg);
	border-radius: 12px;
	padding: 20px;
	width: 100%;
	height: 100%;
	min-height: 160px;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
}

.card-square-container-image {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.card-square-image-circle {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #DEF6F6;
	width: 60px;
	height: 60px;
	border-radius: 32px;
}

.card-square-image-circle-icon {
	position: relative;
	width: 100%;
	height: 40px;
	background-size: 28px;
	background-repeat: no-repeat;
	background-position: center;
}

#home-benefits-1 {
	background-image: url(../icons/ranking-star-primary700.svg);
}

#home-benefits-2 {
	background-image: url(../icons/comments-primary700.svg);
}

#home-benefits-3 {
	background-image: url(../icons/money-bill-transfer-primary700.svg);
}

#home-benefits-4 {
	background-image: url(../icons/data-analytics-primary700.svg);
}

#home-benefits-5 {
	background-image: url(../icons/bullseye-primary700.svg);
}

#home-benefits-6 {
	background-image: url(../icons/face-smile-primary700.svg);
}

.vertical-center {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wave-background {
	background-image: url("../img/wave-edit.jpg");
	background-size: cover;
	background-position: center;
}

.container-box-services {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
/*POTENTIALLY DELETE SKDHSKJDFKSDFHSFK**********************************************************/
.content-box-services {
	background-color: #e7e7e7;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: space-between;
	margin: 0 20px;
	padding: 30px 15px;
	width: 100%;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
}

.service-box-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}

/* ???????? */

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

.text-bottom-padding {
	padding-bottom: 20px;
}

/* RECOMMENDATION */
.recommendation-container {
	width: 100%;
}

.recommend-image {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	float: left;
	margin-right: 16px;
}

.name {
	font-weight: 400;
	font-size: 1rem;
}

.job {
	margin-top: -16px;
	font-size: 1rem;
}

.recommendation { 
	margin-top: 0;
	font-weight: 300;
	font-size: 1.25rem;
}

/* FEATURES */

.black-background {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #1A1A1A;
	opacity: 0.6;
}

.color-background {
	background-color: rgb(0, 136, 130);
}

.grey-background {
	width: 100%;
	height: 100%;
	background-color: #eeeeee;
}

.underwater-1 {
	padding: 80px 0 120px;
	width: 100%;
	height: auto;
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/jong-marshes-79mNMAvSORg-unsplash.jpg");
	background-size: cover;
}

.relative { 
	position: relative;
}

.feature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.feature p {
	padding-top: 8px;
}

.icon-feature {
	padding: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

#image-benefits-marketing {
	background-image: url("../img/painpoint.jpg");
	background-position: 70% 50%;
	transform: scaleX(-1);
}

#image-features-marketing {
	background-image: url("../img/painpoint2.jpg");
	background-position: 70% 50%;
	width: 100%;
	height: 500px;
}

#feature-home-1 {
	background-image: url("../icons/chart-line-solid-blue500.svg");
}

#feature-home-2 {
	background-image: url("../icons/sitemap-solid-blue500.svg");
}

#feature-home-3 {
	background-image: url("../icons/data-analytics-blue500.svg");
}

#painpoint-home-1 {
	background-image: url("../icons/user-graduate-solid-white.svg");
	background-position: center;
	background-repeat: no-repeat;
	width: 60px;
	height: 60px;
	margin: 20px auto 16px;
}

#painpoint-home-2 {
	background-image: url("../icons/sack-dollar-white.svg");
	background-position: center;
	background-repeat: no-repeat;
	width: 60px;
	height: 60px;
	margin: 20px auto 16px;
}

#painpoint-home-3 {
	background-image: url("../icons/data-analytics-white.svg");
	background-position: center;
	background-repeat: no-repeat;
	width: 60px;
	height: 60px;
	margin: 20px auto 16px;
}

									/*BUTTONS*/
.button, form button {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	color: #FFFFFF;
	background-color: #078383;
	width: 100%;
	height: 44px;
	padding: 12px;
	border-radius: 32px;
	cursor: pointer;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease 0s;
	margin-top: 1.5rem;
}

.button:hover, form button:hover {
	background-color: #046969;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.5);
}

.button-secondary {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	padding: 16px;
	color: #FFFFFF;
	background-color: #283755;
	width: 100%;
	height: 44px;
	padding: 12px;
	border-radius: 32px;
	cursor: pointer;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease 0s;
	margin-top: 1.5rem;
}

.button-secondary:hover {
	background-color: #19253d;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.5);
}

.button-white {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	padding: 16px;
	color: #1A1A1A;
	background-color: #FFFFFF;
	width: 100%;
	height: 44px;
	padding: 12px;
	border-radius: 32px;
	cursor: pointer;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease 0s;
	margin-top: 1.5rem;
}

.button-white:hover {
	background-color: #DEF6F6;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.5);
}

form button {
	border-style: none;
	outline: none;
}

.button-holo {
	display: inline-block;
	border: 2px solid #1A1A1A;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	padding: 16px;
	color: #1A1A1A;
	background-color: transparent;
	width: 100%;
	height: 44px;
	padding: 12px;
	border-radius: 32px;
	cursor: pointer;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease 0s;
	margin-top: 1.5rem;
}

.button-holo:hover {
	background-color: #1A1A1A;
	color: #FFFFFF;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.5);
}

.small-button {
	width: 100px;
}

									/* NEW CAROUSEL */
.carousel-card-container {
	overflow: hidden;
	width: 100%;
	height: 100%;	/*might need to be auto*/
	padding: 40px 10px 20px 10px;
}

.carousel-card {
	display: flex;
	width: 340px;
	height: 500px;
	position: relative;
	transition: transform 0.7s ease;
}

.carousel-card-item {
	flex: 0 0 auto;
	width: 100%;
	height: 100%;
	margin-right: 40px;
	display: block;
	text-decoration: none;
	background-color: #FFFFFF;
	border-radius: 20px;
	box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.carousel-card-item:hover {
	transform: scale(1.02);
}

.carousel-control {
	width: 50px;
	height: 50px;
	font-size: 2rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 100%;
	color: white;
	border: none;
	cursor: pointer;
	z-index: 1;
}

.carousel-control:focus {
	outline: none;
}

#prevBtn {
	/*
	border-top-right-radius: 36px;
	border-bottom-right-radius: 36px;
	*/
	left: 16px;
	padding: 0 15px;
}

#nextBtn {
	/*
	border-top-left-radius: 36px;
	border-bottom-left-radius: 36px;
	*/
	right: 16px;
	padding: 0 20px;
}

#prevBtn, #nextBtn {
	opacity: 0.5;
	background-color: #9EA9BD;
	color: #FFFFFF;
}

#prevBtn:hover , #nextBtn:hover {
	opacity: 0.8;
}


									/* OLD CAROUSEL */
.carousel-container {
	height: 400px;
}

.carousel {
  	position: relative;
  	margin: auto;
}

.carousel-item {
	z-index: 1;
	transition: 0.5s;
	background-color: #ffffff;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	opacity: 0.0;
}

.active-carousel-item{
	transition: 1s;
	z-index: 2;
	display: block;
	opacity: 1.0;
}

.carousel-item-container {
	display: flex;
	flex-direction: row;
}

.carousel-item-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.carousel-subheading {
	margin: 70px 0 30px;
}

/* ABOUT PAGE AND PROJECT PAGE */

.content-in-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	height: auto;
	margin: auto;
	gap: 32px;
}

.content-box-project {
	position: relative;
	width: 400px;
	height: 500px;
}

.content-box-project a:hover {
	border-radius: 20px;
}

.content-box-about {
/*	position: relative;		*/
	background-color: var(--clr-card-bg);
	width: 100%;
	height: auto;
	max-width: 400px;
	border-radius: 20px;
	box-shadow: 0px 4px 12px -3px rgba(0,0,0,.051),0px 2px 5px 0px rgba(0,0,0,.141);
}

.content-box-item {
	height: 100%;
	display: block;
	border-radius: 20px;
	text-decoration: none;
}

.project-item-1, .project-item-2, .project-item-3 {
	box-shadow: 0px 5px 15px #333333;
}

.project-item-1:hover, .project-item-2:hover, .project-item-3:hover {
	box-shadow: 0px 10px 30px #078383;
}

.image-content-box {
	background-size: cover;
	height: 280px;
	display: block;
}

.image-content-box-full {
	position: absolute;
	background-size: cover;
	width: 340px;
	height: 500px;
	display: block;
	border-radius: 20px;
}

#image-about-1 {
	background-image: url("../img/web-dev.jpg");
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 18px 18px 0 0;
}

#image-about-2 {
	background-image: url("../img/seo.jpg");
	background-position: 50% 50%;
	border-radius: 18px 18px 0 0;
}

#image-about-3 {
	background-image: url("../img/ppc.jpg");
	background-position: 50% 10%;
	border-radius: 18px 18px 0 0;
}

#image-about-4 {
	background-image: url("../img/content-strategy.jpg");
	background-position: 50% 50%;
	border-radius: 18px 18px 0 0;
}

#image-about-case-studies {
	background-image: url("../img/nick-morrison-FHnnjk1Yj7Y-unsplash.jpg");
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 18px 18px 0 0;
}

#image-about-blog {
	background-image: url("../img/janko-ferlic-sfL_QOnmy00-unsplash.jpg");
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 18px 18px 0 0;
}

#image-project-1-full {
	background-image: url("../img/ppc.jpg");
	background-position: 50% 50%;
	border-radius: 20px;
}

#image-project-1 {
	background-image: url("../img/ppc.jpg");
	background-position: 50% 50%;
	border-radius: 18px 18px 0 0;
}

#image-project-2-full {
	background-image: url("../img/seo.jpg");
	background-position: 50% 50%;
	border-radius: 20px;
}

#image-project-2 {
	background-image: url("../img/seo.jpg");
	background-position: 50% 50%;
	border-radius: 18px 18px 0 0;
}

#image-project-3-full {
	background-image: url("../img/web-dev.jpg");
	background-position: 50% 0%;
	border-radius: 20px;
}

#image-project-3 {
	background-image: url("../img/web-dev.jpg");
	background-position: 50% 0%;
	border-radius: 18px 18px 0 0;
}

#image-project-4-full {
	background-image: url("../img/content-strategy.jpg");
	background-position: 50% 0%;
	border-radius: 20px;
}

#image-project-4 {
	background-image: url("../img/content-strategy.jpg");
	background-position: 50% 0%;
	border-radius: 18px 18px 0 0;
}

.text-content-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 240px;
	padding: 20px;
	border-radius: 0 0 16px 16px;
}

.text-content-box-main {	
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.text-content-box-full {
	position: absolute;
	width: 340px;
	height: 300px;
	background-image: linear-gradient(rgb(255, 255, 255), rgba(255,255,255,0));
	color: #1A1A1A;
	padding: 50px 20px 0px;
	border-radius: 20px;
}

.text-content-box-container {
	padding-top: 0.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.next-arrow {
	margin-top: 20px;
	margin-left: 10px;
	background-image: url("../icons/font-icons/Asset 24.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 25px;
	height: 25px;
}

/* PROJECT PAGES */

.section-project {
	margin-top: 100px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.column-1 {
	margin-bottom: 50px;
}

.column-2 {
	margin-bottom: 100px;
}

/* PROJECT PAGES IMAGE COMPARE */


.compare-images-container {
	display: grid;
	place-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	--position: 50%;
}

.compare-images {
	max-width: 1200px;
	/*deleted max-height: 90vh;*/
}

.slider-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left;
}

.compare-images-before {
	position: absolute;
	inset: 0;
	width: var(--position);
}

.compare-images-after {
	
}

.slider {
	position: absolute;
	inset: 0;
	cursor: pointer;
	opacity: 0;
	/*for Firefox*/
	width: 100%;
	height: 100%;
}

.slider:focus-visible ~ .slider-button {
	outline: 5px solid #E73F42;
	outline-offset: 3px;
}

.slider-line {
	position: absolute;
	inset: 0;
	width: 4px;
	height: 100%;
	background-color: #E73F42;
	opacity: 0.3;
	left: var(--position);
	transform: translateX(-50%);
	pointer-events: none;
}

.slider-button {
	position: absolute;
	background-color: #1A1A1A;
	background-image: url(../icons/font-icons/Asset\ 30.svg);
	color: blue;
	padding: 20px;
	border-radius: 100vw;
	display: grid;
	place-items: center;
	top: 50%;
	left: var(--position);
	transform: translate(-50%, -50%);
	pointer-events: none;
	box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

/* CONTACT FORM */

.contact-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
}

.form-container {
	padding-top: 8px;
	display: column;
	justify-content: center;
}

.g-recaptcha {
	width: 300px;
	height: 74px;
	background-color: #ffffff00;
	display: flex;
	justify-content: center;
}

.form-name, .form-email, .form-phone {
	display: flex;
	justify-content: center;
	max-width: 400px;
}

form {
	display: block;
}

textarea, input, select {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	background-color: #e7e7e7;
	border: none;
	outline: 1px solid #9EA9BD;
	width: 100%;
	margin-top: 16px;
}

textarea:focus, input[type="text"]:focus, input[type="email"]:focus, select:focus {
	border: none;
	outline: 2px solid #078383;
}

input:not(:placeholder-shown):valid {
	outline: 2px solid var(--clr-success);
}

input:not(:placeholder-shown):invalid {
	outline: 2px solid var(--clr-error);
}

input:focus:invalid {
	outline: 2px solid var(--clr-warning);
}

form button:focus{
	background-color: #046969;
}

textarea {
	width: 100%;
	height: 150px;
	resize: vertical;
}

input[type="radio"] {
	appearance: radio;
}

input[type="text"], input[type="email"],textarea, select {
	padding: 10px;
	border-radius: 8px;
	color: #1A1A1A;
}

/* SERVICE PAGES */
.blog-card-text {

}

.blog-card-text p {
	margin: -1.75rem 0 1rem;
	font-size: 0.875rem;
}

.blog-post-card {
	display: flex;
	flex-direction: row;
}

.blog-post-number {
	width: 200px;
}

.blog-post-card-item {
	margin-left: 50px;
}

/* MEDIA QUEIRIES */

@media (max-width : 480px){

}

@media (min-width : 480px ){
	.content-wrapper{
		width: 90%;
		max-width: 1200px;
		margin-right: auto;
		margin-left: auto;
	}
	.header-main-nav ul li a {
		padding: 0 5%;
	}
	.button, .button-holo, .button-white, .button-secondary, form button{
		max-width: 300px;
	}
}

@media (max-width: 768px) {
	#myvideo {
		display: none;
	}
	.column-reverse {
		flex-direction: column-reverse;
	}
}

@media (min-width: 768px) {
	.container{
		flex-direction: row;
	}
	.blog-content-1.blog-content-selected-1,
	.blog-content-2.blog-content-selected-2 {
		flex-direction: row;
	}
	#myphoto {
		display: none;
	}	
	.carousel-card {
		width: 400px;
	}
	.image-content-box-full, .text-content-box-full {
		width: 400px;
	}
	.content-box-about{
		width: 47.5%;
	}
	.project-item-1 {
		margin-right: 5%;
	}
	.project-item-2 {
		margin-left: 5%;
	}	
	.container-text-centered,
	.container-centered {
		margin-left: auto;
		margin-right: auto;
	}
	.container-text-centered-middle{
		padding: 0 20%;
	}
	.container-60 {
		padding-right: 40%;
	}
}

/*LESS THAN DESKTOP SIZE*/

@media (max-width: 991px) {	
	.burger-menu {
		display: block;
	}
	.burger-menu.active .bar:nth-child(2){
		opacity: 0;
	}
	.burger-menu.active .bar:nth-child(1){
		transform: translateY(8px) rotate(45deg);
	}
	.burger-menu.active .bar:nth-child(3){
		transform: translateY(-8px) rotate(-45deg);
	}
	.header-main-nav-menu {
		position: fixed;
		border-top: #078383 2px solid;
		border-bottom: #078383 2px solid;
		top: 100px;
		left: 100vw;
		gap: 0;
		z-index: 1900;
		flex-direction: column;
		background-color: #F5F5F5;
		width: 100%;
		height: 100vh;
		text-align: center;
		transition: 0.7s;
		transform: translateX(100vw);
	}
	.header-main-nav-menu.active {
		transition: 0.7s;
		transform: translateX(-100vw);
	}
	.header-main-nav ul li a {
		font-size: 1.125rem;	/*mobile nav font size*/	
		border-bottom: 1px solid #cccccc;
	}
	.home-hero-image {
		padding-top: 40px;
	}
	.section-content {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.section-contact {
		margin-bottom: 100px;
	}
	.dual-content-1, .dual-content-2 {
		width: 100%;
	}
	.column {
		width: 100%;
		display: flex;
		flex-direction: column;
	}
}

@media (min-width: 991px) {
	.header-main-nav ul li a {
		padding: 0 16px;
	}
	.home-hero-container {
		flex-direction: row;
	}
	.home-hero-image-container {
		height: 500px;
	}
	.home-hero-text {
		padding-right: 24px;
		width: 50%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: left;
	}
	.home-hero-image {
		padding-left: 8px;
		width: 50%;
	}
	.footer-container {
		max-width: none;
	}
	.footer-container-logo {
		max-width: none;
	}
	.footer-container-categories {
		flex-direction: row;
		justify-content: space-between;
	}
	.section-content {
		display: flex;
		justify-content: space-between;
	}
	.section-contact {
		margin-bottom: 150px;
	}
	.dual-content-1 {
		width: 50%;
	}
	.dual-content-2 {
		width: 50%;
	}
	.dual-50-50 {
		width: 50%;
		padding: 0 20px;
	}
	.carousel-card-container {
		padding: 20px 10px 30px 10px;
	}
	.project-item-2 {
		margin-right: 5%;
	}
	.project-item-3 {
		margin-left: 5%;
	}
	.column {
		width: 50%;
		display: flex;
		flex-direction: column;
	}
	.column-1 {
		padding-right: 50px;
	}
	.column-2 {
		padding-left: 50px;
	}
	.even-columns-stack-center {
		flex-direction: row;
		text-align: left;
	}
}


/********** SPACING ***************/
.gap-small {
	padding-top: 40px;
}

.gap-medium {
	padding-top: 80px;
}