﻿html, body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: "Quicksand", sans-serif;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease-in-out;
}
a:hover {
  color: #fff;
}

.title {
  display: flex;
}
.title > span {
  flex-grow: 1;
}
.title + .content {
  margin-top: 50px;
}

.icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  color: #fff;
  opacity: 0.8;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.icon > svg {
  fill: #fff;
}
.icon:hover {
  opacity: 1;
}

#bg {
  --bg-image: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  transform: scale(1);
}
#bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home {
  color: #fff;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 75px;
}
.home .color-black {
  color: #000;
}
.home:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 400px;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgb(33, 37, 41) 0%, rgb(33, 37, 41) 20%, rgba(33, 37, 41, 0) 100%);
  pointer-events: none;
  z-index: -2;
}
.home:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(33, 37, 41, 0.3);
  pointer-events: none;
  z-index: -1;
}
.home .content {
  padding: 100px;
}

.nav-pages {
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  gap: 60px;
  flex-wrap: wrap;
}
.nav-pages .nav-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.25s ease-in-out;
}
.nav-pages .nav-page .nav-img {
  background-repeat: no-repeat;
  background-size: cover;
  border: solid 2px #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  box-shadow: 0 0 5px #000;
  transition: all 0.25s ease-in-out;
}
.nav-pages .nav-page .nav-txt {
  text-shadow: 0 0 5px #000;
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  padding-bottom: 10px;
}
.nav-pages .nav-page:hover {
  transform: scale(1.1);
}
.nav-pages.color-black .nav-img {
  box-shadow: 0 0 5px #fff;
  border-color: #000;
}
.nav-pages.color-black .nav-txt {
  text-shadow: 0 0 5px #fff;
  color: #000;
}

.page {
  color: #fff;
  min-height: 100%;
  background-color: rgb(33, 37, 41);
}

.navbar-brand {
  flex-grow: 1;
  color: #fff;
}
.navbar-brand:hover {
  transform: scale(1.1);
  color: #fff;
}

.navbar > .container {
  justify-content: normal;
}

.navbar-lang {
  flex: 0 0 28px;
}

.navbar-toggler {
  border: 0;
  width: 34px;
  padding: 0;
  opacity: 0.8;
  padding-left: 10px;
}
.navbar-toggler > svg {
  fill: #fff;
}
.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-bottom: 30px;
  }
  .navbar-nav .nav-item > a {
    display: flex;
    align-items: center;
  }
  .navbar-nav .nav-item > a .img {
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.25s ease-in-out;
  }
  .navbar-nav .nav-item > a .txt {
    margin-left: 15px;
    font-size: 1.2rem;
  }
  .navbar-nav .nav-item + .nav-item {
    margin-top: 5px;
  }
  .navbar-nav .nav-item.active .txt {
    font-weight: 500;
  }
  .home .content {
    padding: 20px;
  }
  .nav-pages {
    margin: 30px auto 0;
  }
}
@media (min-width: 992px) {
  .navbar-nav .nav-item {
    margin-left: 15px;
  }
  .navbar-nav .nav-item > a {
    display: flex;
    transition: all 0.25s ease-in-out;
    opacity: 1;
  }
  .navbar-nav .nav-item > a .txt {
    display: none;
    transition: all 0.25s ease-in-out;
  }
  .navbar-nav .nav-item > a .img {
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.25s ease-in-out;
  }
  .navbar-nav .nav-item > a:hover {
    opacity: 1;
  }
  .navbar-nav .nav-item > a:hover .img {
    transform: scale(1.5);
  }
  .navbar-nav .nav-item.active > a {
    opacity: 1;
  }
  .navbar-nav .nav-item.active > a .img {
    transform: scale(1.2);
  }
  .navbar-nav .nav-item.active > a:hover .img {
    transform: scale(1.5);
  }
  .navbar-brand {
    order: 0;
    flex-grow: 0;
  }
  .navbar-toggler {
    order: 1;
  }
  .navbar-collapse {
    order: 2;
  }
  .navbar-lang {
    order: 3;
  }
}
