/*button css*/

.btn-one {
  background-color: #bfef4b;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.btn-one:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 101%;
  height: 100%;
  background-color: #806bff;
  z-index: -1;
  transition: transform 0.4s ease-out;
  transform: translateX(-100%);
}

.btn-one:hover:before {
  transform: translateX(0);
}

.btn-one:hover {
  cursor: pointer;
  color: #fff;
}

.cor1 {
  color: #806bff;
}

.cor2 {
  color: #bfef4b;
}

.single-service span {
  position: absolute;
  right: 30px;
  top: 30px;
  font-weight: 700;
  font-size: 50px;
  -webkit-text-stroke: 2px #000;
  -webkit-text-fill-color: transparent;
  opacity: 0.07;
  line-height: 1;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.single-service:hover span {
  -webkit-text-stroke: 1px #806bff;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}

.sticky {
  position: fixed !important;
  width: 97%;
  left: 0;
  top: 0;
  z-index: 99;
  border-top: 0;
  background-color: #00262c !important;
  padding: 10px 0px;
  border-bottom: none;
  box-shadow: 0 10px 30px -10px rgb(0 64 128 / 20%);
}

@media screen and (min-width: 992px) {
  .sticky {
    width: 100%;
  }
}

.navbar.fixed {
  position: absolute;
  background-color: #00262c;
}

.img-box .one {
  width: 80%;
  transform: rotate(45deg);
}

.img-box .two {
  position: absolute;
  top: -7%;
  right: 20%;
  width: 80%;
  border-radius: 8px;
  animation: alltuchtopdown 5s infinite linear;
}

.banner img {
  animation: leftToRight 5s infinite linear;
}

.footer-menu li a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: #e4e4e4;
  display: inline-block;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.footer-menu li a:hover {
  color: #806bff;
  padding-left: 15px;
}

.footer-menu li a:before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -20px;
  height: 10px;
  width: 10px;
  background-color: #806bff;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.footer-menu li a:hover:before {
  left: 0;
  visibility: visible;
  opacity: 1;
}

.subscribe-cnt .newsletter {
  -webkit-text-stroke: 1px #5f5f5f;
  -webkit-text-fill-color: transparent;
}

.protflio .button {
  background-color: #00262c;
  color: #fff;
  padding: 10px 24px;
  font-size: 18px;
  border-radius: 6px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: " ";
}

.swiper.testimonial-slider .swiper-slide {
  opacity: 0.4;
}

.swiper.testimonial-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.member-img {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.member-img .team-social {
  opacity: 0;
}

.single-team:hover .member-img .team-social {
  opacity: 1;
}

.member-img .team-social li a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #0f1012;
  border-radius: 50%;
  font-size: 14px;
  color: #e4e4e4;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.member-img .team-social li {
  margin: 10px 0;
}

.member-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #191a1c;
  border-radius: 10px 10px 0 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.single-team:hover .member-img:before {
  visibility: visible;
  opacity: 0.8;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.single-team:hover .inner {
  background-color: #00262c;
  color: #fff;
}

.gridd {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gridd {
  display: flex;
  flex-wrap: wrap;
}

.element-item {
  flex: 0 0 auto;
  width: 33.333333%;
}

.element-item div:first-child {
  margin: 25px 15px;
}

.element-item img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .element-item {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    position: relative !important;
    top: inherit !important;
  }
  #project .button {
    font-size: 14px;
    padding: 6px 12px;
    margin: 4px;
  }
}

@media screen and (max-width: 600px) {
  .element-item {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    position: relative !important;
    top: inherit !important;
  }
  #project .button {
    font-size: 14px;
    padding: 6px 12px;
    margin: 4px;
  }
}

@keyframes alltuchtopdown {
  0% {
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    transform: rotateX(0deg) translateY(-30px);
  }

  100% {
    transform: rotateX(0deg) translateY(0px);
  }
}

@keyframes leftToRight {
  0% {
    transform: rotateX(0deg) translateX(0px);
  }

  50% {
    transform: rotateX(0deg) translateX(50px);
  }

  100% {
    transform: rotateX(0deg) translateX(0px);
  }
}
