/*
Theme Name: Thema Jan
Theme URI: https://hethoogstewoerd.nl
Author: Jan de Roo
Author URI: https://janderoo.nl
Description: Thema voor St. Hoge Woerd
Tags: blog, training
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwenty
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
body {
  font-size: 62.5%;
}

.container {
  display: grid;
}

body h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: lighter;
}

p {
  font-size: 1.4em;
  line-height: 1.5;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  hyphens: auto;
}

a {
  text-decoration: none;
  color: #93D500;
  -webkit-transition: color 1s;
  -o-transition: color 1s;
  transition: color 1s;
}
a:visited {
  color: #b3b3b3;
}
a:hover {
  color: #93D500;
}
a img:hover {
  opacity: 0.5;
}

li {
  list-style: none;
}

h1 {
  font-size: 4.6em;
}

h2 {
  font-size: 3.2em;
}

h3 {
  font-size: 2.8em;
}

h4 {
  font-size: 2.4em;
}

h5 {
  font-size: 2em;
}

h6 {
  font-size: 1.8em;
}

main {
  clear: both;
  min-height: 50vh;
  overflow: hidden;
}

.sociallinks {
  margin-top: 2em;
}

.socialrechts {
  margin-top: 2em;
}

.container {
  grid-template-columns: 1fr;
  grid-gap: 2em;
  grid-template-areas: "kop" "socialrechts" "page" "single" "main" "aside" "aside2" "sociallinks" "footer";
}

header {
  grid-area: kop;
}

.singlepage {
  grid-area: page;
}

main {
  grid-area: main;
}

footer {
  grid-area: footer;
}

aside {
  grid-area: aside;
}

.aside2 {
  grid-area: aside2;
}

.sociallinks {
  grid-area: sociallinks;
}

.socialrechts {
  grid-area: socialrechts;
}

.single {
  grid-area: single;
}

@media only screen and (min-width: 810px) {
  .container {
    grid-template-columns: 2fr 1fr;
    grid-gap: 2em;
    grid-template-areas: "kop kop" "socialrechts socialrechts" "page page" "single single" "main aside" "main aside2" "sociallinks sociallinks" "footer footer";
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    grid-template-columns: 10% 2fr 1fr 10%;
    grid-gap: 2em;
    grid-template-areas: "kop kop kop kop" "sociallinks page page socialrechts" "sociallinks single single socialrechts" "sociallinks main aside socialrechts" "sociallinks main aside2 socialrechts" "footer footer footer footer";
  }

  .socialrechts {
    display: none;
  }
}
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
header {
  z-index: 10;
}

.index_achter {
  background-image: url("img/logo index muziekladder 1400x740px.svg");
  background-size: 90%;
  background-position: right top;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-repeat: no-repeat !important;
  margin-top: 3em;
}

.index_meisje {
  float: right;
  width: 40%;
  max-width: 60em;
  padding-right: 5%;
}

.index_tekst {
  float: left;
  width: 55%;
  max-width: 75em;
  padding: 17% 0 0 5%;
}

.single_achter {
  background-image: url("img/logo index muziekladder 1400x740px.svg");
  background-size: 60%;
  background-position: right top;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-repeat: no-repeat !important;
  margin-top: 3em;
}

.single_tekst {
  float: left;
  width: 57%;
  padding: 7% 0 0 5%;
}

.single_meisje {
  float: right;
  width: 25%;
}

.page_achter {
  background-image: url("img/logo page muziekladder 1400x740px.svg");
  background-size: 70%;
  background-position: right top;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-repeat: no-repeat !important;
  margin-top: 7%;
}

.page_tekst {
  float: left;
  width: 57%;
  margin: 17% 0 0 5%;
}

.page_meisje {
  float: left;
  width: 20%;
  margin: 1% 0 0 15%;
}

@media only screen and (min-width: 1200px) {
  .index_achter {
    margin-top: 0em;
  }

  .index_tekst {
    padding-left: 10%;
  }
}
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
/* Navigatie */
.navdiv {
  width: 100%;
  position: fixed;
  top: 1em;
  left: 1em;
  padding: 0 0.5em;
  z-index: 999;
}

.menu-container * {
  border-radius: 0.2em;
}
.menu-container * a {
  font-size: 1.5em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #683064;
  text-decoration: none;
}

.site-header-menu {
  margin-left: 2em;
  display: none;
}

.main-navigation ul {
  width: 14em;
  background-color: rgba(246, 223, 244, 0.9);
  -webkit-box-shadow: 3px 3px 8px white;
  box-shadow: 3px 3px 8px white;
  list-style: none;
  /* Pijl to expand sub-menu on mobile */
}
.main-navigation ul li {
  border-bottom: 1px solid #683064;
  border-radius: 0;
}
.main-navigation ul :last-child {
  border-bottom: none;
}
.main-navigation ul a {
  display: block;
  padding: 0.7em 0.5em;
  -webkit-transition: background-color 1s;
  -o-transition: background-color 1s;
  transition: background-color 1s;
}
.main-navigation ul a:visited {
  color: #868686;
}
.main-navigation ul .current_page_item a {
  color: white;
  background-color: #FF8CD2;
}
.main-navigation ul a:hover {
  color: white;
  background-color: #80205A;
}
.main-navigation ul ul {
  font-size: 0;
  position: absolute;
  background-color: rgba(240, 240, 240, 0.9);
  margin-top: -2.5em;
  margin-left: 11em;
  padding: 0.5em;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.main-navigation ul li:hover > ul {
  font-size: 1em;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.main-navigation ul ul li a {
  color: #683064;
  text-transform: unset;
}
.main-navigation ul .menu-item-has-children:hover {
  background-image: url(img/Caret_right_down.svg);
  background-size: 5em;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: right;
}
.main-navigation ul .menu-item-46 a {
  padding-left: 3em;
  background-image: url(img/Home.svg);
  background-size: 3em;
  background-repeat: no-repeat;
  background-position: center left;
}
.main-navigation ul .menu-item-46 a:hover {
  padding-left: 3em;
  background-image: url(img/Home_wit.svg);
  background-size: 3em;
  background-repeat: no-repeat;
  background-position: center left;
}

/* 'Hamburger' or bars to expand menu on mobile*/
.menu-button:before {
  content: " ";
  padding-right: 1.2em;
  background-image: url(img/Hamburger.svg);
  background-size: 3.5em;
  background-repeat: no-repeat;
  background-position-y: -1.8em;
  background-position-x: -1.2em;
}

/* Times (x) to collapse menu on mobile*/
.menu-button.toggled-on:before {
  content: " ";
  padding-right: 1.2em;
  background-image: url(img/Close.svg);
  background-size: 3.5em;
  background-repeat: no-repeat;
  background-position-y: -2em;
  background-position-x: -1.2em;
}

.no-js .site-header-menu,
.site-header-menu.toggled-on {
  display: block;
}

.site-header-menu.toggled-on {
  margin-top: 0em;
}

button.dropdown-toggle,
button.menu-button {
  display: inline-block;
  padding: 0.5em;
  background-color: transparent;
  border: 2px solid #683064;
  -webkit-box-shadow: 5px 5px 12px white;
  box-shadow: 5px 5px 12px white;
  border-radius: 0.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  content: "";
}

.menu-button {
  float: none;
  font-size: 1.6em;
  color: #683064;
}

.menu-button:focus {
  outline: 1px dotted #683064;
}

/* Screen readers */
.screen-readers {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: none;
  word-break: normal !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Desktop media query */
@media only screen and (min-width: 600px) {
  button.menu-button {
    display: none;
  }

  .site-header-menu {
    display: block;
  }

  .main-navigation ul {
    position: relative;
    background-color: transparent;
    width: 100%;
    float: left;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .main-navigation ul li {
    position: relative;
    float: left;
    margin: 0.2em;
    background-color: rgba(255, 217, 240, 0.9);
    border: 2px solid #BF3087;
    -webkit-box-shadow: 5px 5px 12px white;
    box-shadow: 5px 5px 12px white;
    border-radius: 0.5em;
  }
  .main-navigation ul li:last-child {
    border: 2px solid #BF3087;
  }
  .main-navigation ul li a {
    width: auto;
    color: black;
    padding: 0.5em 0.5em;
  }
  .main-navigation ul li ul {
    position: absolute;
    font-size: 0em;
    top: 100%;
    left: 0;
    width: 40em;
    margin: 0;
    padding: 0;
    z-index: 999;
    background-color: rgba(255, 217, 240, 0.9);
    border-radius: 0.5em;
    -webkit-box-shadow: 3px 3px 8px white;
    box-shadow: 3px 3px 8px white;
  }
  .main-navigation ul li ul li {
    display: block;
    float: none;
    border-top: 2px solid white;
    padding: 0 0.5em;
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid black;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .main-navigation ul li ul li:last-child {
    border: none;
  }
  .main-navigation ul li ul li a {
    white-space: nowrap;
  }
  .main-navigation ul .menu-item-has-children {
    background-image: url(img/Caret_down_lichtblauw.svg);
    background-repeat: no-repeat;
    background-size: 4em;
    background-position: center right -1em;
    padding-right: 2em;
  }
  .main-navigation ul .menu-item-has-children:hover {
    background-image: url(img/Caret_down.svg);
    background-size: 4em;
    background-position: center right -1em;
  }
}
@media only screen and (min-width: 600px) {
  .site-header-menu ul {
    left: 4em;
  }
}
@media (hover: hover) {
  .main-navigation ul li.menu-item-has-children > a {
    pointer-events: none;
  }
  .main-navigation ul li.menu-item-has-children > a .menu-item-has-children > a:hover {
    color: black;
    background-color: transparent;
    pointer-events: none;
  }
}
.zoeken input[type=text] {
  position: fixed;
  top: 1em;
  right: 1em;
  box-sizing: border-box;
  text-align: left;
  width: 2em;
  padding: 0.4em 0.4em 0.4em 2em;
  background-color: rgba(255, 140, 210, 0.3);
  background-image: url(img/Zoek.svg);
  background-repeat: no-repeat;
  background-size: 4em;
  background-position: center;
  background-position-x: -1em;
  border: 2px solid #80205A;
  box-shadow: 5px 5px 12px white;
  border-radius: 0.5em;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  z-index: 999;
}

.zoeken input[type=text]:focus {
  float: right;
  width: 15em;
  outline: none;
}

.zoeken input::placeholder {
  color: lightgrey;
}

#searchsubmit {
  display: none;
}

.social {
  height: 3em;
  width: 30em;
  margin: auto;
}
.social img {
  float: left;
  height: 3em;
  padding: 0 2em;
}

@media only screen and (min-width: 1200px) {
  .sociallinks .social img {
    float: none;
    height: 6em;
    margin-top: 8em;
  }
  .sociallinks .social .facebook img {
    margin-top: 2em;
  }
}
aside {
  width: 100%;
  clear: both;
  position: relative;
  box-sizing: border-box;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
}
aside .wrapper {
  margin-bottom: 2em;
  padding: 1em;
}
aside img {
  margin-top: 1em;
}
aside .facebookwrap {
  display: block;
}
aside .facebook {
  display: inline-block;
  max-width: 120px;
  width: 100%;
}
aside .computer img {
  width: 85%;
}
aside .krantenwrap {
  display: block;
}
aside .kranten {
  display: inline-block;
  max-width: 120px;
  margin-top: 2em;
}
aside .kranten img {
  width: 100%;
}
aside .buurtwhatsappwrap {
  display: block;
}
aside .buurtwhatsapp {
  display: inline-block;
  max-width: 120px;
  margin-top: 2em;
  width: 100%;
}
aside .buurtwhatsapp img {
  width: 75%;
}
aside .mailwrap {
  display: block;
}
aside .mail {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  margin-top: 2em;
}
aside .mail img {
  width: 60%;
}
aside .kollom3 {
  column-count: 2;
  column-gap: 3em;
}

@media only screen and (min-width: 600px) {
  aside .facebook, aside .kranten, aside .buurtwhatsapp, aside .mail {
    max-width: 160px;
  }
  aside .kollom3 {
    column-count: 4;
    column-gap: 5em;
  }
}
@media only screen and (min-width: 992px) {
  aside .wrapper {
    max-width: 992px;
    margin: auto;
  }
}
/* Widget aside */
.laatstenieuws {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6em;
  color: white;
  padding: 0.3em 0.5em;
  background-color: #004AD1;
}

.inhoud-aside {
  column-count: 2;
  column-gap: 2em;
  column-rule: 2px solid #d1d1d1;
  padding: 1em;
}
.inhoud-aside h6 {
  font-size: 1.2em;
  margin-bottom: 0.3em;
}
.inhoud-aside p {
  font-size: 1.1em;
  line-height: 1.3;
}
.inhoud-aside .aside-post {
  word-wrap: break-word;
  display: inline-block;
  padding-bottom: 0.5em;
  margin-top: 1em;
  border-bottom: 1px solid #004AD1;
}
.inhoud-aside .aside-post:nth-last-of-type(1) {
  border-bottom: none;
}
.inhoud-aside .aside-post:nth-last-of-type(12) {
  display: none;
}
.inhoud-aside span {
  display: block;
  float: right;
}

.rsstop {
  margin-top: 2em;
  padding: 0 1em;
}

.rss {
  display: inline-block;
  width: 2em;
  height: auto;
}

.unitykop {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6em;
  color: #004AD1;
  margin-left: 1em;
}

.unity {
  column-count: 2;
  column-gap: 2em;
  column-rule: 2px solid #d1d1d1;
  padding: 1em;
}
.unity .unity-item {
  display: inline-block;
  word-wrap: break-word;
  padding-bottom: 0.5em;
  margin-top: 1em;
  border-bottom: 1px solid #004AD1;
}
.unity h6 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.2em;
  margin-bottom: 0.3em;
}
.unity p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
  line-height: 1.3;
}
.unity span {
  float: right;
}

@media only screen and (min-width: 400px) {
  .inhoud-aside {
    column-count: 3;
  }

  .unity {
    column-count: 2;
  }
}
@media only screen and (min-width: 600px) {
  .inhoud {
    padding: 0em 1em;
  }

  .inhoud-aside {
    column-count: 1;
    background-color: #f0f0f0;
  }
  .inhoud-aside h6 {
    font-size: 1.3em;
  }

  .unity {
    column-count: 3;
  }
}
@media only screen and (min-width: 768px) {
  .unity {
    column-count: 4;
  }
}
main p,
aside p, .aside2 p {
  font-size: 1.4em;
  word-wrap: break-word;
}

main h1,
aside h1 {
  font-size: 3em;
  font-weight: bold;
}

span.leesverder {
  float: right;
}

.artikel {
  background-color: #F6DFF4;
}
.artikel h1 {
  color: #683064;
}
.artikel img {
  float: right;
  margin-left: 1em;
}

.Artikelen {
  clear: both;
  padding: 2em 3em;
  border-bottom: 0.5em solid white;
}

.Artikelen2 {
  background-color: #E9F7CC;
  padding: 2em 3em;
}
.Artikelen2 h1 {
  color: #4A6B00;
}
.Artikelen2 p {
  text-align: center;
}

.Artikelen3 {
  background-color: #FFD9F0;
  padding: 0.5em 3em;
}
.Artikelen3 a {
  color: #80205A;
}
.Artikelen3 a:hover {
  color: #FF40B4;
}
.Artikelen3 .inhoud-artikelen3 {
  text-align: left;
}

.artikelenbericht3 {
  display: block;
  border-bottom: 2px solid white;
  margin: 0em 0;
}
.artikelenbericht3 h3 {
  font-size: 2em;
  margin-top: 1em;
}

.artikelenbericht3:last-child {
  border-bottom: none;
}

@media only screen and (min-width: 500px) {
  .Artikelen3 {
    padding: 0em 3em 2em 3em;
  }
  .Artikelen3 .inhoud-artikelen3 {
    column-count: 2;
    column-gap: 5em;
    column-rule: 2px solid white;
  }
  .Artikelen3 .inhoud-artikelen3 h3, .Artikelen3 .inhoud-artikelen3 a {
    padding-top: 1em;
    margin-top: 0;
  }
  .Artikelen3 .artikelenbericht2 {
    margin: 0 0 2em 0;
  }
  .Artikelen3 h3 a {
    margin-top: 1em;
  }
}
@media only screen and (min-width: 600px) {
  main p,
aside p, .aside2 p {
    font-size: 1.6em;
    word-wrap: break-word;
  }

  main h1,
aside h1 {
    font-size: 4em;
    font-weight: bold;
  }

  .aside2 h3 {
    font-size: 2.5em;
  }

  .Artikelen {
    padding: 3em;
  }

  .artikel img {
    float: right;
    margin-left: 2em;
  }

  .Artikelen2 {
    padding: 3em;
  }

  .aside2 {
    background-color: #FFD9F0;
  }
}
@media only screen and (min-width: 810px) {
  .artikel h1 {
    color: #4A6B00;
  }

  .Artikelen {
    background-color: #E9F7CC;
    padding: 3em;
  }

  .artikel img {
    margin-left: 2em;
  }

  .Artikelen2 {
    background-color: #F6DFF4;
    padding: 3em;
  }
  .Artikelen2 h1 {
    color: #683064;
  }

  .aside2 {
    background-color: #FFD9F0;
  }

  .Artikelen3 {
    padding: 2em 3em 2em 3em;
  }
  .Artikelen3 .inhoud-artikelen3 {
    column-count: 1;
    column-gap: 5em;
    column-rule: 2px solid white;
  }

  .artikelenbericht2 {
    margin: 0 0 2em 0;
  }

  .artikelenbericht2 h3 a {
    color: #80205A;
    margin-top: 1em;
  }

  .artikelenbericht2 a:hover {
    color: #FF40B4;
  }
}
.single {
  padding: 3em;
}
.single h3 {
  font-weight: bold;
  color: #683064;
}

.single_post {
  max-width: 60em;
  padding: 3em;
  margin: auto;
  margin-top: 0;
  background-color: #F6DFF4;
}

.singlepage {
  background-color: #F6DFF4;
}
.singlepage .pageinhoud {
  max-width: 60em;
  padding: 2em 3em;
  margin: auto;
}
.singlepage .pageinhoud h3 {
  font-weight: bold;
  color: #683064;
}

@media only screen and (min-width: 810px) {
  .single {
    min-height: 0em;
  }
  .single h3 {
    font-size: 4em;
  }
  .single p {
    font-size: 1.8em;
  }

  .single_post {
    max-width: 80em;
  }

  .singlepage h3 {
    font-size: 4em;
  }
  .singlepage p {
    font-size: 1.8em;
  }
}
@media only screen and (min-width: 1200px) {
  .single {
    min-height: 40em;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zonfadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-200%, 100%);
    transform: translate(-200%, 100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.backgroundfooter {
  padding: 0 3em;
  z-index: -999;
  background: rgba(147, 213, 0, 0);
  background: -moz-linear-gradient(top, rgba(147, 213, 0, 0) 0%, rgba(147, 213, 0, 0) 11%, #93d500 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(147, 213, 0, 0)), color-stop(11%, rgba(147, 213, 0, 0)), color-stop(100%, #93d500));
  background: -webkit-linear-gradient(top, rgba(147, 213, 0, 0) 0%, rgba(147, 213, 0, 0) 11%, #93d500 100%);
  background: -o-linear-gradient(top, rgba(147, 213, 0, 0) 0%, rgba(147, 213, 0, 0) 11%, #93d500 100%);
  background: -ms-linear-gradient(top, rgba(147, 213, 0, 0) 0%, rgba(147, 213, 0, 0) 11%, #93d500 100%);
  background: linear-gradient(to bottom, rgba(147, 213, 0, 0) 0%, rgba(147, 213, 0, 0) 11%, #93d500 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#93d500", endColorstr="#93d500", GradientType=0 );
}

.footer_logo {
  width: 100%;
}

footer .menu {
  font-size: 1.2em;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.8em;
}
footer .menu li {
  padding: 0 0.5em;
  margin-top: 0.3em;
  margin-left: auto;
  margin-right: auto;
}
footer .menu a {
  color: #683064;
}
footer .menu a:hover {
  color: #D05FC7;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.author {
  float: none;
  position: relative;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  text-align: center;
  margin-top: 1.5em;
  padding-bottom: 1.5em;
}

@media only screen and (min-width: 600px) {
  footer .menu {
    font-size: 1.2em;
    text-align: left;
  }

  .footer_logo {
    width: 50%;
    max-width: 60em;
    float: left;
  }

  .footernav {
    width: 50%;
    margin-top: 2em;
    float: right;
  }
}
@media only screen and (min-width: 810px) {
  footer .menu {
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 1080px) {
  footer .menu {
    font-size: 1.8em;
  }
}

/*# sourceMappingURL=style.css.map */
