@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");

.react-container {
    display: block;
    background: transparent;
    border: none;
    width: 100%;
    height: 100vh;
    padding: 2rem 0;
}

/* ************************************************ */
/* BROWSER STYLE                                    */
/* ************************************************ */

::-webkit-scrollbar {
    height: 8px
}

::-webkit-scrollbar-button {
    width: 100%;
    height: 100%;
}

::-webkit-scrollbar-track {
    background: #23262b;
    border: thin solid #000000;
    box-shadow: 0 0 3px #000000 inset;
}

::-webkit-scrollbar-thumb {
    background: #151515;
    border: thin solid black;
}

::-webkit-scrollbar-thumb:hover {
    background: black
}

::-moz-selection {
    background: #c57f1354;
}

::selection {
    background: #c57f1354;
}

img::selection {
    background: transparent
}

img::-moz-selection {
    background: transparent
}

/* ************************************************ */
/* GENERAL STYLE                                    */
/* ************************************************ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

h4 {
    font-size: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #FCFCFC;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

html,
body {
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    background: linear-gradient(145.44deg, #F2F4FA 0%, #FAFBFC 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -ms-overflow-style: scrollbar;
    -webkit-font-smoothing: antialiased;
    background: #1D1E24;
    color: #AEB0B8;
}

body.fixed {
    overflow: hidden;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: black;
    background-image: url('/img/main-background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

header {
    background-color: #212328;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-img {
    height: 2.3rem;
    width: 2.3rem;
}

.brand-name {
    color: white;
    margin: 0 0 0 0.3rem;
}

.nav-menu {
    display: flex;
}

.nav-item {
    list-style-type: none;
    margin-right: 1rem;
    position: relative;
}

.nav-selected::before {
    content: '';
    position: absolute;
    bottom: -7px;
    width: 100%;
    background-color: #fd8c39;
    display: block;
    height: 4px;
    border-radius: 2px;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.nav-item a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}

main {
    flex: 100%;
}

/* ************************************************ */
/* HOME PAGE                                        */
/* ************************************************ */

.home-main {
    display: flex;
}

.center {
    margin: auto;
}

.center-text {
    text-align: center;
}

.home-title {
    color: white;
    font-weight: bold;
    font-size: 86px;
    text-shadow: 0 0.2rem #18181aa5;
    margin: 0 1rem;
    transition: font-size 0.25s;
    max-width: 67rem;
    margin-bottom: 2rem;
}

.home-title>span {
    color: #fd8c39;
    text-decoration: underline;
}

.home-description {
    color: white;
    text-shadow: 0 0.12rem #18181aa5;
    margin: 0 1rem;
    max-width: 67rem;
    font-size: 25px;
}

.buttons-wrapper {
    margin-top: 10vh;
}

.home-btn {
    padding: 1rem 5rem;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 2rem;
    font-weight: bold;
    transition: background-color 0.25s;
    margin: 0 0.5rem;
}

.btn-primary {
    background-color: #0574ff;
    color: white;
    box-shadow: 0 0.1rem #0574ff45;
    background: linear-gradient(177deg, #f58b38, #ca611b);
}

.btn-primary:hover {
    background-color: #308cff;
}

.btn-secondary {
    background-color: #222324;
    color: white;
    box-shadow: 0 0.1rem #272727a5;
    border: 1px solid;
}

.btn-secondary:hover {
    background-color: #272727;
}

@media (max-width: 1124px) {
    .home-title {
        font-size: 64px;
    }

    .home-description {
        font-size: 18px;
    }

    .buttons-wrapper {
        margin-top: 8rem;
    }
}

@media (max-width: 776px) {
    .nav-menu {
        display: none;
    }

    .home-title {
        font-size: 32px;
    }

    .home-description {
        font-size: 14px;
    }

    .buttons-wrapper {
        margin-top: 6rem;
    }
}

@media (max-width: 609px) {
    .btn-secondary {
        margin-top: 1.5rem;
    }

    .home-btn {
        max-width: 300px;
        width: 300px;
    }

    .buttons-wrapper {
        margin-top: 2rem;
    }
}

/* ************************************************ */
/* NAVBAR                                           */
/* ************************************************ */

.header-wrapper {
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 580px) {
    .header-wrapper {
        padding: 1rem;
    }
}

.nav-toggler {
    background-image: url("/img/ic_menu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 26px;
    height: 24px;
    width: 48px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    display: none;
    margin-left: auto;
    outline: none;
    cursor: pointer;
}

.nav-close {
    background-image: url("/img/ic_menu_close.png");
    position: absolute;
    right: 2rem;
    top: 21px;
}

@media (max-width: 445px) {
    .nav-close {
        right: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .nav-toggler {
        display: block;
    }
}

/* ************************************************ */
/* MOBILE NAVBAR                                    */
/* ************************************************ */

.mobile-nav-wrapper {
    width: 100%;
    height: 100%;
    position: static;
    background-color: black;
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
}

.mobile-nav-content {
    margin: auto;
}

.mobile-nav-menu {
    text-align: center;
    font-size: 24px;
}

.mobile-nav-item {
    list-style-type: none;
    margin: 20px 0px;
    border-bottom: 1px solid #33363d;
    padding: 1.5rem 7.5rem;
    position: relative;
}

.mobile-nav-item a {
    color: #acacac;
    text-decoration: none;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 0.5px;
}

.mobile-nav-selected {
    border: 0;
}

.mobile-nav-selected::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    background-color: #0574ff;
    display: block;
    height: 4px;
    border-radius: 2px;
}

@media screen and (max-width: 452px) {
    .mobile-nav-content {
        margin: auto 2rem;
        width: 100%;
    }

    .mobile-nav-item {
        padding: 1.5rem 0;
    }
}

/* ************************************************ */
/* APPLICATIONS PAGE                                */
/* ************************************************ */

.applications-main {
    width: 100%;
    height: 100%;
}

section {
    margin: 0 0 2rem 0;
}

section:last-child {
    margin: 0;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    transition: 0.25s;
    margin-bottom: 1.5rem;
}

.app-item {
    max-height: 150px;
    background-color: #2e2f36;
    display: flex;
    text-align: left;
    margin: 1rem 0;
    position: relative;
    transition: max-height 0.25s, background-color 0.25s;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.app-item:hover {
    background: #474850;
}

.app-item-img {
    height: 150px;
    width: 150px;
    transition: 0.25s;
    min-width: 150px;
    padding: 1rem;
    background-color: #e7e9e8;
}

.app-item-info {
    padding: 1rem;
}

.app-item-info h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.4rem;
}

.app-item-info p {
    font-weight: 100;
}

.app-item-tags {
    position: absolute;
    bottom: 1rem;
}

.app-item-tag {
    background-color: black;
    border-radius: 2rem;
    color: white !important;
    margin-left: 0.3rem;
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
    font-weight: bold;
    display: inline-block;
}

.app-item-link {
    background-color: #0574ff;
    border-radius: 2rem;
    color: white;
    margin-left: 0.3rem;
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.app-item-link:hover {
    opacity: 0.7;
}

.app-item-mobile-link {
    position: absolute;
    right: 0;
    height: 100%;
    width: 48px;
    text-align: center;
    background-color: #0574ff;
    color: white;
    font-size: 32px;
    vertical-align: middle;
    text-decoration: none;
    font-family: monospace;
    line-height: 74px;
    display: none;
}

@media (max-width: 568px) {

    .applications-main .box-wrapper {
        padding-top: 1rem !important;
    }

    section {
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 992px) {

    .app-item-link,
    .app-item-tag,
    .app-item-info p {
        display: none;
    }

    .app-item-info h4 {
        margin-bottom: 0rem;
    }

    .app-item-img {
        height: 80px;
        width: 80px;
        min-width: 80px;
    }

    .app-item {
        max-height: 80px;
        border-radius: 13px;
    }

    .section-title {
        font-size: 32px;
    }

    .app-item-info {
        display: flex;
        align-items: center;
    }

    .app-item-mobile-link {
        display: block;
    }
}

/* ************************************************ */
/* DOCUMENTAION PAGE                                */
/* ************************************************ */

/* DOCS Page */
.documentation-main {
    width: 100%;
    height: 100%;
}

.box {
    border-radius: 20px;
    padding: 1.875rem;
    position: relative;
    transition: box-shadow .3s ease-in-out;
    background-color: #23262B;
    box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
}

.box-wrapper {
    padding-top: 9.375rem;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    padding-bottom: 3.375rem;
}

@media only screen and (max-width: 580px) {
    .box-wrapper {
        padding-top: 4.125rem;
        padding-bottom: 1rem;
    }
}

@media (min-width: 576px) {
    .box-wrapper {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .box-wrapper {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .box-wrapper {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .box-wrapper {
        max-width: 1140px;
    }
}

/* DOCS Header */
.header-image {
    height: 19.75rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-box {
    display: flex;
    margin-bottom: 1.875rem;
}

.header-box>* {
    min-width: 0;
}

@media only screen and (max-width: 991px) {
    .header-box {
        flex-direction: column;
    }
}

@media only screen and (max-width: 580px) {
    .header-box {
        margin-bottom: 0.9375rem;
    }
}

.header__left {
    display: flex;
    align-items: start;
    flex: 0 0 50%;
    padding-right: 1.875rem;
    position: relative;
}

.header__left>* {
    min-width: 0;
}

.header__left::before {
    content: '';
    background-color: #33363D;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 1px;
}

@media only screen and (max-width: 991px) {
    .header__left {
        align-items: center;
        flex-direction: column;
        padding-right: 0;
        padding-bottom: 1.25rem;
        text-align: center;
    }

    .header__left::before {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        height: 1px;
        width: 100%;
    }
}

.header__right {
    display: flex;
    align-items: start;
    flex: 0 0 50%;
    padding-left: 1.875rem;
}

.header__right>* {
    min-width: 0;
}

@media only screen and (max-width: 991px) {
    .header__right {
        padding-left: 0;
        padding-top: 1.875rem;
    }

    .header__right ul:first-child {
        padding: 0;
    }
}

@media only screen and (max-width: 580px) {
    .header__right {
        flex-direction: column;
        padding-top: 1.5rem;
    }
}

.header__photo {
    background-color: #23262B;
    border: 0.375rem solid #23262B;
    border-radius: 2.9375rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    margin-top: -4.125rem;
    height: 10.125rem;
    overflow: hidden;
    width: 10.125rem;
}

@media only screen and (max-width: 991px) {
    .header__photo {
        margin-top: -5rem;
        margin-bottom: 1.25rem;
    }
}

img {
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    border-style: none;
}


.header__photo-img {
    height: 100%;
    width: 100%;
}

.header__base-info {
    margin-left: 1.5rem;
}

@media only screen and (max-width: 991px) {
    .header__base-info {
        margin-left: 0;
    }
}

.header__base-info .title {
    margin-bottom: 0.125rem;
}

.header__social {
    display: flex;
    align-items: center;
    font-size: 1rem;
    list-style: none;
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding: 0;
}

.header__social>* {
    min-width: 0;
}

.header__social li {
    margin-right: 1rem;
}

.header__social li:last-child {
    margin-right: 0;
}

.header__social a {
    color: #0c98ff;
    fill: #0c98ff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header__social a:hover {
    color: #304CFD;
    fill: #304CFD;
}

@media only screen and (max-width: 991px) {
    .header__social {
        justify-content: center;
    }
}

.header__contact {
    color: #FCFCFC;
    display: block;
    list-style-type: disc;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    list-style: none;
    margin-bottom: 0;
    width: 50%;
}

@media only screen and (max-width: 991px) {
    .header__contact:first-child {
        padding: 0;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 580px) {
    .header__contact {
        padding: 0;
        width: 100%;
    }

    .header__contact:first-child {
        margin-bottom: 0.75rem;
    }
}

.header__contact li {
    margin-bottom: 1rem;
    word-break: break-all;
}

@media only screen and (max-width: 580px) {
    .header__contact li {
        margin-bottom: 0.75rem;
    }
}

.header__contact li:last-child {
    margin-bottom: 0;
}

.overhead {
    color: #AEB0B8;
    font-size: 0.75rem;
    display: block;
    text-transform: uppercase;
}

.status {
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

.status>* {
    min-width: 0;
}

/* DOCS Content */
.content-box-wrapper {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.content-box {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
}

@media only screen and (max-width: 991px) {
    .content-box {
        border-radius: 20px;
    }
}

@media only screen and (max-width: 580px) {
    .content-box {
        border-radius: 13.3333333333px;
    }
}

/* DOCS Apps Dialog*/
.apps-dialog {
    display: block;
    background: 000000bd;
}

/* ************************************************ */
/* DOCUMENTATION POST ELEMENTS                      */
/* ************************************************ */

/* DOCS Title */
.docs-main-title {
    font-size: 32px;
    color: #FCFCFC;
    margin-bottom: 2.3125rem;
    position: relative;
}

.docs-main-title::before,
.docs-main-title::after {
    content: '';
    background-color: #0d86ff;
    border-radius: 0.5rem;
    height: 5px;
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 3.125rem;
    z-index: 1;
}

.docs-main-title::after {
    background-color: #FF965D;
    width: 1rem;
}

@media only screen and (max-width: 580px) {
    .docs-main-title {
        margin-bottom: 1.5625rem;
    }

    .docs-main-title::before,
    .docs-main-title::after {
        height: 0.1875rem;
        bottom: -0.625rem;
    }

    .docs-main-title::before {
        width: 3rem;
    }

    .docs-main-title::after {
        width: 1rem;
    }
}

/* DOCS Paragraph */
.docs-section-title {
    font-size: 24px;
    color: #FCFCFC;
}

/* DOCS Text */
.docs-section-text {
    font-size: 16px;
    line-height: 1.5;
    margin: .5em 0 1em;
}

/* DOCS Link */
.docs-section-link {
    font-size: 16px;
    line-height: 1.5;
    color: #f59b23;
    text-decoration: underline;
}

/* DOCS Image */
.docs-section-img {
    background-color: black;
    border: 2px solid gray;
    margin: .5em 0 1em;
}

.docs-section-img:before {
    content: 'circuit diagram';
    background-color: #818181;
    color: white;
    display: block;
    padding: 0.2rem 0.5rem;
}

.docs-section-img-item-wrapper {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: block;
}

.docs-section-img-item {
    max-width: 100%;
    transition: transform 0.25s, opacity 0.25s;
}

/* DOCS List */
.docs-section-list {
    margin-top: 0;
    margin-bottom: 12px;
}

.docs-section-list li {
    display: list-item;
}

/* DOCS Code */
.docs-section-code {
    font-size: 14px;
    border: 2px solid gray;
    margin: .5em 0 1em;
    position: relative;
}

pre.docs-section-code:before {
    content: attr(source-name);
    background-color: #818181;
    color: white;
    display: block;
    padding: 0.2rem 0.5rem;
}

pre.docs-section-code code {
    max-height: 32rem;
}

pre.docs-section-code code::after {
    content: '';
    background: linear-gradient(0deg, black, transparent);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5rem;
    display: block;
}

/* DOCS Video */
.plyr {
    margin: 20px 0 50px;
    border: 2px solid gray;
}

/* DOCS Table */
.docs-section-table {
    margin: 20px 0 50px;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.docs-section-table thead {
    border-bottom: 2px solid #c1c3c6;
    font-size: 12px;
    text-transform: uppercase;
}

.docs-section-table th {
    font-weight: 100;
    padding: 7px 40px 7px 0;
    text-align: left;
}

.docs-section-table td {
    border-top: 1px solid #d9dadc;
    font-weight: 100;
    padding: 7px 40px 7px 0;
}

.docs-section-table td a {
    color: #f59b23;
}

@media (max-width: 1150px) {
    .docs-section-table td {
        word-break: break-word;
    }
}

/* DOCS Gallery */
.docs-section-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 20px 0 50px;
}

@media only screen and (max-width: 991px) {
    .docs-section-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.docs-section-gallery-item-wrapper {
    background-color: black;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 12rem;
    display: flex;
    border: 2px solid gray;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .docs-section-gallery {
        grid-template-columns: repeat(1, 1fr);
    }

    .docs-section-gallery-item-wrapper {
        height: 18rem;
    }
}

.docs-section-gallery-item-wrapper:hover::before,
.docs-section-img-item-wrapper:hover::before {
    content: url('/img/ic_fullscreen.svg');
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.docs-section-gallery-item-wrapper:hover .docs-section-gallery-item,
.docs-section-img-item-wrapper:hover .docs-section-img-item {
    -ms-transform: scale(1.01);
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    opacity: 0.8;
}

.docs-section-gallery-item {
    transition: transform 0.25s, opacity 0.25s;
    object-fit: scale-down;
    max-height: 100%;
}

@media only screen and (max-width: 991px) {
    .docs-section-gallery {
        margin-left: 0;
        margin-right: 0;
    }

    .news-item {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .news-item:last-child {
        margin-bottom: 0;
    }
}

.docs-section-gallery-item:last-child {
    margin-right: 0;
}

/* DOCS Alert */
.docs-alert {
    display: flex;
    height: auto;
    padding: 1rem;
    border: 1px dashed #d38924;
    background-color: #d888241a;
    color: #e39024;
    margin: .5em 0 1em;
}

@media only screen and (max-width: 580px) {
    .docs-alert {
        flex-direction: column;
    }
}

.docs-alert-img {
    margin: auto 1rem;
}

.docs-alert-img svg {
    height: 48px;
    width: 48px;
    fill: white;
}

.docs-alert-content {
    margin-top: 0.625rem;
    margin-left: 1rem;
}

.docs-alert-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.docs-alert-details {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #95969e;
}

.docs-alert-link {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #e39024;
    text-decoration: underline;
    word-break: break-all;
}

.docs-alert-link:hover {
    color: #d5a465;
}

/* DOCS Separator */
.docs-separator {
    margin: 2rem 0;
}

/* ************************************************ */
/* CONTACT PAGE                                     */
/* ************************************************ */

.contact-main {
    display: flex;
}

footer {
    background-color: black;
    padding: 1rem 0;
    text-align: center;
}

.footer-copyright {
    color: white;
}

.contact-main .home-title {
    word-break: break-word;
    color: #fd8c39;
}

.contact-main .home-button {
	padding: 1rem 1rem;
    background: #fd8c39;
    outline: 0;
    border: 0;
    border-radius: 0.5rem;
    font-size: 20px;
    text-decoration: none;
    color: white;
    display: block;
}

.contact-main .home-divider {
    display: flex;
    width: 100%;
    justify-content: center;
}

.ads-container {}

.horizontal-ad {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.no-top {
    padding-top: 2rem;
}