/*----------------------------------------*/
/*  INFO
/*----------------------------------------*/

/*  Media Queries:          320px, 480px, 768px, 1024px, 1200px

/*----------------------------------------*/
/*  VARS
/*----------------------------------------*/

:root {
    --background: #15171E;

    --default-color: #d5d7dd;
    --default-font-family: "Roboto-400";

    --a-hover: #fff;

    --menu-active: #ffd000;
    --menu-item-hover-bg: #33353c80;

    --contentbox-bg: #23252B;
    --contentbox-bg-hover: #2b2e35;
    --contentbox-border: #33353C;
    --contentbox-border-hover: #3b3d44;

    --flex-box-bg: #1e2028;

    --area-bright: #2c2e35;
    --area-dark: #1b1d25;

    --scroll-to-top-btn-bg: #191c24;
    --scroll-to-top-btn-bg-hover: #20232c;

    --white: #fff;
    --blue: #00bfff;
    --gray: #a3a3a3;
    --green: #32cd32;
}

/*----------------------------------------*/
/*  BODY
/*----------------------------------------*/

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--default-color);
    font-family: var(--default-font-family);
    font-size: 16px;
    font-weight: 500;
    scroll-behavior: smooth;
    scroll-padding-top: 4.9rem;
    /* overflow-x: hidden; */
}

a {
    text-decoration: none;
    color: var(--default-color);
}
a:hover {
    color: var(--a-hover);
}

/*----------------------------------------*/
/*  FLEX
/*----------------------------------------*/

.flex {
    display: flex;
}

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

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

.flex-left {
    align-items: flex-start;
    text-align: left;
}

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

.flex-right {
    align-items: flex-end;
    text-align: right;
}

.flex-top {
    justify-content: flex-start;
    text-align: top;
}

.flex-bottom {
    justify-content: flex-end;
    text-align: bottom;
}

/*----------------------------------------*/
/*  FLEX BOX CONTAINER
/*----------------------------------------*/

.flex-box-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    text-align: top;
    width: 100%;
    gap: 25px;
}

.flex-box-1, 
.flex-box-2, 
.flex-box-3 {
    background-color: var(--flex-box-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.8);
}

.flex-box-1 { width: 100% }
.flex-box-2 { width: calc(50% - 12.5px); }
.flex-box-3 { width: calc(33.33% - 16.7px); }

@media (max-width: 900px) {
    .flex-box-3 { width: calc(50% - 12.5px); }
}

@media (max-width: 600px) {
    .flex-box-2 { width: 100%; }
    .flex-box-3 { width: 100%; }
}

.flex-box-image {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    background: #141417;
    background: linear-gradient(0deg, rgba(20, 20, 23, 1) 0%, rgba(27, 29, 37, 1) 50%, rgba(44, 46, 53, 1) 100%);
}

.flex-box-image-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 5px 0 0 0;
    object-fit: cover;
    margin-right: 1rem;
}

.flex-box-image-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flex-box-content {
    padding: 1rem;
    margin-top: initial;
}

.flex-box-content-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.flex-box-content-description {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--default-color);
}

@media (max-width: 600px) {
    .flex-box-content-title {
        font-size: 1.2rem;
    }

    .flex-box-content-description {
        font-size: 0.95rem;
    }
}

/*----------------------------------------*/
/*  FLEX BOX (SMALL)
/*----------------------------------------*/

.flex-box-small-1, 
.flex-box-small-2, 
.flex-box-small-3 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    font-family: sans-serif;
    cursor: default;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.5);
    background: var(--flex-box-bg);
    padding: 6px 10px;
    border: 1px solid var(--contentbox-border);
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out;
}

.flex-box-small-1:hover, 
.flex-box-small-2:hover, 
.flex-box-small-3:hover {
    background-color: var(--contentbox-bg-hover);
    border-color: var(--contentbox-border-hover);
}

.flex-box-small-1 { width: 100% }
.flex-box-small-2 { width: calc(50% - 12.5px); }
.flex-box-small-3 { width: calc(33.33% - 16.7px); }

@media (max-width: 900px) {
    .flex-box-small-3 { width: calc(50% - 12.5px); }
}

@media (max-width: 600px) {
    .flex-box-small-2 { width: 100%; }
    .flex-box-small-3 { width: 100%; }
}

.flex-box-small-1 > div > img,
.flex-box-small-2 > div > img,
.flex-box-small-3 > div > img {
    max-width: 38px;
}

.flex-box-small-title,
.flex-box-small-description {
    text-align: left;
}

.flex-box-small-title {
    font-weight: bold;
    font-size: 16px;
}

.flex-box-small-description {
    margin-top: 3px;
}

/*----------------------------------------*/
/*  MENU BAR
/*----------------------------------------*/

.menu-box-out {
    /* position: fixed; */
    /* top: 0; */
    /* margin-top: 100px; */
    left: 0;
    right: 0;
    height: 80px;
    background: var(--contentbox-bg);
    border-top: 1px solid var(--contentbox-border);
    border-bottom: 1px solid var(--contentbox-border);
    z-index: 9999;
}
.menu-box-out-fixed {
    position: fixed;
    top: 0;
    border-top: none;
}

.menu-box-in {
    width: 100%;
    height: 100%;
    gap: 50px;
}
.menu-box-in > div {
    margin: 10px 0;
}

/*----------------------------------------*/
/*  MENU + LOGO + ITEMS
/*----------------------------------------*/

.menu-logo-mobile {
    display: none;
}

.menu-menu {
    width: 100%;
}

.menu-item {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border-right: 1px solid var(--contentbox-border);
}
.menu-item:first-child {
    padding: 0 20px 0 0;
}
.menu-item:last-child {
    border-right: none;
    padding: 0 0 0 20px;
}

.menu-item-button {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: background-color 0.1s ease-in-out;
}
.menu-item-button:hover {
    background: var(--menu-item-hover-bg);
}

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

    .menu-logo {
        flex-grow: 1;
        justify-content: flex-start;
    }
}

/*----------------------------------------*/
/*  MOBILE MENU BUTTON
/*----------------------------------------*/

.mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
}

/*----------------------------------------*/
/*  MAIN CONTENT
/*----------------------------------------*/

.main-content {
    width: 100%;
    margin-top: 25px;
}
.main-content-adjustment {
    margin-top: 130px;
}

/*----------------------------------------*/
/*  AREAS
/*----------------------------------------*/

.area-title {
    position: relative;
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid #6161617c;
    border-bottom: 1px solid #6161617c;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
.area-title::after {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #6161617c transparent transparent transparent;
}

.area-bright,
.area-dark {
    width: 100%;
    padding: 50px 0;
}

.area-bright {
    background-color: var(--area-bright);
}

.area-dark {
    background-color: var(--area-dark);
}

/*----------------------------------------*/
/*  SECTIONS
/*----------------------------------------*/

.section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-parallax {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 250px;
    padding: 0 25px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.5);
    margin: auto;
    top: 50%;
    max-width: 1140px;
    transform: translateY(-50%);
    border-radius: 10px;
}

/*----------------------------------------*/
/*  CONTENT BOX
/*----------------------------------------*/

.content-box {
    background: var(--contentbox-bg);
    border: 1px solid var(--contentbox-border);
    border-radius: 5px;
    padding: 10px 15px;
}

/*----------------------------------------*/
/*  SUPPORTED BANNER
/*----------------------------------------*/

.supported-banner {
    position: relative;
}
.supported-banner > div:first-child {
    position: absolute;
    top: -15px;
    right: 15px;;
    background-color: #1c1d22;
    border: 1px solid var(--contentbox-border);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    /* color: var(--green); */
    color: var(--white);
}

/*----------------------------------------*/
/*  FOOTER INFO
/*----------------------------------------*/

.footer-info {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 25px 30px;
    border-top: 1px solid #6161617c;
    font-size: 12px;
    color: var(--gray);
}

@media (max-width: 900px) {
    .footer-info {
        justify-content: center;
    }
}

/*----------------------------------------*/
/*  VIDEO
/*----------------------------------------*/

.videos {
    gap: 25px;
}

.video-box-1,
.video-box-2,
.video-box-3 {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}
.video-box-1:hover,
.video-box-2:hover,
.video-box-3:hover {
    transform: scale(1.03);
}

.video-box-1 { width: 100% }
.video-box-2 { width: calc(50% - 12.5px); }
.video-box-3 { width: calc(33.33% - 16.7px); }

@media (max-width: 1024px) {
    .video-box-3 { width: calc(50% - 12.5px); }
}

@media (max-width: 768px) {
    .video-box-2 { width: 100%; }
    .video-box-3 { width: 100%; }
}

.video-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-play-button {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.video-play-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
.video-play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 16px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.video-title {
    margin-top: 12px;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.video-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/*----------------------------------------*/
/*  FONTAWESOME
/*----------------------------------------*/

.fa-default { font-size: 12px; }
.fa-small { font-size: 10px; }
.fa-medium { font-size: 14px; }
.fa-large { font-size: 16px; }

.fa-left-1 { margin-left: 1px; }
.fa-left-2 { margin-left: 2px; }
.fa-left-3 { margin-left: 3px; }
.fa-left-4 { margin-left: 4px; }
.fa-left-5 { margin-left: 5px; }
.fa-left-6 { margin-left: 6px; }
.fa-left-7 { margin-left: 7px; }
.fa-left-8 { margin-left: 8px; }
.fa-left-9 { margin-left: 9px; }
.fa-left-10 { margin-left: 10px; }

.fa-right-1 { margin-right: 1px; }
.fa-right-2 { margin-right: 2px; }
.fa-right-3 { margin-right: 3px; }
.fa-right-4 { margin-right: 4px; }
.fa-right-5 { margin-right: 5px; }
.fa-right-6 { margin-right: 6px; }
.fa-right-7 { margin-right: 7px; }
.fa-right-8 { margin-right: 8px; }
.fa-right-9 { margin-right: 9px; }
.fa-right-10 { margin-right: 10px; }