/* || Loding Screen */

#loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    background-color: #e63946;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 3s ease-out;
    z-index: 1
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(180deg)
    }

    50% {
        transform: rotate(180deg)
    }

    75% {
        transform: rotate(360deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes loader-inner {
    0% {
        height: 0%
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

#myDiv {
    display: none;
}





/* || General CSS */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0px;
    font-family: Montserrat, sans-serif;
    padding: 0px;
    overflow-x: hidden;
}

.container {
    padding-left: 300px;
    padding-right: 300px;

}

.section {
    display: block;
}

@media screen and (max-width: 1024px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


@media screen and (max-width: 880px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* || Landing Page */

.header {

    text-align: center;
    background-image: url(Images/Homepage/Coming_Soon_BG_00133.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.header .header-overlay {
    text-align: center;
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.0);
    background-color: cover;
}

.header .header-overlay .header-text {
    padding: 200px 0px 200px 0px;
    color: snow;
}

.header-text-2 {
    font-size: 50px;
    margin: 0px;
    font-weight: light;
}

.header-text-3 {
    font-size: 20px;
    margin: 0px;
    padding-top: 80px;
    color: snow;
    font-weight: lighter;
}

.header-btn {
    border: 2px solid white;
    background-color: transparent;
    color: white;
    font-weight: light;
    border-radius: 2px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    width: 200px;
    height: 50px;
    margin-top: 20px;
    margin-right: 10px;
    transition: border 0.7s ease;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
        0 6.7px 5.3px rgba(0, 0, 0, 0.048),
        0 12.5px 10px rgba(0, 0, 0, 0.06),
        0 22.3px 17.9px rgba(0, 0, 0, 0.072),
        0 41.8px 33.4px rgba(0, 0, 0, 0.086),
        0 100px 80px rgba(0, 0, 0, 0.12);
}

.header-btn:hover {
    background-color: snow;
    border: 2px solid snow;
    border-radius: 2px;
    color: rgb(230,57,70);
    font-weight: bold;
    transition: border 0.7s ease;
    transition: background-color 0.7s ease;
    transition: border 0.7s ease-out;
    transition: background-color 0.7s ease-out;
    
}

.header-row {
    display: flex;
}

.header-column {
    flex: 50%;
    padding: 10px;
}

#countdown {
    font-size: 25px;
    margin-top: 0px;
    color: snow;
     position: relative;
    


}
li {
  display: inline-block;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;

}

li span {
  display: block;
  font-size: 4.5rem;
    text-align: center;
}

.logo {
    display: inline-block;
    width: 300px;
    text-align: center;
    padding-top: 150px;
    
}

@media screen and (max-width: 880px) {
    .header-btn {
    
    text-align: center;
    margin: 0.2em auto;
    width: 130px;
    height: 50px;
    }
}

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

    .header-text-1,
    .header-text-3 {
        padding: 15px;
        font-size: 20px;
        text-align:  center;
    }
}

@media screen and (max-width: 880px) {
.header .header-overlay
    .header-text {
        
        padding: 120px 0px 120px 0px;

        
        
    }


@media screen and (max-width: 880px) {
    .header-text-2 {
        font-size: 40px;

    }
}

@media screen and (max-width: 880px) {
    
    .logo {
    display: inline-block;
    width: 200px;
    text-align: center;
        padding-top: 30px
    }
}
@media all and (max-width: 880px) { 

    #countdown {
        text-align: center;
        right: 5%;
        
    }
    
  li {
    font-size: 10px;
    padding: .75rem;
  }
  
  li span {
    font-size: 40px;
  }
}
    
