* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  background-position: center center;
  background-size: cover;
  user-select: none;
  outline-color: tomato;
  font-family: "Acme", sans-serif;
  font-family: "Kavoon", cursive;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-family: "Ubuntu", sans-serif;
}
body {
  overflow-x: hidden;
  background: #100028;
  color: snow;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  width: 100%;
  object-fit: cover;
}
hr {
  border-color: #20182d !important;
}
::-webkit-scrollbar {
  width: 0.5rem;
}
::-webkit-scrollbar-thumb {
  background-color: royalblue;
  border-radius: 1rem;
}
::-webkit-scrollbar-track {
  background-color: #616161;
}
details:hover[open] {
  background-color: transparent !important;
}
/*! laoding */
.loadingContainer.hidden {
  display: none;
}
.loadingContainer .loading {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: transparent;
  border: 5px solid royalblue;
  border-right: 3px solid transparent;
  animation: loading 1s linear infinite;
}
@keyframes loading {
  from {
    filter: hue-rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
    transform: rotate(360deg);
  }
}
/*! mobile Nav  */
#mobileNav {
  animation: mobileNav 0.3s ease-in-out forwards;
}
#mobileNav.active {
  display: flex;
}
@keyframes mobileNav {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
/*! desktop Nav  */

.navItem {
  position: relative;
}
.navItem span {
  transition: width 0.4s ease-out;
}
.navItem > span:nth-child(1) {
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 2px;
  background-color: aqua;
  width: 0%;
}

.navItem > span:nth-child(2) {
  position: absolute;
  right: 50%;
  bottom: -2px;
  height: 2px;
  background-color: aqua;
  width: 0%;
}
.navItem:hover span:nth-child(1),
.navItem:hover span:nth-child(2) {
  width: 50%;
}
/*! header Swiper  */

.swiper-pagination {
  position: absolute;
  bottom: 4rem !important;
  left: -35% !important;
}
@media screen and (max-width: 660px) {
  .swiper-pagination {
    left: -20% !important;
  }
}
.swiper-pagination-bullet {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: bold;
  margin: 0 2rem;
  width: 4rem !important;
  height: 2rem !important;
  background-color: transparent !important;
  border-bottom: 0.15rem solid white !important;
  border-radius: 0 !important;
}
.swiper-pagination-bullet-active {
  border-bottom: 0.15rem solid white !important;
  opacity: 1;
}
.header_button {
  width: 14rem;
  height: 3.4rem;
  position: relative;
}
.header_button > div {
  position: absolute;
  background: transparent;
  transition: height 0.5s ease-out, width 0.7s ease-out;
}
.header_button > div:nth-child(1) {
  bottom: 0;
  right: 0;
  width: 20%;
  height: 60%;
  border-right: 2px solid aqua;
  border-bottom: 2px solid aqua;
}
.header_button:hover div:nth-child(1) {
  width: 100%;
  height: 100%;
}

.header_button > div:nth-child(2) {
  top: 0;
  left: 0;
  width: 20%;
  height: 60%;
  border-left: 2px solid aqua;
  border-top: 2px solid aqua;
}
.header_button:hover div:nth-child(2) {
  width: 100%;
  height: 100%;
}
/*! portfolio */
.overlay {
  bottom: -100% !important;
  transition: all 0.4s ease-out;
}
.portfolio_item:hover .overlay {
  bottom: 0% !important;
}
/*?statistics_desktop  */
@media screen and (min-width: 1150px) {
  .statistics_mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 1150px) {
  .statistics_desktop {
    display: none !important;
  }
}
.statistics_desktop {
  position: relative;
}
.statistics_desktop div.one {
  width: 45%;
  height: 90vh;
  border-right: 2px solid #2b2730;
  border-bottom: 2px solid #2b2730;
  transform: rotate(45deg);
  position: absolute;
  top: -30%;
  left: 20%;
}
.statistics_desktop div.two {
  width: 45%;
  height: 90vh;
  border-right: 2px solid #2b2730;
  border-bottom: 2px solid #2b2730;
  transform: rotate(45deg);
  position: absolute;
  top: -5%;
  left: 38%;
}
.statistics_desktop div.three {
  width: 45%;
  height: 90vh;
  border-left: 2px solid #2b2730;
  border-top: 2px solid #2b2730;
  transform: rotate(45deg);
  position: absolute;
  bottom: -38%;
  right: 18%;
}
.statistics_desktop div.four {
  width: 45%;
  height: 90vh;
  border-left: 2px solid #2b2730;
  border-top: 2px solid #2b2730;
  transform: rotate(45deg);
  position: absolute;
  bottom: -15%;
  right: 36%;
}
.statistics_desktop_item {
  width: 14rem;
  height: 14rem;
}

/*! our theam */

.team_item .overlay {
  bottom: -100% !important;
  background: linear-gradient(to bottom, transparent, #000000e0);
}
.team_item:hover .overlay {
  bottom: 0 !important;
}
/*todo blog swiper */
#blog {
  min-height: 26rem;
}
#blog .swiper-slide:hover .blog_pic {
  display: block !important;
  z-index: -1;
}

#blog .swiper-pagination {
  position: absolute;
  bottom: 0 !important;
  left: 0% !important;
}
#blog .swiper-pagination-bullet {
  width: 1rem !important;
  height: 1rem !important;
  background-color: royalblue !important;
  border-radius: 50% !important;
}
