html{
  scroll-behavior: smooth;
}

*{
  font-family: "Patrick Hand", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none; /* Safari/Chrome */
  -ms-user-select: none;     /* old Edge */
  user-select: none;
  -webkit-tap-highlight-color: transparent; /* mobile tap flash */
}

body{
  background-color: #ffffff;
}

a{
  text-decoration: none;
}

p{
  font-size: 20px;
  color: #1E3544;
}

h2{
  font-size: 36px;
  color: #1E5772;
}


.logo{
  height: 60px;
  left: 0;
  font-weight: 100;
}

.nav-container{
  height: 80px;
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  z-index: 1000;
  border-bottom: 0.8px solid #F66F61;
}

.dropdown{
  position: fixed;
  top: 80px;
  background-color: #ffffff;
  width: 100%;
  opacity: 0;
  z-index:-1;
  transition: opacity 200ms ease;
  border-bottom: 0.8px solid #F66F61;
  padding: 20px;
  max-height: 0;
  transition: opacity 200ms ease;
}

.dropdown-bar{
  display: grid;
  gap: 15px;
}

.dropdown a{
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #1E5772;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.show a {
  opacity: 1;
  transform: translateY(0);
}

.show a:nth-child(1) { transition-delay: 0.05s; }
.show a:nth-child(2) { transition-delay: 0.1s; }
.show a:nth-child(3) { transition-delay: 0.15s; }
.show a:nth-child(4) { transition-delay: 0.2s; }

.nav-container button{
  background: none;
  border: none;
  box-shadow: none;
padding: 0;
}

.show{
  max-height: 400px;
  opacity: 1;
  z-index: 20;
}

.nav-container button svg{
fill: #1E5772;
}

svg{
  height: 25px;
  width: 25px;
  right: 0;
}

#btn-bar{
  background: none;
  border: none;
}

.btn-bar svg{
  height: 30px;
  width: 30px;
}

/* Start state (before it scrolls into view) */
.reveal {
  opacity: 0;
  transform: translatex(-30px);
  transition: opacity 1000ms ease, transform 1000ms ease;
  will-change: opacity, transform;
}

/* End state (when visible) */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden-a{
  display: none;
  z-index: 1001;
}

.hidden-a a{
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #1E5772;
  display: block;
  transition: all 0.5s ease;
}

.hidden-a a:hover{
  color: #F66F61;
}

#enrol-btn3{
  display: none;
padding: 8px 16px;
align-items: center;
border-radius: 50px;
background: #1E5772;
color: #FFF;
text-align: center;
font-size: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
border: none;
}
