body, html {
  font-family: 'Economica', sans-serif;
  position: relative;
  color: #515151;
  height: 100%;
  margin: 0;
}

a {
  color: #6aad96;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #6aad96;
  opacity: 0.5;
}

a:active {
	text-decoration: none;
}

hr {
  margin: 65px 0;
  border-color: #126861;
  line-height: 2px;
}

h1 {
  text-align: center;
  font-size: 60px;
  text-transform: uppercase;
  color: #f8f3df;
  font-family: 'Economica', sans-serif;

}

h2 {
  color: #515151;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Economica', sans-serif;
}

h3 {
  color: #126861;
  font-size: 30px;
  font-family: 'Economica', sans-serif;
}

blockquote {
  color: #126861;
  font-size: 27px;
  margin: 2em 15%;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
  font-family: 'Economica', sans-serif;
}

blockquote:before {
  color: #126861;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p {
  display: inline;
}


section.top-banner {
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* HEADER */

.heading-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 10%;
  height: 100%;
}

header.site-header {
  height: 72px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

header > nav {
  height: 72px;
}

header > nav .navbar-collapse {
  justify-content: flex-end;
}

header.site-header .teal-logo {
  height: 35px;
  margin-left: 15px;
}

header.site-header #menu-main {
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
  overflow: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

header.site-header #menu-main > li {
  color: #126861;
  margin-top: 8px;
  margin-right: 40px;
}

header.site-header #menu-main > li:last-of-type {
  margin-right: 25px;
}

header.site-header #menu-main > li > a {
  color: inherit;
}

header.site-header #menu-main > li > a:hover {
  text-decoration: none;
  color: rgba(44, 84, 88, 0.7);
}

header.site-header #menu-main .primary {
  color: #126861;
}

.menu-item-has-children > a::after {
    font-family: FontAwesome;
    content: "\f0d7";
    padding-left: 6px;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

/* dropdown properties */
.sub-menu {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;

  list-style-type: none;
  margin: 0;
  padding: 0;
}

.show .sub-menu {
  display: block;
  position: relative;
  background: none;
  box-shadow: none;
}

.show > div {
  background-color: rgba(255,255,255,0.9);
  float: right;
  padding: 16px;
  border-radius: 4px;
}

.sub-menu a {
  float: none;
  color: #515151;
  text-transform: lowercase;
  padding: 14px 18px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.sub-menu a:hover {
    background-color: #126861;
    color: white;
}


/* CONTENT SECTION */

.introduction-text {
  text-align: right;
  font-size: 20px;
  padding-top: 5%;
  padding-left: 25%;
  text-transform: lowercase;
}

.text-centered {
  font-size: 22px;
  padding: 7% 4%;
  text-transform: lowercase;
  text-align: center;
}

.text-block > a {
  color: #126861;
}

.text-centered>a:hover {
  color: #6aad96;
  text-decoration: none;
}


/* post list */

.post-list {
  list-style-type: none;
  border: 0;
}

.gallery-list {
  margin: 0 -15%;
}

@media screen and (max-width: 685px) {
  .gallery-list {
    margin: 0;
  }
}

.post-list-item {
  margin: 20px 0;
  color: #444444;
  position: relative;
  border: 0;
  overflow: hidden;
}

.post-list-item>a {
  text-decoration: none;
}

.post-list-item .post-list-item-overlay {
  display: block;
  width: 100%;
  height: 350px;
}

.post-list-item .post-list-item-overlay figcaption {
  text-decoration: none;
  text-align: center;
  color: #f8f3df;
  line-height: 45px;
  padding-top: 160px;
}

figcaption .post-place {
  font-size: 35px;
  line-height: 26px;
  text-transform: lowercase;
}

figcaption .post-date {
  font-size: 20px;
  text-transform: uppercase;
}

.post-list-item>a:hover .post-list-item-overlay {
  display: block;
  background-color: rgba(44, 84, 88, 0.7);
  color: #f8f3df;
}

.post-images {
  padding: 0;
}

figure .post-image {
  max-width: 100%;
  background-size: cover;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-position: center;
  filter: grayscale(25%);
}

.rectangle {
  width: 740px;
  height: 350px;
}

.square {
  width: 350px;
  height: 350px;
}

@media screen and (max-width: 992px) {
  .square {
    width: 740px;
  }
}

figure:hover .post-image {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

section.page-banner {
  height: 550px;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding-top: 350px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 550;
  margin: 30px 0 45px 0;
}

.banner-text {
  font-size: 35px;
  margin-top: -200px;
  padding: 0 22%;
}

.banner-category {
  font-size: 20px;
  text-transform: uppercase;
}


/* ABOUT PAGE */

.author-text {
  text-align: right;
  padding: 25px 100px 0 0;
}

.author-image {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  background-size: cover;
  position: relative;
  margin: 0 25px;
}

.author-header {
  color: #126861;
  padding-bottom: 25px;
}

.author-description {
  font-size: 22px;
  color: #515151;
}

/* contact form */

div.wpcf7 {
  font-family: 'Economica', sans-serif;
  font-size: 20px;
  padding: 0 20%;
  margin: auto;
}

.wpcf7-textarea {
  height: 150px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  font-family: 'Economica', sans-serif;
  width: 150%;
  margin: auto;
  border: 1px solid #515151;
  padding: 10px;
  border-radius: 7px;
  box-sizing: border-box;
  resize: vertical;
}

@media screen and (max-width: 992px) {
  div.wpcf7 {
    padding: 0 5%;
  }
}

@media screen and (max-width: 768px) {
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 textarea {
    width: 120%;
  }
}

@media screen and (max-width: 463px) {
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 textarea {
    width: 100%;
  }
}

.wpcf7 input[type="submit"],
.wpcf7 input[type="button"] {
text-align:center;
font-family: 'Economica', sans-serif;
text-transform:uppercase;
  background-color: #126861;
}

input[type=submit] {
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  min-width: 200px;
}

input[type=submit]:hover {
  background-color: #6aad96;
}


/* NEWSPAGE SECTION */

.newspage-topbanner-text {
  color: #f8f3df;
  padding-top: 25%;
}

.newspage-topbanner-title {
  font-size: 35px;
  text-transform: lowercase;
  color: #f8f3df;
  text-align: right;
}

.newspage-topbanner-subtitle {
  text-align: right;
  font-size: 70px;
  text-transform: uppercase;
  color: #f8f3df;

}

.newspage-body {
  text-align: justify;
  line-height: 35px;
  font-size: 20px;
  padding: 75px 15% 15px 15%;
  font-family: 'Yanone Kaffeesatz', sans-serif;
}

@media screen and (max-width: 768px) {
  .newspage-topbanner-text {
    padding: 50% 7% 5% 7%;
  }

  .newspage-body {
    padding: 5% 5%;
  }
}

@media screen and (max-width: 576) {
  .newspage-body {
    padding: 5%;
  }
}


/* pagination */

.pagination {
  font-size: 22px;
  text-transform: lowercase;
  line-height: 1.2em;
  padding-bottom: 50px;
}

/* sticky navbar */

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  padding: 1% 0 1.5% 0;
  transition: 0.5s;
}

/* BUTTONS */

.btn {
  position: absolute;
  min-width: 150px;
  left: 50%;
  margin-top: 50px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: transparent;
  color: white;
  font-size: 20px;
  font-weight: 400;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-transform: lowercase;
  border-style: solid;
  cursor: pointer;
  font-family: 'Economica', sans-serif;
}

.btn:hover {
  background-color: #126861;
  text-decoration: none;
  color: white;
  opacity: 1;
}

.previous-btn {
  color: #126861;
  padding-bottom: 50px;
}

.next-btn {
  color: #126861;
  padding-bottom: 50px;
  text-align: right;
}

.previous-btn:hover, .next-btn:hover, .previous-btn:active, .next-btn:active {
  text-decoration: none;
  color: #6aad96;
}

/* FOOTER SECTION */

footer.site-footer {
  position: relative;
  font-size: 18px;
  line-height: 22px;
  background-color: #2c5458;
  padding-bottom: 50px;
  padding-top: 75px;
  text-transform: lowercase;
}

.footer-text {
	text-align: justify;
	color: white;
}

.footer-text > p > a {
	color: white;
