﻿@keyframes bg {
    from {
        background-color: #025a7b;
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(0.9);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
    }
}

@-webkit-keyframes backspin {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(-180deg) scale(0.9);
    }

    100% {
        -webkit-transform: rotate(-360deg) scale(1);
    }
}

.counter {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
}

.comp {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 24px;
    font-weight: 800;
    margin-left: 5px;
}

.hero-section {
    /*    background: linear-gradient(to top right, #D9FBE6 40%, #a6b0fb 100%);*/
    width: 100% !important;
    height: 85vh;
    position: relative;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    max-width: 64rem;
    margin-top: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    color: #221c4a;
    user-select: none;
    width: 100% !important;
    height: 100%;
}

.logo-position {
    display: flex;
    justify-content: center;
    font-size: 3rem;
    color: #eeebf5;
    font-weight: 800;
}

.logo-position:focus {
    outline: none;
}

.logo-span {
    color: #f9e905 !important;
    margin-left: 1rem;
    font-weight: 800 !important;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #eeebf5;
    text-align: center;
}

    .title:focus {
        outline: none;
    }

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200 !important;
    font-size: 1.2rem !important;
    margin-top: 2rem;
    color: #eeebf5;
    text-align: center;
}

strong {
    color: #393185 !important;
}

.btn-eleginos {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    display: block;
    border-radius: 8px;
    border: groove 1px #a6b0fb;
    background: white;
    color: #393185;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 1.3s ease !important;
    cursor: pointer;
}

.btn-eleginos:hover {
        background: #a6b0fb;
    }

@media (min-width: 1024px) {
    .hero-content {
        padding-top: 0px;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1108px) {
    .title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-section {
        margin-top: 8rem;
        flex-direction: row;
        height: 81vh;
    }

    .logo-position {
        font-size: 4rem;
    }
}

    .dates-container {
        width: 100%;
        padding-top: .5rem;
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid #a6b0fb;
        gap: 1rem;
        z-index: 1;
    }

    .text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    span {
        color: #4b5563 !important;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 600 !important;
    }

.mouse-scroll {
    display: flex;
    position: absolute;
    justify-content: center;
    bottom: 0rem;
}

.mouse {
    width: 35px;
    height: 55px;
    border: 2px solid #1a1a1a;
    border-radius: 20px;
    border-color: #eeebf5;
    position: relative;
    cursor: pointer;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #eeebf5;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 1.5s infinite;
}

@keyframes wheel-scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.4;
    }

    100% {
        top: 10px;
        opacity: 1;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgba(21, 128, 61, 0.9), rgba(21, 128, 61, 0.7));
    pointer-events: none;
    max-height: 100vh;
}
