﻿p {
  font-family: Raleway, arial, serif !important;
  font-size: 18px !important;
}

h1, h2, h3, h4, h5 {
  font-family: "raleway", arial, serif !important;
}

a {
  text-decoration: none !important;
  color: #00824C;
  font-family: "raleway", arial, serif !important;
}

ul {
  font-family: "raleway", arial, serif !important;
}
ul li {
  font-family: "raleway", arial, serif !important;
}

.contact-login {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #00824c;
  min-width: 50px;
  z-index: 100;
}
.contact-login > a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.contact-login > a > .link {
  display: flex;
  margin: 0 10px;
  align-items: center;
}
.contact-login > a > .link > svg {
  margin-right: 10px;
  grid-area: svg;
  justify-self: center;
  width: 17px;
  height: 16px;
  color: white;
}
.contact-login > a > .link > p {
  color: white;
  grid-area: link;
  margin: 2px;
}
.contact-login > a:hover {
  background-color: #005A34;
  min-width: 100px;
}
.contact-login > a:last-of-type {
  border-left: 1px solid lightgray;
}

.header {
  display: grid;
  grid-template-areas: ". logo navBar .";
  grid-template-columns: auto 100px 1400px auto;
  align-items: center;
  margin-top: 5px;
}
.header > .logo {
  grid-area: logo;
  justify-self: flex-start;
}
.header > .logo a img {
  height: 75px;
}
.header nav.greedy {
  grid-area: navBar;
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
}
.header nav.greedy button {
  align-self: stretch;
  transition: all 0.4s ease-out;
  padding: 0 0 0 1.5rem;
  outline: 0;
  border: 0;
  font-size: 1rem;
  font-weight: 700;
  align-self: center;
  background-color: white;
  color: #404040;
}
.header nav.greedy button.hidden {
  transition: none;
  width: 0;
  padding: 0;
  overflow: hidden;
}
.header nav.greedy ul.links {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  overflow: hidden;
  align-items: center;
}
.header nav.greedy ul.links li {
  flex: none;
  padding: 8px;
}
.header nav.greedy ul.links li a {
  color: #404040;
  font-weight: 700;
}
.header nav.greedy ul.hidden-links {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: white;
  margin: 0;
  padding: 0;
  text-align: left;
}
.header nav.greedy ul.hidden-links.hidden {
  display: none;
}
.header nav.greedy ul.hidden-links li {
  padding: 5px;
}
.header .testing:hover ul.hidden-links {
  display: block;
}
.header .dropdown {
  display: none;
  border: 1px solid #00000030;
  border-width: 0 1px 1px 1px;
  z-index: 99999;
}
.header li {
  list-style: none;
}
.header .NavItem {
  padding: 0;
}
.header .listItem {
  cursor: pointer;
}
.header .listItem > a {
  color: black;
  font-weight: 700;
}
.header .listItem > .dropdownClick > ul > li > a {
  color: #404040;
  font-weight: 700;
}
.header .listItem > .dropdownClick > .dropdown {
  position: absolute;
  background-color: white;
  padding: 0;
  display: none;
}
.header .hover:hover {
  border: 1px solid #00000030;
  border-width: 0 0px 0px 1px;
}
.header .listItem:hover > .dropdownClick > .NavItem {
  border: 1px solid #00000030;
  border-width: 0 0px 0px 1px;
}
.header .listItem:hover > .dropdownClick > .dropdown {
  display: block;
}
.header .hidden:hover {
  display: block;
}
.header .hidden-links {
  color: #404040;
}
.header .hidden-links > .listItem {
  margin-top: 10px;
  padding: 10px;
  color: #404040;
}
.header .hidden-links > .listItem > li > a {
  color: #404040;
}
.header .hidden-links > .listItem > .dropdownClick > .dropdown {
  right: 100%;
  bottom: 0;
  height: 100%;
  z-index: 100;
}
.header .hidden-links > .listItem > .dropdownClick > .dropdown > li {
  padding-top: 15px;
  background-color: white;
}
.header .hidden-links > .listItem > .dropdownClick > .dropdown > li > a {
  color: #404040;
  z-index: 100;
  font-weight: 700;
}
@media screen and (max-width: 1560px) {
  .header {
    grid-template-columns: 30px 100px auto 30px;
  }
}

.mobileWrapper {
  display: none;
}

@media screen and (max-width: 1200px) {
  .mobileWrapper {
    display: block;
  }
  .mobileWrapper .navMobile .dropdownClick {
    cursor: pointer;
  }
  .mobileWrapper .navMobile .dropdown {
    display: none;
  }
  .mobileWrapper .navMobile .navItems {
    display: none;
  }
  .mobileWrapper .navMobile .navItems .Wrapper ul li {
    list-style: none;
  }
  .mobileWrapper .navMobile .navItems .Wrapper ul li a {
    text-decoration: none;
    color: gray;
    font-weight: 700;
  }
  .mobileWrapper .navMobile .top {
    margin-top: 5px;
    align-items: center;
    justify-content: space-between;
    margin: 30px 30px 0 30px;
  }
  .mobileWrapper .navMobile .top .Logo a img {
    height: 100px;
  }
  .mobileWrapper .navMobile .top .icon {
    width: 35px;
  }
  .mobileWrapper .navMobile .top .icon .container {
    cursor: pointer;
  }
  .mobileWrapper .navMobile .top .icon .bar1, .mobileWrapper .navMobile .top .icon .bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
  }
  .mobileWrapper .navMobile .top .icon .bar2 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    /*margin-left:7px;*/
    transition: 0.4s;
  }
  .mobileWrapper .navMobile .top .icon .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  .mobileWrapper .navMobile .top .icon .change .bar2 {
    opacity: 0;
  }
  .mobileWrapper .navMobile .top .icon .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
  }

  .header {
    display: none;
  }
}
.footer {
  display: grid;
  grid-template-areas: ". wrapper ." ". madeBy .";
  grid-template-rows: auto 90px;
  grid-template-columns: auto 1500px auto;
  background-color: #282828;
}
@media screen and (max-width: 1560px) {
  .footer {
    grid-template-columns: 30px auto 30px;
  }
}
@media screen and (max-width: 710px) {
  .footer {
    grid-template-columns: auto;
  }
}
.footer > .wrapper {
  margin-top: 30px;
  grid-area: wrapper;
  display: grid;
  grid-template-areas: "logo info pictures";
  grid-template-columns: auto auto auto;
}
.footer > .wrapper > .logo {
  grid-area: logo;
  justify-self: flex-start;
  width: 188px;
}
.footer > .wrapper > .logo > svg {
  width: 188px;
}
.footer > .wrapper > .info {
  grid-area: info;
  display: grid;
  grid-template-areas: ". basic . socials" ". maps . ." ". contact . .";
  grid-template-columns: auto;
  grid-template-rows: auto;
}
.footer > .wrapper > .info > .basicInfo {
  grid-area: basic;
}
.footer > .wrapper > .info > .basicInfo p {
  margin: 0 0 10px 0;
  color: white;
}
.footer > .wrapper > .info > .socials {
  grid-area: socials;
}
.footer > .wrapper > .info > .socials > a > svg {
  width: 25px;
  height: 25px;
}
.footer > .wrapper > .info > .maps {
  grid-area: maps;
}
.footer > .wrapper > .info > .maps p {
  margin: 0 0 10px 0;
  color: white;
}
.footer > .wrapper > .info > .contact {
  grid-area: contact;
}
.footer > .wrapper > .info > .contact p {
  margin: 0 0 10px 0;
  color: white;
}
.footer > .wrapper > .pictures {
  grid-area: pictures;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-end;
  justify-content: flex-end;
}
.footer > .wrapper > .pictures > a > svg {
  height: 60px;
  width: 121px;
}
.footer > .wrapper > .pictures > svg {
  height: 60px;
  width: 121px;
}
@media screen and (max-width: 1560px) {
  .footer > .wrapper > .pictures {
    justify-content: center;
  }
  .footer > .wrapper > .logo {
    width: 150px;
  }
  .footer > .wrapper > .logo > svg {
    width: 150px;
  }
  .footer > .wrapper > .info {
    justify-self: start;
  }
  .footer > .wrapper > .pictures {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .footer > .wrapper {
    grid-template-areas: "logo . info" "pictures pictures pictures";
  }
  .footer > .wrapper > .logo {
    justify-self: end;
  }
}
@media screen and (max-width: 760px) {
  .footer > .wrapper > .logo {
    justify-self: start;
  }
  .footer > .wrapper > .pictures :first-child {
    width: 170px;
  }
}
@media screen and (max-width: 710px) {
  .footer > .wrapper {
    grid-template-areas: ". . ." ". logo ." ". info ." ". pictures .";
    grid-template-columns: 30px auto 30px;
    grid-template-rows: 50px auto auto auto;
    justify-content: center;
  }
  .footer > .wrapper > .logo {
    justify-self: center;
  }
  .footer > .wrapper > .info {
    justify-self: center;
  }
  .footer > .wrapper > .pictures {
    flex-direction: column;
    align-content: center;
  }
  .footer > .wrapper > .pictures > a > svg {
    margin-bottom: 15px;
  }
}
.footer > .madeBy {
  grid-area: madeBy;
}
