/*
==========================================
   SANDworks LLC stylesheet for web
==========================================
*/

html, body{ 
    font-family: "Segoe UI", Helvetica, Arial, sans-serif; 
    background-color: #000000;
    line-height: 1.0; 
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
}


.mainCont{ 
    background: #000000; 
}


.logoFadeIn{
  position: relative;
}

.logoBG{
    opacity: 0;
    animation: 
        slowPan 60s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite,
        fadeIN 1.5s ease-in 2.0s forwards;
}

.logoMSK{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.TXTcompany{
    opacity: 0; 
    animation: fadeIN 0.5s ease-in 0s forwards;
}

.BLUline{
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #00142d, #58a6ff);
    border-radius: 2px;
    transform-origin: left;

    transform: scaleX(0); 

    animation-name: revealRT;
    animation-duration: .75s;
    animation-timing-function: linear;
    animation-delay: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.TXTmission{
    opacity: 0; 
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: fadeIN 0.5s ease-in 1.25s forwards;
}

.TXTcontact{
    opacity: 0; 
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: fadeIN 1.5s ease-in 2.0s forwards;
}

@keyframes fadeIN{
    to{ opacity: 1; }
}

@keyframes slowPan {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-15%);
  }
  75% {
    transform: translateX(15%);
  }
}

@keyframes revealRT{
    0%{
      transform: scaleX(0); 
    }
    100%{
      transform: scaleX(1); 
    }
}
