* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #d7d7d7;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-moz-selection {
  color: #fff;
  background: #1e1e1e;
}

::selection {
  color: #fff;
  background: #1e1e1e;
}

html {
  scroll-behavior: smooth;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0 10px;
  color: #777;
  background-color: #fff;
  font-optical-sizing: auto;
  font-family: "DM Sans", sans-serif;
}

#page {
  width: 100%;
  margin: auto;
  display: flex;
  max-width: 1200px;
  position: relative;
  flex-direction: column;
}

h1 {
  font-size: 4rem;
  text-align: left;
  margin: 60px 0 0 0;
  line-height: 1.25em;
}

h2 {
  max-width: 90%;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin: 10px 0 0 0;
  line-height: 1.5em;
}

h3 {
  max-width: 90%;
  font-weight: 500;
  text-align: left;
  font-size: 1.35rem;
  line-height: 1.5em;
}

h4 {
  max-width: 90%;
  text-align: left;
  font-size: 1.35rem;
  line-height: 1.5em;
}

p {
  max-width: 90%;
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.5em;
}

section {
  padding: 60px 0 0 0;
}

.row {
  width: 100%;
  display: flex;
  margin: 0 auto;
}
.row.borded {
  border-top: 1px dotted #f5f5f5;
  border-bottom: 1px dotted #f5f5f5;
}
.row.bg {
  padding: 50px 50px;
  background-color: #f5f5f5;
}

.col-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

header {
  top: 0;
  width: 100%;
  z-index: 2;
  height: 60px;
  display: flex;
  position: fixed;
  max-width: 1200px;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  justify-content: space-between;
}
header #main_logo {
  color: inherit;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}
header nav a {
  color: inherit;
  margin: 0 0 0 20px;
  text-decoration: none;
}
header nav a.active {
  color: #000;
}

.btn {
  display: flex;
  color: #fff;
  margin: 20px 0;
  font-weight: 800;
  max-width: 240px;
  border-radius: 7px;
  font-size: 1.15rem;
  padding: 15px 15px;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  background-color: #1e1e1e;
}
.btn.small {
  padding: 10px;
  font-size: 1rem;
  max-width: auto;
  margin-left: 10px;
  display: inline-flex;
}

#gallery-container {
  width: 100%;
  margin: 20px auto;
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
#gallery-container .gallery-image {
  width: 100%;
  filter: grayscale(100%);
  margin-bottom: 0.5rem;
}

footer {
  margin-top: 30px;
}
footer .row {
  height: 60px;
}

.main-title {
  max-width: 700px;
}

@media (max-width: 920px) {
  body {
    padding: 0;
  }
  header {
    padding: 0 20px;
  }
  header nav {
    display: none;
  }
  section {
    padding: 20px;
  }
  #recall {
    padding: 0;
  }
  h1 {
    font-size: 2.25rem;
    text-align: center;
  }
  h2 {
    margin: 10px auto 0 auto;
  }
  h3,
  h4 {
    max-width: 100%;
    text-align: center;
  }
  p {
    font-size: 1.15rem;
    max-width: 100%;
    text-align: justify;
  }
  .row.bg {
    padding: 20px;
  }
  .row.bg h3 {
    font-size: 1.15rem;
    text-align: justify;
  }
  .btn {
    width: 100%;
    max-width: 100dvw;
  }
  #gallery-container {
    -moz-column-count: 2;
         column-count: 2;
  }
  footer {
    font-size: 0.85rem;
    text-align: center;
  }
  .main-title {
    max-width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */