/* -- Roboto-Family -- */
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto/Roboto-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

body {
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

*,
body {
  box-sizing: border-box;
  font-family: "Helvetica", "Arial", sans-serif;
  color: #101010;
}

.header {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0;
  padding-top: 4.2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.logo {
  position: absolute;
  left: -2.5rem;
  top: 0rem;
  height: 10rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.bar1,
.bar2,
.bar3 {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #101010;
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}

.bar1 {
  top: 2px;
  animation-delay: 100ms;
}

.bar2 {
  top: 9px;
}

.bar3 {
  bottom: 2px;
  animation-delay: 250ms;
}

.hamburger-icon {
  height: 20px;
  width: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  padding: 3px 0;
}

.bar1.open {
  transform: rotate(45deg);
  transform-origin: left;
}

.bar3.open {
  transform: rotate(-45deg);
  transform-origin: left;
}

.bar2.open {
  opacity: 0;
}

@keyframes slideIn {
  0% {
    width: 0%;
    opacity: 0;
  }

  100% {
    width: 50%;
    opacity: 1;
  }
}

#nav {
  background: #101010 0% 0% no-repeat padding-box;
  border-radius: 30px;
  padding: 4rem 6rem;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%) translateY(100%);
}

#nav a {
  text-align: right;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: lowercase;
  font-family: "Roboto", sans-serif;
  margin-bottom: 3.5rem;
  display: block;
}

#nav > div {
  text-align: right;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0px;
  color: #959595;
  white-space: nowrap;
}

#nav.show {
  display: block;
}

.bananadevs-btn {
  background: #1c1c1c;
  border: 1px solid #707070;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  padding: 2rem 4rem;
  display: inline-block;
  width: auto;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.bananadevs-btn:hover {
  background: #ffb300;
  border: 1px solid #ffb300;
  color: #101010;
  text-decoration: none;
}

.footer {
  padding: 2.5rem;
  padding-bottom: 1rem;
  padding-top: 3rem;
  background: #101010;
}

.footer__content {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 4.4rem;
}

.footer__rights {
  border-top: 1px solid #535353;
  padding-top: 1.2rem;
  color: #959595;
  font-size: 1.5rem;
  line-height: 2;
}

.footer-logo {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 100%;
  margin-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #535353;
}

.footer-logo img {
  max-height: 3.5rem;
  object-fit: contain;
  margin-right: 0.2rem;
}

/* Extra small and Small screens / phone */
@media (max-width: 768px) {
  .footer__content {
    line-height: 1;
    justify-content: center;
  }

  .footer__rights {
    margin-top: 2rem;
    text-align: center;
  }
}

/* Medium screen / tablet */
@media (min-width: 768px) {
  .footer__rights {
    margin-top: 4.8rem;
  }
}

@media (min-width: 1400px) {
  .footer {
    padding: 8rem;
    padding-bottom: 1rem;
    padding-top: 4rem;
  }
}

@media (min-width: 1600px) {
  .footer {
    padding: 14rem;
    padding-bottom: 1rem;
    padding-top: 4.8rem;
  }
}
