:root {
    /* Colors */
    --color-primary: #5500E2;
    --color-text: #14191e;
    --color-background: #fff;
    --color-navlink-hover: linear-gradient(90deg, #BE33D1, #F9CFFF);
    --color-blue-gradient: linear-gradient(135deg, var(--color-primary), #AF7CFF 50%);
    --landing-main-button-white-box-shadow: 4px 4px 0px 0px rgb(255, 255, 255);
    --landing-main-button-black-box-shadow: 4px 4px 0px 0px rgb(0, 0, 0, 1);

    /* Typography */
    --font-primary: Roboto, sans-serif;
    --font-heading: Roboto, sans-serif;
    --font-accent: Tektur;

    /* Spacing Scale */
    --space-xs: 0.25rem; /* 4px */
    --space-sm: 0.5rem; /* 8px */
    --space-md: 1rem; /* 16px */
    --space-mdlg: 1.5rem; /* 24px */
    --space-lg: 2rem; /* 32px */
    --space-xl: 4rem; /* 64px */

    /* Font Sizes */
    --text-xs: 0.75rem; /* 12px */
    --text-sm: 1rem; /* 16px */
    --text-md: 1.25rem; /* 20px */
    --text-lg: 1.5rem; /* 24px */
    --text-xl: 2rem; /* 32px */

    /* Variables */
    --main-padding: 0px;
}

body p:not(.price.fakeprice, .nav-link) {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: var(--text-xs);
}

h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--text-xl);
}

h4 {
    font-family: var(--font-primary);
    font-size: var(--text-md);
    font-weight: 500;
}

h3 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: var(--text-lg);
}

h5 {
    color: black;
    font-weight: 500;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
}

body p {
    margin: 0;
    padding: 0;
}

main
> :not(
    svg.triangle,
    .ellipse,
    .ellipse2,
    .div-black,
    .first_slide,
    .leftside_navbar
  ) {
    width: 100%;
    position: relative;
    z-index: 3;
}

.background {
    position: relative;
    background-attachment: scroll;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

svg.triangle,
.ellipse,
.ellipse2 {
    z-index: 1;
    pointer-events: none;
    position: fixed;
    filter: blur(62px);
}

svg.triangle {
    top: -15%;
    height: 150vh;
    flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .scroller {
        animation: slide 15s ease-out infinite;
        will-change: transform;
    }

    .triangle {
        animation: moveTriangle 13s ease-out infinite;
        will-change: transform, opacity;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroller,
    .triangle {
        animation: none;
    }
}

@keyframes moveTriangle {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    10% {
        opacity: 1;
    }

    20% {
        transform: translate(center, 0) scale(1);
    }

    /* 90% {
          transform: translate(-105%, 0);
          opacity: 75%;
      } */
    100% {
        transform: translateX(-105%);
        opacity: 0%;
    }
}

.ellipse {
    scale: 0.7;
    opacity: 0.3;
    top: -3%;
    right: 60%;
    width: 100vh;
    flex-shrink: 0;
    height: 25vh;
    border-radius: 50%;
    background: var(--color-primary);
    animation: moveEllipse 13s ease-out infinite;
}

@keyframes moveEllipse {
    0% {
        opacity: 0;
    }

    /* 10%{
          opacity: 0.2;
      } */
    50% {
        opacity: 0.3;
    }

    /* 75%{
          opacity: 0.3;
      } */
    100% {
        transform: translateX(250%);
        opacity: 0%;
    }
}

.ellipse2 {
    width: 40vh;
    height: 20vh;
    transform: rotate(-12.9deg);
    bottom: 40%;
    right: 45%;
    flex-shrink: 0;
    border-radius: 50%;
    opacity: 0.2;
    background: #d900be;
    animation: moveEllipse2 13s ease-out infinite;
}

@keyframes moveEllipse2 {
    0% {
        transform: translate(center, center);
        opacity: 0%;
    }

    /* 25% {
          opacity: 0.1;
      } */
    50% {
        opacity: 0.3;
    }

    100% {
        scale: 2;
        transform: translate(150%, 150%);
        opacity: 0%;
    }
}

.first_slide {
    margin: 0 auto;
    position: relative;
    color: white;
    width: 100%;
    height: 100vh;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background-image: url("../../img/cards/scrollable-reviews/workspace_background.0ea0f558b16d.webp");
    background-color: rgb(49, 26, 0);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    -webkit-transition: -webkit-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    -moz-transition: -moz-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    -o-transition: -o-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    -ms-transition: -ms-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    background-attachment: fixed;
    transform-origin: center 72px;
    padding-top: 100px;
}

.first_slide__upper-image {
    position: absolute;
    transition: transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    -webkit-transition: -webkit-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    -moz-transition: -moz-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    -o-transition: -o-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    -ms-transition: -ms-transform 0.8s ease-out, border-radius 0.8s ease-out, opacity 0.8s ease-out, margin 0.8s ease-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../img/cards/scrollable-reviews/workspace_background.0ea0f558b16d.webp");
    background-color: rgb(49, 26, 0);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    will-change: transform, opacity, margin;
}

.first_slide__upper-image.tofade {
    opacity: 1;
}

.first_slide__upper-image.faded {
    opacity: 0;
}


.first_slide-overlay {
    position: absolute;
    transition: 0.8s ease-out;
    -webkit-transition: 0.8s ease-out;
    -moz-transition: 0.8s ease-out;
    -o-transition: 0.8s ease-out;
    -ms-transition: 0.8s ease-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
} */

/* .first_slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
} */

.first_slide * {
    z-index: 3;
}

.first_slide_image_1 {
    background-image: url("../../img/cards/scrollable-reviews/workspace_background.0ea0f558b16d.webp");
}

.first_slide > p {
    font-family: var(--font-primary) !important;
    font-size: var(--text-lg) !important;
    font-weight: 500 !important;
    line-height: 28.78px;
    text-align: center;
    margin-top: 5vh;
}

.first_slide span {
    width: 100%;
    font-family: var(--font-accent);
    font-size: 80px;
    font-weight: 600;
    line-height: 174px;
    text-align: center;
    color: rgb(255, 255, 255);
    margin-bottom: 60px;
}

.join_div {
    align-items: flex-end;
    display: flex;
    gap: var(--space-mdlg);
}

.join_label-container {
    width: 276px;
    height: 47px;
    position: relative;
    overflow: hidden;
}

.join_label-container :nth-child(1) {
    top: 0;
}

.join_label-container :nth-child(2) {
    top: 84px;
}

.join_label-container :nth-child(3) {
    top: 168px;
}

.join_label-container :nth-child(4) {
    top: 252px;
}

.join_label-container :nth-child(5) {
    top: 336px;
}


.join_label {
    position: absolute;
    display: flex;
    width: 100%;
    height: 42px;
    padding: 4px 8px;
    gap: var(--space-sm);
    border-radius: 8px;
    border: 1px solid var(--color-primary);
    background-color: #fff;
    align-items: center;
    align-content: center;
}

.scroller {
    top: 5px;
    width: 100%;
    height: 47px;
    position: absolute;
    animation: slide 15s ease-out infinite;
}

.first_slide .brand-name {
    position: absolute;
    left: 10%;
    bottom: 76px;
}

.first_slide .brand-name p {
    font-size: var(--text-xs);
}

.first_slide .brand-name h3 {
    color: white;
}

@keyframes slide {
    /* --- SLIDE 1 --- */
    0% {
        top: 5px;
    }
    15% {
        top: 5px;
    }

    20% {
        top: -79px;
    }

    /* --- SLIDE 2 --- */
    35% {
        top: -79px;
    }

    40% {
        top: -163px;
    }

    /* --- SLIDE 3 --- */
    55% {
        top: -163px;
    }

    60% {
        top: -247px;
    }

    /* --- SLIDE 4 --- */
    75% {
        top: -247px;
    }

    80% {
        top: -331px;
    }

    /* --- SLIDE 5 --- */
    95% {
        top: -331px;
    }

    98% {
        top: 10px;
    }
    100% {
        top: 5px;
    }
}

.join_label p {
    margin: 0;
    padding: 0;
    color: #848484;
    font-weight: 400;
    font-size: var(--text-xs);
    line-height: 18px;
    z-index: 2;
}

.landing-main-button {
    display: block;
    width: fit-content;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: var(--text-sm);
    line-height: 1.5rem;
    background: var(--color-blue-gradient);
    background-size: 200% 200%;
    border: 1px solid transparent;
    box-shadow: var(--landing-main-button-white-box-shadow);
    min-width: 145px;
    padding: 9px 17px 9px 17px;
    border-radius: 6px;
    color: white;
    transition: background 0.4s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.landing-main-button:hover {
    background-position: 100% 0;
    box-shadow: var(--landing-main-button-black-box-shadow);
}

.landing-main-btn-black-box-shadow {
    box-shadow: var(--landing-main-button-black-box-shadow);
}

.landing-main-btn-black-box-shadow:hover {
    box-shadow: var(--landing-main-button-white-box-shadow);
}

.landing-main-btn-white-box-shadow {
    box-shadow: var(--landing-main-button-white-box-shadow);
}

.landing-main-btn-white-box-shadow:hover {
    box-shadow: var(--landing-main-button-black-box-shadow);
}

.sticky-wrapper {
    position: relative;
}

.sticky {
    min-height: 0 !important;
    position: sticky;
    justify-content: flex-end !important;
    bottom: 0%;
    height: calc(100vh - 56px);
}

/* For change font in all info divs*/
.info-section h2,
.info-section h4,
.info-section h5,
.info-section summary {
    font-family: 'Tektur';
    font-weight: 800;
}

.reviews-div {
    width: 100%;
    margin: 5vh 0; /* 10vh 0 */
    z-index: 1;
}

.reviews-container {
    flex-wrap: wrap;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: var(--space-mdlg);
}

.review-block-container {
    gap: var(--space-mdlg);
    display: flex;
    flex: 3;
}

.review-block {
    flex: 1;
    min-width: 230px;
    background-color: white;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.09);
    border-radius: 6px;
}

.review-block .content {
    padding: 20px;
}

.review-block .avatar {
    border-radius: 6px 6px 0 0;
    width: 100%;
    height: calc(75px + 10vw);
    min-height: 180px;
    max-height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.review-board {
    flex: 1;
    border-radius: 16px;
}

.review-board .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-board p {
    font-family: var(--font-primary);
    font-size: var(--text-sm) !important;
    text-align: left;
    color: rgba(20, 25, 30, 1);
    margin-bottom: 8px;
}

.advantages-div {
    position: relative;
    z-index: 3;
    flex-grow: 1;
}

.advantages-div .landing-main-button {
    margin: 15px auto auto auto;
}

.advantages-div h2 {
    text-align: left;
    color: white;
}

.advantages-div p {
    color: white;
    width: 100%;
}

.advantages-div span {
    display: block;
    font-family: Roboto;
    font-size: var(--text-xs);
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    margin: 4.25rem auto 1rem;
}

.advantages-div .button {
    margin: 0 auto;
}

.advantages-container {
    width: 100%;
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}

/* .advantages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  gap: var(--space-md);
  margin-block: var(--space-xl);
} */

.advantages-block {
    display: flex;
    align-items: flex-end;
    border-radius: 16px;
    position: relative;
    z-index: 3;
    flex: 1 0 325px;
    height: 356px;
    background-color: #5d7697;
    background-position: center;
    background-size: cover;
    border: 1px solid #BE33D1;
    transition: box-shadow 0.2s;
}

.advantages-block:nth-of-type(1) {
    background-image: url("../../img/cards/advantages/advantages-block-img_1.faa5c175eded.webp");
}

.advantages-block:nth-of-type(2) {
    background-image: url("../../img/cards/advantages/advantages-block-img_2.c98bd88ab5fc.webp");
}

.advantages-block:nth-of-type(3) {
    background-image: url("../../img/cards/advantages/advantages-block-img_3.01f96e474624.webp");
}

.advantages-block__content {
    width: 100%;
    padding: var(--space-md);
    border: inherit;
    border-radius: inherit;
    background-color: #fff;
    overflow: hidden;
    max-height: 4.5rem;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.scroll-container {
    position: relative;
    width: 100%;
    flex: 1;
}

.scroll-container .scroll-h2 {
    position: sticky;
    top: 100px;
    margin-top: 50px;
    margin-bottom: 110px;
}

.scroll-container .scrollCard {
    position: sticky;
    width: 100%;
    top: 240px;
    padding: var(--space-md);
    margin: 0 0 300px;
    background-color: rgba(240, 240, 240, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.scroll-container .scrollCard:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /*transform: translateY(calc((5 - 1) * var(10px)));*/
}

.scroll-container .scrollCard .images img {
    max-height: 100%;
}

.scroll-container .scrollCard summary {
    pointer-events: none;
    font-family: var(--font-accent);
    font-size: var(--text-md);
    font-weight: 800;
    color: white;
    list-style: none;
    cursor: default;
}

.scroll-container .card-white summary {
    pointer-events: none;
    font-family: var(--font-accent);
    font-size: var(--text-md);
    font-weight: 800;
    color: black;
    list-style: none;
    cursor: default;
}

.scroll-container summary::marker,
.scroll-container summary::-webkit-details-marker {
    display: none;
}

.scroll-container .scrollCard .scrollCard-content {
    margin-top: var(--space-mdlg);
    display: flex;
    gap: var(--space-mdlg);
    width: 100%;
}

.scroll-container .scrollCard .scrollCard-content p {
    color: white;
    display: block;
    flex: 2;
    font-size: var(--text-sm);
    font-weight: 400;
}

.scroll-container .scrollCard .scrollCard-content .images {
    display: flex;
    gap: var(--space-mdlg);
    flex: 2;
    overflow: auto;
}

.scroll-container .scrollCard .scrollCard-content .img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(240, 242, 246, 1);
    flex: 1;
    min-width: 225px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
}

.top-container {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 100px;
    max-height: 650px;
}

.top10container {
    display: flex;
}

.top-container .text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    color: white;
}

.top-container h2 {
    color: white;
}

.top-container .text-block p {
    font-size: var(--text-sm) !important;
}

.top-container .text-block button {
    margin-top: 15px;
}

.top-container .scrollable-cards {
    flex: 1;
    flex-wrap: wrap;
    min-width: 475px;
    /* max-height: 600px; */
    overflow: auto;
    scrollbar-width: none;
    display: flex;
    gap: 15px;
}

.top-container .scrollable-cards__wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: var(--space-mdlg);
}

.top-container .scrollable-cards .review-block {
    flex: none;
    width: calc(50% - 7.5px);
}

.top-container .scrollable-cards .review-block .content p {
    /* max-height: 50px; */
    overflow: hidden;
}

.dropdown-container {
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.dropdown-container label {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: 200;
    text-align: left;
    color: #ffffff;
}

#category-select {
    width: 100%;
    padding: 10px;
    font-size: var(--text-sm);
    border-radius: 8px;
    border: none;
    appearance: none;
    background-color: #ffffff;
    color: rgba(41, 41, 46, 1);
    background-image: url("../../img/elements/dropdown-arrow-down.77912731883b.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

/* FOP */

.accounting-section {
    padding-inline: 5%;
    box-sizing: content-box;
}

.accounting-section h2 {
    margin-top: 100px;
    margin-bottom: 50px;
}

.accounting-section .content {
    display: flex;
    /* align-items: center; */
    align-items: stretch;
    gap: var(--space-mdlg);
    margin-bottom: 0.75rem;
}

.accounting-section .image-container {
    margin: 10px 0;
    flex: 1;
}

.accounting-section .image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.accounting-section .description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.accounting-section .description .service {
    margin: 0.75rem 0;
    transition: 0.2s;
}

.accounting-section .description .service h4 {
    font-size: var(--text-md);
    font-weight: bold;
    color: #1e1e1e;
}

.accounting-section .description .service p {
    font-size: var(--text-sm);
    color: black;
}

.accounting-section .description .service:hover {
    background: #fff;
    box-shadow: 4px 4px 0px 0px black;
    border: 1px solid var(--Info, rgba(79, 158, 248, 1));
    border-radius: 8px;
    padding: var(--space-sm);
}

.accounting-section {
    margin-bottom: 50px;
}

/* MARQUEE */

.marquee-container {
    width: 100%;
    height: 43px;
    background: var(--color-blue-gradient);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(85, 0, 226, 0.3);
    margin-bottom: 60px;
    flex-shrink: 0;
    z-index: 10;
}

/* FOG */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    margin-bottom: 60px;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #5500E2, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #7B2BF9, transparent);
}

.marquee-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;

    padding-right: 20px;
    gap: 20px;
}

.marquee-group span {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* .modal {
  z-index: 1055 !important;
} */

/* .modal-backdrop {
  z-index: 2 !important;
} */

/* GENERAL */

.div-white {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    min-height: 500px;
    padding-inline: 5%;
}

.div-white__accounting {
    padding: 0;
}

.div-white__scroll-container {
    min-height: 0;
}

/* .div-white:last-of-type{
  min-height: 0
} */

/* .div-white:first-of-type {
  min-height: 0;
} */

.div-black {
    min-height: 800px;
    width: 100%;
    background-color: black;
    /* position: relative; */
    /* z-index: 0; */
    display: flex;
    align-items: center;
    padding: 120px 5%;
    /*
    justify-content: center; */
}

.div-black > :nth-child(1), .div-white > :nth-child(1) {
    max-width: 1600px;
    margin-inline: auto;
}

@media (min-width: 1800px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1600px;
    }
}


.mobile,
.mobile > * {
    display: none;
}

/*  */
/* HEADER FOOTER */
/*  */

nav,
footer {
    z-index: 5;
}

header.fixed-top + main {
    padding-top: 0 !important;
    margin-bottom: 0px;
}

.bg-mode.header {
    background-color: #ffffff00;
    transition: 0.8s;
}

.header-static {
    background-color: #ffffff00;
}

.navbar-nav {
    --bs-nav-link-color: white;
    --bs-nav-link-hover-color: white;
}

.navbar {
    font-family: var(--font-primary);
}

.underline-effect span {
    position: relative;
    display: inline-block;
    padding: 0;
    width: auto;
    line-height: 1.2;
}

.underline-effect span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--color-navlink-hover);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .50s ease;
}

.underline-effect:hover span::after,
.underline-effect:focus span::after,
.underline-effect.active span::after {
    transform: scaleX(1);
}

/* gradient text */
.underline-effect:hover span {
    background: var(--color-navlink-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.login-btn {
    color: var(--color-header-current);
}

.login-btn:hover {
    background: var(--color-navlink-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

:root {
    --color-header-current: #ffffff;
}

/* header .dropdown-language {
  color: #0e5ec8;
} */

.dropdown-item {
    font-weight: 300;
}

header .dropdown-language::before {
    background-color: currentColor !important;
}

header .dropdown-language::after {
    background: #0e5ec8;
    background-color: var(--color-header-current) !important;
}

header button.dropdown-toggle {
    color: var(--color-header-current);
}

a.login-btn {
    color: var(--color-header-current);
}


.mobile-language {
    display: flex;
    font-weight: 300;
    gap: 1.75rem;
}

.mobile-language p {
    font-family: var(--font-primary);
}

.mobile-language button {
    border: 0;
    background: none;
    font-weight: 300;
    transition: 0.05s;
    color: var(--color-primary);
}

.mobile-language .active {
    border-bottom: 2px solid var(--color-primary);
}

.mobile-language > * {
    flex-grow: 1;
}

.mobile-language .languages {
    display: flex;
    max-width: 100px;
    justify-content: space-between;
}

.nav-item.mobile-language-identifier {
    margin-bottom: 20px;
}

section {
    padding-top: 0;
    padding-bottom: 0;
}

.nav-item.dropdown.profile-dropdown-toggler *:not(i),
.nav-item.dropdown.finances *:not(i) {
    font-family: var(--bs-body-font-family);
}

.nav-item.dropdown.profile-dropdown-toggler a.dropdown-item {
    font-weight: 500;
}

.navbar.navbar-light.navbar-expand-lg {
    font-family: var(--bs-body-font-family);
}

/* Lightning strike */

/* Lightning container*/
.lightning-bolt {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 10;
    opacity: 0;
    pointer-events: none; /* do not prevent clicking */
    transition: opacity 0.05s ease-in-out;

}

.lightning-bolt img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Managed by JS */
.lightning-bolt.active {
    /* Start infinite flash animation while class is active */
    animation: real-lightning-flash 0.6s linear infinite;
}

/* Light animation */
@keyframes real-lightning-flash {
    0%, 100% {
        opacity: 0;
    }
    /* First shine flash */
    10%, 90% {
        opacity: 1;
        /* Light around PNG */
        filter: brightness(1.5) drop-shadow(0 0 30px var(--color-primary));
    }
    /* flickering */
    15%, 85% {
        opacity: 0.4;
    }
    /* the brightest flash */
    20%, 80% {
        opacity: 1;
        filter: brightness(2.5) drop-shadow(0 0 50px #fff);
    }
    /* Intermediate state */
    50% {
        opacity: 0.8;
        filter: brightness(1.2) drop-shadow(0 0 20px var(--color-primary));
    }
}

/* --- Shaking label --- */
.join_label.shake {
    background-color: var(--color-primary) !important;
    border-color: #fff !important;
    animation: shake-anim 0.1s linear infinite;
}

.join_label.shake p {
    color: #fff !important;
}

@keyframes shake-anim {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-2px, 1px);
    }
    50% {
        transform: translate(2px, -1px);
    }
    75% {
        transform: translate(-1px, -1px);
    }
}