/* CSS Styles */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #333333;
    font-weight: 500;
}

body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
body::-webkit-scrollbar-track {
    background: #3f3f3f;
}
body::-webkit-scrollbar-thumb {
    background-color: #b12077;
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #b12077;
}
body::-webkit-scrollbar-button {
    display: none!important;
}

a {
    color: #b12077;
}

#before-load {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background: #333333;
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.pace-inactive {
    display: none;
}
.pace .pace-progress {
    background: #b12077;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 100%;
    width: 100%;
    height: 4px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-color: rgba(47, 47, 47, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #3f3f3f;
}

.footer {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #262626;
    color: #6b6b6b;
}

.wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    /* background: url(images/bg-grid.png); 
    background-size: auto;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom; */
    background-color: #303030;
}

p {
    line-height: 170%;
}

h1, h2, h3, h4, h5 {
    color: #b12077;
    font-weight: 600;
}

.form-control {
    box-shadow: none!important;
    outline: none!important;
}

.nav-show {
    width: 36px; 
    height: 36px; 
    border-radius: 0.4rem; 
    cursor: pointer;
}

.badge-v {
    background: #b12077; 
    color: #333333; 
    padding: 0 6px;
}

@media (max-width: 991.98px) {
    body {
        font-size: 0.98rem;
    }
    .header {
        height: 65px;
    }
    .header-menu {
        position: absolute;
        top: 65px;
        background: #333333;
        left: 0;
        right: 0;
        height: 100vh;
        padding-bottom: calc(3rem + 65px) !important;
        overflow-y: auto;
    }

    .header-menu.hovered {
        overflow-y: auto;
    }  
    .header-menu::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    .header-menu::-webkit-scrollbar-track {
        background: #3f3f3f;
    }
    .header-menu::-webkit-scrollbar-thumb {
        background-color: #b12077;
        border-radius: 10px;
    }
    .header-menu::-webkit-scrollbar-thumb:hover {
        background-color: #b12077;
    }
    .header-menu::-webkit-scrollbar-button {
        display: none !important;
    }

    .header-menu a {
        font-size: 1.1rem;
    }
    .lang-icon {
        border: 1px solid #3f3f3f; 
        background: #3f3f3f; 
        color: #ffffff; 
        border-radius: 0.4rem; 
        padding: 4px 8px; 
        min-height: 36px; 
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s;
    }
    .content {
        margin-left: 0px!important;
    }
    .cookie-card { 
        display: flex; 
        position: fixed; 
        z-index: 999; 
        bottom: 1.5rem; 
        /* left: 0; */ 
        right: 0; 
        box-shadow: 7px 7px 20px 1px #0c002e0f; 
        max-width: 400px; 
        background: #ffffff; 
        font-size: 0.78rem; 
        border-radius: 0.5rem; 
        margin: 0 1rem;
    }
    .btn-w {
        width: 100%;
    }
    .wrapper {
        position: relative;
        margin-top: 65px;
    }
    .section-p {
        padding-top: 30px;
    }
    .img-join {
        width: 70%;
        max-width: 330px;
        filter: drop-shadow(2px 4px 6px #262626);
    }
    .link-social-m {
        border-bottom: none!important;
    }
    .link-social-m div {
        border-radius: 1rem;
        width: 40px;
        height: 40px;
        border: 1px solid transparent;
        transition: all 0.2s;
    }
    .link-social-m:hover div {
        background: #b12077;
        border: 1px solid #b12077;
        transition: all 0.2s;
    }
    .link-social-m div img {
        height: 24px;
        opacity: 0.7;
    }
    .link-social-m:hover div img {
        opacity: 1;
    }
    .link-social div {
        background: #3f3f3f;
        border-radius: 1rem;
        width: 40px;
        height: 40px;
        border: 1px solid #3f3f3f;
        transition: all 0.2s;
    }
    .link-social:hover div {
        background: #b12077;
        border: 1px solid #b12077;
        transition: all 0.2s;
    }
    .link-social div img {
        height: 24px;
        opacity: 0.7;
    }
    .link-social:hover div img {
        opacity: 1;
    }
    .link-social-x div img {
        height: 20px;
        opacity: 0.7;
    }
    .link-social-x:hover div img {
        opacity: 1;
    }
    .link-social-youtube div img {
        height: 20px;
        opacity: 0.7;
    }
    .link-social-youtube:hover div img {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .header {
        height: 80px;
    }
    .img-logo {
        margin-left: -0.5rem;
    }
    .lang-icon {
        border: 1px solid #3f3f3f; 
        background: #3f3f3f; 
        color: #ffffff; 
        border-radius: 0.4rem; 
        padding: 4px 12px; 
        min-height: 36px; 
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s;
    }
    .wrapper {
        height: 800px;
        margin-top: 80px;
    }
    .section-p {
        padding-top: 30px;
    }
    .content {
        margin-left: 300px!important;
    }
    .cookie-card { 
        display: flex; 
        position: fixed; 
        z-index: 999; 
        bottom: 2.5rem; 
        right: 2.5rem; 
        box-shadow: 7px 7px 20px 1px #0c002e0f; 
        max-width: 400px; 
        background: #ffffff; 
        font-size: 0.78rem; 
        border-radius: 1rem;
    }
    .btn-w {
        width: auto;
    }
    .text-big {
        font-size: 1.15rem;
    }  
    .img-join {
        /* width: 80%; */
        width: 95%;
        max-width: 440px;
        filter: drop-shadow(2px 4px 6px #262626);
    }
    .accordion-button {
        font-size: 1.1rem;
    }
    .link-social div {
        background: #3f3f3f;
        border-radius: 1.5rem;
        width: 80px;
        height: 80px;
        border: 1px solid #3f3f3f;
        transition: all 0.2s;
    }
    .link-social:hover div {
        background: #b12077;
        border: 1px solid #b12077;
        transition: all 0.2s;
    }
    .link-social div img {
        height: 40px;
        opacity: 0.7;
    }
    .link-social:hover div img {
        opacity: 1;
    }
    .link-social-x div img {
        height: 36px;
        opacity: 0.7;
    }
    .link-social-x:hover div img {
        opacity: 1;
    }
    .link-social-youtube div img {
        height: 32px;
        opacity: 0.7;
    }
    .link-social-youtube:hover div img {
        opacity: 1;
    }
}

.btn-join {
    border: 1px solid #b12077; 
    background: #b12077; 
    border-radius: 0.4rem; 
    padding: 16px 30px; 
    min-height: 36px;
    text-decoration: none;
    color: #ffffff;
    /* animation: scaleButton 10s ease-in-out infinite;
    animation-delay: 3s; */
}
.btn-join:hover {
    text-decoration: underline;
}

.btn-scale {
    animation: scaleButton 10s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes scaleButton {
    0% {
        transform: scale(1.0);
    }
    5% {
        transform: scale(0.9);
    }
    10% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.0);
    }
}

.btn-join-second {
    border: 1px solid #b12077; 
    background: #b12077; 
    border-radius: 0.4rem; 
    padding: 16px 30px; 
    min-height: 36px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s;
}
.btn-join-second:hover {
    text-decoration: none;
    filter: drop-shadow(0px 0px 10px rgba(201, 36, 135, 1));
    transition: all 0.2s;
}

.btn-join-v {
    border: 2px solid #b12077!important; 
    background: transparent; 
    border-radius: 0.4rem; 
    padding: 14px 30px!important; 
    min-height: 36px;
    text-decoration: none;
    color: #b12077!important;
    transition: all 0.2s;
}
.btn-join-v:hover {
    color: #ffffff!important;
    text-decoration: none;
}

.header-logo img {
    height: 60px;
    transition: all 0.2s;
}

.header-logo:hover img {
    filter: drop-shadow(0px 0px 10px rgba(201, 36, 135, 1));
    transition: all 0.2s;
}

.btn-g, .btn-move-g {
    border: 1px solid #3f3f3f;
    background: #3f3f3f;
    border-radius: 0.4rem;
    padding: 16px 30px;
    min-height: 36px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-g:hover, .btn-move-g:hover {
    text-decoration: underline;
}

.btn-move-g i {
    transition: transform 0.2s ease-in-out;
}
.btn-move-g:hover i {
    transform: translateX(5px);
}

.btn-docs {
    border: 1px solid #f2f2f2; 
    background: #f2f2f2; 
    border-radius: 0.4rem; 
    padding: 16px 30px; 
    min-height: 36px; 
    text-decoration: none;
    color: #333333;
    transition: all 0.2s;
}
.btn-docs:hover {
    color: #ffffff;
    background: #333333; 
    text-decoration: none;
    transition: all 0.2s;
}

.btn-help {
    border: 1px solid #333333; 
    background: #333333; 
    border-radius: 0.4rem; 
    padding: 16px 30px; 
    min-height: 36px; 
    text-decoration: none;
    color: #c4c4c4;
}
.btn-help:hover {
    color: #ffffff;
    text-decoration: underline;
}

.header-menu a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    padding-top: 3px;
}
.header-menu a:hover {
    color: #ffffff;
    text-decoration: none;
    /* border-bottom: 3px solid #b12077; */
    /* width: 100%; */
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: #b12077;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

.link-v {
    color: #b12077;
    text-decoration: none;
}
.link-v:hover {
    color: #b12077;
    text-decoration: underline;
}

.text-v {
    color: #b12077;
}

.legals {
    color: #c4c4c4;
    text-decoration: underline;
}
.legals:hover {
    color: #ffffff;
    text-decoration: underline;
}

.phone-frame img {
    animation: logoScale 1s ease-in-out forwards;
    /* animation: logoScale 1s ease-in-out forwards, slideEffect 10s infinite 1s; */
}

@keyframes logoScale {
    0% {
        transform: scale(0.15);
        opacity: 0;
    }
    100% {
        opacity: 1.0;
        transform: scale(1.0);
    }
    }
    @keyframes slideEffect {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(5px);
    }
    75% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.accordion {
    max-width: 1100px!important;
    margin: 0px auto!important;

    --bs-accordion-btn-icon-width: 1.1rem!important;
}
.accordion-item {
    background: #333333 !important;
    color: #c4c4c4 !important;
    border-color: #303030 !important;
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    border-top: 1px solid #3b3b3b !important;
}
.accordion-header {
    border-radius: 0.5rem;
    border: 1px solid #3f3f3f;
    transition: all 0.2s;
}
.accordion-header:hover {
    border: 1px solid #555555;
}
.accordion-body {
    text-align: start !important;
    background: #333333;
    border-top: none;
    padding: 20px 30px 20px 30px;
    border-radius: 0.5rem !important;
}
.accordion-button {
    background: #3f3f3f!important;
    color: #ffffff!important;
    box-shadow: none!important;
    font-weight: 500 !important;
    border-radius: 0.5rem;
}
.accordion-button::after {
    filter: invert(1) grayscale(1)!important;
    opacity: 0.5!important;
}

.dropdown-menu {
    border: 1px solid #5f5f5f!important;
    box-shadow: 7px 7px 20px 1px #0c002e0f!important;
    margin-top: 5px!important;

    --bs-dropdown-link-hover-bg: #f2f2f2!important;
    --bs-dropdown-link-active-bg: #b12077!important;
}

.logo-image-bg-first {
    position: absolute;
    margin: 0px;
    right: -2rem;
    top: -12rem;
    animation: moveEffectFirst 5s linear infinite;
    animation-delay: 1s;
    opacity: 0;
}
.logo-image-bg-first img {
    width: 30px;
    height: auto;
    transform: rotate(-15deg);
    filter: drop-shadow(0px 0px 10px rgba(201, 36, 135, 1));
}
@keyframes moveEffectFirst {
    0% {
        /* top: -8rem; */
    }
    50% {
        /* top: -9rem; */
        opacity: 1;
    }
    100% {
        /* top: -8rem; */
    }
}

.logo-image-bg-second {
    position: absolute;
    margin: 0px;
    right: 30rem;
    bottom: -1rem;
    animation: moveEffectSecond 5s linear infinite;
    animation-delay: 2s;
    opacity: 0;
}
.logo-image-bg-second img {
    width: 40px;
    height: auto;
    /* filter: grayscale(100); */
    transform: rotate(30deg);
    filter: drop-shadow(0px 0px 10px rgba(201, 36, 135, 1));
}
@keyframes moveEffectSecond {
    0% {
        /* bottom: -6rem; */
    }
    50% {
        /* bottom: -5rem; */
        opacity: 1;
    }
    100% {
        /* bottom: -6rem; */
    }
}

.logo-image-bg-third {
    position: absolute;
    margin: 0px;
    right: -10rem;
    bottom: -10rem;
    animation: moveEffectThird 5s linear infinite;
    animation-delay: 3s;
    opacity: 0;
}
.logo-image-bg-third img {
    width: 30px;
    height: auto;
    /* filter: grayscale(100); */
    transform: rotate(60deg);
    filter: drop-shadow(0px 0px 10px rgba(201, 36, 135, 1));
}
@keyframes moveEffectThird {
    0% {
        /* bottom: -10rem; */
    }
    50% {
        /* bottom: -9rem; */
        opacity: 1;
    }
    100% {
        /* bottom: -10rem; */
    }
}

.logo-square {
    position: absolute;
    width: 240px;
    height: 240px;
    right: 0;
    top: 10rem;
}

.img-wrapper {
    width: 126px;
    height: 126px;
    border-radius: 50%; 
    background: #3f3f3f;
}
.img-wrapper img {
    height: 80px;
}

.num-wrapper {
    background: linear-gradient(45deg, #962168, #b12077);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.94rem;
    position: absolute;
    top: -5px;
    right: -5px;
}

.lang-icon:hover, .lang-icon:focus {
    border: 1px solid #555555;
}