a,
a:hover {
    outline: 0
}

.reveal .parent,
body,
html,
main#main {
    overflow: hidden
}

.home-sec,
body,
html {
    height: 100%;
    width: 100%
}

.btn-a,
.btn-c,
.cookiePolicy,
.home-content,
.home-sec,
.home-sec-1 {
    text-align: center
}

.btn-a,
.btn-c,
a {
    text-decoration: none
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --color-bg: #000000;
    --color-text-w: #ffffff;
    --color-text-b: #000000;
    --color-link: #ffffff;
    --color-link-hover: #b3b3b3
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-w);
    font-family: monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

li {
    list-style: none
}

.list-group-item {
    background-color: transparent;
    border: 0
}

ul {
    padding-left: 0;
    margin-bottom: 0
}

a {
    color: var(--color-link);
    cursor: pointer
}

a:hover {
    color: var(--color-link-hover)
}

body {
    padding: 0;
    margin: 0;
    overflow-x: overlay;
    position: relative;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    overflow: hidden;
    z-index: 100;
}

.preloader .text-container {
    display: flex;
    flex-direction: row;
    gap: 1em;
    overflow: hidden;
    color: white;
    opacity: 0;
}

.waves {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.home-sec {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 4;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.blsh {
    transform: scale(1.9)
}

.home-content {
    height: 150px;
    max-width: 600px;
    padding-top: 45px;
    margin: 0 auto
}

.home-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-w);
    cursor: none;
}

/* .cookie-wrapper{
  position: relative;
  background-color: aqua;
} */

.cookiePolicy {
    box-sizing: border-box;
    position: absolute;
    z-index: 5;
    bottom: 12px;
    left: 12px;
    width: 600px;
    max-height: 200px;
    padding: 15px;
    background-color: var(--color-text-b);
    color: var(--color-text-w);
    font-size: 13px;
    font-weight: 200;
    /* transform: translate3d(0, 36px, 0); */
    transition: .10s linear;
    opacity: 0;
    border-radius: 10px;
    border: 1px solid var(--color-text-w) ; 
    box-shadow: 6px 6px 26px 10px rgba(40, 40, 40, 0.2);  
    text-align: justify;
    
}

.cookiePolicy.is-active {
    /* transform: translate3d(0, 0, 0); */
    opacity: 1
}

.btn-a,
.btn-c {
    padding: 5px 22px;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid var(--color-text-w);
    color: var(--color-text-w)
}

.btn-a:hover,
.btn-c:hover {
    background-color: #b3b3b3;
    color: var(--color-text-w)
}

.btn-div {
    float: right;
    margin-top: 15px
}

.footer {
    width: 100vw
}

.footer-inner {
    padding: 0 50px;
    width: 100vw;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    color: var(--color-text-w);
    z-index: 1;
    position: absolute;
    bottom: 30px
}

.footer-inner p {
    font-size: 14px;
    font-weight: 500
}

.footer-inner img {
    transform: scale(.6)
}

@media (max-width:767.98px) {
    .blsh {
        transform: scale(1)
    }

    .home-content {
        padding: 30px 10px 0
    }

    .footer-inner {
        padding: 0 10px
    }

    main#main #loader h1 span {
        transform: scale(.9)
    }

    .cookiePolicy {
        width: 300px;
        
    }
}