@charset "utf-8";
/* CSS Document */

body {
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
}

.main_container {
	width: 100%;
}

.header {
	background-color: #000000;
	color: #FFFFFF;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
}

.logo {
	float: left;
}

#header_logo {
	height: 100px;
	width: auto;
	display: inline-block;
	object-fit: cover;
	float: left;
	margin: 5px 50px;
}

.navbar {
	margin-left: auto;
	margin-right: 50px;
	font-size: 15px;
	font-family: "Quincycf", sans-serif;
	font-style: normal;
	font-weight: 700;
}

.navigation {
    display: flex;
	align-items: center;
	margin: 0;
}

.navigation a {
	font-family: "Quincycf", sans-serif;
}

.navigation .active {
	position: relative;
}

.navigation .active::before,
.navigation .active::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	background-color: #84A29F;
	transition: width 0.3s ease-in-out;
}

.navigation .active::before {
	top: -2px;
}

.navigation .active::after {
	bottom: -2px;
}

.navigation li {
	list-style-type: none;
	display: inline-block;
}

.navigation li:first-child {
	margin-left: 0;
}

.navigation a {
	color: #FFFFFF;
	display: block;
	text-decoration: none;
	padding: 15px;
	position: relative;
	letter-spacing: 0.5px;
}

.navigation a:hover {
  color: #C8D9D3;
}

.navigation a::before,
.navigation a::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 0%;
	background-color: #84A29F;
	transition: width 0.3s ease-in-out;
}

.navigation a:hover::before,
.navigation a:hover::after {
	width: 100%
}

.navigation a::before {
	left: 0;
	top: -2px;
}

.navigation a::after {
	right: 0;
	bottom: -2px;
}

.navigation li:last-child a {
	position: relative;
}

.navigation li:last-child a .fa-search {
	margin-right: 5px;
}

.navigation li:last-child a::before,
.navigation li:last-child a::after {
	display: none;
}

.navigation li:last-child a:hover .fa-search {
	color: #C8D9D3;
}

.navigation li:last-child a:hover::before,
.navigation li:last-child a:hover::after,
.navigation li:last-child a:hover .fa-search {
	background-color: transparent;
}

.navigation li:last-child a:hover::before,
.navigation li:last-child a:hover::after {
	width: 0%;
}

.container {
	width: 80%;
	max-width: 1920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.container1 {
	background-color: #FFFFFF;
	margin: 20px 0;
	width: 100%;
}

#main_image {
	width: 100%;
	height: auto;
}

.text_overlay {
	position: absolute;
	top: 5%;
	right: 10px;
	transform: rotateY(-50%);
	color: #000000;
	width: 45%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.text_overlay h1 {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 10px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";

}

.text_overlay p {
	font-size: 15px;
	line-height: 1.5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.cta {
	display: inline-block;
	padding: 10px 20px;
	margin-top: 20px;
	background-color: #000000;
	color: #FFFFFF;
	text-decoration: none;
	font-family: "Quincycf", sans-serif;;
	font-weight: bold;
	font-size: 16px;
	border-radius: 4px;
}

.cta:hover {
	color: #C8D9D3;
}

.container2 {
	background-color: #F5F5F5;
	width: 100%;
	height: 650px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

#game_container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.game_section {
	width: 35%;
	align-content: center;
	text-align: left;
}

.button_container {
	text-align: center;
	width: 100%;
}

.game_section h2 {
	font-size: 24px;
	margin-bottom: 10px;
	color: #000000;
	font-family: "Quincycf", sans-serif;
}

.game_section p {
	font-size: 16px;
	margin-bottom: 20px;
	color: #000000;
}

.game_section button {
	padding: 10px 20px;
	background-color: #000000;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
}

.game_section button:hover {
	color: #C8D9D3;
}

.game_section ul {
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.game_section li {
	margin-bottom: 10px;
	color: #000000;
	cursor: pointer;
}

.game_section li:hover {
	color: #424242;
	font-weight: 600;
}

.game_section .correct {
	background-color: #23C552;
}

.game_section .incorrect {
	background-color: #F84F31;
}

.container3 {
	background-color: #FFFFFF;
	margin: 0;
	width: 100%;
	height: auto;
	align-content: center;
	justify-content: center;
	text-align: center;
}

.title {
	font-family: "Quincycf", sans-serif;
	margin: 50px 0 20px 0;
	text-align: center;
}

#discover {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.title h2 {
	font-size: 24px;
	margin-bottom: 10px;
	color: #000000;
	font-family: "Quincycf", sans-serif;
}

.discover_row {
	display: flex;
	justify-content: center;
	align-content: center;
}

.discover_column {
	width: 250px;
	padding: 10px 5px 0 5px;
	box-sizing: border-box;
	align-content: center;
	min-width: 100px;
}

.discover_icon {
	width: 80px;
	height: auto;
	display: block;
    margin-left: auto;
    margin-right: auto;
	align-content: center;
	align-items: center;
	object-fit: cover;
	float: none;
}

.discover_text p {
	max-width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	min-height: 80%;
	padding: 2% 10%;
	box-sizing: border-box;
	font-size: 16px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.discover_text a:link {
	text-decoration: none;
	color: #000000;
}

.discover_text a:visited {
	text-decoration: none;
	color: #000000;
}

.discover_text a:hover {
	color: #687DAC;
}

.button_row {
	display: flex;
	justify-content: center;
	align-content: center;
	margin-bottom: 50px;
	font-family: "Quincycf", sans-serif;
}

.container4 {
	background-color: #F5F5F5;
	margin: 0;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: "Quincycf", sans-serif;
}

.about_us {
	font-family: "Quincycf", sans-serif;
}

.about_us h2 {
	margin: 50px 0 20px 0;
	font-family: "Quincycf", sans-serif;
}

.about_us p {
	width: 61%;
	margin: 0 auto;
	text-align: justify;
	font-size: 16px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif"; 
}

#aboutOCDaemon {
	width: 100px;
	height: auto;
}

.intro {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-self: center;
	margin-top: 20px;
	margin-bottom: 50px;
}

.text {
	width: 30%;
	margin-right: 20px;
	align-content: center;
}

.text p {
	width: 100%;
	text-align: justify;
	font-size: 16px;
}

.about_OCDaemon {
	width: 360px;
	height: auto;
}

#aboutOCDaemon {
	width: 100%;
	height: auto;
}

.footer {
	background-color: #000000;
	color: #FFFFFF;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: "Quincycf", sans-serif;
}

.footer_row1 {
	width: 100%;
	display: flex;
	justify-content: center;
}

#footer_logo {
	height: 150px;
	width: auto;
	display: inline-block;
	object-fit: cover;
	margin: 5px 20px;
}

.footer_row2 {
	width: 100%;
	display: flex;
	justify-content: center;
}

.footer_column1 {
	display: flex;
	flex-direction: column;
	width: 35%;
	border-right: medium solid #C8D9D3;
}

.get_in_touch {
	margin: 10px 50px;
}

.get_in_touch h3 {
	margin: 10px 0 2px 0;
}

.get_in_touch p {
	margin: 5px 0 30px 0;
}

.get_in_touch li {
	list-style: none;
	margin: 15px 0;
}

.get_in_touch li i {
	margin-right: 10px;
}

.info {
	padding: 0;
}

.fa {
	color: #FFFFFF;
	margin: 5px;
}

.social_icon {
	font-size: 30px;
	color: #FFFFFF;
	margin: 20px 50px;
}

.social_icon a:hover i {
	color: #C8D9D3;
}

.footer_column2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 18%;
	border-right: medium solid #C8D9D3;
}

.footer_nav {
	padding: 10px;
}

.info2 {
	padding: 0;
}

.info2 li {
	list-style: none;
	margin: 15px 0 15px 0;
	font-size: 16px;
}

.info2 a {
	text-decoration: none;
	color: #FFFFFF;
}

.info2 a:hover {
	color: #C8D9D3;
}

.info2 a:hover i {
	color: #C8D9D3;
}

.footer_column3 {
	top: 0;
	left: 0;
	width: 35%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 0 0 15px;
}

.footer_column3 h3 {
	color: #FFFFFF;
	margin: 0;
}

.footer_column3 p {
	color: #FFFFFF;
	margin: 5px 0 25px 0;
	text-align: center;
}

.content {
	width: 360px;
	height: 40px;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
	border-radius: 60px;
	overflow: hidden;
}

.subscription {
	position: relative;
	width: 100%;
	height: 100%;
}

.subscription .add_email{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	padding: 0 20px;
}

.subscription .submit_email {
	position: absolute;
	top: 0;
	right: 0;
	height: calc(100% - 2px);
	width: 100px;
	border: none;
	border-radius: 60px;
	outline: none;
	margin: 1px;
	padding: 0 20px;
	cursor: pointer;
	background: #84A29F;
	color: #FFFFFF;
	transition: width .35s ease-in-out, background .35s ease-in-out;
}

.subscription.done .submit_email {
	width: calc(100% - 2px);
	background: #C8D9D3;
	color: #000000;
}

.subscription .submit_email .before_submit,
.subscription .submit_email .after_submit {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 38px;
	transition: visibility .35s ease-in-out, opacity .35s ease-in-out;
}

.subscription.done .submit_email .before_submit,
.subscription:not(.done) .submit_email .after_submit {
	visibility: hidden;
	opacity: 0;
}

.subscription .submit_email .after_submit {
	transition-delay: .35s;
}

.subscription:not(.done) .submit_email .before_submit,
.subscription.done .submit_email .after_submit {
	visibility: visible;
	opacity: 1;
}

.footer_row3 {
	margin-top: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
}

.footerinfo {
	text-decoration: none;
	width: 100%;
}

.legal {
	display: flex;
	list-style: none;
	justify-content: center;
	gap: 2%;
	margin: 0;
	padding: 2%;
	padding-bottom: 1%;
}

.legal a{
	text-decoration: none;
	color: #FFFFFF;
}

.legal a:hover{
	text-decoration: none;
	color: #C8D9D3;
}

.copyright{
	list-style: none;
	text-align: center;
	justify-content: center;
	margin: 0;
	padding: 0 2% 0 2%;
	padding-bottom: 3%;
	color: #FFFFFF;
}

/* For devices with a maximum width of 767px (e.g., smartphones) */
@media (max-width: 768px) {
	#header_logo {
		margin: auto;
		margin-left: 50px;
		width: 50%;
		height: auto;
	}
	
	.navbar {
		font-size: 12px;
		padding: 0;
		margin: auto;
		margin-right: 50px;
	}
	
	.navigation a {
		padding: 8px;
	}
	
	.text_overlay h1 {
		font-size: 15px;
	}
		
	.text_overlay p {
		font-size: 10px;
	}
	
	.cta {
		margin-top: 0;
		font-size: 10px;
	}
	
	.content {
		width: 80%;
	}
	
	.subscription .add_email {
		font-size: 10px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#header_logo {
		margin: auto;
		margin-left: 50px;
	}
	
	.navbar {
		font-size: 12px;
		padding: 0;
		margin: auto;
		margin-right: 50px;
	}
	
	.navigation a {
		padding: 8px;
	}
	
	.text_overlay p {
		font-size: 10px;
		width: 80%;
	}
	
	.content {
		width: 80%;
	}
	
	.subscription .add_email {
		font-size: 10px;
	}
}


/* For devices with a minimum width of 768px (e.g., tablets) up to 991px */
@media (min-width: 768px) and (max-width: 991px) {
	#header_logo {
		margin: auto;
		margin-left: 50px;
	}
	
	.navbar {
		font-size: 12px;
		padding: 0;
		margin: auto;
		margin-right: 50px;
	}
	
	.navigation a {
		padding: 8px;
	}
	
	.text_overlay p {
		font-size: 10px;
		width: 100%;
	}
	
	.subscription .add_email {
		font-size: 10px;
	}
}