html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.gs-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Subtle custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F4F1EA;
}
::-webkit-scrollbar-thumb {
    background: #2C4C3B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3A634D;
}


/* --- FIX OVERLAP SECTIONS --- */
section{
  position:relative;
  z-index:1;
}

section + section{
  margin-top:120px;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}
