@charset "utf-8";
/* CSS Document */

body {
	padding: 0;
	margin: 0;
}

.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 {
	scroll-behavior: smooth;
}

.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;
}

.container_rs {
	width: 100%;
	height: auto;
	margin: 50px 0;
	display: inline-block;
}

#r_s {
	height: 300px;
	width: auto;
	float: right;
	margin: 50px 0 0 25px;
}

.r_s {
	position: absolute;
	color: #000000;
	width: 80%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.r_s h1 {
	margin: 0;
	font-size: 25px;
	font-weight: bold;
	font-family: "Quincycf", sans-serif;
}

.r_s p {
	margin: 20px 0;
	width: 90%;
	font-size: 16px;
	line-height: 1.5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.container_educational {
	margin: 0;
	width: 100%;
	background-color: #F5F5F5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.educational {
	padding: 0;
	width: 100%;
	height: auto;
	margin: 50px 0;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.educational h1 {
	margin: 0;
	font-size: 25px;
	font-weight: bold;
	font-family: "Quincycf", sans-serif;
}

.educational p {
	margin: 20px 0;
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.recommendation_books {
	margin: 0;
	width: 100%;
	text-align: center;
	border: thin dashed;
}

.recommendation_books h4 {
  	font-size: 20px;
	margin: 30px 0 0 0;
  	margin-bottom: 5px;
  	text-transform: uppercase;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.book_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.book {
  	width: 200px;
  	padding: 20px;
  	margin: 20px 20px 30px 20px;
  	background-color: #FFFFFF;
	box-shadow: 2px 2px 10px 1px grey;
	transition: transform 0.3s ease;
}

.book:hover {
	transform: translateY(-5px);
}

.book_image {
  margin-bottom: 20px;
}

.book_image img {
  width: 100%;
  height: 250px;
}

#book3 {
	width: 100%;
	height: 250px;
}

.book_details h5 {
  color: #000000;
  font-size: 15px;
  margin-bottom: 10px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.book_details p {
	color: #555555;
  	font-size: 16px;
  	margin: 0 0 10px 0;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.book_details a {
  display: inline-block;
  color: #FFFFFF;
  background-color: #000000;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.book_details a:hover {
  color: #C8D9D3;
}

.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;
}

.online_resources {
	margin: 0;
	width: 100%;
	text-align: center;
	border: thin dashed;
}

.online_resources h4 {
  	font-size: 20px;
	margin: 30px 0 0 0;
  	margin-bottom: 5px;
  	text-transform: uppercase;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.resources_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.resources {
  	width: 200px;
  	padding: 20px;
  	margin: 20px 20px 30px 20px;
  	background-color: #FFFFFF;
	box-shadow: 2px 2px 10px 1px grey;
	transition: transform 0.3s ease;
}

.resources:hover {
	transform: translateY(-5px);
}

.resources_image {
	margin-bottom: 20px;
}

.resources_image img {
	width: 100%;
	height: 250px;
}

#resources3 {
	width: 100%;
	height: 250px;
}

.resources_details h5 {
  color: #000000;
  font-size: 15px;
  margin-bottom: 10px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.resources_details p {
	color: #555555;
  	font-size: 16px;
  	margin: 0 0 10px 0;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.resources_details a {
  display: inline-block;
  color: #FFFFFF;
  background-color: #000000;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.resources_details a:hover {
  color: #C8D9D3;
}

.container_other {
	margin: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: #F5F5F5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.other {
	padding: 0;
	width: 100%;
	height: auto;
	margin: 0;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.other h1 {
	margin: 0;
	font-size: 25px;
	font-weight: bold;
	font-family: "Quincycf", sans-serif;
}

.other p {
	margin: 20px 0;
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.title1 {
	border: thin dashed;
}

.title1 h4 {
	font-size: 20px;
	margin: 30px 0 0 0;
	text-align: center;
  	text-transform: uppercase;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.title1 p {
	margin: 20px 0;
	width: 100%;
	font-size: 16px;
	text-align: center;
	line-height: 1.5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.communities {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 0;
	justify-content: center;
}

.community {
	position: relative;
	margin: 0 15px 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.other_image {
	display: block;
	width: 250px;
	height: auto;
	padding: 10px;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #687DAC;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: 0.5s ease;
}

.community:hover .overlay {
  bottom: 0;
  height: 100%;
}

.text1 {
	position: absolute;
	color: #FFFFFF;
	font-size: 12px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

.text1 a {
	text-decoration: none;
	color: #FFFFFF;
}

.text1 a:hover {
	text-decoration: none;
	color: #D2E0EE;
}

.container_networks {
	margin: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.networks {
	padding: 0;
	width: 100%;
	height: auto;
	margin: 50px 0 0 0;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.networks h1 {
	margin: 0;
	font-size: 25px;
	font-weight: bold;
	font-family: "Quincycf", sans-serif;
}

.networks p {
	margin: 20px 0;
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.title {
	border: thin dashed;
}

.title h4 {
	font-size: 20px;
	margin: 30px 0 0 0;
	text-align: center;
  	text-transform: uppercase;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.title p {
	margin: 20px 0;
	width: 100%;
	font-size: 16px;
	text-align: center;
	line-height: 1.5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.support_row {
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: center;
	flex-wrap: wrap;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.support_image {
	width: 100px;
	height: 100px;
	display: flex;
	margin: 10px 0 20px 0;
	align-items: center;
	justify-content: center;
}

.support_image img {
	width: 100%;
	height: auto;
	margin: 0;
}

.hotlines_list {
	display: flex;
	flex-wrap: wrap;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.hotline_items {
	width: 300px;
	margin: 0 20px 50px 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-radius: 10px;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
	background-color: #F5F5F5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.hotline_items h3 {
	font-size: 18px;
	margin: 0 0 20px 0;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.hotline_items p {
	font-size: 14px;
	color: #666666;
	margin: 0;
	text-align: left;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.hotline_items a {
	color: #666666;
	text-decoration: none;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.hotline_items a:hover {
	color: #84A29F;
}

.notes {
	background-color: #D2E0EE;
	border-left: 15px solid #687DAC;
	padding: 10px;
	margin: 30px 0 50px 0;
	font-size: 16px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.container_contact {
	width: 100%;
	background-color: #F5F5F5;
}

#title {
	align-content: center;
	align-items: center;
	text-align: center;
}

#title h1 {
	margin: 50px 0 0 0;
	font-size: 25px;
	font-weight: bold;
	font-family: "Quincycf", sans-serif;
}

#title p {
	margin: 20px 0;
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.contact_form {
	width: 100%;
	border-radius: 5px;
	padding: 0;
	margin: 50px 0;
	font-family: "Quincycf", sans-serif;
}

.form_row {
    display: flex;
    margin-bottom: 20px;
}

.form_row label {
    width: 15%;
    margin-right: 10px;
}

.form_row input,
.form_row select,
.form_row textarea {
	flex: 1;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

#contact,
#name,
#email,
#state,
#subject {
	font-family: monospace;
}

select option[value="select"] {
  color: #888888;
}

input[type=submit] {
	font-family: "Quincycf", sans-serif;
	color: #FFFFFF;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

input[type=submit]:hover {
	color: #84A29F;
}

.form_row_submit {
	align-items: center;
	justify-content: center;
    display: flex;
	margin: 0 0 0 125px;
}

.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;
}

.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;
	}
		
	.r_s p {
		font-size: 10px;
		width: 78%;
	}
	
	#r_s {
		width: 250px;
		height: auto;
	}
	
	.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;
	}
	
	.r_s 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;
	}
	
	.r_s p {
		font-size: 10px;
		width: 80%;
	}
	
	.subscription .add_email {
		font-size: 10px;
	}
}