@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "Open Sans", sans-serif;
}

body,
html {
  height: 100%;
  background-color: #0b0b0b;
  color: #fff;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  background-color: transparent;
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #a08f8f9a;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid rgb(0, 0, 0);
}

/* navbar */

.nav {
  padding: 1.25rem 3rem;
  height: 6.125rem;
  width: 100%;
  background: transparent;
  z-index: 99;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 1.25rem;
}

.nav > .nav-links > a {
  display: inline-block;
  padding-top: 0.95rem;
  padding-left: 2.125rem;
  padding-right: 1rem;
  text-decoration: none;
  color: #efefef;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-variant-caps: all-small-caps;
}

.nav > .nav-links > a:hover {
  color: #f5e169;
  text-decoration: underline;
  text-decoration-color: #a41d36;
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

.nav > #nav-check {
  display: none;
}

.current-page {
  color: #f5e169 !important;
}

@media screen and (min-width: 1600px) {
  .nav > .nav-links {
    font-size: 1.75rem;
  }
  .nav > .nav-links > a {
    padding-top: 1.5rem;
    padding-left: 3.125rem;
    padding-right: 2rem;
  }
}

@media screen and (max-width: 900px) {
  .nav > .nav-links {
    font-size: 1rem;
  }
  .nav > .nav-links > a {
    padding-left: 1.4rem;
  }
}

@media (max-width: 600px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 1.8rem;
    z-index: 4;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 3.125rem;
    height: 3.125rem;
    padding: 0.813rem;
  }
  .nav > .nav-btn > label:hover,
  .nav #nav-check:checked ~ .nav-btn > label {
    background-color: #0000004d;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 1.563rem;
    height: 0.625rem;
    border-top: 2px solid #eee;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0rem;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 0rem;
    left: 0rem;
    z-index: 3 !important;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    padding-left: 3rem;
    padding-top: 2rem;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0rem;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 0rem);
    overflow-y: auto;
    z-index: 1;
  }
}

/* footer  */

footer {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  width: 100%;
  background-color: #cdcdcf;
  padding: 1.25rem 3rem;
  font-family: "Open Sans";
}

.footer-left {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left > a > img {
  max-width: 100%;
  height: auto;
}

.footer > * {
  flex: 1 100%;
}

.footer-left-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 35vw;
  font-variant-caps: all-small-caps;
}

.footer-left-links > a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.25rem;
}

.footer-left-links > a:hover {
  text-decoration: underline;
  text-decoration-color: #a41d36;
  text-underline-offset: 5px;
}

.footer-nav-links,
.footer-nav-links > a {
  color: #a41d36;
  text-decoration: none;
  font-size: 0.813rem;
}

.footer-nav-links > a:hover {
  text-decoration: underline;
  text-decoration-color: #a41d36;
  text-underline-offset: 5px;
}

@media screen and (min-width: 1600px) {
  .footer-left-links > a {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 1200px) {
  .footer-left-links {
    width: 45vw;
  }

  .footer-nav-links,
  .footer-nav-links > a {
    font-size: 0.65rem;
  }
}

@media screen and (max-width: 900px) {
  footer {
    padding: 1.25rem 2rem;
  }

  .footer-left-links {
    width: 50vw;
  }

  .footer-left-links > a {
    font-size: 1.1rem;
  }

  .footer-nav-links,
  .footer-nav-links > a {
    font-size: 0.585rem;
  }
}

@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    padding: 1.25rem 1rem;
  }

  .footer-left {
    flex-direction: column;
  }

  .footer-left-links {
    flex-direction: column;
    flex: 2 0px;
    padding-top: 1rem;
  }

  .footer-left-links > * {
    flex: 1;
    padding-bottom: 1rem;
  }

  .footer-nav-links,
  .footer-nav-links > a {
    flex-direction: column;
    flex: 1;
    font-size: 0.72rem;
    text-align: center;
  }
}
