* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: #111;
}

body {
    font-family: myfont;
    font-size: 24px;
    color: #ccc;
    text-align: center;
}

a {
    text-decoration: none;
    color: #ccc;
    fill: #ccc;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

a:hover{
    color: #963;
    fill: #963;
}

a:active{
    color: #963;
    fill: #963;
    transition: none;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexcol {
    flex-direction: column;
}

.myicon {
    fill: inherit;
    margin-right: .6em;
}

.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    font-size: 20px;
    background-color: rgba(17, 17, 17, 1);
    z-index: 10;
    transition: 0.3 ease;
}

.sticky-header.scrolled {
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header-content{
    max-width: 1280px;
    height: 100%;
    width: 100%;
}

@font-face {
    font-family: mylogofont;
    src: url("/static/fonts/Electrolize.ttf");
}

@font-face {
    font-family: myfont;
    src: url("/static/fonts/Roboto.ttf");
}

.mylogo {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-left: 30px;
    margin-right: auto;
    height: 100%;
    font-size: 28px;
    font-family: mylogofont;
}

.mylogo:hover .mylogo_1{
    color: #963;
}

.mylogo:hover .mylogo_2{
    color: #ccc;
}

.mylogo_1 {
    display: inline-block;
    color: #ccc;
    transform: scale(0);
    transition: 0.3s;
    animation: logo1 0.5s ease forwards 0.4s;
}

@keyframes logo1 {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.mylogo_2 {
    display: inline-block;
    color: #963;
    opacity: 0;
    transition: 0.3s;
    animation: logo2 0.5s ease forwards 0.8s;
}

@keyframes logo2 {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.mymenu {
    display: flex;
    align-items: center;
    width: 500px;
    height:100%;
}

.active {
    background-color: #963;
}

.myicon.active{
    background-color: transparent;
    fill: #963;
}

.menu-item {
    height: 100%;
}

.menu-item span{
    font-size: 0.9em;
}

.menu-bar {
    height: 3px;
    width: 90%;
}

.mymenu-m {
    display: none;
}

.big-text {
    font-size: 70px;
    line-height: 60px;
}

.fbig-text{
    font-size: 40px;
    line-height: 40px;
}

.pad_100 {
    padding: 25px 0;
}

.mm-list {
    display: flex;
    list-style: none;
    width: 100%;
    height: 100%;
    padding: 0;
}

.mm-list li {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 100%;
}

main {
    color: #222;
    width: 100%;
}

.device-menu {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 0vh;
    z-index: 9;
    align-items: center;
    justify-content: center;
    transition: 0.8s ease-in-out;
}

.dm-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    padding:0;
    width: 100%;
    font-size: 30px;
    transition: 0.8s ease-in-out;
    pointer-events: none;
}

.dm-list li {
    display: flex;
    height: 50px;
    width: 100%;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    transition: 0.3s ease;
}

.dm-list li a {
    width: 60%;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.bar {
    width: 50%;
    height: 3px;
    margin: 3px 0;
    background-color: #ccc;
    transition: 0.3s ease-out;
    border-radius: 2px;
}

.hamburger-menu.close .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #963;
}

.hamburger-menu.close .bar:nth-child(2) {
    width: 0;
    background-color: #963;
}

.hamburger-menu.close .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #963;
}

.bigicon {
    padding: 0.1em;
    margin-bottom: 0.4em;
    display: inline;
}

.bricon{
    fill: #963;
}

.c-item {
    display: inline;
    margin: 0px;
}

footer {
    width: 100%;
    z-index: 8;
    background-color: #111;
    font-size: 18px;
}

.footer-items {
    margin: 20px 0;
    width: 100%;
    max-width: 1280px;
}

.footer-item {
    width: 100%;
}

.contact {
    font-size: 30px;
    margin: 25px 0;
}

.footer-bar {
    background-color: #963;
    height: 2px;
    width: 100%;
}

.back_b {
    background-color: #222;
    color: #ccc;
    fill: #ccc;
}

.back_w {
    background-color: #ccc;
    color: #222;
    fill: #222;
}

.c-item {
    padding-right: 20px;
}

.dbutton{
    background-color: #80808040;
    border: 2px solid #963;
    border-radius: 10px;
    margin: 20px;
    padding: 10px 30px;
}

.back_b .dbutton{
    color: #ccc;
}

.back_w .dbutton{
    color: #222;
}

.dbutton_icon{
    height: 1em;
    fill: #963;
}

.dbutton_icon_l{
    margin-right: 15px;
}

.dbutton_icon_r{
    margin-left: 15px;
}

.dbutton:hover{
    background-color: #80808080;
}

.know_more{
    text-align: center;
    margin-bottom: 20px;
}

.know_more_icon{
    height: 2em;
    fill: #963;
}

@media screen and (max-width : 768px) {
    .mymenu {
        display: none;
    }

    .mymenu-m {
        display: flex;
        float: right;
        align-items: center;
        width: 60px;
        height: 100%;
    }

    .device-menu.close {
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .dm-list.close {
        opacity: 1;
        pointer-events: auto;
    }

    body.close {
        height: 100%;
        overflow: hidden;
    }

    .contact{
        font-size: 25px !important;
        margin: 30px 0 !important;
    }

    .big-text {
        font-size: 50px;
        line-height: 50px;
    }

    .pad_100 {
        padding: 15px 0;
    }
    
    .dbutton{
        margin: 10px;
        font-size: 20px;
    }

    .fbig-text{
        font-size: 30px;
        line-height: 30px;
    }
}