body,
html {
    font-family: 'Poppins', sans-serif;
    height: 100vh !important;
    color: #fff;
    overflow: hidden !important;
}

li {
    list-style: none;
}

ul {
    padding: initial;
}

a {
    color: initial;
    text-decoration: none;
}

a:hover {
    color: initial;
    text-decoration: none;
}

a:visited {
    color: initial;
    text-decoration: none;
}

a:active,
a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}

sup {
    top: -.5em;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.clear {
    clear: both;
}

#loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999999999999999;
    background-color: #000;
}

#loader .loader {
    display: inline-block;
    width: 120px;
    height: 120px;
    position: absolute;
    z-index: 3;
    /*border: 4px solid #Fff;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*animation: loader 2s infinite ease;*/
}

#loader .loader svg {
    width: 100%;
    height: 100%;
}

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

@keyframes loader {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

#pre-loader {
    position: absolute;
    width: 100%;
    z-index: 60;
    height: 0px;
    background-color: #fff;
    left: 0;
    top: 57%;
    transform: translate(0, -50%);
    text-align: center;
}

#pre-loader-child {
    position: absolute;
    z-index: 61;
    width: 0px;
    height: 0%;
    background-color: #017a3e;
    left: 0;
}

#pre-loader-number {
    position: absolute;
    z-index: 61;
    top: calc(60% + 15px);
    font-size: 15px;
    left: 50%;
    transform: translate(-50%, 0);
}

.container-fluid,
.row,
.col,
.effect {
    height: 100vh;
    padding: 0;
    position: relative;
}

.row .effect {
    transform: scaleX(1);
    z-index: unset;
    transition: 0.75s all;
}

.row .effect.animate {
    transform: scaleX(1.25);
    z-index: 31
}

.bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 1s all;
}

.bg.animate {
    background-image: unset !important;
}

.dark-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 31;
    background-color: rgba(0, 0, 0, .7);
    transition: .3s all;
}

.dark-bg.animate {
    background-color: transparent;
}

.logo {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 147px;
    height: 135px;
    z-index: 69;
    transition: 1s all;
}

.button {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    z-index: 69;
}

.button a {
    background-color: transparent;
    border: 1px solid #c1ab5c;
    border-radius: 20px;
    padding: 10px 35px;
    outline: none;
    color: #c1ab5c;
}

.hard-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -31;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hard-bg.animate {
    z-index: 65;
}

.hard-dark-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -31;
    background-color: rgba(0, 0, 0, 1);
    transition: .3s all;
    transition: .5s all;
}

.hard-dark-bg.animate {
    z-index: 66;
    background-color: rgba(0, 0, 0, .5);
}

.col.animate {
    outline: 1px solid #c1ab5c;
    outline-offset: -30px;
}