*, *::before, *::after {
    box-sizing: border-box;
    user-select: none;
}

:root {
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 10px;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: 6vh;
    scroll-behavior: smooth;
}

body {
    overflow: hidden;
}

.mobile-warning {
    display: none;
    text-align: center;
    padding: 200px 20px 0;
    background-color: white;
    color:rgba(0, 0, 0, 0);
    font-size: clamp(14px, 1.8vw, 20px);
    height: 100%;
}

p, a {
    font-family: var(--main-font);
    font-weight: 300;
    font-style: normal;
    font-size: x-large;
    color: black;
    text-decoration: none;
    margin-top: 0;
}

.headerText {
    font-family: var(--main-font);
    font-style: normal;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 0;
}

h1 {
    font-family: var(--main-font);
    font-weight: 700;
    font-size: 3vw;
    color: var(--text-color);
    text-decoration: none;
}

h2 {
    font-family: var(--main-font);
    font-weight: 600;
}

.feature {
    margin-bottom: 20px;
}

.daanim {
    animation: dropAndRise 1s ease-in-out infinite alternate;
    width: 15vh;
    height: 15vh;
}

@keyframes dropAndRise {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes wait {
    0% {
        animation-play-state: running;
    }
    100% {
        animation-play-state: paused;
    }
}

.section-title {
    font-size: 2vw;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color); 
}

.section-description {
    font-size: 1.4vw;
    color: #555;
    line-height: 1.5;
}

.cta-button {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #7a54a8;
}

.features {
    display: flex;
    flex-direction: column;
    margin-top: 25vh;
    margin-bottom: 50vh;
}

.cta {
    margin-bottom: 28vh;
    text-align: center;
}

.hero {
    text-align: center;
    margin-top: 19vh;
}

.feature-one {
    text-align: left;
    margin-top: 4.3vw;
}

.feature-two {
    text-align: right;
    margin-top: 9.5vh;
}

.feature-three {
    text-align: left;
    margin-top: 9.5vh;
}

.errorpage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    text-align: center;

    h1 {
        font-family: var(--main-font);
        font-weight: 700;
        font-size: 50px;
        color: var(--text-color);
        text-decoration: none;
    }

}

nav .brand-logo a {
    color: black;
}

body {
    background: linear-gradient(130deg, rgba(39,50,0,0.15) 0%, rgba(117,47,126,0.15) 25%, rgba(97,152,99,0.15) 50%, rgba(0,212,255,0.15) 75%, rgba(255,149,0,0.15) 100%);
    background-repeat: no-repeat;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main,footer {
    flex: 1 0 auto;
}

nav.nav-extended {
    height: 64px;
}

.header {
    background-color: white;
    box-shadow: 0px 5px 40px 5px rgba(34, 60, 80, 0.15);
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
}

.footer {
    visibility: hidden;
}

.footer-box {
    visibility: hidden;
}

@media only screen and (min-width: 991px) {
    .footer {
        background-color: white;
        box-shadow: 0px -5px 20px rgba(34, 60, 80, 0.1);
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        height: 60px;
        margin-bottom: 0px;
        visibility: visible;
    }

    .footer-icon {
        display: inline-block;
        height: 40px;
        width: 40px;
        margin-right: 15px;
        text-decoration: none;
        cursor: pointer;
    }

    .footer-icon-image {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .footer-box {
        display: inline-block;
        visibility: visible;
        width: 50%;
    }

}

.footer-box-left {
    float: left;
    padding-top: 15px;
    padding-left: 10px;
}
  
.footer-box-right {
    float: right;
    padding-top: 10px;
    text-align: right;
}

.footer-text {
    font-size: large;
    padding: 0;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content {
    padding: 64px 40px 20px;
    flex: 1;
}

#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p{
    margin: 0;
    font-size: 1vw;
    text-align: left;
    color: black;
}

#cookie_note a{
    color: #0091cf;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
    font-size: 1vw;
    font-family: var(--main-font);
    margin: 0;
}

.cookie_accept{
    width:20%;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 99999;
    vertical-align: center;
    text-align: center;
    justify-content: center;
}

.preloader-item {
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}