@import url('https://fonts.googleapis.com/css?family=Cabin:400,500,700|Montserrat:400,500,700');
@import 'css/bootstrap.min.css';
@import 'css/animate.css';
@import 'css/ionicons.min.css';

/* --------------------------
:: Base CSS
-------------------------- */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cabin', sans-serif;
    background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cabin', sans-serif;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
}

.section-padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-padding-100-50 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.section-padding-100-70 {
    padding-top: 100px;
    padding-bottom: 70px;
}

.section-padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-padding-50-20 {
    padding-top: 50px;
    padding-bottom: 20px;
}

.section-padding-150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.section-padding-200 {
    padding-top: 200px;
    padding-bottom: 200px;
}

.section-padding-0-100 {
    padding-top: 0;
    padding-bottom: 100px;
}

.section-padding-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-padding-0-50 {
    padding-top: 0;
    padding-bottom: 50px;
}

img {
    max-width: 95%;
    max-height: 100%;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-100 {
    margin-right: 100px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-100 {
    margin-left: 100px;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

#scrollUp {
    bottom: 0;
    font-size: 24px;
    right: 30px;
    width: 50px;
    background-color: #fb393d;
    color: #fff;
    text-align: center;
    height: 50px;
    line-height: 50px;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

li {
    list-style: none;
}

p {
    color: #726a84;
    font-size: 16px;
    font-weight: 300;
    margin-top: 0;
}

.heading-text>p {
    font-size: 16px;
}

.section-heading>h2 {
    font-weight: 300;
    color: #ddd;
    font-size: 48px;
    margin: 0;
}


.section-heading {
    margin-bottom: 60px;
}

.line-shape-white,
.line-shape {
    width: 80px;
    height: 2px;
    background-color: #d33;
    margin-top: 15px;
}

.line-shape {
    margin-left: calc(50% - 40px);
}

.table {
    display: table;
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 2;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

::-webkit-scrollbar {
    background: #0000;
    width: 16px
}

::-webkit-scrollbar-track {
    background: #0000;
    border: 3px solid #0000;
    margin: 14px 0;
    overflow: auto
}

::-webkit-scrollbar-thumb {
    background: #666;
    background-clip: padding-box;
    border: 6px solid #0000;
    border-radius: 16px;
    min-height: 24px;
    overflow: auto;
    padding: 50px;
    -webkit-transition: height .2s ease-in-out;
    transition: height .2s ease-in-out
}

::-webkit-scrollbar-thumb:hover {
    background-color: #bbb
}

/* --------------------------
:: Header Bar
-------------------------- */

header {
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 99;
    top: 0;
    padding: 0 4%;
}

.nav-menu .navbar-logo {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    padding: 0;
}


.nav-menu .navbar-logo:hover,
.nav-menu .navbar-logo:focus {
    color: #fff;
}


.nav-menu {
    position: relative;
    z-index: 2;
}

.nav-menu #nav .nav-link {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 35px 15px;
}


.nav-menu nav ul li>a:hover {
    color: #fb397d;
}

.install-button {
    text-align: right;
}

.install-button>a {
    color: #fff;
    font-weight: 500;
    display: inline-block;
    border: 2px solid #f00;
    height: 50px;
    min-width: 178px;
    line-height: 46px;
    text-align: center;
    border-radius: 24px 24px 24px 0px;
}

.install-button>a:hover {
    background: #ff4444;
    color: #fff;
    border-color: transparent;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

/* sticky css */

header.sticky {
    background-color: #0b0b0b;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 70px;
    position: fixed;
    top: 0;
    z-index: 99;
}

header.sticky .nav-menu .navbar-logo {
    font-size: 50px;
}

header.sticky .nav-menu #nav .nav-link {
    padding: 23px 15px;
}

header.sticky .navbar {
    padding: 0;
}


/* --------------------------
:: Home Section
-------------------------- */

section#home {
    background-image: url(img/xtreme_custom-firmware-background.png);
    height: 700px;
    position: relative;
    z-index: 1;
    background-position: bottom center;
    background-size: cover;
}

section#home>.container {
    padding-top: 200px;
	position: relative
}

.home-thumb {
    height: 50%;
    position: absolute;
    top: 26%;
    left: 50%;
    z-index: 9;
}

.home-thumb img {
    height: auto;
    width: 100%;
    rotate: 8deg;
}

.home-heading>h2 {
    font-size: 100px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 3;
}

.home-heading>h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    z-index: 3;
}

.home-heading>p {
    color: #fff;
}

.home-heading>h3 {
    font-size: 332px;
    position: absolute;
    top: -134px;
    font-weight: 900;
    left: -12px;
    z-index: -1;
    color: #fff;
    opacity: .1;
    filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
}

.home-heading {
    margin-bottom: 100px;
}

/* --------------------------
:: Special Section
-------------------------- */

.single-icon>i {
    font-size: 36px;
    color: #fff;
}

.single-special>h4 {
    font-size: 22px;
    color: #fff;
}

.single-special>h4 {
    font-size: 22px;
    color: #d33;
    margin-bottom: 15px;
}

.single-special {
    border: 1px solid #eff2f6;
    padding: 40px;
    border-radius: 40px 40px 40px 0px;
    -webkit-transition-duration: 800ms;
    -o-transition-duration: 800ms;
    transition-duration: 800ms;
    margin-bottom: 30px;
}

.single-special:hover {
    -webkit-box-shadow: 0 10px 90px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 90px rgba(0, 0, 0, 0.08);
}

.single-special p {
    margin-bottom: 0;
}

/* --------------------------
:: Features Section
-------------------------- */

.single-feature {
    margin-bottom: 50px;
}

.single-feature>p {
    margin-bottom: 0;
}

.single-feature>i {
    color: #d33;
    font-size: 30px;
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-top: -9px;
}

.single-feature>h5 {
    font-size: 22px;
    color: #fff;
}

.single-feature>p {
    margin-top: 15px;
}

/* --------------------------
:: Discord Section
-------------------------- */

section#discord {
    background: linear-gradient(to left, #ec2f78, #fd523b);
}

.discord-description>h2 {
    color: #ffffff;
    font-size: 36px;
}

.discord-description>p {
    color: #ffffff;
    margin-bottom: 0;
}

.discord-button>a {
    background: #ffffff;
    height: 45px;
    min-width: 155px;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    color: #fb397d;
    font-weight: 500;
    border-radius: 23px 23px 23px 0;
}

.discord-button>a:hover {
    background: #5b32b4;
    color: #fff;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

.discord-button {
    text-align: right;
}

/* --------------------------
:: Table Section
-------------------------- */

.table-responsive {
    border-radius: 22px 25px 22px 0;
    color: #fff;
    border: 2px solid #bbb;
}

.table-responsive tbody,
.table-responsive td,
.table-responsive tfoot,
.table-responsive th,
.table-responsive thead,
.table-responsive tr {
    border: 0;
    font-size: 20px;
}

.table-responsive thead tr {
    background-color: #333;
    color: var(--white-color);
}

.table-responsive thead th {
    padding: 22px 16px !important;
}

.table-responsive tbody tr:nth-child(even) {
    background-color: #111;
}

.table {
    margin: 0;
}

.table>:not(caption)>*>* {
    padding: 18px 16px;
}

.table i {
    font-size: 24px;
}

.table .ion-help-circled {
	color: orange;
}

.table .ion-close-circled {
    color: red;
}

.table .ion-checkmark-circled {
    color: greenyellow;
}


/* --------------------------
:: Video Section
-------------------------- */

.video-slider-container {
    aspect-ratio: 16/9;
    margin: auto;
    padding: 0;
    max-height: 20em;
    position: relative;
    overflow: visible;
	max-width: 80%;
}

.video-slider {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background: #444;
    border-radius: 24px 24px 24px 0px;
    border: 2px solid white;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.slide:first-child {
    left: 0;
}

.video {
    height: 100%;
    width: 100%;
    border: 0;
}

.slide-arrow {
    position: absolute;
    font-size: 36px;
    top: calc(50% - 0.5em);
    width: fit-content;
    height: fit-content;
    z-index: 1;
    cursor: pointer;
}

.slide-arrow::before {
    color: white;
    opacity: .5;
    transition: all .3s;
}

.slide-arrow:hover::before {
    opacity: 1;
    color: red;
}

.slide-arrow.left {
    left: -10%;
}

.slide-arrow.right {
    right: -10%;
}
