* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.space {
  background-color: transparent;
}

#page {
  min-height: 100%;
}

#content {
  overflow: auto;
  padding-bottom: 100px;
}

.d-none {
  display: none !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.pl-10, .pl-10 li {
  padding-left: 10px !important;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  background-color: #add8e6;
  width: 100%;
  z-index: 1000;
  overflow: visible;
}

section {
  position: relative;
  height: calc(100vh - 3rem);
  width: 100%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(56, 165, 238, 0.5);
}

.container {
  max-width: 65rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 2;
}

.logo {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bolder;
  color: #4c96d7;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo-img {
  width: 40px;
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  line-height: 3rem;
  color: #4c96d7;
  padding: 0 0.8rem;
  letter-spacing: 1px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}

.nav-link:hover > a {
  transform: scale(1.1);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #4c96d7;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: 0.3s;
}

.dropdown-link:hover > a {
  background-color: #4c96d7;
  color: #fff;
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid #efefef;
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: #4c96d7;
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: 0.8rem;
  cursor: pointer;
  transform: translateX(10px);
}
.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@-webkit-keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    background-color: #add8e6;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link {
    -webkit-animation: animation 0.5s ease forwards var(--i);
            animation: animation 0.5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: #4c96d7;
    color: #fff;
  }

  .dropdown, .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: #69bde7;
    display: none;
  }

  .nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
    display: block;
  }

  .dropdown-link > a {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }

  .nav-link:hover .arrow {
    background-color: #4c96d7;
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: #3a91bd;
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: #3a91bd;
  }

  .dropdown .dropdown a {
    background-color: #0088cc;
  }

  .dropdown .dropdown a:hover {
    background-color: #b2dcf3;
    color: #4c96d7;
  }
}
@media (max-width: 545px) {
  .logo {
    display: none;
  }
}
@media (min-width: 910px) and (max-width: 1025px) {
  .logo {
    display: none;
  }
}
.header-slide {
  background-color: #add8e6;
  font-size: large;
}
.header-slide a {
  color: #4c96d7;
  text-decoration: underline;
}
.header-slide a:hover {
  color: #000;
}

.header-slide-container {
  margin: 0;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-slide-container img {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.header-slide-container .notes {
  position: relative;
  top: 0;
  padding: 15px 30px;
  letter-spacing: 2px;
}
.header-slide-container .notes p {
  padding-top: 10px;
}
.header-slide-container .picture {
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 1163px) {
  .notes {
    padding: 5px 10px;
  }
}
@media (max-width: 895px) {
  .picture img {
    padding-right: 20px;
  }
}
@media (max-width: 850px) {
  .header-slide-container {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "notes" "picture";
  }

  .notes {
    grid-area: notes;
    margin-bottom: 0;
    padding-bottom: 15px;
    font-size: normal;
  }

  .picture {
    grid-area: picture;
  }

  .picture img {
    width: 100%;
    height: 200px;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 850px) {
  .notes {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .picture {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
@media (min-width: 555px) and (max-width: 840px) {
  .picture img {
    max-width: 50%;
  }
}
@media (min-width: 480px) and (max-width: 485px) {
  .header-slide-container {
    margin-bottom: 10px;
  }
}
@media (min-width: 407px) and (max-width: 479px) {
  .header-slide-container {
    margin-bottom: 50px;
  }
}
@media (min-width: 370px) and (max-width: 406px) {
  .header-slide-container {
    margin-bottom: 75px;
  }
}
@media (min-width: 300px) and (max-width: 369px) {
  .header-slide-container {
    margin-bottom: 100px;
  }
}
main {
  background-color: #fff;
  margin: 0 5px;
  font-size: large;
  padding: 15px 0;
}
main h1, main h2, main h3 {
  font-weight: bolder;
}
main h4, main h5, main h6 {
  font-weight: lighter;
}
main h1.title, main h1.title a {
  font-size: 2.75rem;
  -webkit-text-decoration: underline #4c96d7 5px;
          text-decoration: underline #4c96d7 5px;
}
main h1.title a {
  color: #000;
}
main h1.title a:hover {
  color: #4c96d7;
}
main h2.subtitle, main h2.subtitle a {
  -webkit-text-decoration: underline #4c96d7 5px;
          text-decoration: underline #4c96d7 5px;
}
main h2.subtitle a {
  color: #000;
}
main h2.subtitle a:hover {
  color: #4c96d7;
}
main a {
  color: #4c96d7;
}
main a:hover {
  color: #000;
  -webkit-text-decoration: underline solid #4c96d7 2px;
          text-decoration: underline solid #4c96d7 2px;
}
main .content {
  padding: 5px 10px;
}
main .content p {
  text-align: justify;
  padding-bottom: 10px;
}
main .list {
  list-style: circle !important;
  padding-left: 25px;
}
main .list li > ul {
  list-style: square !important;
  padding-left: 50px;
}

mark {
  background-color: #add8e6;
  color: #4c96d7;
}

.header-slide-container mark {
  background-color: #fff;
  color: #4c96d7;
}

@media (min-width: 900px) {
  main, .header-slide-container {
    margin: 0 10%;
  }
}
@media (min-width: 901px) and (max-width: 1055px) {
  main, .header-slide-container {
    margin: 0 5%;
  }
}
footer {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-align: center;
  padding: 10px;
  background-color: #add8e6;
  color: #303030;
  position: relative;
  height: 100px;
  margin-top: -100px;
  clear: both;
}
footer a {
  color: #303030;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
footer a:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
/*# sourceMappingURL=style.css.map */