

/*
 * ---------------------------------------------
 * Main Styles
 * ---------------------------------------------
 */

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Light.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Bold.woff2) format('woff2');
}

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

::-webkit-scrollbar-track {
    background: rgb(32, 38, 32);
}

::-webkit-scrollbar-thumb {
    background: rgb(43, 52, 43);
}

::-moz-selection {
    color: rgb(173, 168, 162);
    background: rgb(20, 24, 20);
}

::selection {
    color: rgb(173, 168, 162);
    background: rgb(41, 49, 41);
}

body {
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: rgb(173, 168, 162);
    background-color: #000000;
    background-size: cover;
    height: 100%;
}

.background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
    z-index: -1;
}

main {
    position: relative;
}

.icon {
    width: 20px;
    height: 20px;
    margin-top: -1px;
}

.heading {
    color: rgb(201, 69, 47);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 5px;
}



.line-through {
    text-decoration: line-through;
}

.font-weight-bold {
    font-weight: bold;
}


/*
 * ---------------------------------------------
 * Navigation
 * ---------------------------------------------
 */

.navbar-rust {
    margin-top: 50px;
    background-color: rgb(28, 28, 26) !important;
    border-radius: 0 !important;
    margin-bottom: 50px;
}

.navbar-rust .navbar-nav .nav-link {
    color: rgb(142, 145, 142);
    font-size: 20px;
    margin-left: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-rust .navbar-nav .nav-link:hover {
    color: rgb(193, 193, 193);
}

.navbar-rust .navbar-nav .nav-link.active {
    color: rgb(193, 193, 193);
}

.navbar-rust .navbar-brand {
    color: rgb(194, 194, 194);
    margin-left: 15px;
}

.navbar-rust .navbar-logo-container {
    width: 75px;
}

.navbar-rust .nav-logo {
    position: absolute;
    height: 110px;
    width: 110px;
    margin-top: -50px;
}

.navbar-rust .navbar-toggler {
    border-radius: 0;
}

.navbar-rust .navbar-toggler:focus {
    box-shadow: none;
}

@media only screen and (max-width: 991px) {
    .navbar-rust .navbar-brand {
        transform: translateX(-50%);
        left: 50%;
        top: 40px;
        position: absolute;
    }

    .navbar-rust .nav-logo {
        margin-top: -65px;
    }
}


/*
 * ---------------------------------------------
 * Buttons
 * ---------------------------------------------
 */

.btn {
    border-radius: 0;
    border: 0;
    padding: 8px 14px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn.btn-success {
    background: rgb(61, 75, 39);
    color: rgb(166, 205, 99);
}

.btn.btn-success:hover {
    background: rgb(88, 108, 57);
}

.btn.btn-success:active {
    background: rgb(61, 75, 39);
}

.btn.btn-primary {
    background: rgb(29, 66, 95);
    color: rgb(72, 154, 212);
}

.btn.btn-primary:hover {
    background: rgb(39, 85, 121);
}

.btn.btn-primary:active {
    background: rgb(29, 66, 95);
}

.btn.btn-secondary {
    background: rgb(89, 85, 82);
    color: rgb(204, 195, 190);
}

.btn.btn-secondary:hover {
    background: rgb(111, 107, 103);
}

.btn.btn-secondary:active {
    background: rgb(89, 85, 82);
}

.btn.btn-danger {
    background: rgb(150, 47, 32);
    color: rgb(199, 152, 151);
}

.btn.btn-danger:hover {
    background: rgb(172, 56, 39);
}

.btn.btn-danger:active {
    background: rgb(150, 47, 32);
}

.btn.btn-discord {
    background: rgb(114, 137, 218);
    color: rgb(255, 255, 255);
}

.btn.btn-discord:hover {
    background: rgb(132, 156, 238);
}

.btn.btn-discord:active {
    background: rgb(114, 137, 218);
}

.btn.btn-discord svg {
    height: 24px;
    margin-top: -1px;
}


/*
 * ---------------------------------------------
 * Landing page
 * ---------------------------------------------
 */

#landing-page {
    margin-top: 90px;
    margin-bottom: 250px;
}

#landing-page .server {
    border: 6px solid rgb(31, 32, 26);
    background: rgb(31, 32, 26);
    margin-top:10px;
}

#landing-page .server .server-container {
    padding: 10px;
    text-align: center;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

#landing-page .server .server-container .server-name {
    font-weight: bold;
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    padding-bottom: 10px;
    color: rgb(220, 211, 202);
}

#landing-page .server .server-container {
    color: rgb(142, 143, 138);
    display: block;
    font-size: 18px;
}

.server-description {
    text-align: left;
    padding-top: 10px;
    font-size: 17px;
    color: rgb(220, 211, 202);
}

#landing-page .server .server-container .server-players {
    color: rgb(142, 143, 138);
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

#landing-page .server .server-tags {
    margin-bottom: 5px;
}

#landing-page .server .server-tags .server-tag {
    background: #26435e;
    color: #c2c5cc;
    padding: 5px 8px;
    font-size: 15px;
}

#landing-page .server .server-image-container {
    position: relative;
}

#landing-page .server .server-image-container .server-image-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(31,32,26,0) 35%, rgba(31,32,26,1) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

#landing-page .server .progress {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

#landing-page .server .progress .progress-bar.bg-rust {
    background-color: rgb(166, 205, 99);
}

#landing-page .server .server-image-container {
    position: relative;
}

#landing-page .btn-success {
    margin-top:20px;
}

#landing-page .server-info-wrapper {
    width: 500px;
}


/*
 * ---------------------------------------------
 * Rules
 * ---------------------------------------------
 */

.rules-heading {
    margin-bottom: 50px;
}

#rules {
    margin-top: 80px;
    margin-bottom: 280px;
    padding-top: 30px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

#rules p, .rules p {
    font-size: 20px;
}


/*
 * ---------------------------------------------
 * Commands
 * ---------------------------------------------
 */

#commands {
    margin-top: 80px;
    margin-bottom: 180px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

#commands p, .rules p {
    font-size: 20px;
}

#commands .red {
    color: #FF0000;
}


/*
 * ---------------------------------------------
 * Supporter
 * ---------------------------------------------
 */
 
#supporter {
    margin-top: 80px;
    margin-bottom: 250px;
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
}

#supporter .option {
    text-align: center;
    margin-top: 40px;
}

#supporter .option img {
    height: 200px;
    width: 200px;
}

#supporter .option .option-description {
    background: #161818cf;
    width: 200px;
    padding-top: 10px;
    padding-bottom: 20px;
}

#supporter .option-name {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    display: block;
    margin-bottom: 5px;
}

#supporter .before-discount-price {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    display: block;
}

#supporter .option-price {
    color: rgb(166, 205, 99);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    display: block;
    margin-bottom: 15px;
}

#supporter .most-popular {
    color: rgb(166, 205, 99);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    display: block;
    margin-top: 15px;
    margin-bottom: -5px;
}

#supporter .btn-success {
    margin-left:10px;
}













/*
 * ---------------------------------------------
 * Contact Us
 * ---------------------------------------------
 */


#contact-form .contact-us-header {
    color: rgb(142, 145, 142);
    font-size: 24px;
    margin-left: 5px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 15px;

}



#contact-form input, #contact-form textarea {
    font-size: 18px;
    background-color: #ffffff;
    border: none;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: #000000;
    width: 100% !important;
    font-weight: 500;
    border-radius: 4px;

    padding-left: 15px;

}

#contact-form input {
    margin-bottom: 25px;
    height: 48px;
    line-height: 22px;
    display: block;
}

#contact-form textarea {

    padding: 15px;
}


#contact-form button {
    margin-bottom: 25px;

}



#landing-page .contact-us-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7%;
}












/*
 * ---------------------------------------------
 * Perks
 * ---------------------------------------------
 */

.perks {
    margin-top: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10%;
    color:white;
}

.points {
    margin-top: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom:450px;
    color:white;
}

.points .points-text {
    padding-top: 70px;
    padding-bottom: 10px;
}

.points p {

    font-size: 20px !important;
    letter-spacing: 1px;
}

.perks .kit {
    text-align: center;
    margin-top: 40px;
}

.perks .kit img {
    width: 300px;
}

.perks .payment-button,
.points .payment-button {
    width:220px;
    margin-top:70px;
    margin-bottom: 150px;
}





/*
 * ---------------------------------------------
 * Terms
 * ---------------------------------------------
 */

#terms {
    margin-top: 80px;
    margin-bottom: 150px;
    padding-top: 30px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

#terms p {
    font-size: 18px;
    text-align: justify;
}

#terms a {
    color: rgb(128, 179, 255);
}

#terms .header {
    margin-top: 30px;
    margin-bottom: 2px;
    text-transform: uppercase;
}


/*
 * ---------------------------------------------
 * Footer
 * ---------------------------------------------
 */

footer {
    padding: 40px 20px;
    font-weight: 300;
    line-height: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

footer .left {
    float: left;
}

footer .left .url {
    font-weight: bold;
    margin-right: 5px;
}

footer .right {
    float: right;
}

footer .right a {
    text-decoration: none;
    color: rgb(173, 168, 162);
}

footer .right a:first-child {
    margin-right: 10px;
}

@media (max-width: 575px) {
    
    footer .left, footer .right {
      float: none;
      text-align: center;
      padding: 3px 0;
    }
}
  

/*
 * ---------------------------------------------
 * Sticky Footer
 * ---------------------------------------------
 */

.sticky-footer-html {  
    position: relative;
    min-height: 100%;
}

.sticky-footer {  
    position: absolute;
    bottom: 0px;
    width: 100%;

}


/*
 * ---------------------------------------------
 * Preloading Background Images
 * ---------------------------------------------
 */

body::after{
    position:absolute;
    width:0;
    height:0;
    overflow:hidden;
    z-index:-1;
    content: url("../../assets/img/background.jpg") url("../../assets/img/background_commands.jpg") url("../../assets/img/background_rules.jpg") url("../../assets/img/background_supporter.jpg");
}



.background-home {
    background: url("/../assets/img/background.jpg")  #000000;
    background-size: cover;
    background-repeat: no-repeat;
}

.background-rules {
    background: url("/../assets/img/background_rules.jpg")  #000000;
    background-size: cover;
    background-repeat: no-repeat;
}

.background-supporter {
    background: url("/../assets/img/background_supporter.jpg")  #000000;
    background-size: cover;
    background-repeat: no-repeat;
}

.background-commands {
    background: url("/../assets/img/background_commands.jpg")  #000000;
    background-size: cover;
    background-repeat: no-repeat;
}



/*
 * ---------------------------------------------
 * Background edges fix
 * ---------------------------------------------
 */
.row {
    --bs-gutter-x: unset;
}



