:root {
    --black: #000;
    --light: #fffaee;
    --mint: #5fd1d1;
    --gray: #b7b7b7;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    background: var(--light);
    font-family: Lato, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

span {
    font-family: Lato, sans-serif;
}

body.freeze {
    max-height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.wrapper {
    width: 100%;
	max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 1rem;
	max-width: 100vw;
	width: 100%;
}

#navigation_caller_wrap {
    position: fixed;
    border-bottom: 1px solid var(--mint);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
	background: var(--light);
    z-index: 4;
	padding: 0 1rem;
    box-sizing: border-box;
}

#navigation_caller_wrap img {
    height: 2rem;
}

#navigation_caller {
    position: relative;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--mint);
    border: none;
    font-size: 1rem;
	background: none;
	padding-right: 0;
}

#navigation_button {
    height: 1rem;
	width: 2rem;
	position: relative;
}

#navigation_button span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--mint);
}

#navigation_button span:first-child {
    top: 0;
}

#navigation_button span:nth-child(2) {
    top: 50%;
}

#navigation_button span:last-child {
    top: 100%;
}

.nav_active #navigation_button span:first-child {
    top: 50%;
    transform: rotate(45deg);
}

.nav_active #navigation_button span:nth-child(2) {
    top: 50%;
    transform: scale(0);
}

.nav_active  #navigation_button span:last-child {
    top: 50%;
    transform: rotate(-45deg);
}

#navigation_caller > span {
    font-size: 0.8rem;
	padding-top: 0.25rem;
}

#navigation {
    position: fixed;
    z-index: 3;
    display: flex;
    justify-content: left;
	align-items: self-start;
    padding: 5rem 1rem 1rem 1rem;
    background: var(--light);
    border-bottom: 1px solid var(--mint);
    left: 0;
    top: -100vh;
    transition: top 0.25s ease-in-out;
	height: 100vh;
	overflow-y: auto;
}

body.nav_active #navigation {
	top: 0;
}

body.nav_active {
	overflow: hidden;
}

#mobile_menu {
    display: flex;
    align-items: center;
}

#mobile_language {
    position: relative;
    margin-right: 1rem;
}

#menu_items {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
}

#logo {
	display: none;
}

#menu_links {
	display: flex;
	flex-direction: column;
}

.menu_item {
    padding: 0.25rem 0;
    text-decoration: none;
    text-transform: capitalize;
    color: var(--black);
}

.menu_item:last-child {
	display: none;
	position: relative;
}

.menu_item>.lang, #mobile_language>button {
	border: 1px solid transparent;
}

.menu_item>.lang:focus, #mobile_language>button:focus {
	border: 1px solid var(--mint);
	border-bottom: unset;
}

.lang {
	text-decoration: none;
	color: var(--gray);
	padding: 0.25rem 0;
	background: var(--light);
}

button.lang {
	margin-top: -0.125rem;
}

.lang:hover {
    background: var(--mint);
    color: var(--black);
}

.lang span {
    width: 2rem;
    display: inline-block;
    text-align: center;
}

#lang_choices {
	display: flex;
	opacity: 0;
	top: -10rem;
    position: absolute;
    left: 50%;
    flex-direction: column;
    background: var(--light);
    transform: translateX(-50%);
    border: 1px solid var(--mint);
    border-top: unset;
	transition: top 0s 0.2s;
}

.lang:focus+#lang_choices {
    top: 100%;
	opacity: 1;
	transition: top 0s 0s;

}

#local_entries_menu {
	display: none;
	margin-top: 1rem;
	border-top: 1px solid var(--mint);
}

#local_entries_menu strong {
	padding: 0.5rem 0;
}

#blog_page #local_entries_menu {
	display: flex;
    flex-direction: column;
}

#local_entries_menu a {
	text-decoration: none;
	padding: 0.25rem 0rem 0.25rem 0.75rem;
	color: var(--black);
}

#local_entries_menu a:before {
	content: "\00bb";
	color: var(--mint);
	padding-right: 0.5rem;
}

#content_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

#content, #thanks {
    display: flex;
    flex-direction: column;
    padding: 0 3rem;
}

#content_image, #thanks_image {
    width: 70%;
    display: none;
}

#content a {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

#content p,
#content h1,
#thanks p,
#thanks h1 {
    text-align: end;
}

#content h1,
#thanks h1 {
    font-size: 3rem;
    font-weight: 900; /* black */
}

h1 span {
    color: var(--mint);
}

p span {
    color: var(--mint);
    font-weight: 700; /* bold */
}

#content p, #thanks p {
    font-size: 1.2rem;
    font-weight: 300;  /* light */
}

#contact_us {
    padding: 1rem 40%;
    text-transform: uppercase;
    border: none;
    font-weight: 900;
    margin-top: 3rem;
    font-size: 1.2rem;
    background: var(--mint);
    color: var(--black);
}

.nope {
    display: none;
}


#message_wrapper {
    display: flex;
    flex-direction: column;
    background: var(--light);
}

#message_content {
    position: relative;
    max-width: 90%;
    padding: 0 1rem 0 2rem;
    box-sizing: border-box;
}

#message_wrapper h1 {
    color: var(--mint);
}


#message_form {
    position: relative;
    display: flex;
    flex-direction: column;
}

#form_wrapper {
    max-width: 100%;
}

.form_field {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

input[type="email"],
input[type="text"],
input[type="tel"],
textarea {
    background: none;
    border: none;
    margin-top: 0.5rem;
    padding: 0.5rem;
    box-sizing: border-box;
    color: var(--black);
}

input[type="text"] {
    background-color: #ceeee5;
}

input[type="tel"],
input[type="email"] {
    background-color: #aee5df;
}

textarea {
    background-color: #7fd9d6;
    font-family: "Lato", sans-serif;
}

textarea {
    min-height: 10rem;
    width: 100%;
}

input:focus,
textarea:focus {
    outline-color: #489693;
    outline-style: solid;
}


input[type="submit"] {
    align-self: flex-end;
    padding: 1rem 3rem;
    margin: 1rem 0;
    text-transform: uppercase;
    background: var(--mint);
    border: none;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--light);
}

#legal_wrapper>.container {
    padding: 2rem;
    line-height: 1.7em;
}

.main {
	margin-top: 3.5rem;
	max-width: 100vw;
	flex-grow: 1;
}

#blog_wrapper {
    display: flex;
    flex-direction: column;
}

#blog_menu_caller {
    position: absolute;
    right: 100%;
    z-index: 2;
	display: none;
}

#blog_nav {
    position: fixed;
    top: 20vh;
    padding: 2rem;
    background: var(--mint);
    max-width: 20rem;
    left: -20rem;
    box-sizing: border-box;
    transition: left 0.25s ease-in-out;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#blog_nav:before {
    content: ">";
    position: absolute;
    right: -4rem;
    top: 0;
    height: 100%;
    box-sizing: border-box;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--light);
    background: var(--mint);
    font-size: 3rem;
}

#blog_illustration {
    min-height: 6em;
    height: 2rem;
    padding: 0.25rem 1rem;
    max-width: calc(100vw - 10rem);
    display: block;
    margin-left: auto;
    margin-right: auto;
}


#blog_video_2 {
    min-height: 6em;
    padding: 0.25rem 1rem;
    min-width: 720px;
    min-height: 576px;
    max-width: calc(100vw - 10rem);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.blog_video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.blog_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#blog_menu_caller:focus-within #blog_nav {
    left: 0;
}

#blog_menu_caller:focus>#blog_nav:before {
    content: "<";
}

.entry_text {
    text-align: justify;
}

.entry_name {
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 600;
}

.blog_entry {
    position: relative;
}

.blog_anchor {
    position: absolute;
	top: -3rem;
}

.blog_entry h1 {
	display: flex;
    justify-content: center;
    align-items: center;
    background: var(--mint);
    padding: 2rem;
    color: var(--light);
    text-align: center;
}

.entry_details {
    display: flex;
	justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--mint);
	overflow: hidden;
}

.entry_detail {
	text-wrap: nowrap;
}

.entry_separator {
    display: flex;
    align-items: center;
}

.entry_preview {
    font-weight: 700;
    border-bottom: 1px solid var(--mint);
}

#services_wrapper h1 {
    background: var(--mint);
    color: var(--light);
    padding: 2rem 1rem;
}


#services_illustration {
    min-height: 6em;
    height: 2rem;
    padding: 0.25rem 1rem;
    max-width: calc(100vw - 10rem);
}

.service h3 {
    background: var(--mint);
    color: var(--light);
    padding: 1rem;
    margin-bottom: 0;
}

.service_desc {
    border: 1px solid var(--mint);
    padding: 1rem;
    text-align: justify;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#copyright {
    padding: 0.7rem;
    color: var(--gray);
}

#copyright .container {
    align-items: center;
}

#copyright a {
    color: var(--gray);
}

#copyright a:link {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: var(--mint);
}

@media screen and (min-width: 400px) {
    .entry_details {
        justify-content: flex-start;
    }
	
	.entry_separator {
		padding: 0 1rem;
	}
}

@media screen and (min-width: 768px) {
    .container {
        width: 540px;
    }
}


@media screen and (min-width: 992px) {
	body.nav_active {
		overflow-y: scroll;
	}

	.lang:focus+#lang_choices {
		top: calc(100% - 0.25rem);
	}

	.menu_item:last-child {
		display: initial;
	}

    .container {
        width: 960px;
    }

    #navigation_caller_wrap {
        display: none;
    }

    #navigation {
        top: unset;
		left: unset;
		height: unset;
        z-index: 2;
        padding: 1.5rem;
		justify-content: center;
		overflow-y: initial;
    }

    #menu_items {
        flex-direction: row;
        align-items: center;
		justify-content: space-between;
    }

    #logo {
		display: initial;
    }
	
	#logo img {
		width: 2.5rem;
	}
	
	#menu_links {
		flex-direction: row;
	}
	
	.menu_item {
		padding: 0.25rem 1rem;
	}
	
	.main {
		margin-top: 6rem;
	}
	
	#blog_page #local_entries_menu {
		display: none;
	}
	
	#blog_menu_caller {
		display: initial;
	}

	.blog_anchor {
		top: -6.5rem;
	}

    #content_wrapper, #thanks_wrapper {
		flex-direction: row;
    }

    input[type="email"],
    input[type="text"],
    input[type="tel"] {
        width: 50%;
    }

    input[type="text"]:first-child,
    input[type="email"] {
        margin-right: 0.25rem;
    }

    input[type="text"]:last-child,
    input[type="tel"] {
        margin-left: 0.25rem;
    }

    #content h1 {
        font-size: 4rem;
    }

    #content_image, #thanks_image {
        display: block;
    }

    .form_field {
        flex-direction: row;
    }

    .service_desc {
        flex-direction: row;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}