@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@500&display=swap');

body {
    margin: 0;
    font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
}

a {
    color: #ffbb00;
    text-decoration: none;
}

a:hover {
    color: #dea303;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-family: "Saira Extra Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    line-height: 1.2;
    color: #343a40;
    line-height: 1;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffbb00;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #dea303;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    transition: all 0.5s;
    padding: 0 15px;
    background: #ffa200 !important;
    overflow-y: auto;
}

#header .profile img {
    display: block;
    width: 145px;
    border: 0.5rem solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

#header .profile h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    text-align-last: center;
}

#header .profile h1 a,
#header .profile h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#main {
    margin-left: 300px;
}

.container,
.container-fluid {
    padding: 0 30px;
}

@media (max-width: 1199px) {
    #header {
        width: 100vw;
        left: -100vw;
    }

    #main {
        margin-left: 0;
    }

    .container,
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
.nav-menu {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 15px;
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
    text-decoration: none;
    color: #fff;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    background-color: #ffbb00;
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 50px;
    cursor: pointer;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active #header {
    left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
}

#hero .profile img {
    display: none;
}

#hero .hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 6rem;
    font-weight: 700;
    text-transform: uppercase;
}

#hero .subheading {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    color: #6c757d;
}

#hero .lead {
    color: #212529;
    margin-bottom: 50px;
    font-size: 20px;
}

#hero .social-links i {
    margin-right: 10px;
    font-size: 36px;
    text-align: center;
    transition: 0.3s;
    color: #343a40;
}

#hero .social-links i:hover {
    opacity: 0.7;
}

@media (max-width: 1449px) {

    #hero {
        box-sizing: content-box !important;
    }

    #hero .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding-left: 150px;
    }

    #hero h1 {
        font-size: 4rem;
    }

    #hero .subheading {
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        color: #6c757d;
    }

    #hero .lead {
        font-size: 18px;
    }

}

@media (max-width: 1199px) {

    #hero .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 0 20px;
    }

    #hero .profile img {
        display: block;
        width: 145px;
        border: 0.5rem solid rgba(255, 255, 255, 0.2);
        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero .subheading {
        text-transform: uppercase;
        font-weight: 500;
        font-size: 10px;
        color: #6c757d;
    }

    #hero .lead {
        text-align: center;
        font-size: 18px;
    }

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 15px 0;
    overflow: hidden;
}

.section-bg {
    background: #f5f8fd;
}

.section-title {
    padding-bottom: 30px;
}

.section-title h2 {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #212529;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ffa200;
    bottom: 0;
    left: 0;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: #173b6c;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.about .content ul strong {
    margin-right: 10px;
}

.about .content ul i {
    font-size: 16px;
    margin-right: 5px;
    color: #149ddd;
    line-height: 0;
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.product .product-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product .product-box {
    margin-bottom: calc(var(--bs-gutter-x));
}

.product-name {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 15px 0;
}

.product-name h1 {
    font-size: 24px;
    color: #333;
    margin: 0 5px !important;
}

.product-name img {
    width: 48px;
    height: 48px;
    margin: 0 5px;
}

.product-description {
    display: flex;
    align-items: center;
    height: 100px;
}

.product-description p {
    font-size: 16px;
    color: #777;
    padding: 0 10px;
}

.product-links a {
    display: inline-block;
    padding: 5px 8px;
    margin: 2px 0;
    background-color: #ffbb00;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.product-links a:hover {
    background-color: #dea303;
}

.product-credits p {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 28px;
    }

    .product-name h1 {
        font-size: 20px;
    }

    .product-links a {
        font-size: 14px;
    }
}

.product .lead {
    color: #212529;
    margin-bottom: 20px;
    font-size: 18px;
}

.product #product-flters {
    padding: 2px 15px;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    
}

.product #product-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #272829;
    transition: all 0.3s ease-in-out;
}

.product #product-flters li:hover,
.product #product-flters li.filter-active {
    color: #ffbb00;
}

.product #product-flters li:last-child {
    margin-right: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    min-height: 100vh;
}

.contact .lead {
    color: #212529;
    margin-bottom: 50px;
    font-size: 20px;
}

.contact .contact-box {
    display: flex;
    flex-direction: row;
}

.contact .contact-form {
    width: 50%;
    margin: 3px;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.contact .contact-secondary img {
    width: 48px;
    height: 48px;
}

@media (max-width: 1199px) {

    .contact .lead {
        text-align: center;
        font-size: 18px;
    }

    .contact .contact-box {
        flex-direction: column;
    }

    .contact .contact-form {
        width: 100%;
    }

}

.contact hr {
    border: 1px solid #808080;
}

.contact .info {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.contact .info i {
    font-size: 20px;
    color: #ffb300;
    float: left;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info a {
    font-family: "Saira Extra Condensed";
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 0 20px;
    color: #050d18;
    transition: all 0.3s ease-in-out;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #173b6c;
}

.contact .info div {
    display: flex;
    align-items: center;
    margin: 5px;
}

.contact .info .discord i {
    color: #5865F2;
}

.contact .info .github i {
    color: #171515;
}

.contact .info .donate i {
    color: #e67e22;
}

.contact .info .email i {
    color: #3498db;
}

.contact .info .github:hover i,
.contact .info .discord:hover i,
.contact .info .donate:hover i,
.contact .info .email:hover i {
    background-color: #000000;
    color: #ffffff;
}

.contact .info a:hover {
    opacity: 0.6;
}


@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 15px;
    color: #f4f6fd;
    font-size: 14px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 9999;
    background: #ffa200;
}

#footer .copyright {
    text-align: center;
}

#footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #eaebf0;
}

@media (max-width: 1199px) {
    #footer {
        position: static;
        width: auto;
        padding-right: 20px 15px;
    }
}