@media only screen and (min-width: 2000px) {
  body,
  html {
    font-size: 0.85vw;
  }
}
img {
  display: block;
  max-width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* width */
::-webkit-scrollbar {
  width: 0.875em;
  position: absolute;
}
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 0.875em;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #b6b6b6;
  border-radius: 0.875em;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #808080;
}
html {
  display: block;
  font-size: 1em;
}
header {
  z-index: 999;
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #d6eae5 0%, #a7d1ce 100%);
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-right: 1.5em;
}
nav a#imgLink {
  height: 5.5em;
  width: 5.5em;
  overflow: hidden;
  margin-left: 1.5em;
}
nav #headerImg {
  width: 7em;
  height: auto;
}
nav ul.navMenu {
  display: flex;
  justify-content: space-around;
}
nav li {
  font-size: 1.25em;
  list-style: none;
  margin-left: 0.875em;
  margin-right: 0.875em;
  padding-top: 0.1875em;
}
nav a {
  color: black;
  text-decoration: none;
}
nav a:hover {
  color: turquoise;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 1.875em;
  height: 0.2em;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: black;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .navMenu {
    position: fixed;
    left: -100%;
    top: 6em;
    flex-direction: column;
    background-color: antiquewhite;
    text-align: center;
    width: 100%;
    transition: 0.3s;
  }
  .navMenu.active {
    left: 0;
  }
}
.footerSection .footerContainer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(90deg, #3e5856 0%, #096d7a 100%);
}
.footerSection .footerContainer .leftSideFooter {
  display: grid;
  grid-template-columns: 1fr;
  width: max-content;
  gap: 1em;
  padding-top: 2em;
  padding-bottom: 2em;
}
.footerSection .footerContainer .leftSideFooter p > a {
  text-decoration: none;
  color: #ffffffcc;
}
.footerSection .footerContainer .rightSideFooter {
  display: flex;
  gap: 5em;
}
.footerSection .footerContainer .rightSideFooter ul h2 {
  color: #faad00;
}
.footerSection .footerContainer .rightSideFooter ul li {
  list-style: none;
  margin-bottom: 0.5em;
  margin-top: 0.625em;
  color: #ffffff;
}
.footerSection .footerContainer .rightSideFooter ul li:hover {
  color: #00ffff;
}
.footerSection .footerContainer .rightSideFooter ul a {
  text-decoration: none;
}
.footerSection .copyRight {
  display: flex;
  justify-content: center;
  color: #ffffff;
  background-color: #108e9e;
}
@media only screen and (max-width: 768px) {
  .footerContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footerContainer .rightSideFooter {
    flex-direction: inherit;
  }
}
