@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

body,
html {
  background-color: #f9f5f3;
  margin: 0;
  padding: 0;
}

.logo {
  display: inline;
}

.navbar {
  background-color: #101213;
  color: #f9f5f3;
  border-radius: 5px;
  padding: 6px 0px 0px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  background-color: #07689f;
  padding: 12px 8px 12px 0px;
  box-sizing: border-box;
}

footer {
  background-color: #101213;
  color: #f9f5f3;
  padding: 20px 0;
  text-align: center;
}
.footer-container {
  margin-left: 400px;
  margin-right: 400px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-box {
  flex: 1;
  min-width: 250px;
  margin: 10px;
  text-align: center;
}
.footer-box img {
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-box h2 {
  font-size: 20px;
}
.footer-box p {
  margin: 5px 0;
}
.copyright {
  font-size: 14px;
  color: #6c757d;
}

.text-area {
  background-color: #f9f5f3;
  max-width: 1200px;
  margin: 0 auto;
}

.text {
  color: #101213;
  padding: 10px;
  margin: 20px 0px 0px 0px;
  display: inline-block;
  vertical-align: top; /* or top or bottom */
  width: 46%;
}

.block-text {
  width: 70%;
  margin: auto;
}

.warning {
  width: 70%;
  margin: auto;
  background-color: #575959;
  color: #f9f5f3;
  padding: 10px;
  border-radius: 4px;
}

.image {
  display: inline-block;
  vertical-align: middle; /* or top or bottom */
  float: right;
  margin-right: 20px;
  margin-top: 40px;
}

.image2 {
  display: flex;
  justify-content: center;
  float: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.location {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 32px;
}

.map {
  margin-top: 40px;
  max-width: 600px;
  display: inline-block;
  vertical-align: middle;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.info {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
}

.about-text {
  color: #101213;
  padding: 10px;
  margin: 0px 10px 10px 0px;
  display: inline-block;
  vertical-align: top; /* or top or bottom */
  width: 50%;
  margin-top: 20px;
}

table {
  width: 60%;
  margin: auto;
  text-align: center;
  border: 1px solid #575959;
  vertical-align: middle;
  border-collapse: collapse;
}

tbody tr:nth-child(odd) {
  background-color: #f9f5f3;
}

tbody tr:nth-child(even) {
  background-color: #e0dcda;
}

thead {
  background-color: #575959;
  color: #f9f5f3;
}

h1 {
  margin-top: 10px;
}

h2 {
  color: #07689f;
}

p {
  font-size: 18px;
  font-weight: 300;
}

a {
  font-size: 18px;
  font-weight: 300;
  color: #101213;
  margin-left: 20px;
}

.mail {
  color: #f9f5f3;
}

.spacer {
  margin-bottom: 180px;
}

.list {
  padding: 10px;
  margin: 0px 10px 10px 24px;
  font-size: 18px;
  font-weight: 300;
}

li {
  margin-bottom: 8px;
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  /* list-style: none; */
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
nav {
  width: 100%;
}
nav ul {
  float: right;
  margin-right: 50px;
}
nav ul li {
  display: inline-block;
  line-height: 40px;
  margin: 0 10px;
}
nav ul li a {
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  margin: 0;
}
a.active,
a:hover {
  background: #07689f;
  transition: 0.25s;
}
.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 44px;
  margin-right: 0px;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}

@media (max-width: 1150px) {
  .checkbtn {
    display: block;
    margin-right: 20px;
  }

  .text {
    margin: auto;
    padding: 0px;
    display: block;
    width: 80%;
  }

  .block-text {
    width: 80%;
  }

  .image {
    display: flex;
    justify-content: center;
    float: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .map {
    max-width: 400px;
    margin: 20px 0px 40px 70px;
  }

  .image {
    margin-right: 0px;
  }

  .location {
    margin-top: 0px;
  }

  .info {
    margin: 40px 0px 0px 20px;
  }

  img {
    max-width: 100%;
    max-height: 100%;
  }

  header ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #101213;
    top: 84px;
    left: -100%;
    text-align: center;
    transition: all 0.3s;
  }
  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a {
    font-size: 20px;
  }
  .list {
    font-size: 16px;
    margin-left: 10px;
  }
  a:hover,
  a.active {
    background: none;
    color: #07689f;
  }
  #check:checked ~ ul {
    left: 0;
  }
  .list {
    left: 100%;
  }

  .footer-container {
    margin: 0;
  }

  .navbar {
    margin-left: 8px;
  }
}

@media (max-width: 720px) {
  .text {
    margin: auto;
    padding: 0px;
    width: 92%;
    display: block;
  }
  .block-text {
    width: 92%;
  }
  .warning {
    width: 92%;
  }
  table {
    width: 90%;
  }

  a {
    font-size: 16px;
    margin-left: 12px;
  }
  p {
    font-size: 16px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }

  .image {
    height: 260px;
    margin-bottom: 20px;
  }
  .image2 {
    height: 260px;
    margin-bottom: 20px;
  }
  .spacer {
  }
  .location {
    display: none;
  }
}

section {
  background: url(bg1.jpg) no-repeat;
  background-size: cover;
  height: calc(100vh - 80px);
}
