﻿body {
    background: url('/Images/bg_mobile.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    color: #222dce;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


.logo {
    font-size: 12px;
    width: 10%;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

    .logo img {
        width: 100%;
    }

.menu {
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    gap: 100px;
    flex-grow: 1;
    max-width: 70%;
    flex-wrap: nowrap;
    font-size:18pt;
    font-weight:bold;
}

.menu a {
    color: #222dce;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .logo {
        font-size: 12px;
        width: 18%;
        text-align: center;
        color: rgba(0, 0, 0, 0.5);
    }
    .menu {
        gap: 50px;
    }
    .menu a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .menu a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 12px;
        width: 30%;
        text-align: center;
        color: rgba(0, 0, 0, 0.5);
    }
    .menu {
        gap: 10px;
        word-wrap: normal;
    }
    .menu a {
        font-size: 10px;
    }
}

.video-container {
    text-align: center;
    margin: 20px 5%;
}

    .video-container video {
        width: 100%;
        border-radius: 30px;
    }

.timeline-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: #007bff #f0f0f0;
}

    .timeline-slider::-webkit-scrollbar {
        height: 6px;
    }

    .timeline-slider::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }

    .timeline-slider::-webkit-scrollbar-thumb {
        background: #007bff;
        border-radius: 10px;
    }

.timeline-item {
    min-width: 90%;
    scroll-snap-align: start;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

    .timeline-item h3 {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 10px 15px;
        border-radius: 8px;
        font-size: 16px;
        text-align: center;
        backdrop-filter: blur(5px);
    }

.timeline-images {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
}

    .timeline-images img {
        width: 30%;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }

.custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98vw;
    height: 98vh;
    background: rgb(235 238 241 / 100%);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 20px;
}

    .custom-popup img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #1725dc;
    cursor: pointer;
}

.custom-popup-main {
    display: none;
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    background: url('/Images/bg_popup.png') no-repeat center center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 20px;
}

.custom-popup-thank {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98vw;
    background: url('/Images/popup/bg_thanks.png') no-repeat top center;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 20px;
    padding-bottom: 10px;
}

    .custom-popup-thank input {
        background: url('/Images/popup/bg_textbox_thanks.png') no-repeat top center;
        border: 0px;
        background-size: 100% 40px;
        height: 40px;
        border-radius: 30px;
        width: 90%;
        color: white;
        font-weight: bold;
        font-size: 16px;
        padding-left: 20px;
        text-align: center;
        margin-top: 15px;
    }

        .custom-popup-thank input:focus {
            outline: none;
        }

            .custom-popup-thank input:focus::placeholder {
                color: #fff;
            }

        .custom-popup-thank input::placeholder {
            color: #fff !important;
        }

        .custom-popup-thank input::-ms-input-placeholder { /* Edge 12-18 */
            color: white;
        }

.footer {
    background: white;
    color: #222dce;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-wrap: wrap;
    border-radius: 30px 30px 0px 0px;
    /* position: fixed;
            bottom: 0px;*/
    width: 100%;
}

.footer-links {
    width: 50%;
    margin: 0 auto;
}

    .footer-links h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top:20px;
}

.footer a {
    color: #222dce;
    text-decoration: none;
}
