body {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3em;
    margin: 0;
    padding: 0;
    background-color: #ffe9e9;
}
html {
  scroll-behavior: smooth;
}
h1, h2,h3, h4{
    margin:0;
    padding:0;
}
h1 > span {
    font-size: 0.5em;
    display: block;
    margin-bottom: 20px;
}

.header-text, .header-tagline{
    text-align: center;
}
.logo-img-wrp{
text-align: center;
}
.header-placeholder{
    height:51px;
}
.hide{
    display: none;
}
.header-wrap {
  position: relative;
  top: 0;
  transition: all 0.3s ease; /* smooth AF */
}
.header-wrap.fixed {
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
}

.header-wrap.fixed.show {
    opacity: 1;
    transform: translateY(0);
}
.header-tagline{
    margin-bottom: 10px;
}

ul.header-menu {
    margin: 0;
    padding: 10px;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #efefef;
}
ul.header-menu li {
    display: inline-block;
    padding: 0 10px;
}
ul.header-menu li a{
    text-decoration: none;
    color:#000;
}

.container {
    max-width: 60rem;
    margin: 0 auto;
}
.container > .content {
    background: #fff;
    padding: 1em 2em;
}
.container > .content > .content-image{
    width:100%;
}
.container > .content > .thumbnails, .map-location {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.container > .content > .thumbnails > .thumb-img-wrap{
    width: 210px;
}
.thumb-image{
    width:100%;
}
#map {
    height: 400px; /* The height is 400 pixels */
    width: 100%; /* The width is the width of the web page */
}
.footer-note{
    display:flex;
    justify-content: center;
    font-size:0.8em;
}
 @media (max-width:640px) {
    .logo-image{
        width:100%;
    }
    .container > .content {
        padding: 0.8em 1em;
    }
    .container > .content > .thumbnails > .thumb-img-wrap{
        width: 104px;
    }
 }
@media (min-width: 640px) and (max-width: 768px) {
    .container > .content > .thumbnails > .thumb-img-wrap{
        width: 105px;
    }
 }