header {
    padding: 30px
}

.navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%
}

.nav-links {
    background: #009688;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 10px
}

.nav-links li {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 10px;
    position: relative
}

.nav-links a {
    color: #007e94;
    font-size: 1em;
    font-weight: 700;
    padding: 5px 10px;
    text-decoration: none;
    transition: color .3s ease, font-size .3s ease, transform .2s
}

.nav-links a:hover {
    color: #00e59c;
    font-size: 1.5em;
    transform: scale(2)
}

.nav-links a.active {
    border-bottom: 2px solid #00e59c;
    color: #00e59c
}

.header_nav-icon img {
    border-radius: 30px;
    height: auto;
    transition: transform .3s ease;
    width: 120px
}

.header_nav-icon img:hover {
    transform: scale(1.1)
}

@media(max-width:768px) {
    header {
        padding: 10px 0
    }

    .nav-links {
        background-color: #009688;
        display: none;
        flex-direction: column;
        left: 0;
        position: absolute;
        top: 60px;
        width: 100%
    }

    .nav-links li {
        margin: 15px 0
    }

    .header_nav-icon {
        display: none
    }
}

.hamburger {
    box-sizing: initial;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    height: 15px;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    width: 15px
}

.hamburger:before {
    background: #009688;
    border-radius: 20px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(0deg);
    transition: all .4s cubic-bezier(.54, -.1, .57, .57)
}

.hamburger-line {
    background: #fff;
    border-radius: 6px;
    display: block;
    height: 2px;
    position: relative;
    transition: transform .4s cubic-bezier(.54, -.81, .57, .57), opacity .2s ease
}

.hamburger-line.first,
.hamburger-line.second,
.hamburger-line.third {
    width: 100%
}

.menu-toggle {
    display: none
}

.menu-button-wrapper {
    display: none;
    position: relative
}

.item-list {
    background-color: #303242;
    border-radius: 20px;
    color: #fff;
    font-weight: 300;
    opacity: 0;
    padding: 25px;
    position: absolute;
    text-align: left;
    top: 60px;
    transform: translateX(-50%) scale(0);
    transform-origin: center;
    transition: all .4s cubic-bezier(.54, -.1, .57, .57);
    -webkit-user-select: none;
    user-select: none;
    width: 200px
}

.item-list a {
    color: #fff;
    display: block;
    padding: 10px 0;
    text-decoration: none
}

.divider {
    background: #fff;
    height: 1px;
    margin: 5px 0;
    opacity: .5
}

.menu-button {
    cursor: pointer;
    height: 70px;
    left: 0;
    opacity: 0;
    position: absolute;
    width: 70px;
    z-index: 2
}

.menu-button:checked~.item-list {
    border-radius: 20px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    -webkit-user-select: auto;
    user-select: auto;
    z-index: 2
}

.menu-button:checked~.icon-wrapper .hamburger-line.second {
    transform: rotate(45deg)
}

.menu-button:checked~.icon-wrapper .hamburger-line.first {
    transform: translateY(8px) rotate(45deg)
}

.menu-button:checked~.icon-wrapper .hamburger-line.third {
    transform: translateY(-8px) rotate(45deg)
}

.menu-button:checked~.hamburger:before {
    transform: rotate(45deg) scale(1.2)
}

@media(max-width:768px) {
    .menu-button-wrapper {
        display: block;
        padding-right: 10px;
        position: relative
    }

    .item-list {
        display: flex;
        flex-direction: column
    }
}

footer {
    padding: 20px 0
}

.footer-container {
    padding: 0 20px
}

.footer-container,
.footer-navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%
}

.footer_nav-icon img {
    border-radius: 30px;
    height: auto;
    transition: transform .3s ease;
    width: 120px
}

.footer_nav-icon img:hover {
    transform: scale(1.1)
}

@media(max-width:768px) {
    footer {
        display: none
    }
}

#scrollToTopBtn {
    background: no-repeat 50%;
    background-size: contain;
    border: none;
    border-radius: 50%;
    bottom: 30px;
    cursor: pointer;
    font-size: 28px;
    left: 30px;
    opacity: .8;
    outline: none;
    padding: 15px;
    position: fixed;
    z-index: 99
}

#scrollToTopBtn:hover {
    opacity: 1
}

#scrollToTopBtn:active {
    opacity: .9
}

@media(max-width:768px) {
    #scrollToTopBtn {
        border-radius: 0;
        bottom: 0;
        height: 100px;
        left: 0;
        padding: 8px;
        position: fixed;
        width: 100px;
        z-index: 101
    }

    .container {
        justify-content: center;
        padding: clamp(10px, 5vw, 20px) !important
    }

    main {
        padding: 10px
    }

    button {
        padding: 12px;
        width: 100%
    }
}

@media(max-width:900px) {
    .container.main {
        flex-direction: column;
        padding: 10px
    }

    .main-right_1 {
        display: none
    }
}

@media(max-width:768px) {

    footer,
    header {
        padding: clamp(5px, 2vw, 10px) 0
    }

    .footer-navbar,
    .menu-button-wrapper,
    .navbar,
    .navbar-1 {
        justify-content: right !important
    }
}

html {
    scroll-behavior: smooth
}

body {
    background: linear-gradient(5deg, #d4fc7966, #96e6a166 50%, #00c6ff66);
    background-attachment: fixed;
    color: #333;
    font-family: Gilroy, sans-serif;
    overflow-y: auto;
    padding: 0
}

.container {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 50px
}

.blurred-background {
    background: #ffffffb3;
    bottom: 0;
    filter: blur(10px);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

main {
    padding: 20px
}

.image-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative
}

.overlay {
    background-color: rgba(0, 0, 0, .426);
    border-radius: 30px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: background-color .3s ease;
    width: 100%
}

.flex-container {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    text-align: center
}

.flex-container .section-title {
    margin-right: 10px
}

table {
    border-collapse: collapse;
    margin: 20px auto
}

table td,
table th {
    border: none
}

td,
th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center
}

.table-container {
    display: flex;
    justify-content: center
}

.table {
    border-collapse: collapse;
    margin: 0 auto;
    width: 100%
}

.table td {
    padding: 15px;
    vertical-align: top
}

.inner-table {
    border-spacing: 10px;
    width: 100%
}

.inner-table td {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 5px
}

.tabl {
    border-collapse: collapse;
    border-radius: 10px;
    line-height: 1.5rem;
    width: 100%
}

.header-row {
    color: #000;
    font-size: 14px;
    font-weight: 700
}

.header-row td {
    background: #e0e0e080;
    padding: 10px;
    text-align: center;
    vertical-align: middle
}

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

.chakra-row td {
    background: #e0e0e080;
    color: #000;
    text-align: center;
    vertical-align: middle
}

.chakra-number {
    padding: 10px
}

.total-row {
    font-weight: 700
}

.total-row td {
    color: #000;
    padding: 10px;
    text-align: center;
    vertical-align: middle
}

.n54,
.n55,
.n56,
.total-row {
    background: #e0e0e080
}

button {
    border: none;
    font-family: Gilroy, sans-serif;
    padding: 10px 20px
}

.btn,
button {
    color: #fff;
    cursor: pointer
}

.btn {
    background-color: #009688;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
    padding: 12px 20px;
    transition: background-color .3s ease
}

.hidden {
    display: none
}

.svg-container {
    margin-top: 20px;
    text-align: center
}

svg {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    height: 100%;
    width: 100%
}

#black-dots {
    fill: #0a1935
}

#white-dots {
    fill: #fff;
    stroke: #0a1935;
    stroke-width: 1
}

#main-circle {
    fill: none;
    stroke-width: 1
}

#dot-names {
    fill: #0a1935
}

#dot-values {
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: -1px
}

.fill-red {
    fill: #e11d48
}

.fill-orange {
    fill: #f7a648
}

.fill-yellow {
    fill: #efdb28
}

.fill-green {
    fill: #7ddc32
}

.fill-light-blue {
    fill: #27aefb
}

.fill-blue {
    fill: #2f72f3
}

.fill-violet {
    fill: #9659e3
}

.fill-gray-800 {
    fill: #1f2937
}

.ts {
    font-weight: 600
}

.ts-w {
    fill: #fff
}

.ts-1 {
    font-size: 3rem
}

.ts-2 {
    font-size: 2.2rem
}

.ts-3 {
    font-size: 1.4rem
}

.ts-4 {
    font-size: 1rem
}

.stroke-gray-800 {
    stroke: #1f2937
}

.stroke-gray-700 {
    stroke: #374151
}

:root {
    --main-bg: #f0f9ff;
    --main-bg-gradient: linear-gradient(135deg, #f0f9ff, #e0f7fa);
    --main-bg-hover: linear-gradient(135deg, #e0f7fa, #c0e7ef);
    --accent: #009688;
    --accent-dark: #00796b;
    --white: #fff;
    --text-main: #222;
    --text-secondary: #343a40;
    --shadow: 0 4px 8px #0000001a;
    --shadow-hover: 0 8px 16px #0003;
    --block-bg: #fff;
    --block-bg-secondary: #f0f9ff;
    --overlay-bg: #fff3
}

.dark-theme {
    --main-bg: #181c1f;
    --main-bg-gradient: linear-gradient(135deg, #23272b, #181c1f);
    --main-bg-hover: linear-gradient(135deg, #23272b, #23272b);
    --accent: #00bfae;
    --accent-dark: #00897b;
    --white: #23272b;
    --text-main: #f0f9ff;
    --text-secondary: #b0bec5;
    --shadow: 0 4px 16px #0006;
    --shadow-hover: 0 8px 32px #0009;
    --block-bg: #23272b;
    --block-bg-secondary: #23272b;
    --overlay-bg: #181c1fb3
}

@font-face {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 400;
    src: url(/wp-content/themes/matrixa-wp/app/MystiCoded/static/media/Gilroy-Regular.5c23dc8503bf569ed5ed.woff2) format("woff2"), url(/wp-content/themes/matrixa-wp/app/MystiCoded/static/media/Gilroy-Regular.fa652e766b6a85a1f9cb.ttf) format("truetype")
}

@font-face {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 700;
    src: url(/wp-content/themes/matrixa-wp/app/MystiCoded/static/media/Gilroy-Bold.ef7c40ff1efeaaa4c7c6.woff2) format("woff2"), url(/wp-content/themes/matrixa-wp/app/MystiCoded/static/media/Gilroy-Bold.901a60fc2835c74fba67.ttf) format("truetype")
}

@font-face {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 800;
    src: url(/wp-content/themes/matrixa-wp/app/MystiCoded/static/media/Gilroy-ExtraBold.92e435f7fae6070d73bb.ttf) format("truetype")
}

@font-face {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 300;
    src: url(/wp-content/themes/matrixa-wp/app/MystiCoded/static/media/Gilroy-Light.cc7ab55d27205bd64001.otf) format("truetype")
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0
}

body code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

/*# sourceMappingURL=main.2d05d1ba.css.map*/