/* Start Global */
:root {
    --bgColor: #001927;
    --bgColor2: #002132;
    --bgColor3: #0c2e3b;
    --primary-Color: #f44336;
    /*Black*/
    --bgColor: #2a2a2a;
    --bgColor2: #363636;
    --bgColor3: #4a4a4a;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

::selection {
    background-color: var(--primary-Color);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bgColor3);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-Color);
    border-radius: 6px;
}

.container {
    width: 1400px;
    margin: 0 auto;
    /* height: 100%; */
    /* padding-bottom: 5%; */
}

ul {
    list-style: none;
}

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

body {
    background-color: var(--bgColor);
}

/* End Global */

/* Start Header */

header {
    width: 100%;
    margin-bottom: 300px;
}

    header .container .header-bar {
        display: flex;
        justify-content: space-between;
    }

        header .container .header-bar a {
            font-weight: bold;
        }

            header .container .header-bar a:nth-child(1) {
                text-decoration: underline;
                position: relative;
            }

                header .container .header-bar a:nth-child(1):before {
                    content: "HOT";
                    position: absolute;
                    top: 0;
                    right: -10px;
                    font-size: 8px;
                    color: white;
                    background-color: var(--primary-Color);
                    border-radius: 50px;
                    padding: 0 6px;
                    transform: rotate(30deg);
                }

            header .container .header-bar a span {
                color: lime;
            }

        header .container .header-bar div {
            color: white;
            background-color: var(--bgColor3);
            padding: 0 130px;
            clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
        }

    header nav .container {
        display: flex;
        justify-content: center;
        padding: 15px 0;
        background: linear-gradient(to right, transparent,var(--bgColor),var(--bgColor),transparent);
    }

    header ul.navigation a, header li.nav-right a.dropdown-toggle {
        padding: 0 40px;
        border: 2px solid transparent;
        border-color: transparent var(--bgColor3) transparent var(--bgColor3);
        margin: 0 -1px;
    }

    header ul.navigation a {
        display: inline-block;
    }

    header .logo {
        display: block;
        background-image: url(../../images/logo6.png);
        background-size: 120px 100px;
        background-position: center 40%;
        background-repeat: no-repeat;
        width: 180px;
        height: 60px;
    }

    header nav, header nav ul.navigation {
        display: flex;
    }

        header nav ul.navigation li a {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60px;
            font-weight: bold;
            font-size: 16px;
            transition: background-color 0.4s;
            user-select: none;
        }

            header nav ul.navigation li a.hot {
                position: relative;
            }

                header nav ul.navigation li a.hot:before {
                    content: "HOT";
                    position: absolute;
                    right: 0;
                    top: 12px;
                    font-size: 8px;
                    background-color: var(--primary-Color);
                    padding: 0 5px;
                    border-radius: 50px;
                    letter-spacing: 1px;
                    transform: rotate(30deg);
                }

        header nav ul li a:not(.logo):hover {
            background-color: var(--primary-Color);
        }

    header .nav-right {
        display: flex;
    }

        header .nav-right > a {
            margin-right: 30px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            user-select: none;
            cursor: default;
        }


            header .nav-right > a span {
                color: lime;
            }

    header .nav-profile > a {
        display: inline-block;
    }

    header .nav-profile {
        position: relative;
    }

        header .nav-profile > a {
            height: 60px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            padding: 0 15px;
            user-select: none;
        }

            header .nav-profile > a.open {
                background-color: var(--primary-Color);
            }

            header .nav-profile > a > span:after {
                content: "\f078";
                font-size: 8px;
                font-family: "FontAwesome";
                margin-left: 6px;
            }

        header .nav-profile ul {
            position: absolute;
            left: 0;
            top: 60px;
            width: 180px;
            background-color: var(--bgColor);
            z-index: 1;
            padding: 10px 0;
            display: none;
            box-shadow: -2px 2px 5px 1px #0009;
        }

            header .nav-profile ul li a {
                display: inline-block;
                width: 100%;
                padding: 5px;
                font-size: 14px;
                font-weight: bold;
                user-select: none;
            }

                header .nav-profile ul li a:hover {
                    background-color: var(--primary-Color);
                }

        header .nav-profile a.open + ul {
            display: block;
        }

        header .nav-profile ul li a i {
            margin: 0 15px;
            width: 12px;
            text-align: center;
        }

            header .nav-profile ul li a i.fa-group {
                font-size: 12px;
            }

            header .nav-profile ul li a i.fa-unlock {
                font-size: 15px;
            }

    header .title {
        text-align: center;
        padding-top: 60px;
        color: white;
        user-select: none;
    }

        header .title h2, header .title h1 {
            font-size: 100px;
            font-weight: 900;
            letter-spacing: 1px;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(transparent,transparent), url(../../images/classic/main-text-bg.jpg);
            -webkit-background-clip: text;
        }

        header .title h1 {
            font-size: 150px;
            margin-top: -100px;
        }

        header .title p {
            font-size: 20px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        header .title h3 {
            font-size: 24px;
            font-weight: 900;
        }

            header .title h3 span {
                color: lime;
            }

        header .title a {
            display: inline-block;
            width: 310px;
            font-size: 30px;
            font-weight: 900;
            padding: 30px 0;
            background-image: url(../../images/classic/button-3.png);
            cursor: pointer;
        }

            header .title a:hover {
                /*transform: scale(1.1);*/
                background-image: url(../../images/classic/button-2.png);
            }

    header .bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1024px;
        background-image: linear-gradient(to bottom, var(--bgColor), transparent, var(--bgColor)), radial-gradient(transparent, var(--bgColor)), url(../../images/classic/home3.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -99;
    }

/* End Header */

/* Start footer */

footer {
    background-image: linear-gradient(to bottom, var(--bgColor2), transparent, var(--bgColor2)), linear-gradient(to right, transparent, var(--bgColor2), var(--bgColor2) 50%, var(--bgColor2), transparent), url(../../images/classic/home3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    user-select: none;
    padding-top: 50px;
    padding-bottom: 15px;
}

    footer .widget {
        display: flex;
    }

        footer .widget div {
            width: 33%;
        }

        footer .widget h3 {
            letter-spacing: 1px;
            font-size: 20px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
        }

            footer .widget h3:after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 25px;
                height: 3px;
                background-color: var(--primary-Color);
            }

        footer .widget .social {
            display: flex;
            align-items: center;
            flex-direction: column;
        }

            footer .widget .social .social-links {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 30px;
            }

                footer .widget .social .social-links a {
                    padding: 5px 15px;
                    margin: 0 10px;
                }

                    footer .widget .social .social-links a i {
                        font-size: 24px;
                    }

                    footer .widget .social .social-links a.discord i {
                        display: inline-block;
                        width: 30px;
                        height: 30px;
                        background-image: url(../../images/discord-logo.png);
                        background-size: 100%;
                        background-position-y: 5px;
                        background-repeat: no-repeat;
                    }

                    footer .widget .social .social-links a.discord:hover > i {
                        background-image: url(../../images/discord-logo-hover2.png);
                        background-position-y: 3px;
                    }

                    footer .widget .social .social-links a:hover {
                        color: var(--primary-Color);
                    }

        footer .widget .categories a {
            display: inline-block;
            transition: 0.4s;
            width: 120px;
        }

            footer .widget .categories a:hover {
                padding-left: 15px;
                font-size: 14px;
            }

    footer .copyrights {
        text-align: center;
        margin-top: 50px;
        letter-spacing: 1px;
        color: #fff9;
    }

/* End Footer */

/* screen width 1152 and 1024 */
@media screen and (max-width:1500px) {
    .container {
        width: 940px;
    }

    header .container .header-bar div {
        padding: 0 60px;
    }

    header ul.navigation a, header li.nav-right a.dropdown-toggle {
        padding: 0 20px;
    }

    header .title h1 {
        font-size: 120px;
    }

    header .title h2 {
        font-size: 80px;
    }

    footer .widget div:first-child {
        width: 33%;
    }

    footer .widget div:nth-child(2) {
        width: 46%;
    }

    footer .widget div:last-child {
        width: 20%;
    }
}

.ServerBanner {
    width: 100%;
    height: 60px;
    margin: 0 auto -40px auto;
    object-fit: none;
    position: relative;
    top: -210px;
}

.AnimatedLogo {
    position: relative;
    top: -57px;
    width: 100%;
    object-fit: none;
    left: 97px;
    margin: -280px -80px;
}


/* Start Global */
:root {
    --bgColor: #001927;
    --bgColor2: #002132;
    --bgColor3: #0c2e3b;
    --primary-Color: #f44336;
    /*Black*/
    --bgColor: #2a2a2a;
    --bgColor2: #363636;
    --bgColor3: #4a4a4a;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

::selection {
    background-color: var(--primary-Color);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bgColor3);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-Color);
    border-radius: 6px;
}

.container {
    width: 1400px;
    margin: 0 auto;
    /* height: 100%; */
    /* padding-bottom: 5%; */
}

ul {
    list-style: none;
}

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

body {
    background-color: var(--bgColor);
}

/* End Global */

/* Start Header */

header {
    width: 100%;
    margin-bottom: 300px;
}

    header .container .header-bar {
        display: flex;
        justify-content: space-between;
    }

        header .container .header-bar a {
            font-weight: bold;
        }

            header .container .header-bar a:nth-child(1) {
                text-decoration: underline;
                position: relative;
            }

                header .container .header-bar a:nth-child(1):before {
                    content: "HOT";
                    position: absolute;
                    top: 0;
                    right: -10px;
                    font-size: 8px;
                    color: white;
                    background-color: var(--primary-Color);
                    border-radius: 50px;
                    padding: 0 6px;
                    transform: rotate(30deg);
                }

            header .container .header-bar a span {
                color: lime;
            }

        header .container .header-bar div {
            color: white;
            background-color: var(--bgColor3);
            padding: 0 130px;
            clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
        }

    header nav .container {
        display: flex;
        justify-content: center;
        padding: 15px 0;
        background: linear-gradient(to right, transparent,var(--bgColor),var(--bgColor),transparent);
    }

    header ul.navigation a, header li.nav-right a.dropdown-toggle {
        padding: 0 40px;
        border: 2px solid transparent;
        border-color: transparent var(--bgColor3) transparent var(--bgColor3);
        margin: 0 -1px;
    }

    header ul.navigation a {
        display: inline-block;
    }

    header .logo {
        display: block;
        background-image: url(../../images/logo6.png);
        background-size: 120px 100px;
        background-position: center 40%;
        background-repeat: no-repeat;
        width: 180px;
        height: 60px;
    }

    header nav, header nav ul.navigation {
        display: flex;
    }

        header nav ul.navigation li a {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60px;
            font-weight: bold;
            font-size: 16px;
            transition: background-color 0.4s;
            user-select: none;
        }

            header nav ul.navigation li a.hot {
                position: relative;
            }

                header nav ul.navigation li a.hot:before {
                    content: "HOT";
                    position: absolute;
                    right: 0;
                    top: 12px;
                    font-size: 8px;
                    background-color: var(--primary-Color);
                    padding: 0 5px;
                    border-radius: 50px;
                    letter-spacing: 1px;
                    transform: rotate(30deg);
                }

        header nav ul li a:not(.logo):hover {
            background-color: var(--primary-Color);
        }

    header .nav-right {
        display: flex;
    }

        header .nav-right > a {
            margin-right: 30px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            user-select: none;
            cursor: default;
        }


            header .nav-right > a span {
                color: lime;
            }

    header .nav-profile > a {
        display: inline-block;
    }

    header .nav-profile {
        position: relative;
    }

        header .nav-profile > a {
            height: 60px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            padding: 0 15px;
            user-select: none;
        }

            header .nav-profile > a.open {
                background-color: var(--primary-Color);
            }

            header .nav-profile > a > span:after {
                content: "\f078";
                font-size: 8px;
                font-family: "FontAwesome";
                margin-left: 6px;
            }

        header .nav-profile ul {
            position: absolute;
            left: 0;
            top: 60px;
            width: 180px;
            background-color: var(--bgColor);
            z-index: 1;
            padding: 10px 0;
            display: none;
            box-shadow: -2px 2px 5px 1px #0009;
        }

            header .nav-profile ul li a {
                display: inline-block;
                width: 100%;
                padding: 5px;
                font-size: 14px;
                font-weight: bold;
                user-select: none;
            }

                header .nav-profile ul li a:hover {
                    background-color: var(--primary-Color);
                }

        header .nav-profile a.open + ul {
            display: block;
        }

        header .nav-profile ul li a i {
            margin: 0 15px;
            width: 12px;
            text-align: center;
        }

            header .nav-profile ul li a i.fa-group {
                font-size: 12px;
            }

            header .nav-profile ul li a i.fa-unlock {
                font-size: 15px;
            }

    header .title {
        text-align: center;
        padding-top: 60px;
        color: white;
        user-select: none;
    }

        header .title h2, header .title h1 {
            font-size: 100px;
            font-weight: 900;
            letter-spacing: 1px;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(transparent,transparent), url(../../images/classic/main-text-bg.jpg);
            -webkit-background-clip: text;
        }

        header .title h1 {
            font-size: 150px;
            margin-top: -100px;
        }

        header .title p {
            font-size: 20px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        header .title h3 {
            font-size: 24px;
            font-weight: 900;
        }

            header .title h3 span {
                color: lime;
            }

        header .title a {
            display: inline-block;
            width: 310px;
            font-size: 30px;
            font-weight: 900;
            padding: 30px 0;
            background-image: url(../../images/classic/button-3.png);
            cursor: pointer;
        }

            header .title a:hover {
                /*transform: scale(1.1);*/
                background-image: url(../../images/classic/button-2.png);
            }

    header .bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1024px;
        background-image: linear-gradient(to bottom, var(--bgColor), transparent, var(--bgColor)), radial-gradient(transparent, var(--bgColor)), url(../../images/classic/home3.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -99;
    }

/* End Header */

/* Start footer */

footer {
    background-image: linear-gradient(to bottom, var(--bgColor2), transparent, var(--bgColor2)), linear-gradient(to right, transparent, var(--bgColor2), var(--bgColor2) 50%, var(--bgColor2), transparent), url(../../images/classic/home3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    user-select: none;
    padding-top: 50px;
    padding-bottom: 15px;
}

    footer .widget {
        display: flex;
    }

        footer .widget div {
            width: 33%;
        }

        footer .widget h3 {
            letter-spacing: 1px;
            font-size: 20px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
        }

            footer .widget h3:after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 25px;
                height: 3px;
                background-color: var(--primary-Color);
            }

        footer .widget .social {
            display: flex;
            align-items: center;
            flex-direction: column;
        }

            footer .widget .social .social-links {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 30px;
            }

                footer .widget .social .social-links a {
                    padding: 5px 15px;
                    margin: 0 10px;
                }

                    footer .widget .social .social-links a i {
                        font-size: 24px;
                    }

                    footer .widget .social .social-links a.discord i {
                        display: inline-block;
                        width: 30px;
                        height: 30px;
                        background-image: url(../../images/discord-logo.png);
                        background-size: 100%;
                        background-position-y: 5px;
                        background-repeat: no-repeat;
                    }

                    footer .widget .social .social-links a.discord:hover > i {
                        background-image: url(../../images/discord-logo-hover2.png);
                        background-position-y: 3px;
                    }

                    footer .widget .social .social-links a:hover {
                        color: var(--primary-Color);
                    }

        footer .widget .categories a {
            display: inline-block;
            transition: 0.4s;
            width: 120px;
        }

            footer .widget .categories a:hover {
                padding-left: 15px;
                font-size: 14px;
            }

    footer .copyrights {
        text-align: center;
        margin-top: 50px;
        letter-spacing: 1px;
        color: #fff9;
    }

/* End Footer */

/* screen width 1152 and 1024 */
@media screen and (max-width:1500px) {
    .container {
        width: 940px;
    }

    header .container .header-bar div {
        padding: 0 60px;
    }

    header ul.navigation a, header li.nav-right a.dropdown-toggle {
        padding: 0 20px;
    }

    header .title h1 {
        font-size: 120px;
    }

    header .title h2 {
        font-size: 80px;
    }

    footer .widget div:first-child {
        width: 33%;
    }

    footer .widget div:nth-child(2) {
        width: 46%;
    }

    footer .widget div:last-child {
        width: 20%;
    }
}

.ServerBanner {
    width: 100%;
    height: 60px;
    margin: 0 auto -40px auto;
    object-fit: none;
    position: relative;
    top: -210px;
}

.AnimatedLogo {
    position: relative;
    top: -57px;
    width: 100%;
    object-fit: none;
    left: 97px;
    margin: -280px -80px;
}

/*Google*/
#google_translate_element {
    position: relative !important;
    width: 100%;
    text-align: right;
    /* margin: auto 55%; */
    z-index: 999999999999999;
    padding: 10px;
}

    #google_translate_element span {
        display: none
    }

.goog-te-banner-frame, .goog-logo-link {
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-combo {
    width: auto;
    border: 1px solid #eb4134;
    background-color: #272727;
    color: #fff;
    border-radius: 6px;
    font-size: 18px !important;
    outline: 0;
    height: 35px;
    padding: 0 20px;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -moz-box-sizing: unset !important;
}

.g-recaptcha div {
    margin: auto;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
    display: none;
}

body {
    top: 0 !important;
}

/*/Google*/
