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

.palette {
  color: #9cce4a;
  color: #1e2d3b;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 90px;
  background-color: #1e2d3b;
  z-index: 99;
}

header .logo {
  position: absolute;
  max-width: 60%;
  left: 0;
  top: 0;
  background-color: #e8e8e8;
  z-index: 1;
}
header .logo::after {
  position: absolute;
  width: 60px;
  height: 100%;
  left: calc(100% - 30px);
  top: 0;
  content: "";
  background-color: #e8e8e8;
  z-index: -1;

  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
header .menu ul li a {
  font-size: 16px;
  padding: 16px;
  color: #ededed;
}
header .menu ul li a:hover,
header .menu ul li a.active {
  color: #9cce4a;
}

section#home {
  background: url("../images/bg.jpg") no-repeat center / cover;
}

section#contact i {
  position: absolute;
  left: -30px;
  bottom: -30px;
  font-size: 128px;
  color: #f1f1f1;
  z-index: -1;
}

footer {
  background-color: #1e2d3b;
}

.sidebar-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}
.sidebar-overlay .sidebar {
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
  max-width: calc(100% - 60px);
  height: 100%;
  background-color: #1e2d3b;
  overflow: auto;

  -webkit-transform: translateX(100vh);
  transform: translateX(100vh);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.sidebar-overlay .sidebar.opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.sidebar-overlay .sidebar ul li a:hover,
.sidebar-overlay .sidebar ul li a.active {
  color: #9cce4a;
}

.big-title {
  position: relative;
  font-size: 64px;
  font-weight: bold;
  text-shadow: -20px -20px 0 rgba(0, 0, 0, 0.03);
}
.big-title::before {
  position: absolute;
  width: 60px;
  height: 10px;
  top: 100%;
  content: "";
  background-color: #9cce4a;
}

.scroll-down {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 2;
}
.scroll-down i {
  color: #9cce4a;
  -webkit-animation: scrollDown 2.6s ease-in-out infinite;
  animation: scrollDown 2.6s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-66px);
  }
  50% {
    transform: translateY(-27px);
  }
  100% {
    transform: translateY(-66px);
  }
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translateY(-66px);
  }
  50% {
    -webkit-transform: translateY(-27px);
  }
  100% {
    -webkit-transform: translateY(-66px);
  }
}

@media screen and (min-width: 0px) and (max-width: 1279px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .big-title {
    font-size: 46px;
  }
}
