* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
}
body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
}


.preload {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* .animation_active_left {
    left: 85px;
}
.animation_active_right {
    right: 85px;
} */
.symbolBox {
    text-align: right;
    margin-right: 20px;
    position: relative;
    z-index: 999;
    background-color: white;
}
.textBox {
    position: relative;
    z-index: 1;
}

.paused {
    animation-play-state: paused;
  }

.symbolBoxAnimation {
    position: relative;
    animation-name: symbolBox;
    animation-direction:normal;
    animation-duration: 1s;
    animation-timing-function:ease;
     
}

.textBoxAnimation {
    position: relative;
    animation-name: textBox;
    animation-direction:normal;
    animation-duration: 1s;
    animation-timing-function:ease;
}
.preloadAnimation {
    position: relative;
    animation-name: preloadBox;
    animation-direction:normal;
    animation-duration: 1s;
    animation-timing-function:ease;
}

@keyframes preloadBox {
    from {
        opacity: 1;
      }
    
      to {
        opacity: 0;
      }
}
  
@keyframes symbolBox {
    from {
        left: 0;
      }
    
      to {
        left: 84px;
      }
}

@keyframes textBox {
    0% {
        right: 0;
      }
      50% {
        opacity: 0;
      }
    
      100% {
        right: 84px;
        opacity: 0;
      }
}



hr {
    margin: 25px 0;
    
}


.secondContent {
    display: none;
    width: 100%;
    height: 100%;
}

.background {
    background: url(../images/bg/backg.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.textContent {
    width: 60%;
    color: #fff;
    text-align: center;
}
.textContent .innerLogo {
    margin-bottom: 60px;
}
.textContent .firstText {
    margin-bottom: 10px;
}
.textContent .secondText {
    margin-bottom: 20px;
}
.textContent h3{
    font-size: 20px;
    font-weight: 600;
}
.textContent h1{
    font-size: 72px;
    font-weight: 800;
}
.textContent p{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.footer {
    display: flex;
    justify-content: space-between;

}
.footer div{
    display: flex;
    font-size: 16px;
    font-weight: 500;
}
.footer div img {
    margin-right: 10px;
    width: 24px;
}
.footer a {
    text-decoration: none;
    color: #fff;
}


@media (min-width: 1025px) and (max-width: 1366px) {

    .background {
        background: url(../images/bg/backgm.jpg) no-repeat center center ; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        height: 100vh;
        width: 100vw;

    }
    .textContent {
        width: 70%;
    }

    .footer div p{
        font-size: 13px;
    }

  }

@media (min-width: 769px) and (max-width: 1024px) {

    .background {
        background: url(../images/bg/backgm.jpg) no-repeat center center ; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        height: 100vh;
        width: 100vw;

    }
    .textContent {
        width: 80%;
    }
    .footer {
        display: flex;
        flex-direction: column;
    }
    .footer div{
        display: block;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 15px;
    }
  }
   

  @media screen and (max-width: 768px) {

    .background {
        background: url(../images/bg/backgm.jpg) no-repeat center center ; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        height: 100vh;
        width: 100vw;

    }

    .textContent {
        width: 80%;
    }
    .textContent .innerLogo {
        margin-bottom: 40px;
    }
    .textContent .firstText {
        margin-bottom: 5px;
    }
    .textContent .secondText {
        margin-bottom: 10px;
    }
    .textContent h3{
        font-size: 18px;
        font-weight: 600;
    }
    .textContent h1{
        font-size: 40px;
        font-weight: 800;
    }
    .textContent p{
        font-size: 15px;
        font-weight: 500;
        line-height: 24px;
    }
    .footer {
        display: flex;
        flex-direction: column;
    }
    .footer div{
        display: block;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 15px;
    }
}
