*,
*:after,
*:before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: all .2s;
}

:root {
    --main-color: #1A222C;
    --main-color-clear: #10141Fdd;
    --secundary-color: #222C37;
}

*::selection {
    background: var(--secundary-color);
    color: #fff;
}


/* custom scroll bar */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #777;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    font-family: Verdana, sans-serif;
    font-size: 16px;
    margin: 0;
}

a,
a:link,
a:visited {
    text-decoration: none;
}

h2 {
    color: var(--main-color);
    text-transform: capitalize;
    font-size: 30px;
    font-weight: bold;
}


/* app-game section */

section.app-game {
    position: relative;
    min-height: 100vh;
    margin-top: 110px;
    padding-top: 20px;
    padding-bottom: 180px;
}

.app-game .title {
    text-align: center;
}

.app-game .title h1 {
    font-size: 50px;
    font-family: sans-serif;
    font-style: italic;
    font-weight: bolder;
    letter-spacing: 2px;
}

.app-game .svg-content {
    overflow: hidden;
    width: 100%;
}

.app-game svg {
    position: absolute;
    height: 150px;
    width: 100%;
    bottom: 0;
}

.app-game .about {
    margin: 0 200px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
}

.app-game .about .columns-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 30px;
}

.app-game .about .column:nth-child(1) {
    width: 35%;
}

.app-game .about .column:nth-child(2) {
    width: 65%;
}

.app-game .about .column {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.app-game .about .column img {
    width: 250px;
    border-radius: 15px;
    transition: all 0.5s;
}

.app-game .about .column img:hover {
    transform: scale(1.05);
}

.app-game .about .column .text-about {
    color: var(--secundary-color);
}

.app-game .about .column .text-about h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.app-game .about .column .text-about p {
    text-align: justify;
    font-size: 18px;
}

.app-game .about .column .text-about ul {
    margin-top: 15px;
    margin-left: 30px;
}

.app-game .about .column .text-about li {
    font-size: 16px;
    margin: 5px 0;
    color: var(--secundary-color);
}

.app-game .about .images {
    margin: 0 auto;
    margin-top: 70px;
    display: flex;
    text-align: center;
    flex-direction: column;
}

.app-game .about .images img {
    height: 300px;
    width: auto;
    /* margin-right: 20px; */
}

.app-game .about .trailer {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.app-game .about .trailer iframe {
    margin-top: 20px;
    width: 500px;
    height: 290px;
}

.app-game .about .available {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}

.app-game .about .available .platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-game .about .available a {
    margin: 10px;
}

.app-game .about .available a img {
    width: 180px;
}

.app-game .about .privacy {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-game .about .privacy a {
    font-size: 13px;
    color: #202e35;
}

.app-game .about .privacy a:visited {
    color: #202e35;
}


/* footer section */

.footer {
    height: 15vh;
    background-color: #202e35;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer .footer-container {
    position: absolute;
    top: -20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url(/images/zenbyte-portrait.jpg);
    padding: 10px;
    border-radius: 20px;
}

.footer span {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
}

.footer img {
    height: 50px;
}

.owl-dots {
    margin-top: 15px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}


/* responsive */

@media(max-width: 1200px) {
    .app-game .about {
        margin: 0 80px;
    }
}

@media(max-width: 991px) {
    .app-game .about {
        margin: 0 40px;
    }
    .app-game .about .images {
        margin-top: 60px;
    }
}

@media(max-width: 800px) {
    .app-game .about .columns-container {
        flex-direction: column;
        width: 100%;
    }
    .app-game .about .title {
        margin-top: 20px;
    }
    .app-game .about .column:nth-child(1) {
        width: 100%;
    }
    .app-game .about .column:nth-child(2) {
        margin: 20px 0;
        width: 100%;
        padding: 0 20px;
    }
    .app-game .about .column .text-about {
        margin: 0;
        padding: 20px;
    }
    .app-game .about .images {
        margin-top: 10px;
    }
}

@media (max-width: 620px) {
    .app-game .about .column .text-about {
        margin: 0;
        padding: 0;
    }
    .app-game .about .trailer iframe {
        width: 440px;
        height: 260px;
    }
    .app-game .about .available a img {
        width: 150px;
    }
    .app-game .about {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .app-game .about .trailer iframe {
        width: 300px;
        height: 200px;
    }
}