.top-par {
  background-color: var(--color-Primary1);
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
.top-par .main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.soc-media ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.soc-media ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  width: 45px;
  font-size: 16px;
  transition: all 0.3s linear;
  height: 45px;
  border-radius: 50%;
}
.soc-media ul li a:hover {
  background-color: var(--color-white);
  color: var(--color-Primary1);
}
.top-par::after {
  height: 100%;
  width: 50%;
  content: "";
  background-image: url(../images/a.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1;
  left: 0;
  box-shadow: 0 -6px 5px inset #0000001a;
}
.calendar-web {
  display: flex;
  align-items: center;
  gap: 35px;
}
.sub-calendar-web {
  display: flex;
  font-size: 18px;
  align-items: center;
  gap: 10px;
  color: var(--color-gray);
}

.nav-ber {
  display: flex;
  background-color: var(--color-white);
  box-shadow: 0 2px 5px #0000001a;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.nav-ber .main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.element ul {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
}
.logo {
  height: 90px;
  width: 90px;
}

.sub-calendar-web:hover img {
  animation: infinite;
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.sub-calendar-web:hover {
  color: var(--color-Primary1);
}

.element ul li a {
  padding-bottom: 10px;

  position: relative;
}
.element ul li a::after {
  content: "";
  transition: all 0.3s linear;
  width: 100%;
  height: 2px;
  right: 0;
  left: 0;
  transform: scale(0);
  background-color: var(--color-Primary);
  margin: auto;
  bottom: 0;
  position: absolute;
}

.element ul li a:hover::after {
  transform: scale(1);
}
.element ul li a:hover {
  color: var(--color-Primary);
}
.fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
 
            z-index: 1000;
        }