.header {
  background-color: var(--color-Primary1);
}
.top-par {
  padding: 10px 0;
}
.top-par .main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.element ul {
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: space-between;
}

.element ul li a {
  display: flex;
  font-size: 24px;
  align-items: center;
  position: relative;
  gap: 5px;
  transition: all 0.3s linear;
  color: var(--color-white);
}

.element ul li a i {
  font-size: 18px;
}

.element ul li a::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/logo1.png);
  top: -15px;
  left: -22px;
  opacity: 0;
  background-size: contain;
}
.logo {
  width: 140px;
}

.btns-nav a:hover {
  border-color: var(--color-white);
  background-color: transparent;
}
.element ul li a:hover {
  color: var(--color-Primary3);
}
.element ul li a:hover::after {
  opacity: 1;
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.btns-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btns-nav a {
  display: inline-block;
  height: 45px;
  text-align: center;
  padding: 5px 25px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--color-white);
}

.btn-1 {
  background-color: var(--color-Primary3);
}
.btn-2 {
  background-color: var(--color-Primary2);
}
