/*----------------------------------
  LineTop
----------------------------------*/
.LineTop {
  z-index: 3;
  position: fixed;
  top: 0;
  width: 100%;
  background: #819597;
}

.LineTop .line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.LineTop .Select-Site {
  width: 270px;
}

.LineTop ul {
  width: calc(100% - 270px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.LineTop ul li {
  width: 25%;
  padding: 5px;
}

.LineTop a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 50px;
  border-radius: 5px;
  padding: 5px;
  background: #d9dede;
}

.LineTop a p {
  font-family: Plasma;
  font-size: 30px;
  font-weight: 100;
}

.LineTop a:hover p {
  opacity: 80%;
}

.LineTop li:nth-child(1) a {
  background: #0466C8;
}

.LineTop li:nth-child(1) a p {
  color: #b1cfed;
}

.LineTop li:nth-child(1) a i {
  font-size: 40px;
  color: white;
  animation-name: animation;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

/*----------------------------------
  LineTop Select-Site
----------------------------------*/
.LineTop .Select-Site {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.LineTop .Select-Site p {
  padding-left: 5px;
}

.LineTop .Select-Site span {
  font-family: javan;
  font-size: 20px;
  font-weight: 100;
  color: #ced6e0;
}

/*----------------------------------
 ریسپانسیو 
----------------------------------*/
@media screen and (max-width: 1151px) {
  .LineTop a p {
    font-size: 28px;
  }
}

@media screen and (max-width: 1023px) {
  .LineTop a p {
    font-size: 26px;
  }

  .LineTop {
    position: static;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .LineTop .Select-Site p {
    display: none;
  }

  .LineTop .Select-Site {
    width: 70px;
  }

  .LineTop ul {
    width: calc(100% - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 799px) {
  .LineTop {
    position: fixed;
    top: 0;
    background: none;
    background-image: linear-gradient(180deg, #b8d6ba, #d2e0e5);
  }

  .LineTop .line {
    padding-top: 3px;
  }

  .LineTop .Select-Site {
    width: 100%;
    order: 2;
  }

  .LineTop ul {
    width: 100%;
    order: 1;
  }

  .LineTop ul li {
    width: 50%;
  }

  .LineTop .Select-Site p {
    display: inline;
  }

  .LineTop .Select-Site span {
    color: #222f3e;
  }
}

@media screen and (max-width: 380px) {
  .LineTop a p {
    font-size: 24px;
  }

  .LineTop a i {
    font-size: 30px;
  }
}

@media screen and (max-width: 380px) {
  .LineTop a p {
    font-size: 24px;
  }

  .LineTop a i {
    font-size: 30px;
  }
}

@media screen and (max-width: 355px) {
  .LineTop li:nth-child(2) a p {
    font-size: 22px;
  }
}

@media screen and (max-width: 330px) {
  .LineTop a p {
    font-size: 21px;
  }
}