ul {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0px;
  background-color: #E30613;
  width: 100%;
  z-index: 1000;
}

#nav .container {
  max-width: 65rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: initial;
}

.logo-container img {
}

.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 2;
}

.logo {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span {
  font-weight: 300;
}

.logo-s {
  max-width: 120px;
}

@media (min-width: 992px) {
  .logo-s {
    max-width: 150px;
  }
}

@media (max-width: 400px) {
  .logo-s {
    visibility: hidden;
  }
}

.nav-links > ul {
  display: flex;
  justify-content: right;
  /*align-items: center;*/
  margin-top: 2.5%;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  /*line-height: 3rem;*/
  color: #fff;
  padding: 1rem;
  /*letter-spacing: 1px;*/
  font-size: 1 rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
  margin: 0px 10px 0px 0px;
}

.nav-link > a > i {
  margin-left: .2rem;
}

.nav-link:hover > a {
  transform: scale(1.1);
  background-color: #D32F2F;
}

.active {
  transform: scale(1.1) !important;
  background-color: #D32F2F !important;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before, .hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }
}

@media (max-width: 920px) {
  #check {
    display: block;
  }
}

@media (max-width: 920px) {
  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    background-color: #D32F2F;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: .65s;
  }
}

@media (max-width: 920px) {
  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }
}

@media (max-width: 920px) {
  #check:checked ~ .nav-btn .nav-link, #check:checked ~ .nav-btn .log-sign {
    animation: animation .5s ease forwards var(--i);
  }
}

@media (max-width: 920px) {
  .nav-links {
    flex: initial;
    width: 100%;
  }
}

@media (max-width: 920px) {
  .nav-links > ul {
    flex-direction: column;
  }
}

@media (max-width: 920px) {
  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }
}

@media (max-width: 920px) {
  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }
}

@media (max-width: 920px) {
  .nav-link:hover > a {
    transform: scale(1);
    background-color: #E30613;
  }
}

@media (max-width: 920px) {
  .nav-link:hover > .dropdown, .dropdown-link:hover > .dropdown {
    display: block;
  }
}

@media (max-width: 920px) {
  .nav-link:hover > a > i, .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }
}

@media (max-width: 920px) {
  .arrow {
    z-index: 1;
    background-color: #69bde7;
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: .5s;
  }
}

@media (max-width: 920px) {
  .nav-link:hover .arrow {
    background-color: #50a9d6;
  }
}

@media (max-width: 920px) {
  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .7s;
  }
}

