/*@import url("components/credits.css");*/

:root {
  /* FONTS */
  --font-primary: "Poppins";
  --font-secondary: "Manrope";
  --font-tertiary: "Manrope";

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-light: 300;
  --font-weight-book: "Book";
  --font-weight-semibold: 600;
  --font-weight-bold: 700;  
  --font-weight-italic: "Italic";
  --font-weight-bold-italic: "Bold Italic";
  --font-weight-semibold-italic: "Semibold Italic";
  --font-weight-medium-italic: "Medium Italic";
  --font-weight-light-italic: "Light Italic";

  --desktop-h1-font-family: var(--font-primary);
  --desktop-h1-weight: var(--font-weight-semibold);
  --desktop-h1-size: 56px;
  --desktop-h1-line-height: 70px;
  --desktop-h2-font-family: var(--font-primary);
  --desktop-h2-weight: var(--font-weight-semibold);
  --desktop-h2-size: 32px;
  --desktop-h2-line-height: 40px;
  --desktop-h3-font-family: var(--font-secondary);
  --desktop-h3-weight: var(--font-weight-regular);
  --desktop-h3-size: 32px;
  --desktop-h3-line-height: 40px;
  --desktop-h4-font-family: var(--font-secondary);
  --desktop-h4-weight: var(--font-weight-semibold);
  --desktop-h4-size: 24px;
  --desktop-h4-line-height: 30px;
  --desktop-h5-font-family: var(--font-tertiary);
  --desktop-h5-weight: var(--font-weight-bold);
  --desktop-h5-size: 18px;
  --desktop-h5-line-height: 24px;
  --desktop-h6-font-family: var(--font-tertiary);
  --desktop-h6-weight: var(--font-weight-semibold);
  --desktop-h6-size: 16px;
  --desktop-h6-line-height: 20px;

  --mobile-h1-font-family: var(--font-primary);
  --mobile-h1-weight: var(--font-weight-semibold);
  --mobile-h1-size: 48px;
  --mobile-h1-line-height: 60px;
  --mobile-h2-font-family: var(--font-primary);
  --mobile-h2-weight: var(--font-weight-semibold);
  --mobile-h2-size: 32px;
  --mobile-h2-line-height: 40px;
  --mobile-h3-font-family: var(--font-secondary);
  --mobile-h3-weight: var(--font-weight-regular);
  --mobile-h3-size: 24px;
  --mobile-h3-line-height: 30px;
  --mobile-h4-font-family: var(--font-secondary);
  --mobile-h4-weight: var(--font-weight-semibold);
  --mobile-h4-size: 20px;
  --mobile-h4-line-height: 25px;
  --mobile-h5-font-family: var(--font-tertiary);
  --mobile-h5-weight: var(--font-weight-bold);
  --mobile-h5-size: 18px;
  --mobile-h5-line-height: 20px;
  --mobile-h6-font-family: var(--font-tertiary);
  --mobile-h6-weight: var(--font-weight-semibold);
  --mobile-h6-size: 16px;
  --mobile-h6-line-height: 20px;

  --paragraph-font-family: var(--font-tertiary);
  --paragraph-weight: var(--font-weight-regular);
  --paragraph-size: 16px;
  --paragraph-line-height: 24px;
  --paragraph-small-font-family: var(--font-tertiary);
  --paragraph-small-weight: var(--font-weight-regular);
  --paragraph-small-size: 14px;
  --paragraph-small-line-height: 21px;

  --button-font-family: var(--font-tertiary);
  --button-weight: var(--font-weight-semibold);
  --button-size: var(--paragraph-size);
  --button-line-height: var(--paragraph-line-height);
  --input-font-family: var(--font-tertiary);
  --input-weight: var(--font-weight-semibold);
  --input-size: var(--paragraph-size);
  --input-line-height: var(--paragraph-line-height);
  --link-font-family: var(--font-tertiary);
  --link-weight: var(--font-weight-regular);
  --link-size: var(--paragraph-size);
  --link-line-height: var(--paragraph-line-height);
  --navbar-nav-link-padding-x: 1.5rem !important;


  /* BRAND COLORS */
  --main-brand: #00197D;
  --accents-1: #eeeaff;
  --accents-2: #4200f6;
  --accents-3: #07073d;

  --neutrals-white: #ffffff;
  --neutrals-light-grey: #f2f2f2;
  --neutrals-medium-grey: #d9d9d9;
  --neutrals-dark-grey: #989898;
  --neutrals-black: #000000;

  --ui-positive: #009681;
  --ui-negative: #d13346;
  --ui-warning: #e7aa35;

  /* FILE DATA */
  --border-radius-interactives: 32px;
  --border-radius-cards: 16px;
  --desktop-side-padding: 120px;
  --mobile-side-padding: 24px;
}


body {
    font-family: var(--paragraph-font-family);
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    color: var(--neutrals-black);
    background-color: var(--neutrals-white);
}

.container {
    max-width: 1600px;
    /*width: 100%;*/
    width: 94%;
}

h1 {
    font-size: var(--desktop-h1-size);
    line-height: var(--desktop-h1-line-height);
    font-weight: 600;
    font-family: var(--desktop-h1-font-family);
    color: var(--accents-3);
}

h2 {
    font-size: var(--desktop-h2-size);
    line-height: var(--desktop-h2-line-height);
    font-family: var(--desktop-h2-font-family);
    font-weight: var(--desktop-h2-weight);
    color: var(--main-brand);
}

h3 {
    font-family: var(--desktop-h3-font-family);
    font-size: var(--desktop-h3-size);
    font-weight: var(--desktop-h3-weight);
    line-height: var(--desktop-h3-line-height);
    color: var(--accents-3);
}

h4 {
    font-family: var(--desktop-h4-font-family);
    font-size: var(--desktop-h4-size);
    line-height: var(--desktop-h4-line-height);
    font-weight: var(--desktop-h4-weight);
    color: var(--neutrals-black);
}

h5 {
    font-family: var(--desktop-h5-font-family);
    font-size: var(--desktop-h5-size);
    line-height: var(--desktop-h5-line-height);
    font-weight: var(--desktop-h5-weight);
    color: var(--neutrals-black);
    text-transform: uppercase;
}

h6 {
    font-family: var(--desktop-h6-font-family);
    font-size: var(--desktop-h6-size);
    line-height: var(--desktop-h6-line-height);
    font-weight: var(--desktop-h6-weight);
    color: var(--neutrals-black);
}

.navbar-nav li.nav-item {
    padding: 0 1rem;
}
.navbar-nav .nav-link {
    font-size: var(--link-size);
    font-family: var(--link-font-family);
    line-height: var(--link-line-height);
    color: var(--main-brand);
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}
.navbar-nav .nav-link:hover {
    color: var(--main-brand);
}
.navbar-nav .active .nav-link {
    color: var(--accents-2);
    border-bottom: 2px solid var(--accents-2);
}

.nav-link.dropdown-toggle::after {
    content: "";
    background-image: url(images/header-drop.svg);
    width: 16.25px;
    height: 8.75px;
    border: none !important;
}
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown-menu {
    margin: 0;
    box-shadow: 0px 4px 15px 0px #00000026;
    border: none;
}
.dropdown-item {
    color: var(--main-brand);
}

a.list-group-item {
    font-size: var(--link-size);
    font-family: var(--link-font-family);
    line-height: var(--link-line-height);
    color: var(--main-brand);
    text-transform: uppercase;
}

.link-a {
    text-transform: uppercase;
    display: flex;
    gap: 1rem;
    font-weight: 600;
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    line-height: var(--link-line-height);
    color: var(--main-brand);
}

.link-a i.bi {
    font-size: 16px;
}


nav a.navbar-brand {
    font-size: var(--desktop-h2-line-height);
    line-height: var(--logo-line-height);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    padding-top: 2px;
    padding-bottom: 2px;
}

.navbar-toggler,
.soc-btn {
    border: unset;
    box-shadow: 0px 4px 10px 0px #00000014;
    border-radius: 100%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-brand);
}

.soc-btn {
    border: 1.5px solid var(--main-brand);
    box-shadow: unset;
    transition: all 0.2s ease-in-out;
    background: linear-gradient(105.36deg, #4200F6 11.46%, #6668FF 93.63%);
    border: none;
}

.soc-btn i.bi {
    font-size: 18px;
    color: var(--neutrals-white);
}

.soc-btn:hover {
    border-color: var(--accents-1);
    opacity: 1;
}

.soc-btn:hover i.bi {
    color: var(--accents-1);
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.btn {
    background-color: var(--main-brand);
    background-color: #000;
    color: var(--neutrals-white);
    padding: 12px 28px;
    border: unset;
    font-weight: var(--button-weight);
    transition: all 0.2s ease-in-out;
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-family: var(--button-font-family);
    border-radius: 100px;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #000;
    color: var(--accents-1);
    /*opacity: 1;*/
}

.btn-white {
    background-color: var(--neutrals-white);
    color: var(--main-brand);
}
.btn-white-action {
    gap: 8px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 6px;
    text-transform: none;
    font-weight: 400;
}
.btn-white:hover {
    /*background-color: var(--neutrals-light-grey);
    color: var(--main-brand);*/
    background-color: var(--accents-2);
    color: var(--neutrals-white);
}

.btn-light {
    background-color: var(--neutrals-light-grey);
    color: var(--main-brand);
}
.btn-light:hover {
    background-color: var(--accents-2);
    color: var(--neutrals-white);
}

.btn-light-blue {
    background: var(--accents-1);
    color: var(--main-brand);
    font-weight: normal;
}
.btn-light-blue:hover {
    background: var(--accents-1);
    color: var(--accents-2);
}

.btn-linear-blue {
    background: linear-gradient(105.36deg, #4200F6 11.46%, #6668FF 93.63%);
    color: var(--neutrals-white);
    font-weight: normal;
}
.btn-linear-blue:hover {
    background: linear-gradient(105.36deg, #4200F6 11.46%, #6668FF 93.63%);
    color: var(--accents-1);
}

.btn-black{
    background: var(--neutrals-black);
    opacity: 1;
}
.btn-black:hover{
    background: var(--neutrals-black);
    opacity: 0.8;
    color: var(--neutrals-white);
}

.btn-credits {
    text-transform: none;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 8px 8px 8px 16px;
    font-weight: 400;
}
.btn-credits > .bi-plus-circle-fill {
    color: var(--accents-2);
}
.btn-credits:hover > .bi-plus-circle-fill {
    color: var(--neutrals-white);
}


.bg-FBFBFB {
    background-color: #FBFBFB;
}

.bg-brand {
    background-color: var(--main-brand);
}
.bg-brand *{
    color: var(--neutrals-white);
}

.bg-accent-1 {
    background-color: var(--accents-1);
}

.bg-accent-2 {
    background-color: var(--accents-2);
}
.bg-accent-2-1{
background-color: rgba(66, 0, 246, 0.8);
}
.bg-accent-2-2{
background: rgba(66, 0, 246, 0.6);
}

.bg-accent-2 * {
    color: var(--neutrals-black);
}

.bg-accent-2 h3 {
    color: var(--main-brand);
}
.bg-accent-3 {
    background-color: var(--accents-3);
}
.bg-light-grey {
    background-color: var(--neutrals-light-grey);
}
.bg-medium-grey {
    background-color: var(--neutrals-medium-grey);
}

.text-brand {
    color: var(--main-brand);
}

.text-accent-1 {
    color: var(--accents-1);
}

.text-accent-2 {
    color: var(--accents-2);
}

.text-accent-3 {
    color: var(--accents-3);
}

.bb-medium-grey {
    border-bottom: 1px solid var(--neutrals-medium-grey);
}

.br-intr {
    border-radius: var(--border-radius-interactives);
}

.br-cards {
    border-radius: var(--border-radius-cards);
}


.formfield {
    border: none;
    border-radius: var(--border-radius-interactives);
}

.input-div-email {
    display: flex;
    border-radius: 50px;
    border: 1px solid var(--neutrals-dark-grey);
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
}

.input-email {
    border: 0;
    outline: 0;
    padding: 1rem;
    border: 1px solid var(--neutrals-light-grey);
    background: transparent;
    border-radius: 50px;
}

.input-email::placeholder {
    font-family: var(--paragraph-font-family);
    font-weight: 400;
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--neutrals-dark-grey);
}

.small-p {
    font-family: var(--paragraph-small-font-family);
    font-size: var(--paragraph-small-size);
    line-height: var(--paragraph-small-line-height);
    font-weight: var(--paragraph-small-weight);
}

.link {
    font-size: var(--link-size);
    line-height: var(--link-line-height);
    font-family: var(--link-font-family);
    font-weight: var(--link-weight);
    text-decoration: unset;
}






footer a {
    color: var(--main-brand);
}


@media(max-width:991px) {
    body {
        font-family: var(--font-tertiary);
        font-size: var(--paragraph-size);
        line-height: var(--paragraph-line-height);
        color: var(--neutrals-black);
    }

    h1 {
        font-size: var(--mobile-h1-size);
        line-height: var(--mobile-h1-line-height);
        font-weight: var(--mobile-h1-weight);
        font-family: var(--mobile-h1-font-family);
    }

    h2 {
        font-size: var(--mobile-h2-size);
        line-height: var(--mobile-h2-line-height);
        font-family: var(--mobile-h2-font-family);
        font-weight: var(--mobile-h2-weight);
    }

    h3 {
        font-family: var(--mobile-h3-font-family);
        font-size: var(--mobile-h3-size);
        font-weight: var(--mobile-h3-weight);
        line-height: var(--mobile-h3-line-height);
    }

    h4 {
        font-family: var(--mobile-h4-font-family);
        font-size: var(--mobile-h4-size);
        line-height: var(--mobile-h4-line-height);
        font-weight: var(--mobile-h4-weight);
    }
}











#loader {
    display: none;
    width: 100%;
    height: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgb(0 0 0 / 60%);
}
#loader:after {
    opacity: 0;
    content: 'It takes a while for the images to be generated.';
    position: absolute;
    z-index: 9;
    color: #fff;
    left: 50%;
    top: calc(50% - 100px);
    transform: translate(-50%);
    font-size: 34px;
    white-space: pre-wrap;
    text-align: center;
    width: calc(100% - 3rem);
}
#loader.show-loader:after {
    opacity: 1;
}
#loader .lds-ripple {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
}
#loader .lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#loader .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
    0% {
        top: 50px;
        left: 50px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}








#industry-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
    gap: 16px;
}
#industry-links .card {
    background: #EEEAFF;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    border: 2px solid #EEEAFF;
    /* aspect-ratio: 1; */
}
#industry-links .card:hover {
    border: 2px solid var(--main-brand);
    /*background: linear-gradient(135deg, #e9e4ff 0%, #dfd4ff 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 48, 135, 0.12);*/
}
#industry-links .card-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}
#industry-links .card-icon {
    color: var(--main-brand);
    text-align: right;
}
#industry-links .card-icon .bi-arrow-up {
    transition: all 0.2s ease;
    transform: rotate(45deg);
}
#industry-links .card:hover .card-icon .bi-arrow-up {
    /*opacity: 1;*/
    transform: rotate(45deg) translate(0, -8px);
}

@media (max-width: 768px) {
    #industry-links {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    #industry-links .card {
        padding: 20px;
        min-height: 100px;
    }
}



/*.generation-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.generation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.generation-card .generation-image-wrapper {
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
}
.generation-card .generation-image-wrapper img {
    transition: transform 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1;
}
.generation-card:hover .generation-image-wrapper img {
    transform: scale(1.05);
}*/
.generation-card .generation-image-wrapper {
    overflow: hidden;
    cursor: pointer;
}
.generation-card .generation-image-wrapper img {
    transition: transform 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1;
}
.generation-card .generation-image-wrapper:hover img {
    transform: scale(1.05);
}

.generation-card .generation-image-wrapper.pending {
    pointer-events: none;
}
.generation-card .generation-image-wrapper.pending .text-accent-2 {
    position: absolute;
    margin: auto;
    width: 100%;
    text-align: center;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}
.generation-card .generation-image-wrapper.pending img {
    opacity: 0.15;
}


.card.generation-card > .card-body {
    margin-top: -32px;
    z-index: 1;
}

.badge-info {
    color: var(--accents-2);
    background-color: var(--accents-1);
    font-size: 16px;
    font-weight: normal;
    padding: 6px 10px;
    white-space: normal;
    border-radius: 8px;
    line-height: 1.2;
}





.pagination .page-numbers {
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    margin: 0 0.25rem;
    text-decoration: none;
    color: #989898;
    background-color: #F2F2F2;
    transition: all 0.2s ease;
}
.pagination .page-numbers:hover {
    background-color: #989898;
    color: white;
}
.pagination .page-numbers.current {
    background-color: var(--main-brand);
    color: white;
}





.mollie-credits-form-container {
    margin: 20px 0;
}

.mollie-credits-info {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f2f2f2;
    border-radius: 4px;
}

.mollie-credits-packages {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
    display: flex;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.mollie-package {
    width: 100%;
    display: flex;
    gap: 16px;
    padding: 15px;
    border: 2px solid #d9d9d9;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.mollie-package:has(input[type="radio"]:checked) {
    border-color: var(--main-brand);
}

.mollie-package:hover {
    border-color: var(--main-brand);
    box-shadow: 0 0 10px rgba(0, 115, 170, 0.1);
}

.mollie-package input {
    margin-right: 10px;
}

.mollie-package input:checked + .mollie-package-details {
    color: var(--main-brand);
}
.mollie-package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}
.mollie-package-credits {
    font-size: 16px;
}

.mollie-package-price {
    font-size: 18px;
    color: #009681;
}




.bi-info-circle {
    background: var(--neutrals-white);
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    right: 16px;
    top: 6px;
    cursor: pointer;
    color: var(--accents-3);
    padding: 6px;
}
.bi-info-circle:hover {
    background: var(--neutrals-light-grey);
}


.modal .modal-content {
    border: none;
    border-radius: var(--border-radius-cards);
}
.modal .modal-header .close {
    padding: 14px;
    color: var(--accents-3);
}
.modal .modal-body {
    text-align: center;
}



#taskModal figure {
    max-width: 460px;
    margin: 0 auto;
}
#taskModal .modal-body {
    margin: 0 auto;
    max-width: 560px;
}
@media (min-width: 992px) {
    #taskModal .modal-lg {
        max-width: 600px;
    }
}


@media (min-width: 992px) {
    #creationModal .modal-lg {
        max-width: 700px;
    }
}