* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    height: 100%;
}

body{
    height: 100%;
    margin: 0px;
}

.fa.fa-discord {
    font-family: "Font Awesome 5 Brands"
}

[class*="col-"] {
    width: 100%;
}

#footer{
    color: #c7c7c7;
    background-color: #2d2d2d;
    padding: 1em;
}

@media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

/*
slider
*/
.matric-slide-container{
    width: 90%;
    height: 90%;
    margin: auto;
    overflow: hidden;
}

.matric-slide-text h1 {
    color: white;
    text-align: center;
    font-size: 3em;
    text-shadow: 0px 0px 20px #00ffff;
    font-family: Roboto;
}

.matric-slide-text p{
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.matric-slide-image{
    float: left;
    background-image: url(img/phone_and_laptop.webp);
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    background-position: top;
}

.slide-desktop-download {
    display: none;
}


a.menu-download-button{
    border-radius: 0px;
}

@media only screen and (min-width: 600px) {
    a.menu-download-button{
        color: black;
        background-color: #4fcad4;
        border-radius: 8px;
    }

    a.menu-download-button:hover{
        color: white;
    }

    .matric-slide-container{
        width: 60%;
        max-width: 900px;
        min-width: 600px;
        height: 90%;
        margin: auto;
        overflow: hidden;
    }

    .matric-slide-text {
        float: left;
        width: 50%;
        height: 100%;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .matric-slide-text h1 {
        text-align: left;
        color: white;
        font-size: 3em;
        text-shadow: 0px 0px 20px #00ffff;
        padding: 0 0.3em;
        font-family: Roboto;
    }

    .matric-slide-text p{
        color: white;
        text-align: left;
        padding: 30px 0.3em 0 0.3em;
        font-size: larger;
    }

    .matric-slide-text > .slide-desktop-download{
        min-width: 160px;
        margin: 1em 1em 0 0.5em;
        color: black;
        background-color: #4fcad4;
        width: 40%;
        height: 3em;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
    }

    .matric-slide-text > .slide-desktop-download:hover {
        color: white;
    }

    .matric-slide-image{
        float: left;
        background-repeat: no-repeat;
        background-size: contain;
        height: 100%;
        width: 50%;
        background-position: center;
    }
}

.slide1{
    background-image: url('../img/bg/bg1.webp');
    background-size: cover;
}
.slide2{
    background-image: url('../img/bg/bg2.webp');
    background-size: cover;
}
.slide3{
    background-image: url('../img/bg/bg3.webp');
    background-size: cover;
}
.slide4{
    background-image: url('../img/bg/bg2.webp');
    background-size: cover;
}

.slider-left, .slider-right{
    border-radius: 50%;
}

/*
Slider fade
*/
.glide__slides {
    transform: translate3d(0,0,0)!important;
    width: 100vw!important;
    height: 100%;
}

.glide__slide {
    opacity: 0;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1.5s ease;
    /*height: 100vh;*/
}

.glide__slide.glide__slide--active {
    opacity: 1;
    z-index: 1;
}

/*
PAGE STYLES 
*/

.content-contain{
    width: 100%;
}

section {
    min-height: 100vh;
    width: 100%;
    padding: 60px 1em 0 1em;
}

section::after {
    content: "";
    clear: both;
    display: table;
}

section#home{
    height: 100vh;
    padding: 60px 0 0 0;
    background-color: black;
}

@media only screen and (min-width: 600px) {
    .content-contain{
        max-width: 1200px;
        margin: auto;
    }

    section {
        min-height: 100vh;
        width: 100%;
        padding: 60px 1em 0 1em;
    }

    section#home{
        min-height: 0px;
        padding: 60px 0 0 0;
    }
}

h1.section-title{
    font-size: 3em;
    color: #4d4d4d;
    font-weight: normal;
    text-align: center;
    margin-bottom: 1em;
}

section h2{
    margin:1em 0 1em 0;
}

.feature-container{
    text-align: center;
    padding: 1em;
}

.feature-container img {
    width: 180px;
    margin-bottom: 1em;
}

.feature-container h3 {
    text-align: center;
    margin-bottom: 1em;
}

.feature-container p {
    text-align: center;
    color: #626262;
    padding: 2em;
}

.download-box{
    width: 100%;
    text-align: center;
    background-color: #ccc;
    border-radius: 10px;
    padding: 1.5em;
}

.download-badge{
    width: 200px;
    margin: auto;
}

.video-container{
    position: relative;
    text-align: center;
    margin-bottom: 1.5em;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 52.25%;
    margin-bottom: 15%;
}

.video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.accordion {
    width: 100%;
}

.accordion input[type='checkbox'] {
    display: none;
}

.accordion label {
    z-index: 2;
    position: relative;
    display: inline-flex;
    height: 3em;
    padding: 0 0.5em 0 0.5em;
    color: #2d2d2d;
    align-items: center;
    overflow: hidden;
    width: 100%;
    border: solid 1px #c7c7c7;
    transition: all 0.4s ease;
    margin-bottom: -1px;
}

.accordion label:hover {
    cursor: help;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    color: black;
}

.accordion input:checked + label {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    color: black;
}


.accordion input:checked + label:hover {
    cursor: default;
}

.accordion-content {
    z-index: 1;
    max-height: 0em;
    position: relative;
    overflow: hidden;
    background-color: #eee;
    border: none;
    transition: all 0.4s ease;
}

.accordion-content p{
    text-align: left;
}

.accordion input[type='checkbox']:checked ~ .accordion-content {
    max-height: 60em;
    overflow-y: auto;
    border: solid 1px #ccc;
    margin-bottom: 2em;
}

.faq-answer{
    text-align: left;
    padding: 0.5em;
}

a.lightbg, a.lightbg:visited{
    color: #333;
}

a.lightbg:hover{
    color: #3333ff;
}

a.darkbg, a.darkbg:visited{
    color: #c7c7c7;
}

a.darkbg:hover{
    color: white;
}

ul.feature-list{
    margin: 6px;
    list-style-type: disc;
    text-align: left;
}
ul.feature-list li{
    padding: 6px;
}

section.blog-post{
    max-width: 800px;
    margin: auto;
    min-height: auto;
}

.blog-post-date{
    color: #333333;
    margin-bottom: 1em;
    margin-top: -0.9em;
}

/* Menu */

header {
    background: #000000;
    position: fixed;
    z-index: 3;
    width: 100%;
    left: 0;
    top: 0;
    padding: 6px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav {
    overflow: hidden;
    display: flex;
    align-items: center;
}

a.menu-download-button{
    color: black!important;
    background-color: #4fcad4;
}
a.menu-download-button:hover{
    color: black!important;
    background-color: #00ffff;
}


nav a {
    display: block;
    color: #c7c7c7;
    text-align: center;
    font-weight: 700;
    padding: 12px;
    margin-left: 6px;
    text-decoration: none;
    font-size: 1em;
}

nav a:hover {
    color: #ffffff;
    background-color: #2d2d2d;
}

nav a:active,  nav.responsive a:active {
    color: #00ffff;
}

nav .icon, nav.responsive .icon {
    display: none;
    text-align: center;
    position: absolute;
    right: 0px;
    top: 12px;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    font-size: 30px;
    padding: 0px;
}

@media screen and (max-width: 750px) {
    nav a:not(:first-child) {display: none;}
    nav a.icon {
        display: flex;
    }
}

@media screen and (max-width: 750px) {
    nav.responsive {
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }
    nav.responsive a.icon {
        display: flex;
    }
    nav.responsive a {
        width: 100%;
        display: block;
        text-align: left;
    }
    ul {
        padding-left: 20px;
    }
    a {
        overflow-wrap: break-word;
    }
}

.slider-link{
    color: #00cccc;
}

.slider-link:hover{
    color: #00ffff;
}

pre.code{
    font-family: 'Courier New', Courier, monospace;
    background-color: #ccc;
    color: black;
    margin: 0.5em 0 0.5em 0;
    padding: 0.5em;
    max-width: 100%;
    overflow: scroll;
}

pre.code * {
    font-family: 'Courier New', Courier, monospace;
}

div.remark {
    margin: 0.5em 0 0.5em 0; padding: 0.5em; border: dashed 2px #aaaaaa;
}

.posttitle{
    border-left: solid 12px #00cccc;
    background-color: #eeeeee;
    padding: 12px;
}

.iframeVideo {
    height: 0px;
    padding-top: 25px;
    padding-bottom: 56.2%;
    position: relative;
}

.iframeVideo iframe {
    width: 100%;
    height: 100%;
    position: absolute;
}

/*
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }
  */

/* Add a hover effect if you want */


.sm-icon {
    padding: 20px;
    font-size: 30px!important;
    width: 50px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.sm-icon:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
    background: #3B5998;
    color: white;
}

/* Twitter */
.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-youtube {
    background: #bb0000;
    color: white;
}

.fa-reddit {
    background: #ff5700;
    color: white;
}
.fa-discord{
    background: #7289DA;
    color: white;
}