@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:wght@200&family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --font-primary: 'DM Sans', sans-serif;
    --size-15vh: 15dvh;
    --size-10vh: 10dvh;
    --size-5vh: 5vh;
    --size-30vw: 30vw;
    --size-20vw: 20vw;
    --size-10vw: 10vw;
    --size-5vw: 5vw;
    --size-10px: 10px;
    --size-20px: 20px;
    --size-50px: 50px;
    --size-100px: 100px;
    --width-button-lg: 350px;
    --navbar-height: 10dvh;
    --footer-height: 10dvh;
    --space-small: 2%;
    --space-mid: 5%;
    --space-large: 10%;
    --hamburger-thickness: 2px;
    --hamburger-height: 5vw;
    --hamburger-min-width: 50px;
    --hamburger-width: 8vw;
    --hamburger-rotation: 45deg;
    --number-menu-items: 4;
    --image-border-radius: 30px;
    --hero-images-count: 3;
    --hero-images-width: 45%;
    --hero-images-animation-duration: 2s;
    --transition-500ms: 0.5s;
    --transition-1s: 1s;
    --cta-animation-g: 1s;
    --sm-logo-font-size-multiplicator: 3;
    --lg-logo-font-size-multiplicator: 3;
    --sm-font-size: 3vw;
    --sm-footer-height: 15dvh;
    --lg-font-size: 1.5vw;
    
    /* Original Color Scheme */
    --primary-blue: #18188e;
    --blue-gradient-1: blue;
    --blue-gradient-2: rgba(55, 23, 44, 0.683);
    --blue-gradient-3: rgb(11, 11, 145);
    --hover-blue: #2a2ac2;
    --active-blue: #0f0f6e;
    --gray-text: #4a5568;
    --blurple: #6060a4;
    --color-error: #db4437;
    --color-success: #17a35f;
    
    /* Layout Improvements */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}


/* Apply styles to the scrollbar */
::-webkit-scrollbar {
    width: 3px; /* Set the width of the vertical scrollbar */
    height: 3px; /* Set the height of the horizontal scrollbar */
}

/* Apply styles to the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: var(--blue-gradient-3);
    border-radius: 4px; /* Rounded corners */
}

/* Apply styles to the scrollbar track (the area the thumb moves along) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}



html, body {
    font-family: var(--font-primary);
    color: var(--gray-text);
    min-height: 100dvh;
    width: 100%;
    background-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    padding-inline: 5vw;
    padding-top: 5vw;
}

section {
    max-width: 100vw;
}

.hidden-item, div .hidden-item, p .hidden-item, span .hidden-item {
    display: none !important;
}

.fully-hidden-item {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    pointer-events: none;
}

.invisible-item, div .invisible-item, p .invisible-item, span .invisible-item {
    visibility: hidden;
}

.color-success {
    color: #17a35f !important; /* Green */
  }
  
.color-error {
color: #db4437 !important; /* Red */
}

.color-white {
    color: white !important;
}

.color-green {
    color: #2ecc71 !important;
}


.color-darkblue {
    color: darkblue !important;
}

.color-gold {
    color: #d19019 !important; /* Gold */
}

.color-gray {
    color: #999 !important;
}

.background-darkblue {
    background-color: darkblue !important;; ;
}

.background-white {
    background-color: white !important;; ;
}

.background-green {
    background-color: #2ecc71 !important;
}

.background-red {
    background-color: #db4437 !important;
}

.list .material-symbols-outlined {
    margin-right: 1vw;
    font-size: 2rem;
    color: #6911c1;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.container {
    display: grid;
    grid-template-rows: var(--navbar-height) var(--body-height) var(--footer-height);
}

.container-100vh {
    display: grid;
    grid-template-rows: var(--navbar-height) 1fr;
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.container-min-100vh {
    display: grid;
    grid-template-rows: var(--navbar-height) 1fr;
    min-height: 100dvh;
    width: 100%;
    overflow-x: hidden;
}

#loading-spinner {
    color: red;
    font-size: 1.2em;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 4px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 0 auto; /* center and space below */
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



#submit-button:disabled {
    background-color: #ccc; /* Disabled state */
}


.navbar {
    position: sticky;
    width: 100%;
    max-width: 100vw;
    top: 0;
    display: grid;
    align-items: center;
    padding-inline: var(--space-small);
    z-index: 2;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card {
    border-radius: 1rem;
    padding: 1.5rem;
    background-color: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.card-simple {
    border-radius: 1rem;
    padding: 10px;
    background-color: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}


.search-input, .nonsearch-input {
    border-radius: 0.5rem;
    border: 1px solid var(--gray-300);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background-color: white;
}

.search-input:focus, .nonsearch-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(24, 24, 142, 0.1);
}


.margin-auto {
    margin: auto;
}

.gap-1vh {
    gap: 1vh;
}

.gap-2vh {
    gap: 2vh;
}

.gap-1vw {
    gap: 1vw;
}

.gap-halfem {
    gap: 0.5rem;
}

.gap-02em {
    gap: 0.2rem;
}

.gap-1em {
    gap: 1rem;
}

.gap-2em {
    gap: 2rem;
}

.gap-3em {
    gap: 2rem;
}

.self-center {
    align-self: center;
}

.purple {
    color: var(--blue-gradient-2);
}

.text-5ch {
  display: inline-block;
  max-width: 5ch;  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-10ch {
  display: inline-block;
  max-width: 10ch;  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-15ch {
  display: inline-block;
  max-width: 15ch;  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-20ch {
  display: inline-block;
  max-width: 20ch;  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.text-5ch:hover, .text-10ch:hover, .text-15ch:hover, .text-20ch:hover {
max-width: none;    
overflow: visible;   
text-overflow: unset; 
}


.text-1-line {
    display: -webkit-box; /* Needed for line-clamp to work */
    -webkit-box-orient: vertical; /* Set the box orientation to vertical */
    -webkit-line-clamp: 1; /* Limit the number of lines to 2 */
    overflow: hidden; /* Hide any content that overflows */
    text-overflow: ellipsis; /* Optional: Add "..." at the end if the text is clipped */
}

.text-2-lines {
    display: -webkit-box; /* Needed for line-clamp to work */
    -webkit-box-orient: vertical; /* Set the box orientation to vertical */
    -webkit-line-clamp: 2; /* Limit the number of lines to 2 */
    overflow: hidden; /* Hide any content that overflows */
    text-overflow: ellipsis; /* Optional: Add "..." at the end if the text is clipped */
}



.text-centered {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-wrap {
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
}

.text-gradient-blue {
    background: radial-gradient(circle at center, var(--blue-gradient-1), var(--blue-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-blue {
    color: transparent;
    background-image: radial-gradient(circle at center, var(--blue-gradient-1), var(--blue-gradient-2));
}

.gradient-bt-radial {
    background: radial-gradient(ellipse 200% 100% at bottom left, #cdd5f1 0%, #EAEEFE 66%);
}


.logo {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.logo-img {
    height: 1.8rem;
    vertical-align: middle;
    margin-right: 8px;
    object-fit: cover;
}

.button {
    font-family: var(--font-primary);
    padding: 0.25em;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    border: none;
}

.standard-button {
    font-family: var(--font-primary);
    background: darkblue;
    color: white;
    max-width: 20em;
    padding-inline: 2em;
    padding-block: 1em;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    flex: 1;
    transition: background-color var(--transition-500ms);
}   

button:hover {
    background: white;
    border: 1px solid darkblue;
    color: darkblue;
}

button:active {
    background: var(--active-blue);
}

.icon-btn {
    border: none;
    background: none;
    color: darkblue;
    font-weight: bold;
    padding: 0.5em;
    border-radius: 50%;
}

.icon-btn:hover { 
    background-color: darkblue;
    color: white;
}

.icon-btn-blue {
    border: none;
    background: darkblue;
    color: white;
    font-weight: bold;
    padding: 0.5em;
    border-radius: 50%;
    cursor: pointer;
}

.icon-btn-blue:hover { 
    background-color: var(--hover-blue);
    color: white;
}

.rounded-input {
    border-radius: 1000px;    
}

.rounded-50pc {
    border-radius: 50%;
}   

.round-button {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.round-button-medium {
    width: 1.7em;
    height: 1.7em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.round-button-small {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.circled {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-large-btn {
    width: 100%;
    max-width: var(--width-button-lg);
}

.btn-flat-left {
    border-radius: 0 1000px 1000px 0 !important; 
}

.btn-transparent {
    padding: 0;
    background: transparent;
}

.btn-transparent:hover {
    background: none;
}

button:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Text Animation */
.btn-text {
    position: relative;
    transition: transform var(--cta-animation-g);
}

button.action-btn:hover .btn-text {
    transform: translateX(2px);
}

.regular-button {
    background: linear-gradient(135deg, #060676, #36323a);
    color: white;
    border: none;
    padding: .25em 1em;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;

}


.cta-button {
    background: linear-gradient(135deg, #060676, #36323a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 3rem;
    margin-inline: auto;
    transition: transform 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    button.action-btn {
      transition: none;
    }
}

.large-action-btn {
    padding-inline: var(--large-action-button-inline-padding);
    padding-block: var(--large-action-button-block-padding);
}

.regular-action-btn {
    padding-inline: 2em;
    background-color: darkblue;
    color: white;
    max-width: 20em;
}

button:disabled, action-btn:disabled {
    background-color: #d3d3d3;  /* Light gray background */
    color: rgb(117, 116, 116);           /* Light gray text */
    cursor: not-allowed;        /* Change the cursor to indicate it's not clickable */
    border: 1px solid darkblue;     /* Optional: Light gray border */
  }

.link, .plain-link {
    text-decoration: none;
    cursor: pointer;
}

.pointer {
    cursor: pointer;
}

.no-pointer {
    cursor:none;
}

.no-wrap {
    white-space: nowrap;
}

.link:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-grow {
    flex-grow: 1;
}

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

.flex-horizontal {
    display: flex;
    align-items: center;
}

.inline-block {
    display: inline-block;
}

.align-items-center {
    align-items: center;
}

.align-self-center {
    align-self: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.bg-transparent {
    background-color: transparent;
}

.font-transparent {
    color: transparent;
}

.font-bold {
    font-weight: bold;
}

.font-small {
    font-size: smaller;
}

.font-italic {
    font-style: italic;
}

.font-09em {
    font-size: 0.9em;
}

.font-1em {
    font-size: 1em;
}

.font-6em {
    font-size: 6em;
}


span.font-2em {
    font-size: 2em;
}

span.font-2_5em {
    font-size: 2.5em;
}

span.font-3em {
    font-size: 3em;
}

.zoom-2x {
    zoom: 2;
}

.blur-10px {
    background-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blur-20px {
    background-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.height-100pc {
    height: 100%;
}

.height-fill-available {
    height: -webkit-fill-available;
}

.height-100vh {
    height: 100dvh;
    width: 100%;
}

.height-90dvh {
    height: 90dvh;
}

.height-80dvh {
    height: 80dvh;
}

.height-20dvh {
    height: 20dvh;
}

.height-8em {
    height: 8em;
}

.height-3rem {
    height: 3rem;
}

.height-2rem {
    height: 2rem;
}

.height-1rem {
    height: 1rem;
}

.w-15vw {
    width: 15vw;
}

.w-10vw {
    width: 10vw;
}

.w-8em {
    width: 8em;
}

.w-5vw {
    width: 5vw;
}

.w-max-20em {
    max-width: 20em;
}

.w-max-25em {
    max-width: 25em;
}

.w-max-40em {
    max-width: 40em;
}

.w-inherit {
    width: inherit;
}

.w-100pc {
  width: 100% !important;
}

.w-max-100pc {
  max-width: 100% !important;
}

.w-90pc {
    width: 90%;
}

.w-80pc {
    width: 80%;
}

.w-60pc {
    width: 60%;
}

.w-50pc {
    width: 50%;
}

.w-40pc {
    width: 40%;
}

.w-30pc {
    width: 30%;
}

.w-20pc {
    width: 20%;
}

.w-10pc {
    width: 10%;
}

.h-15vw {
    height: 15vh;
}

.h-10vh {
    height: 10vh;
}

.h-5vw {
    height: 5vh;
}

span.f-30vw, div.f-30vw, p.f-30vw {
    font-size: 30vw;
}

span.f-25vw, div.f-25vw, p.f-25vw {
    font-size: 25vw;
}

span.f-20vw, div.f-20vw, p.f-20vw {
    font-size: 20vw;
}

span.f-15vw, div.f-15vw, p.f-15vw {
    font-size: 15vw;
}

span.f-10vw, div.f-10vw, p.f-10vw {
    font-size: 10vw;
}

span.f-7vw, div.f-7vw, p.f-7vw{
    font-size: 7vw;
}

span.f-5vw, div.f-5vw, p.f-5vw{
    font-size: 5vw;
}

.padding-horizontal-5vw {
    padding-inline: 5vw;
}
.padding-vertical-5vh {
    padding-block: 5vh;
}

.padding-horizontal-02em {
    padding-inline: 0.2em;
}


.padding-right-02em {
    padding-right: 02em;
}

.padding-right-1em {
    padding-right: 1em;
}
.padding-right-2em {
    padding-right: 2em;
}
.padding-left-1em {
    padding-left: 1em;
}
.padding-left-2em {
    padding-left: 2em;
}
.padding-bottom-1em {
    padding-bottom: 1em;
}
.padding-bottom-2em {
    padding-bottom: 2em;
} 
.padding-top-2em {
    padding-top: 2em;
}

.padding-top-1em {
    padding-top: 1em;
}

.padding-horizontal-1em {
    padding-inline: 1em;
}

.padding-horizontal-2em {
    padding-inline: 2em;
}

.padding-horizontal-5em {
    padding-inline: 5em;
}

.padding-vertical-05em {
    padding-block: .5em;
}


.padding-vertical-1em {
    padding-block: 1em;
}

.padding-vertical-2em {
    padding-block: 2em;
}

.margin-bottom-2em {
    margin-bottom: 2em;
}

.margin-bottom-3em {
    margin-bottom: 3em;
}

.margin-bottom-6em {
    margin-bottom: 6em;
}

.margin-top-1em {
    margin-top: 1em;
}

.margin-top-2em {
    margin-top: 2em;
}

.margin-top-3em {
    margin-top: 3em;
}

.margin-top-4em {
    margin-top: 4em;
}

.margin-horizontal-1em {
    margin-inline: 1em;
}

.margin-horizontal-auto {
    margin-inline: auto;
}

.margin-left-auto {
    margin-left: auto;
}

.margin-right-auto {
    margin-right: auto;
}

.margin-right-1em {
    margin-right: 1em;
}

.margin-right-2em {
    margin-right: 2em;
}

.margin-top-auto {
    margin-top: auto;
}

.margin-bottom-auto {
    margin-bottom: auto;
}

.margin-vertical-1em {
    margin-block: 1em;
}

.margin-bottom-1em {
    margin-bottom: 1em;
}

.margin-top-1em {
    margin-top: 1em;
}

.margin-bottom-auto {
    margin-bottom: auto;
}

.margin-horizontal-5vw {
    margin-inline: 5vw;
}
.margin-vertical-5vh {
    margin-block: 5vh;
}

.margin-top-5vh {
    margin-top: 5vh;
}

.margin-top-1em {
    margin-top: 1em;
}

.margin-top-2em {
    margin-top: 2em;
}

.margin-bottom-5vh {
    margin-bottom: 5vh;
}

.margin-bottom-1vh {
    margin-bottom: 1vh;
}

.margin-vertical-2vh {
    margin-block: 2vh;
}

.margin-vertical-auto {
    margin-block: auto;
}

/*Position shortcuts*/
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}


.right-05em {
    right: 0.5em;
}

.right-1em {
    right: 1em;
}

.right-minus-1em {
    right: -1em;
}

.right-2em {
    right: 2em;
}

.right-minus-2em {
    right: -2em;
}

.right-minus-4em {
    right: -4em;
}

.left-1em {
    left: 1em;
}

.left-2em {
    left: 2em;
}

.left-minus-2em {
    left: -2em;
}

.left-minus-4em {
    left: -4em;
}


.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-1em {
    top: 1em;
}

.bottom-1em {
    bottom: 1em;
}

.translate-x-50pc {
    transform: translateX(50%);
}

.translate-x-minus-50pc {
    transform: translateX(-50%);
}   

.translate-y-50pc {
    transform: translateY(50%);
}

.translate-y-60pc {
    transform: translateY(60%);
}

.translate-y-100pc {
    transform: translateY(100%);
}

.translate-y-minus-50pc {
    transform: translateY(-50%);
}


.transition-all {
    transition-property: all;
    transition-duration: 150ms;
    transition-timing-function: ease;
}

.overflow-hidden {
    overflow: hidden;
}

/*Dropdowns*/
.input-container {
    position: relative;
}

.item-list, .fixed-list {
    position: absolute;
    top: calc(100% + 0.3em);
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 0.5em;
    max-height: 20vh; 
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.input-item {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee; 
}

.input-item:hover {
    background-color: darkblue;
    color: white;
}

/*Modal popup*/
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* On top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 95%;
    height: 95%;
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
    font-size: 2rem;
}

iframe {
    width: 100%;
    height: 90%;
}


.bottom-modal {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2em);
    max-width: 500px; 
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: bottom 1s ease-in-out; 
    overflow-x: hidden;
    box-sizing: border-box;  
}

.bottom-modal-content {
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: rgb(24, 24, 142);
    color: white;
    padding-inline: 1em;
    padding-top: 1em;
    padding-bottom: 3em;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    max-width: 400px;  /* Default for large screens */
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.bottom-modal-message {
    font-size: 16px;
    padding-block: 20px;
}

/* Button styles */
.bottom-modal-btn {
    background-color: white;
    color: darkblue;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
    margin: auto;
}

.bottom-modal-close-btn:hover {
    background-color: white;
    color: darkblue;
}

/* Small screen (mobile) styles */
@media (max-width: 700px) {

    body {
    padding-top: env(safe-area-inset-top);
    padding-right: env(safe-area-inset-right);
    padding-bottom: calc(env(safe-area-inset-bottom) + 1em);
    padding-left: env(safe-area-inset-left);
    }

    .regular-button {
        width: 100%;
    }

    .bottom-modal-content {
        width: 100%;
        max-width: 100%;
    }

    .text-5ch-sm {
    display: inline-block;
    max-width: 5ch;  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

    .text-10ch-sm {
    display: inline-block;
    max-width: 10ch;  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

    .text-15ch-sm {
    display: inline-block;
    max-width: 15ch;  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

    .text-20ch-sm {
    display: inline-block;
    max-width: 20ch;  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }


    .text-5ch-sm:hover, .text-10ch-sm:hover, .text-15ch-sm:hover, .text-20ch-sm:hover {
    max-width: none;    
    overflow: visible;   
    text-overflow: unset; 
    }

    .translate-y-60pc-sm {
        transform: translateY(60%);
    }

    .translate-y-100pc-sm {
        transform: translateY(100%);
    }



}



/*Manipulation of pictures*/
.icon {
    color: lightgray;
    cursor: pointer;
}

.thumbnail {
    position: absolute;
    display: block;
    width: 3rem; 
    height: 3rem;
    object-fit: cover;
    border-radius: 50%; 
    cursor: pointer;
}

.full-width-thumbnail {
    position: absolute;
    display: block;
    width: auto; 
    height: 3rem;
    object-fit: cover;
    cursor: pointer;
}

.contain-thumbnail {
    position:absolute;
    display: block;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    cursor: pointer;
}

input, textarea, select {
    font-size: 1rem;
    padding-inline: 1em;
}

input:disabled {
  background-color: #d7d7d7;  /* light gray background */
  color: #888;                /* gray text */
  cursor: not-allowed;        
  opacity: 1;                 
}


.border-none {
    border: none;
}

.border-1px {
    border: 1px solid;
}

.border-2px {
    border: 2px solid;
}

.border-darkblue {
    border-color: darkblue;
}

.badge {
    background: linear-gradient(90deg, #4f6af5, #25a5f5);
    color: white;
    padding: 0.5em 1em;
    border-radius: 4px;
    font-size: 0.6em;
    vertical-align: middle;
    margin-left: 0.5em;
}

.truncated-5 {
    max-width: 5ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncated-10 {
    max-width: 10ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncated-15 {
    max-width: 15ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


@media (max-width: 700px) {

    .body {
        padding-inline: 5vw;
        padding-top: 10vw;
    }
    
   
    .sm-hidden {
        display: none;
    }
   
    .flex-responsive {
        display: flex;
        flex-direction: column;
    }

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

    input, textarea, select {
        font-size: 1rem;
        padding-inline: 1em;
    }
    

    p {
        line-height: 1;
    }

    .container-100vh {
        height: 100dvh;
        grid-template-rows: 10vh 1fr;
    }

    .sm-w-100pc {
        width: 100%;
    }

    .sm-w-90pc {
        width: 90%;
    }
    
    .sm-w-80pc {
        width: 80%;
    }
    
    .sm-w-20pc {
        width: 20%;
    }

    .sm-height-90dvh {
        height: 90dvh;
    }
    
    .sm-height-80dvh {
        height: 80dvh;
    }
    
    .sm-height-20dvh {
        height: 20dvh;
    }

    .sm-margin-bottom-2em {
        margin-bottom: 2em;
    }

    .sm-gap-1em {
        gap: 1em;
    }

    .sm-gap-2em {
        gap: 2em;
    } 


    .navbar {
        grid-template-columns: 1fr auto;
    }

    .logo {
        padding-left: 2rem;
        font-size: min(
            calc(var(--sm-font-size) * var(--sm-logo-font-size-multiplicator)),
            2rem
        );
    }

    button.sm-large-action-btn {
        width: 100%;
    }

    .menu { 
        display: none;
        position: fixed;
        display: flex;
        flex-direction: column;
        top: var(--navbar-height);
        width: 100vw;
        right: 100vw;
        height: calc(100vh - var(--navbar-height));
        text-align: center;
        font-size: calc(1.5 * var(--sm-font-size));
        padding: var(--space-mid);
        gap: var(--space-mid);
        transition: 1s ease-in; 
        background: radial-gradient(ellipse 200% 100% at bottom left, #cdd5f1 0%, #EAEEFE 66%);
    }

    .menu * {
        display: flex;
        justify-content: center;
        font-size: calc(1.5 * var(--sm-font-size));
        font-weight: 600;
    }

    .menu-item {
        width: fit-content;
        margin-inline: auto;
        color: transparent;
        -webkit-background-clip: text;
        background-image: radial-gradient(circle at center, var(--blue-gradient-1), var(--blue-gradient-2));
    }

    .menu-item-btn {
        width: 100%;
    }

    .hamburger-checkbox {
        display: none;
    }
    
    .hamburger-label {
        grid-column: 3 / 4;
        display: flex;
        gap: 10px;
        position: relative;
        cursor: pointer;
        min-width: var(--hamburger-min-width);
        width: var(--hamburger-width);
        height: var(--hamburger-height);
    }
    
    .hamburger-label::before, .hamburger-label::after, .hamburger-label span {
        --cta-animation: var(--cta-animation-g);
        content: "";
        position: absolute;
        width: var(--hamburger-width);
        height: var(--hamburger-thickness);
        left: 0;
        background-image: radial-gradient(circle at center, blue, rgba(55, 23, 44, 0.683));
        border-radius: 1000px;
        transition: transform var(--cta-animation), opacity var(--cta-animation);
    }
    
    .hamburger-label::before {
        top: 0;
    }
    
    .hamburger-label span {
        top: 50%;
        transform: translateY(-50%);
        transition: 0s ease-in;
    }
    
    .hamburger-label::after {
        bottom: 0;
    }
    
    .hamburger-checkbox:checked + .hamburger-label::before {
        transform: rotate(45deg);
        top: 50%;
        transform-origin: center;
    }
    
    .hamburger-checkbox:checked + .hamburger-label::after {
        transform: rotate(-45deg);
        bottom: 65%;
        transform-origin: center;
        margin-bottom: -1vw;
    }
    
    .hamburger-checkbox:checked + .hamburger-label span {
        opacity: 0;
    }

    .hamburger-checkbox:checked ~ .menu {
        display: flex;
        position:absolute;
        right: 0;
        width: 100vw;
        opacity: 1;
    }
    
    .hamburger-checkbox:not(:checked) + .hamburger-label::before,
    .hamburger-checkbox:not(:checked) + .hamburger-label::after {
        transition: var(--cta-animation);
    }

    .hamburger-checkbox:not(:checked) + .hamburger-label span {
        transition: calc(var(--cta-animation) / 4) ease-in;        
        transition-delay: calc(var(--cta-animation) / 2);
    }

    button.action-btn {
        width: 100%;
    }

}

@media (min-width: 701px) {

    /*Forced mobile views*/
    .forced-mobile {
        max-width: 400px;
        margin-inline: auto;
    }

    .forced-tablet {
        max-width: 900px;
        margin-inline: auto;
    }

    .forced-mini-tablet {
        max-width: 600px;
        margin-inline: auto;
    }

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

    .lg-hidden {
        display: none;
    }

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

    .container-100vh {
        height: 100dvh;
        grid-template-rows: 12vh 1fr;
        min-height: 650px;
    }

    .lg-height-90dvh {
        height: 90dvh;
    }
    
    .lg-height-80dvh {
        height: 80dvh;
    }
    
    .lg-height-70dvh {
        height: 70dvh;
    }

    .lg-height-20dvh {
        height: 20dvh;
    }


    .navbar {
        grid-template-columns: 1fr 1fr auto;
    }

    .hamburger-checkbox {
        display: none;
    }

    .logo {
        font-size: min(
            calc(var(--lg-font-size) * var(--lg-logo-font-size-multiplicator)),
            1.5rem
        );
    }

    .menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        justify-items: start;
        padding-right: 2rem;
        font-size: 1rem;
        color: #0808a4;
        font-weight: 300;
        width: 60vw;
    }

    .menu-item {
        white-space: nowrap;
        margin-left: 1rem;
        color: transparent;
        -webkit-background-clip: text;
        background-image: radial-gradient(circle at center, var(--blue-gradient-1), var(--blue-gradient-2));
    }

    .menu-item-btn {
        white-space: nowrap;
        margin-left: 1rem;
    }

    .hamburger-label {
        display: none;
    }

    .lg-gap-1em {
        gap: 1em;
    }

    .lg-gap-2em {
        gap: 2em;
    }

    .lg-w-max-20em {
        max-width: 20em;
    }
    .lg-w-max-30em {
        max-width: 30em;
    }

    .lg-w-30em {
        width: 30em;
    }


    .lg-margin-top-5vh {
        margin-top: 5vh;
    }

    .lg-margin-top-10vh {
        margin-top: 10vh;
    }

    .lg-margin-bottom-2em {
        margin-bottom: 2em;
    }

    .translate-y-60pc-lg {
        transform: translateY(60%);
    }

    .translate-y-100pc-lg {
        transform: translateY(100%);
    }



}


/* Keyframes */
/* Bouncing dots animation */
.dot-wave {
    display: inline-flex;
    align-items: center;
    gap: 3px;

}
.dot-wave span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: darkblue;
    border-radius: 50%;
    animation: wave 1s infinite ease-in-out;
}

.dot-wave span:nth-child(2) {
  animation-delay: 0.1s;
}

.dot-wave span:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes wave {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}