@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --background-color: rgb(65, 21, 66);
    --color-text: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--color-text)
}

a {
    color: #00aaff;
    text-decoration: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

body {
    background: var(--background-color);
    font-family: "Open Sans", sans-serif;
    margin-top: 25px;
    overflow-x: hidden;
}

.content {
    width: 50%;
    margin: 0 auto;
}

.content h1 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.content .video-block {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.content .video-block iframe {
    width: 65%;
    height: 300px;
    border-radius: 20px;
}

.small-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 0 40px 20px rgba(0, 0, 0, 0);
    }
}

.content .small-description button {
    margin-top: 30px;
    width: 70%;
    background: #191f20;
    font-size: 22px;
    font-weight: 500;
    padding: 10px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    animation: pulse 1.75s infinite;
}

.content .small-description button:hover {
    background: #1b1b1b;
    transform: scale(1.05);
}

.content .fast-to {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.content .fast-to ul {
    list-style-type: decimal;
}

.content .fast-to ul li {
    margin-bottom: 12px;
}

.content .fast-to ul li a {
    color: aqua;
    text-decoration: none;
}

.content .fast-to ul li a:hover {
    color: aqua;
    text-decoration: underline;
}

.table-info {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.table-info table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-info td {
    padding: 20px;
}

.table-info td:first-child {
    width: 30%;
}

.table-info td:last-child {
    width: 70%;
}

.table-info tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.4);
}

.table-info td a {
    color: #00aaff;
    text-decoration: none;
}

.table-info td a:hover {
    text-decoration: underline;
}

.themes {
    margin-top: 75px;
}

.themes .theme {
    margin-bottom: 75px;
}

.themes .theme .name {
    margin-bottom: 10px;
}

.themes .theme .desc p {
    color: #eee;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 7px;
}

.freq-questions {
    margin-bottom: 50px;
}

.freq-questions h2 {
    margin-bottom: 20px;
}

.freq-questions details {
    user-select: none;
    margin-bottom: 20px;
    background: #252525;
    padding: 7px;
    border-radius: 5px;
}

.freq-questions details p {
    margin-top: 10px;
}

footer {
    text-align: center;
    border-top: 1px solid #8b8b8b;
    padding-top: 20px;
    margin-bottom: 50px;
}

footer .socials-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer .socials-links a:hover {
    text-decoration: underline;
}

.terms-privacy p {
    margin-top: 15px;
    font-weight: 400;
    font-size: 14px;
    color: #c7c7c7;
}

.copyrightNotice p {
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #c7c7c7;
}

.backtotop {
    margin-top: 35px;
}


@media (max-width: 1100px) {
    .content {
        width: 70%;
    }

    .content .video-block iframe {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .content {
        width: 90%;
    }

    .content .video-block iframe {
        width: 100%;
    }
}


.google-maps iframe {
    width: 100%;
    height: 450px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    font-size: 14px;
    display: none;
}

.cookie-banner a {
    color: #00d1b2;
    text-decoration: none;
}

.cookie-banner button {
    margin-top: 15px;
    background-color: #00d1b2;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #008e7d;
}

.about h2 {
    margin-bottom: 20px;
}

.about h3 {
    margin-bottom: 15px;
    margin-top: 35px;
}

.about ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 15px;
}

details summary:hover {
    cursor: pointer;
}