@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
  --blue-color: #0aadeb;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
}

header {
  position: absolute;
  background-color: #0000005e;
  width: 100%;
  z-index: 5;
}

.site-info {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  color: #f2f2f2;
  font-size: 12px;
}

.site-info div {
  margin: 0;
  padding: 10px 5px;
  display: flex;
  align-items: center;
}

.site-info .share a {
  color: #f2f2f2;
}

.site-info .share a:hover {
  color: var(--blue-color);
}

.site-info div i {
  padding-right: 10px;
}

.site-info div:first-child {
  border-left: 0;
  width: 20px;
}

.site-info div:last-child {
  border-right: 0;
  width: 20px;
}

.site-info .space {
  flex-grow: 1;
}

.site-info div {
  border: 1px solid #ffffff6b;
  border-top: 0;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #ffffff6b;
}

nav {
  width: 100%;
}

nav ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0 2em;
  height: 100%;
  align-items: center;
}

.nav-link {
  display: block;
  text-align: center;
  width: 8rem;
  font-size: 20px;
  font-weight: 600;
}

.nav-link a {
  text-decoration: none;
  width: 100%;
  color: rgba(255, 255, 255, 0.773);
}

.nav-link a:hover {
  color: var(--blue-color);
}


.footer_section {
  position: relative;
  background-color: #0d1a22;
  text-align: center;
}

.footer_section .row {
  display: flex;
  flex-wrap: wrap;
}

.footer_section .col-8 {
  flex-grow: 2;
}

.footer_section .col-4 {
  flex-grow: 1;
}

.footer_section p {
  color: #f2f2f2;
  padding: 25px 0;
  margin: 0;
}

.info_social a {
  text-decoration: none;
  color: #0aadeb;
  font-size: larger;
  margin: 0 5px;
}

.mobile {
  display: none;
}


@media only screen and (max-width: 768px) {

  .site-info, nav ul {
    flex-direction: column !important;
  }

  .site-info {
    display: none;
  }

  .navbar {
    justify-content: space-between;
  }

  .mobile {
    display: block;
  }

  .mobile-info {
    position: absolute;
    bottom: 20%;
    padding: 20px;
    color: #f2f2d3;
    font-size: 12px;
  }

  .mobile-info div {
    padding: 20px 0;
    display: flex;
    align-items: center;
  }
  
  .mobile-info div i {
      padding-right: 10px;
  }

  nav {
    position: fixed;
    height: 100vh;
    right: 0;
    top: 0;
    width: 0;
    background: #1a1a1af7;
    padding: 50px 0;
    transition: 0.5s;
  }

  .mobile.button .fa {
    font-size: 30px;
    color: #f2f2f2;
  }

  nav .mobile.button {
    text-align: end;
    padding: 0 20px;
  }

  nav ul {
    height: auto;
  }

  .nav-link {
    width: 100%;
    padding: 10px 0;
  }
}
