:root{
    --header-height: 120px;
    --main-color: #3AC509;
    --max-width: 1300px;
    --half-space: 50px;
    --bg-color1: #000000;
    --bg-color2: #111111;
    --script-color1: rgb(141,141,139);
    --script-color2: #FFFFFF;
    --header-color: rgba(100, 100, 100, 0.8);
}

html {
    scroll-behavior: smooth;
    scroll-padding: var(--header-height);
}

body{
    margin: 0;
    font-family: 'Obvia';
}

.d-none{
    display: none !important;
}

.top{
    margin-top: var(--header-height);
    background-color: var(--bg-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 80%;
    min-height: 400px;
}

.welcome{
    color: var(--main-color);
    position: absolute;
    top: 10%;
    left: 5%;
    letter-spacing: 4px;
}

.logo-top{
    background-color: var(--bg-color1);
    width: 70%;
    animation: logomove 1s  20ms;
}

.call-to-action{
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    padding-bottom: 20px;
    background-color: var(--bg-color1);
}

.call-to-action a{
    height: 100px;
}

.arrow-color{
    fill: var(--main-color);
}

.section-title{
    text-transform: uppercase;
    font-size: 46px;
    margin-block-start: 0;
    margin-block-end: 40px;
}

#arrowAnim {
    width: 30px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg) scale(0.2);
  }
  
  .arrow {
    width: 100px;
    height: 100px;
    border: 50px solid;
    border-color: var(--main-color) transparent transparent var(--main-color);
    transform: rotate(-45deg);
  }
  
  
  .arrowSliding {
    position: absolute;
    -webkit-animation: slide 4s linear infinite; 
            animation: slide 4s linear infinite;
  }
  
  .delay1 {
    -webkit-animation-delay: 1s; 
      animation-delay: 1s;
  }
  .delay2 {
    -webkit-animation-delay: 2s; 
      animation-delay: 2s;
  }
  .delay3 {
    -webkit-animation-delay: 3s; 
      animation-delay: 3s;
  }

  @-webkit-keyframes slide {
    0% { opacity:0; transform: translateX(300px); }  
   20% { opacity:1; transform: translateX(180px); } 
   80% { opacity:1; transform: translateX(-180px); }  
  100% { opacity:0; transform: translateX(-300x); } 
}
@keyframes slide {
    0% { opacity:0; transform: translateX(300px); }  
   20% { opacity:1; transform: translateX(180px); } 
   80% { opacity:1; transform: translateX(-180px); }  
  100% { opacity:0; transform: translateX(-300px); } 
}


@media (max-width: 1000px){
    .welcome{
        font-size: 24px;
    }
}

@media(max-width: 400px){
    .section-title{
        font-size: 40px;
    }
    #arrowAnim{
        transform: rotate(-90deg) scale(0.15);
    }

}

@media(max-width: 350px){
    .section-title{
        font-size: 28px;
    }
}


@keyframes logomove{
    from{right: 0;}
}