header {
  position: fixed;
  z-index: 1000;
  padding: 5px 10px;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.2s linear;
}
header a{
    color:unset;
}
.background {
  background-color: #111214;
}
.header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
header .logo img{
    width:34px;
}
header .main-menu {
  background-color: #111214;
  position: absolute;
  inset: 0;
  z-index: 50;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transform: translateX(100%);
  transition: all 0.3s linear;
}
header .main-menu .dropdown-item .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111214;
  position: relative;
  z-index: 30;
}
header .main-menu .dropdown-item .icon {
  width: 100%;
  cursor: pointer;
  text-align: left;
  height: 100%;
  color: #d7d8d9;
  position: relative;
  padding: 10px 0;
}
header .main-menu .dropdown-item .icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
header .main-menu .dropdown-menu-item {
  list-style: none;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.2s linear, height 0.2s ease;
  transition-behavior: allow-discrete;
  padding-right: 3rem !important;
}
header .main-menu .dropdown-menu-item li a {
  font-size: 18px;
}
header .main-menu .dropdown-menu-item.open {
  transform: translateY(0);
  opacity: 1;
  height: auto;
  visibility: visible;
}
header .main-menu .row {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
header .main-menu .row .list-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0;
}
header .main-menu ul.list-items {
  overflow-y: scroll;
}
header .main-menu ul.list-items::-webkit-scrollbar {
  display: none;
}
header .main-menu ul.list-items {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.rotate{
  rotate: 180deg;
}
header .main-menu ul li a {
  text-decoration: none;
  color: #d7d8d9;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0;
  display: block;
}
header .main-menu ul li:hover a {
  color: #ffffff;
}
header .main-menu ul li {
  width: 100%;
  position: relative;
  padding-right: 2rem;
  border-right: #393c43 2px solid;
}
header .main-menu ul li:hover {
  color: #ffffff;
}
header .main-menu ul li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background-color: #2563eb;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

header .main-menu ul li:hover::after {
  opacity: 1;
}
header .button-menu,
header .email-container a{
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  background-color: #393c43;
  font-weight: 700;
  cursor: pointer;
}
header .container-square {
  transform: rotate(45deg);
}
header .inside-square {
  display: flex;
}
header .button-menu span {
  margin-right: 5px;
  color: #ffffff;
  font-size: 13px;
}
header .inside-square div {
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  margin: 1.5px;
  border-radius: 1px;
}
.email-container i {
  color: #ffffff;
  font-size: 22px;
}
header .email-container span {
  margin-left: 5px;
  color: #ffffff;
  font-size: 13px;
}
header .social-media {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #d7d8d9;
  z-index:150;
}
header .social-media div {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}
header .social-media div:last-of-type {
  margin-top: 20px;
  margin-bottom: 5px;
}
header .social-media div i:hover {
  color: #ffffff;
}
.active {
  transform: translateX(0) !important;
}
header .text {
  color: #ffffff;
  margin-bottom: 2rem;
}
header .address {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  color: #ffffff;
}
header .address div:first-of-type {
  margin-left: 3rem;
}
header .address div i {
  font-size: 17px;
  margin-bottom: 10px;
}
header .address div .title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
header .address div .body p {
  font-size: 15px;
  margin-bottom: 0;
  color: #d7d8d9;
}
header .links {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 5px;
}
header .links a {
  text-decoration: underline;
  color: #d7d8d9;
}
header .links span {
  display: inline-block;
  margin: 0 5px;
  color: #d7d8d9;
}
@media (min-width: 992px) {
  header .container-square {
    transform: rotate(0);
  }
  header .button-menu,
  header .email-container a{
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #393c43;
    font-weight: 700;
  }
  header .inside-square div {
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    margin: 2px;
    border-radius: 2px;
  }
  header .main-menu ul {
    padding-right: 8rem !important;
  }
  header .main-menu ul li {
    padding-right: 1rem;
  }
  header .main-menu .dropdown-item .icon i {
    left: 2rem;
  }
  header .main-menu ul li a {
    font-size: 25px;
    font-weight: 700;
  }
  header .main-menu ul li::before {
    all: unset;
  }
  header .social-media {
    display: flex;
    align-items: center;
  }
  header .social-media div {
    display: block;
  }
  header .social-media div:last-of-type {
    margin-bottom: 0;
    margin-top: 0;
  }
  header .social-media div i {
    margin: 10px 5px;
  }
  header .social-media {
    right: unset;
    width: unset;
  }
}
