::-webkit-scrollbar {
    display: none;
}

#drop a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #a80e0e;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out
}

#drop a:hover::before {
    transform-origin: left;
    transform: scaleX(1)
}

.revealUp {
    opacity: 0;
    visibility: hidden;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border-radius: 50%;
    -webkit-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0)
    }

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

@keyframes spin {
    0% {
        transform: rotate(0)
    }

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

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

.circle {
    position: relative;
    font-family: 'Rubik Mono One', sans-serif;
    font-weight: 900;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center
}

.img-box {
    position: absolute;
    width: 50px;
    height: 50px;
    background-size: cover;
    border-radius: 50%
}

.text-box {
    position: absolute;
    width: 0;
    height: 10;
    animation: circleEffect 20s linear infinite
}

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

    100% {
        transform: rotate(0)
    }
}

.text-box span {
    position: absolute;
    left: -1px;
    top: -50px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    transform-origin: 0 50px;
    color: #c00026
}

@media (min-width: 768px) {
    .circle {
        position: relative;
        font-family: 'Rubik Mono One', sans-serif;
        font-weight: 900;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .img-box {
        position: absolute;
        position: absolute;
        width: 150px;
        height: 150px;
        background-size: cover;
        border-radius: 50%
    }

    .text-box {
        position: absolute;
        width: 100%;
        height: 100%;
        animation: circleEffect 20s linear infinite
    }

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

        100% {
            transform: rotate(0)
        }
    }

    .text-box span {
        position: absolute;
        top: -25px;
        left: 50%;
        font-size: 17px;
        font-weight: 700;
        text-transform: uppercase;
        transform-origin: 0 100px;
        color: #c00026;
        font-weight: 900
    }
}

#social a :hover {
    filter: invert(70%) sepia(69%) saturate(801%) hue-rotate(329deg) brightness(102%) contrast(101%);
    -webkit-filter: invert(70%) sepia(69%) saturate(801%) hue-rotate(329deg) brightness(102%) contrast(101%);
    transition: ease-in-out;
    -webkit-transition: ease-in-out;
    -moz-transition: ease-in-out;
    -ms-transition: ease-in-out;
    -o-transition: ease-in-out;
    transition-duration: .5s
}

#bordernav {
    top: -1px;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -o-transform: scaleY(-1)
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

#imagetop {
    animation: pulse 10s cubic-bezier(.4, 0, .6, 1) infinite;
    -webkit-animation: pulse 10s cubic-bezier(.4, 0, .6, 1) infinite
}

#dsname {
    height: 24px;
}

.link-underline {
    border-bottom-width: 0;
    background-image: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
    background-size: 0 3px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .5s ease-in-out;
}

.link-underline-black {
    background-image: linear-gradient(transparent, transparent), linear-gradient(#F2C, #F2C)
}

.link-underline:hover {
    background-size: 100% 3px;
    background-position: 0 100%
}
