@font-face {
  font-family: "gandom";
  src: local("gandom"), url("../Gandom.woff") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "mohr";
  src: local("mohr"), url("../MohrRounded-Bold.woff") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  background-color: #fff;
  overflow-x: hidden;
  font-family: "gandom";
}

body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

#animation {
  backface-visibility: hidden;
  /* perspective: 1000px; */
  width: 100%;
  height: 100%;
  will-change: transform;
  transform: translateZ(0) !important;
}

@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance:none) {
    /* Safari-specific styles */
    #animation {
      transform: scale(0.99) !important; /* Slight scaling forces hardware acceleration */
    }
  }
}


.buttonContainer {
  width: 100%;
  height: max-content;
  position: fixed;
  bottom: 20px;
}

.buttonContainer button {
  position: absolute;
  bottom: 0;
}

.indicator {
    position: fixed;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    bottom: 10%;
    left: 50%;
    display: none;
}
.socialAddress a {
    font-family :"mohr";
    color: #01620c;
    display: flex;
    flex-direction: row;
    gap: 2px;
}
.indicator span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  animation: animate 1s linear infinite;
}

.indicator span:nth-child(1) {
  top: -30px;
  left: -30px;
  animation-delay: 0s;
}

.indicator span:nth-child(2) {
  top: -15px;
  left: -15px;
  animation-delay: 0.2s;
}

.indicator span:nth-child(3) {
  top: 0;
  left: 0;
  animation-delay: 0.4s;
}

.indicator span:nth-child(4) {
  top: 15px;
  left: 15px;
  animation-delay: 0.6s;
}

.indicator span:nth-child(5) {
  top: 30px;
  left: 30px;
  animation-delay: 0.8s;
}

@keyframes animate {
  0% {
    border-color: #5aae67;
    transform: translate(0, 0);
  }

  20% {
    border-color: #006e11;
    transform: translate(15px, 15px);
  }

  20.1%,
  100% {
    border-color: #006e11;
  }
}



/* preloader */
.preloader{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #939393;
  z-index: 999999;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  gap: 10%;
}


.preloader img{
  width: 45%;
}

.loadingDots{
  max-width: 45px;
}


.preloadText{
  display: flex;
  direction: rtl;
  align-items: center;
  gap: 10px;
  color: #01620c;
}

.socialAddress{
  position: fixed;
  color: #01620c;
  bottom: 20%;
  left: 33%;
  z-index: 1000000;
  align-items: start;
  gap: 5px;
  display: none;
  text-decoration: none;
      flex-direction: column;

}

.socialAddress img{
  max-width: 25px;
}


#scrollRightButton, #scrollLeftButton {
      position: fixed;
      bottom: 1%;
      z-index: 1000;
      padding: 10px;
      cursor: pointer;
    background-repeat: no-repeat;
        width: 30px;
    height: 30px;
    background:url(../arrow.png);
        background-size: contain;
                background-repeat: no-repeat;


}
#scrollLeftButton {
left: 30%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

#scrollRightButton {
      right: 30%;
}

@media screen and (min-width: 480px) {
  .preloader {
    max-width: 480px;
    left: 37%;
  }
  
  body,
  html {
    max-width: 468px;
    position: relative;
    left: 30%;
  }

  .socialAddress {
    left: 10%;
  }
}

.video-motion{
    position: fixed;
    top: 0;
    display:none;
   background: #fff;
}
.video-motion #introVideo {
    width: 45%;
}
@media screen and (max-width: 768px) {

    .video-motion #introVideo {
        width: 93%;
        position: relative;
        left: 13px;
    }
}