@import url('css2.css');

* {
    font-family: "Open Sans", serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.nav {
    height: 75px;
    background-color: #00008B;
    padding: 0px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav img {
    width: 45px;
    border-radius: 10px;
    margin-right: 10px;
}

.nav .left {
    display: flex;
}

.nav h1 {
    color: #fff;
}

.nav .right {
    display: flex;
    gap: 20px;
}

.nav .right a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

.nav a {
    text-decoration: none;
    transition: 0.2s ease;
}

.nav a:hover {
    opacity: 0.8;
}


.container {
    margin: 0 auto;
    width: 60vw;
    border-radius: 5px;
    background-color: #00008B;
    margin-top: 100px;
    color: #fff;
    padding: 0 0 5px 0;
}

.container .yt {
    display: flex;
    justify-content: center;
    height: 350px;
    padding: 20px 0;
}

.container .yt iframe {
    width: 70%;
    height: 100%;
    border-radius: 10px;
}

.container .content-themes {
    margin-top: 20px;
    margin-bottom: 100px;
    font-weight: 600;
    font-size: 24px;
    padding: 0 40px;
}

.container .content-themes ul {
    margin-top: 5px;
    padding: 0 50px;
    font-weight: 500;
    font-size: 19px;
}


.container .themes {
    padding: 0 40px;
}

.container .themes .theme {
    margin-bottom: 50px;
}

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

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials img {
    width: 55px;
}

.socials a {
    transition: opacity 0.2s ease;
}

.socials a:hover {
    opacity: 0.8;
}

.maps {
    margin-top: 150px;
}

.maps iframe {
    width: 100%;
}

.container .privacy,
.container .terms {
    padding: 20px;
    margin-bottom: 20px;
}

.container .privacy h2,
.container .terms h2 {
    text-align: center;
    margin-bottom: 20px;
}


.container .privacy h3,
.container .terms h3 {
    margin-top: 40px;
    font-weight: 600;
    margin-bottom: 5px;
}

.container .privacy p,
.container .terms p {
    font-size: 17px;
    font-weight: 500;
}


@media (max-width: 1200px) {
    .container {
        width: 80vw;
    }
}


@media (max-width: 800px) {
    .container {
        width: 90vw;
    }
}

@media (max-width: 600px) {
    .container {
        width: 100vw;
    }

    .container .yt iframe {
        width: 95%;
    }

    .container .themes,
    .container .content-themes {
        padding: 0 15px;
    }
}


@media (max-width: 500px) {
    .nav {
        display: block;
        height: 100%;
    }

    .nav .left {
        justify-content: center;
        margin-bottom: 20px;
    }

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