body, html {
    font-family: "Montserrat", sans-serif !important;
    background: #EEEEEE;
    color: #222222;
    font-weight: 300;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-family: "Montserrat", sans-serif !important;
    color: #222222;
}


.fs-09 { font-size: 0.9em; }
.fs-08 { font-size: 0.8em; }
.fs-07 { font-size: 0.7em; }
.fs-06 { font-size: 0.6em; }
.fs-05 { font-size: 0.5em; }

.fs-x2 { font-size: 2em; }
.fs-x3 { font-size: 3em; }
.fs-x4 { font-size: 4em; }
.fs-x5 { font-size: 5em; }

.text-light2 {
	color: #EEEEEE;
}

.padded {
    padding-left: 3vw;
    padding-right: 3vw;
}

.bg-grad {
    background: rgb(2,0,36);
    background: -moz-linear-gradient(127deg, rgba(2,0,36,1) 0%, rgba(43,64,87,1) 100%);
    background: -webkit-linear-gradient(127deg, rgba(2,0,36,1) 0%, rgba(43,64,87,1) 100%);
    background: linear-gradient(127deg, rgba(2,0,36,1) 0%, rgba(43,64,87,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#2b4057",GradientType=1);
}


.monster-text {
    font-size: 10vw;
    text-transform: uppercase;
    font-weight: 900;
}

@media (min-width: 992px) {
    .monster-text {
        font-size: 4vw;
        text-transform: uppercase;
        font-weight: 900;
    }
}

.submonster-text {
    font-size: 9vw;
    text-transform: uppercase;
    font-weight: 700;
}

@media (min-width: 992px) {
    .submonster-text {
        font-size: 4vw;
        text-transform: uppercase;
        font-weight: 700;
    }
}

.nav-link {
    font-size: 1.5em;
    color: #8C8C8C;
    text-transform: uppercase;
}

.big-text {
    font-size: 6vw;
    text-transform: uppercase;
    font-weight: 900;
}

@media (min-width: 992px) {
    .big-text {
        font-size: 2.5vw;
        text-transform: uppercase;
        font-weight: 900;
    }
}

.mid-text {
    font-size: 5vw;
    text-transform: uppercase;
    font-weight: 900;
}

@media (min-width: 992px) {
    .mid-text {
        font-size: 1.5vw;
        text-transform: uppercase;
        font-weight: 900;
    }
}

.RD-bg-text {
    font-family: 'Gugi', sans-serif;
    opacity:0.1;
    font-size: 28vw;
    position: absolute;
    top:0;
    left:-50px;
    font-weight: 900;
}

@media (min-width: 992px) {
    .RD-bg-text {
        font-family: 'Gugi', sans-serif;
        opacity:0.1;
        font-size: 10vw;
        position: absolute;
        top:0;
        left:-50px;
        font-weight: 900;
    }
}

.navbar-brand {
    font-family: 'Gugi', sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 500;
}

.rd-logo {
    font-family: 'Gugi', sans-serif;
    font-weight: 900 !important;
    font-size: 1.85em;
}
@media (min-width: 992px) {
.rd-logo {
    font-family: 'Gugi', sans-serif;
    font-weight: 900 !important;
    font-size: 2em;
}


}

.rd-logo-font {
    font-family: 'Gugi', sans-serif;
}

.marquee {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    grid-column-gap: 1rem;
}
.marquee-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    grid-column-gap: 1rem;
}
.scroll{
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 1rem));
    }
}
@keyframes rscroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(+100% + 1rem));
    }
}
.msmall{
    min-width: fit-content;
}

@keyframes show {
    0% {opacity: 0;}
    20% {opacity: 1;}
    80% {opacity: 1;}
    100% {opacity: 0;}
}

.txtsliderli {
    display: none;
}

.txtsliderli.animate {
    animation: show 3s linear;
    display: inline-block;
}

.btn-animated {
    border: none;
    color: white !important;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.form-switch.form-switch-md {
    padding-right: 5em;
    height: 2.5em;
}

.form-switch.form-switch-md .form-check-input {
    margin-right: -5em;
    height: 2em;
    width: 4em;
}

.form-switch.form-switch-md .form-check-label {
    padding-top: 0.5em;
}

.dud {
    color: #757575;
}



.spinner {
    animation-name: spin;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    /* transform: rotate(3deg); */
    /* transform: rotate(0.3rad);/ */
    /* transform: rotate(3grad); */
    /* transform: rotate(.03turn);  */
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
/*
.imgLogo {
    transition: .1s ease-in-out;
    filter: grayscale(100%);
}

.imgLogo:hover {
    filter: none;
}*/