@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s;
  font-family: "Inter";
}
body{
  background: url("../images/white-grey-flecks.png");
}
h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
  background: #fff;
  margin-bottom: 10px;
}

h3 {
  font-size: 2rem;
  /*background: #fff;*/
}

p, span {
  font-size: 18px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: whitesmoke;
  color: #2c2c2c;
}

/* Header */
.header {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: 0;
  background-color: white;
  z-index: 1;
}
.header .intro-header {
  width: 1280px;
  margin: 0 auto;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .intro-header .navbar {
  display: flex;
}
.header .intro-header .navbar a {
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.3s;
  color: #2c2c2c;
  border-radius: 3px;
}
.header .intro-header .navbar a:hover {
  background-color: whitesmoke;
}

/* Overview */
.overview {
  min-height: 640px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.overview .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4392156863);
  display: flex;
  justify-content: center;
  align-items: center;
}
.overview .inner .content {
  width: 1280px;
  margin: 0 auto;
}
.overview .inner .content h1 {
  color: white;
  margin: 20px 0;
}
.overview .inner .content span {
  color: rgb(219, 219, 219);
}

.wrapper {
  width: 1280px;
  margin: 0 auto 100px auto;
}
.wrapper .about, .wrapper .d-map, .wrapper .map, .wrapper .contact {
  margin-top: 100px;
}
.wrapper .about h2, .wrapper .d-map h2, .wrapper .map h2, .wrapper .contact h2 {
  padding: 20px 0;
}
.wrapper .about .inner-about, .wrapper .d-map .inner-about, .wrapper .map .inner-about, .wrapper .contact .inner-about {
  margin-top: 20px;
  display: block;
  justify-content: center;
}
.wrapper .about .inner-about .image, .wrapper .d-map .inner-about .image, .wrapper .map .inner-about .image, .wrapper .contact .inner-about .image {
  border-radius: 5px;
  overflow: hidden;
  margin-right: 20px;
  min-width: 480px;
}
.wrapper .about .inner-about .image img, .wrapper .d-map .inner-about .image img, .wrapper .map .inner-about .image img, .wrapper .contact .inner-about .image img {
  width: 100%;
  border-radius: 5px;
}
.wrapper .about .inner-about .content, .wrapper .d-map .inner-about .content, .wrapper .map .inner-about .content, .wrapper .contact .inner-about .content {
  margin-left: 20px;
}
.wrapper .about .contact-list, .wrapper .d-map .contact-list, .wrapper .map .contact-list, .wrapper .contact .contact-list {
  margin-top: 20px;
  display: flex;
}
.wrapper .about .contact-list a, .wrapper .d-map .contact-list a, .wrapper .map .contact-list a, .wrapper .contact .contact-list a {
  display: inline-block;
  margin: 10px;
}
.wrapper .about .contact-list a img, .wrapper .d-map .contact-list a img, .wrapper .map .contact-list a img, .wrapper .contact .contact-list a img {
  width: 64px;
}

@media screen and (max-width: 1280px) {
  .header .intro-header {
    width: 1024px;
  }
  .overview .inner .content {
    width: 1024px;
  }
  .wrapper {
    width: 1024px;
  }
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1rem;
  }
  p, span {
    font-size: 16px;
  }
  .header .intro-header {
    width: 100%;
    padding: 0 20px;
  }
  .header .intro-header .navbar a {
    padding: 5px 10px;
  }
  .overview .inner .content {
    width: 100%;
    padding: 0 40px;
  }
  .wrapper {
    width: 100%;
  }
  .wrapper .about, .wrapper .d-map, .wrapper .map, .wrapper .contact {
    margin-top: 50px;
    padding: 0 20px;
  }
  .wrapper .about .inner-about, .wrapper .d-map .inner-about, .wrapper .map .inner-about, .wrapper .contact .inner-about {
    flex-direction: column;
    justify-content: flex-start;
  }
  .wrapper .about .inner-about .image, .wrapper .d-map .inner-about .image, .wrapper .map .inner-about .image, .wrapper .contact .inner-about .image {
    margin: 0;
    width: 100%;
  }
  .wrapper .about .inner-about .content, .wrapper .d-map .inner-about .content, .wrapper .map .inner-about .content, .wrapper .contact .inner-about .content {
    width: 100%;
    max-width: auto;
    text-align: center;
    margin: 0;
  }
}
@media screen and (max-width: 820px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 0.5rem;
  }
  p, span {
    font-size: 14px;
  }
  .header .intro-header {
    justify-content: center;
  }
  .header .intro-header .navbar {
    display: none;
  }
  .overview .inner .content {
    padding: 0 10px;
  }
  .overview .inner .content h1 {
    text-align: center;
  }
  .overview .inner .content span {
    display: block;
    text-align: center;
  }
  .wrapper {
    margin: 0 auto 50px auto;
  }
  .wrapper .about, .wrapper .d-map, .wrapper .map, .wrapper .contact {
    padding: 0 10px;
  }
  .wrapper .about .inner-about, .wrapper .d-map .inner-about, .wrapper .map .inner-about, .wrapper .contact .inner-about {
    flex-direction: column;
    justify-content: flex-start;
  }
  .wrapper .about .inner-about .image, .wrapper .d-map .inner-about .image, .wrapper .map .inner-about .image, .wrapper .contact .inner-about .image {
    width: 100%;
    min-width: auto;
  }
  .wrapper .about .inner-about .content, .wrapper .d-map .inner-about .content, .wrapper .map .inner-about .content, .wrapper .contact .inner-about .content {
    width: 100%;
    max-width: auto;
    text-align: center;
  }
  .wrapper .about .contact-list a img, .wrapper .d-map .contact-list a img, .wrapper .map .contact-list a img, .wrapper .contact .contact-list a img {
    width: 48px;
  }
}/*# sourceMappingURL=main.css.map */