#server-footer-ad{
	display: none;
}

/* test */
/* background-color: #000000;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2000' height='240' viewBox='0 0 1000 120'%3E%3Cg fill='none' stroke='%23222' stroke-width='0.5' stroke-opacity='0.63'%3E%3Cpath d='M-500 75c0 0 125-30 250-30S0 75 0 75s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 45c0 0 125-30 250-30S0 45 0 45s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 105c0 0 125-30 250-30S0 105 0 105s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 15c0 0 125-30 250-30S0 15 0 15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500-15c0 0 125-30 250-30S0-15 0-15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 135c0 0 125-30 250-30S0 135 0 135s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3C/g%3E%3C/svg%3E"); */

.setting-page {
    position: fixed;
    display: none;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 28px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 5px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--blue);
}

input:checked+.slider:before {
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

#blob {
    position: fixed;
    --angle: 0deg;
    width: 350px;
    height: 350px;
    /* background: conic-gradient(from var(--angle), var(--orange)); */
    background: conic-gradient(from var(--angle), rgb(155, 8, 8) 0deg 120deg, rgb(11, 111, 11) 120deg 240deg, rgb(12, 12, 140) 240deg 360deg);
    filter: blur(75px);
    -webkit-filter: blur(75px);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: blobAnimation 3.5s linear infinite;
    -webkit-animation: blobAnimation 3.5s linear infinite;
    transition: transform 0.15s ease-out;
    -webkit-transition: transform 0.15s ease-out;
    -moz-transition: transform 0.15s ease-out;
    -ms-transition: transform 0.15s ease-out;
    -o-transition: transform 0.15s ease-out;
    transform: translate(200%, 50%);
    -webkit-transform: translate(200%, 50%);
    -moz-transform: translate(200%, 50%);
    -ms-transform: translate(200%, 50%);
    -o-transform: translate(200%, 50%);
    opacity: .5;
}

@keyframes blobAnimation {
    to {
        --angle: 360deg;
    }
}

#preloader {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

/* #preloader {
    font-size: var(--p25-size-base);
    font-weight: 700;
    font-family: monospace;
    margin-bottom: 10px;
} */

/* .loader {
    position: relative;
    border: 8px solid rgba(243, 243, 243, .75);
    border-top: 8px solid var(--bg-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
} */

@keyframes spin {
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes spin2 {
    0% {
        stroke-dasharray: 1, 800;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 400, 400;
        stroke-dashoffset: -200px;
    }

    100% {
        stroke-dasharray: 1000, 100;
        stroke-dashoffset: -600px;
    }
}

.circle-spin {
    transform-origin: center;
    animation: spin2 1.5s ease-in-out infinite, spin .65s linear infinite;
    -webkit-animation: spin2 1.5s ease-in-out infinite, spin .65s linear infinite;
    animation-direction: alternate;
}

/* end test */

/* default rules */

*,
html,
body,
::after,
::before,
::backdrop,
::file-selector-button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #030303;
    /* --bg-secondary: #222222; */
    /* --bg-secondary: #222831; */
    --bg-secondary: #101111;
    /* --bg-tertiary: #333333; */
    /* --bg-tertiary: #393E46; */
    --bg-tertiary: #222222;
    --black: #000000;
    --white: #EEEEEE;
    --orange: #f0c040;
    --red: #950101;
    --dark-red: #3D0000;
    --green: #609966;
    --dark-green: #40513B;
    --blue: #0F4C75;
    --dark-blue: #0A2647;
    --font-size-base: 16px;
    --p20-size-base: 20px;
    --p25-size-base: 25px;
    --font-size-base: 15px;
}

/* @layer base {
    .google-map * {
        border-style: none;
    }
} */

::-webkit-scrollbar {
    display: none;
}

body {
    line-height: 1.8;
    /* background-color: var(--bg-primary); */
    color: var(--white);
    overflow-x: hidden;
    font-family: sans-serif;
    background: url(../img/qqquad.svg);
}

p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

a {
    text-decoration: none;
}

i {
    cursor: pointer;
    font-size: var(--p25-size-base);
}

ol,
ul,
menu {
    list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
}

button {
    outline: none;
    border: none;
    cursor: pointer;
}

img,
video {
    width: 100%;
    height: auto;
}

[id] {
    scroll-margin-top: 100px;
}

section {
    display: flex;
    max-width: 100vw;
    height: auto;
    /* min-height: 100vh; */
    justify-content: center;
    margin: calc(var(--p25-size-base)*4) 0;
}

.container {
    display: flex;
    padding: 0 calc(var(--p20-size-base) * 2.5);
    width: 100%;
    height: auto;
    max-width: 1320px;
}

.container-content {
    width: 100%;
    background-color: rgba(255, 255, 255, .02);
    backdrop-filter: blur(2.5px);
    border: 1px solid #333333;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 20px;
}

/* #titleSection {
    text-align: center;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 15px;
} */

/* end default rules */

/* header */

#Header {
    width: 100%;
    justify-content: center;
    z-index: 100;
}

.normal-head {
    position: absolute;
    background: var(--bg-secondary);
    height: calc(var(--p20-size-base) * 5);
    animation: showNormalHeader 1.25s ease-out;
    -webkit-animation: showNormalHeader 1.25s ease-out;
}

@keyframes showNormalHeader {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fixed-head {
    position: fixed;
    background: color-mix(in srgb, var(--bg-primary) 60%, transparent);
    /*background-color: rgba(0, 0, 0, 0.6);*/
    height: var(--p25-size-base) * 3;
    box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, .25);
    animation: showHeader .75s ease-out;
    -webkit-animation: showHeader .75s ease-out;
    backdrop-filter: blur(5px);
}

@keyframes showHeader {
    0% {
        top: -50px;
    }

    100% {
        top: 0px;
    }
}

#navbar {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: var(--p20-size-base) 0;
    width: 70%;
}

.logo {
    display: flex;
    align-items: center;
    /* width: 20%; */
    font-size: calc(var(--font-size-base) + 5px);
    font-weight: bold;
}

.nav-links {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
}

.link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(190, 190, 190);
    /*color: var(--white);*/
    transition: 1s all;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    -o-transition: 1s all;
}

.link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    /*background-color: rgb(190, 190, 190);*/
    background-color: var(--white);
    transform: translateY(12.5px);
    -webkit-transform: translateY(12.5px);
    -moz-transform: translateY(12.5px);
    -ms-transform: translateY(12.5px);
    -o-transform: translateY(12.5px);
    transition: 1s all;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    -o-transition: 1s all;
}

.links-active {
    color: var(--orange) !important;
    transition: 1s all;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    -o-transition: 1s all;
}

.links-active::after {
    width: 110% !important;
    background-color: var(--orange);
    transition: 1s all;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    -o-transition: 1s all;
}

.link a {
    width: 100%;
    height: 100%;
    font-weight: 600;
    font-size: calc(var(--font-size-base) + 2.5px);
}

#hero {
    display: flex;
    width: 30%;
    padding: var(--p20-size-base) 0;
    align-items: center;
    justify-content: space-evenly;
}

#hero i {
    font-size: calc(var(--font-size-base) + 15px);
}

#hero i:active {
    color: var(--orange);
}

/* end header */

#Main {
    display: grid;
}

/* home */

#Home {
    margin-top: 0;
    min-height: 100vh;
}

#Home>.container>div {
    display: flex;
    margin: calc(var(--p20-size-base) + 10px);
    width: 100%;
    height: 100%;
    align-items: center;
}

#Home>.container>div>div {
    width: 350px;
    height: calc(var(--p25-size-base) * 14px);
    line-height: 1.35;
}

#Home>div>div>div h1 {
    color: var(--orange);
    font-size: calc(var(--font-size-base) + 33px);
    font-weight: 800;
}

#Home>div>div>div h2 {
    color: var(--white);
    font-size: calc(var(--font-size-base) + 25px);
    font-weight: 800;
}

.btn-orange {
    margin: 15px 15px 0 0;
    padding: 10px 15px;
    font-size: var(--font-size-base);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-weight: 600;
}

.btn-home1 {
    position: relative;
    background-color: var(--orange);
    color: var(--black);
    border: 2px solid var(--orange);
    overflow: hidden;
    transition: .75s all;
    -webkit-transition: .75s all;
    -moz-transition: .75s all;
    -ms-transition: .75s all;
    -o-transition: .75s all;
}

.btn-home1:hover {
    box-shadow: 0 10px 40px rgba(255, 94, 0, 0.6), inset 0 0 30px rgba(255, 94, 0, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.3);
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    -o-transition: .5s all;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.btn-home1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125px;
    height: 125px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    -o-transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    transition: .5s all ease-out;
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    -ms-transition: .5s all ease-out;
    -o-transition: .5s all ease-out;
    z-index: -1;
}

.btn-home1:hover::before {
    content: "";
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transition: .45s all ease-out;
    -webkit-transition: .45s all ease-out;
    -moz-transition: .45s all ease-out;
    -ms-transition: .45s all ease-out;
    -o-transition: .45s all ease-out;
}

.btn-home2 {
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    color: var(--orange);
    border: 2px solid var(--orange);
    overflow: hidden;
    transition: .75 all;
    -webkit-transition: .75 all;
    -moz-transition: .75 all;
    -ms-transition: .75 all;
    -o-transition: .75 all;
}

.btn-home2:hover {
    box-shadow: 0 10px 40px rgba(255, 94, 0, 0.6), inset 0 0 30px rgba(255, 94, 0, 0.3);
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    -o-transition: .5s all;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.btn-home2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125px;
    height: 125px;
    background-color: rgba(240, 192, 64, .25);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    -o-transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    transition: .5s all ease-out;
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    -ms-transition: .5s all ease-out;
    -o-transition: .5s all ease-out;
    z-index: -1;
}

.btn-home2:hover::before {
    content: "";
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transition: .45s all ease-out;
    -webkit-transition: .45s all ease-out;
    -moz-transition: .45s all ease-out;
    -ms-transition: .45s all ease-out;
    -o-transition: .45s all ease-out;
}

/* end home */

/* About */

#About>.container>.container-content h2 {
    color: var(--orange);
    font-size: calc(var(--font-size-base) + 17px);
    font-weight: 800;
    text-align: center;
}

.container-about {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 450px);
    margin: var(--p25-size-base) 0;
    gap: calc(var(--p25-size-base) * 3) calc(var(--p20-size-base)*4);
}

.about-content {
    animation: 1s;
    -webkit-animation: 1s;
}

.about-content p {
    text-align: justify;
    font-size: var(--font-size-base);
}

.about-content h3 {
    color: var(--orange);
    font-size: calc(var(--font-size-base) + 7px);
    font-weight: 800;
}

/* Features */

#Features>.container>.container-content h2 {
    color: var(--orange);
    font-size: calc(var(--font-size-base) + 17px);
    font-weight: 800;
    text-align: center;
}

.features-container {
    margin: var(--p20-size-base) 0;
    display: flex;
    justify-content: center;
}

.nav-features {
    display: flex;
    padding: 15px;
    flex-direction: column;
    width: 250px;
    background-color: rgba(255, 255, 255, .025);
    border: 1px solid #333333;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn-features {
    background-color: transparent;
    color: var(--white);
    padding: calc(var(--p20-size-base) - 5px);
    margin: 10px 0;
    text-align: left;
    font-size: calc(var(--font-size-base) + 2.5px);
    font-weight: 600;
    transition: .5s color .15s, .25s border .1s;
    -webkit-transition: .5s color .15s, .25s border .1s;
    -moz-transition: .5s color .15s, .25s border .1s;
    -ms-transition: .5s color .15s, .25s border .1s;
    -o-transition: .5s color .15s, .25s border .1s;
    border: 2px solid transparent;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.features-content {
    display: flex;
    padding: 15px;
    flex-direction: column;
    margin-left: calc(var(--p25-size-base) * 3);
    width: 750px;
    background-color: rgba(255, 255, 255, .025);
    border: 1px solid #333333;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.features-active {
    color: var(--orange);
    border: 2px solid var(--orange);
    background-color: rgba(240, 192, 64, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: .5s color, .25s border;
    -webkit-transition: .5s color, .25s border;
    -moz-transition: .5s color, .25s border;
    -ms-transition: .5s color, .25s border;
    -o-transition: .5s color, .25s border;
}

.features-content>div {
    display: none;
    flex-direction: column;
    padding: calc(var(--p20-size-base) - 5px);
}

.features-content>div h3 {
    color: var(--orange);
    font-size: calc(var(--font-size-base) + 7px);
    font-weight: 800;
}

.content-list-feature {
    margin-left: 10px;
}

.content-list-feature li {
    margin: 10px 0;
}

.content-list-feature li::before {
    content: "▸";
    color: var(--orange);
}

/* end Features */

/* product */

#Product>.container>.container-content h2 {
    color: var(--orange);
    font-size: calc(var(--font-size-base) + 17px);
    font-weight: 800;
    text-align: center;
}

.container-card>button {
    position: absolute;
    width: 10px;
    height: 10px;
}

.product-container {
    position: relative;
    display: grid;
    padding: 0 0 20px 0;
    width: auto;
    height: auto;
    grid-template-columns: repeat(auto-fit, 200px);
    /* grid-auto-rows: minmax(100px, auto); */
    gap: 25px;
    justify-content: center;
    align-items: start;
}

.product-card {
    position: relative;
    background: var(--bg-secondary);
    padding: var(--p20-size-base);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
    border: 1px solid #444444;
    /* cursor: help; */
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    -moz-transition: transform 0.2s;
    -ms-transition: transform 0.2s;
    -o-transition: transform 0.2s;
}

.product-card:hover {
    background-color: var(--bg-tertiary);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    box-shadow: 0 0 25px 0 rgba(255, 255, 255, .3);
    border: 1px solid #666666;
    z-index: 2;
}

/* .product-container {
    display: block;
    align-items: start;
    column-count: 5;
    column-width: 200px;
    width: max-content;
    column-gap: 20px;
}

.product-card {
    width: 200px;
    background: var(--bg-secondary);
    padding: var(--p20-size-base);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
    border: 1px solid #444444;
    cursor: help;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    -moz-transition: transform 0.2s;
    -ms-transition: transform 0.2s;
    -o-transition: transform 0.2s;
} */


.product-card img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.product-card h3 {
    font-size: var(--font-size-base);
    margin: 10px 0 0 0;
    font-weight: 600;
}

.description-product {
    position: absolute;
    display: none;
    bottom: 50%;
    padding: 5px 15px;
    width: 200px;
    background-color: var(--orange);
    color: var(--black);
    opacity: 0;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
    z-index: 2;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.product-card:hover .description-product {
    opacity: 1;
    z-index: 2;
}

.desc-product-right{
    right: auto;
    left: 100%;
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.desc-product-right::after{
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    width: 0;
    transform: translateY(-50%);
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid var(--orange);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.desc-product-left{
    left: auto;
    right: 100%;
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    border-radius: 8px;
}

.desc-product-left::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid var(--orange);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.product-card p {
    font-size: var(--font-size-base);
    margin: 0 0 7.5px 0;
}

.product-card button {
    padding: 10px 15px;
    background: var(--bg-tertiary);
    color: white;
    border-radius: 5px;
}

.product-card:hover button {
    background: #f0c040;
    color: #000;
}

/* end product */

/* contact */

#Contact>.container>div {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#Contact>.container>div>div {
    margin: 0 20px;
    padding: 20px 0;
    width: 50%;
    height: auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: rgba(255, 255, 255, .02);
    border: 1px solid #333333;
    align-self: flex-start;
}

#Contact>.container>div>div h2 {
    color: var(--white);
    font-size: calc(var(--font-size-base) + 17px);
    font-weight: 800;
    text-align: left;
    margin-bottom: 10px;
}

.contact-form {
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.contact-form>div{
    display: flex;
    flex-direction: row;
}

.contact-form>div>div:nth-child(1){
    display: flex;
    flex-direction: column;
    width: 45%;
    margin: 0 20px 0 0;
}

.contact-form>div>div:nth-child(2){
    display: flex;
    flex-direction: column;
    width: 55%;
}

.contact-form>div>div input,
.contact-form>div>div textarea {
    width: 100%;
    padding: 10px;
    background-color: rgba(255, 255, 255, .075);
    backdrop-filter: blur(10px);
    outline: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    resize: none;
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    -o-transition: .5s all;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.contact-form>div>div input{
    margin: 5px 0;
}

.contact-form>div>div textarea{
    margin: 5px 0;
    width: 100%;
    height: 100%;
}

.contact-form>div>div input:focus,
.contact-form>div>div textarea:focus {
    background-color: rgba(255, 255, 255, .125);
    border: 1px solid #667eea;
}

.contact-form button {
    margin: 20px 0 0 0;
    padding: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-weight: 600;
    color: white;
    border-radius: 5px;
    margin-bottom: 10px;
}

.contact-form button:hover {
    box-shadow: 0 10px 30px #667eea80;
}

/* end contact */

/* footer */

footer {
    background-color: var(--bg-secondary);
    color: white;
    text-align: center;
    padding: calc(var(--p25-size-base) * 1.5) 0;
}

footer p {
    font-size: calc(var(--p20-size-base) - 7.5px);
    font-family: 'Segoe UI', sans-serif;
}

footer a {
    text-decoration: underline;
    font-size: calc(var(--p20-size-base) - 7.5px);
    font-family: 'Segoe UI', sans-serif;
}

footer span {
    margin: 0 10px;
}

footer div {
    display: flex;
    gap: 0 var(--p20-size-base);
    justify-content: center;
    margin: var(--p20-size-base) 0;
}

footer div i {
    font-size: var(--p25-size-base);
}

/* end footer */

@media print {
    .box-transaksi {
        visibility: hidden;
    }

    .nota{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        font-family: monospace;
        color: black;
        z-index: 1000;
    }

    .nota > div {
        visibility: visible !important;
    }

    .nota button {
        display: none;
    }
}

.nota > div {
    visibility: hidden;
}
/*
*,
html,
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background: #111111;
    color: #bababa;
}
*/
.box {
    display: flex;
    flex-direction: column;
    width: 400px;
    background: #222222;
    margin: 100px auto;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    gap: 2.5px;
}

.box > p {
    margin-bottom: 10px;
}

.box > a {
    padding: 10px;
    margin: 10px 0;
    background: green;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
}

.box > a:hover {
    background: darkgreen;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
}

.box-add {
    width: 400px;
    background: #222222;
    margin: 100px auto;
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.box-add > h2 {
    text-align: center;
    margin-bottom: 10px;
}

.box-add > form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.box-add > form > input {
    background-color: #333333;
    color: white;
    border: 0;
    outline: 0;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 15px;
}

.box-add > form > button {
    background-color: #333333;
    color: white;
    border: 0;
    outline: 0;
    padding: 10px;
    cursor: pointer;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 10px;
}

.box-add > form > button:hover {
    background-color: #444444;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
}

.box-transaksi{
    width: 400px;
    background: #222222;
    margin: 100px auto;
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.box-transaksi > h2 {
    text-align: center;
    margin-bottom: 10px;
}

.box-transaksi > form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.box-transaksi > form > select {
    background-color: #333333;
    color: white;
    border: 0;
    outline: 0;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.box-transaksi > form > input {
    background-color: #333333;
    margin-bottom: 15px;
    color: white;
    border: 0;
    outline: 0;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.box-transaksi > form > button {
    background-color: #333333;
    color: white;
    border: 0;
    outline: 0;
    padding: 10px;
    cursor: pointer;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 10px;
}

.box-transaksi > form > button:hover {
    background-color: #444444;
    transition: .2s all;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
}
