﻿@import '/fonts/montserrat/Montserrat.css';

/* GENERAL */

:root {
    --color-brand: #d9694a;
    --color-brand-light: #b14e33;
    --color-brand-lighter: #c44f29;
    --color-brand-op50: #d9694a52;
    --color-dark: #121212;
    --color-dark-100: #3d3d3d;
    --color-dark-blue: #130735;
    --color-dark-blue-2: rgba(107, 49, 226, 0.3);
    --color-bg-1: #232323;
    --color-light-blue: #b18fff;
    --color-snowy-purple: #F4F3FF;
    --width-container: 1300px;
    --width-container-2: 1500px;
    --padding-layout: 50px;
    --panel-radius: 50px;
    --color-text-fade: #9d9d9d;
    --color-text-fade-100: #414141;
    --color-text-black: #222222;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 150%;
    font-size: 15px;
    background-color: black;
    color: white;
    max-height: 100vh;
    padding: 0;
    margin: 0;
}

body, input, textarea, button {
    font-family: Montserrat, system-ui, sans-serif;
}

a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--color-brand);
    }

h5 {
    margin: 10px 0;
    font-weight: 400;
    font-size: 20px;
}

.btn-gradient {
    background: linear-gradient(90deg, #F4F3FF70 -8.5%, #4032D7 105.5%);
    font-weight: 700;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    transition: background 0.3s ease;
    font-size: 18px;
    padding: 8px 20px;
    border-radius: 52px;
    gap: 10px;
    border: none;
    color: white;
}

    .btn-gradient:hover {
        color: inherit;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) -8.5%, #6c5fff 105.5%);
    }

    .btn-gradient.large {
        font-size: 20px;
        padding: 14px 20px;
        border-radius: 52px;
        gap: 15px;
    }


.btn-gradient-vert {
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.3) 0%, rgba(245, 245, 245, 0) 159.62%);
    font-weight: 700;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    transition: background 0.3s ease;
    font-size: 18px;
    padding: 8px 20px;
    border-radius: 52px;
    gap: 10px;
    border: none;
    color: white;
}

    .btn-gradient-vert:hover {
        color: inherit;
        background: linear-gradient(180deg, rgba(245, 245, 245, 0.5) 0%, rgba(245, 245, 245, 0) 159.62%);
    }

.inner-flex {
    display: inline-flex;
}

.hover-primary:hover {
    outline: 2px solid white;
}

.bmx-container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 var(--padding-layout);
}

.bmx-container-2 {
    max-width: var(--width-container-2);
    margin: 0 auto;
    padding: 0 var(--padding-layout);
}

.bmx-text-gradient {
    background: linear-gradient(176deg, white 43%, var(--color-brand) 62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.bmx-text-gradient-2 {
    background: linear-gradient(90deg, #130735 0%, var(--color-brand) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.bmx-blur-box {
    border-radius: 10px;
    background-color: #d9d9d92e;
    backdrop-filter: blur(10px);
    padding: 30px;
    box-sizing: border-box;
    outline: 1px solid #8a7ea3;
}

.bmx-pill {
    border: 1px solid #FFFFFF80;
    background: linear-gradient(183.64deg, rgba(255, 255, 255, 0.2) -22.71%, rgba(255, 255, 255, 0) 110.71%);
    border-radius: 65.5px;
    padding: 5px 10px;
}

/* responsive */
@media only screen and (max-width: 600px) {
    .bmxm-hide {
        display: none;
    }
}
@media only screen and (min-width: 601px) {
    .bmxm-show {
        display: none;
    }
}

/* MAIN */
#app {
    max-height: 100vh; /* modaling trick*/ 
    overflow: auto; 
    position: relative;
}
.page-modal {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
}

.text-fade {
    color: var(--color-text-fade);
}

/* SECTION: Error Page */
.bmx-error-page {
    text-align: center;
    margin: 100px 0 150px 0;
}

.bmx-error-page img {
    margin: 20px auto;
    max-width: 90%;
    box-sizing: border-box;
}

/* SECTION: Navigation */
.bmx-nav-wrapper {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    background: #000000c7;
    backdrop-filter: blur(10px);
    z-index: 10;
    padding: 0 10px;
}
.bmx-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.bmx-nav .logo img {
    object-fit: contain;
    max-height: 40px;
}

.bmx-nav .menu {
    display: inline-flex;
    flex: 1;
    flex-direction: row;
    gap: 60px;
    margin: 0;
    margin-left: 60px;
    padding: 0;
}

.bmx-nav .menu li {
    margin: 0;
    list-style: none;
    font-size: 1.4rem;
    font-weight: 400;
    cursor: pointer;
}

.bmx-nav .menu li a:hover, .bmx-nav .menu li.active a {
    color: white;
}
.bmx-nav .menu li a {
    color: var(--color-text-fade);
}

.bmx-nav-right {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.bmx-nav-right .lang-icon {
    width: 32px; 
    height: 32px;
}

.bmx-heading {
    font-size: 2rem;
    line-height: 100%;
    position: relative;

    font-weight: 400;
    font-size: 3rem;
    line-height: 170%;
    text-align: center;
}
.bmx-heading:before {
    content: "";
    width: 70px;
    height: 4px;
    background-color: var(--color-brand-light);
    position: absolute;
    top: -0px;
}

/* FOOTER */
.bmx-footer {
    background-color: var(--color-dark);
    padding: 50px 0;
}

.bmx-footer .logo {
    height: 60px;
}

.bmx-footer h5 {
    font-weight: 700;
    font-size: 40px;
    line-height: 35px;
}

.bmx-footer .g1 {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

    .bmx-footer .g1 .e2 h5 {
        font-size: 18px;
        font-weight: 600;
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 10px;
        color: var(--color-text-fade);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
        .bmx-footer .g1 .e2 a {
            font-weight: 400;
            font-size: 1rem;
            display: flex;
            flex-direction: row;
            gap: 20px;
            margin-top: 20px;
        }

        .bmx-footer .g1 .e2 img {
            object-fit: contain;
        }

    .bmx-footer .g1 .e3 {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .bmx-footer .g2 {
        color: var(--color-text-fade);
    }

    .bmx-footer .bot {
        border-top: 1px solid #2b2b2b;
        margin-top: 40px;
        padding-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .bmx-footer .social {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .bmx-footer .social a {
        filter: brightness(0.7);
    }

    .bmx-footer .social img {
        margin-left: 30px;
    }

    .bmx-footer .social a:hover {
        filter: brightness(1);
    }


.bmx-contact-2 {
    display: flex;
    flex-direction: row;
    column-gap: 60px;
    position: relative;
    margin: 80px auto;
}

.bmx-contact-2 .g1 {
    flex: 1
}

.bmx-contact-2 .g1 p {
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    margin-bottom: 30px;
}

.bmx-contact-2 .g1 h2 {
    color: var(--color-brand);
}

.bmx-contact-2 .g1 img {
    max-width: 100%;
}

.bmx-contact-2 .g1 .contact {
    margin-bottom: 50px;
}

.bmx-contact-2 .g1 .contact > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.bmx-contact-2 .g1 .contact > a {
    font-size: 1.4rem;
    font-weight: 400;
}

.bmx-contact-2 .g2 {
    flex: 1;
    border-radius: 20px;
    background-color: #d9d9d92e;
    backdrop-filter: blur(10px);
    height: 100%;
    padding: 30px 40px;
    box-sizing: border-box;
    max-width: 500px;
}

.bmx-form-contact {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
}

.bmx-form-contact .head {
    font-weight: 600;
    font-size: 35px;
    grid-area: a;
    margin-bottom: 20px;
    margin-top: 5px;
}

.bmx-form-contact .label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.bmx-form-contact input, .bmx-form-contact textarea {
    border: 1px solid var(--color-dark);
    padding: 10px;
    font-size: 14px;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
    color: white;
    border-radius: 0;
    outline: none;
    transition: border 0.3s ease;
    border-radius: 10px;
    background-color: var(--color-dark);
}

.bmx-form-contact input:active, .bmx-form-contact textarea:active {
    border-color: var(--color-brand);
}

.bmx-form-contact input[type=file] {
    padding: 7px 10px 8px 10px;
}

.bmx-form-contact input[type=checkbox] {
    width: unset;
}

.bmx-form-contact input:focus, .bmx-form-contact textarea:focus {
    border-color: var(--color-brand);
}

.bmx-form-contact .checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px dashed white;
}

.bmx-form-contact button {
    display: inline-flex;
    flex-direction: row;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: var(--color-brand);
    cursor: pointer;
}

.bmx-form-contact button:hover {
    background-color: var(--color-brand-light);
}


.bmx-form-contact button:disabled {
    background-color: #646464;
    color: #333;
    opacity: 0.7;
    cursor: not-allowed;
}

.bmx-popup {
    display: none;
}

.bmx-popup-simple {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
    z-index: 100;
    background-color: rgba(0,0,0,0.8);
}

.bmx-popup-simple.show {
    display: flex;
}

.bmx-popup-simple .bmx-popup-dialog {
    position: relative;
}

.bmx-popup-simple > .bmx-popup-dialog > h4 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 25px;
    margin-left: 20px
}

.bmx-popup-simple .content {
    background-color: white;
    padding: 0 40px 35px 40px;
    border-radius: 20px;
    overflow: hidden;
    color: black;
    max-width: 500px;
}

.bmx-popup-simple .content img {
    max-width: calc(100% + 80px);
    min-width: 40vw;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: 20px;
}

.bmx-popup-simple button.close {
    border: 0;
    overflow: hidden;
    border-radius: 50%;
    display: block;
    background-color: white;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 100%;
    cursor: pointer;
}

    .bmx-popup-simple button.close:hover {
        outline: 1px solid white;
        color: var(--color-brand);
    }


.bmx-arrow-left {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 4px;
    margin-top: 29px;
    border-radius: 9999px;
    background-color: var(--color-brand);
}

    .bmx-arrow-left::before {
        content: "";
        position: absolute;
        top: calc(50% - 2px);
        left: 0;
        width: 45px;
        height: 4px;
        border-radius: 9999px;
        background-color: var(--color-brand);
        transform: rotate(-45deg);
        transform-origin: 2px 50%;
    }


/* Carousel-X */
.carousel-x {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-x .track {
  display: flex;
  flex-direction: row;
  will-change: transform;
}

.carousel-controls.controls {
    align-self: center;
}

.carousel-controls button {
    background-color: transparent;
    border: none;
    outline: none;
    user-select: none;
    cursor: pointer;
    width: 50px;
}

.carousel-controls button:active {
    opacity: 0.7;
}

.carousel-controls .next img {
    width: 100%;
}

.carousel-controls .prev img {
    width: 100%;
    transform: rotate(180deg);
}