/* Header */
header {
    background-color: var(--DARK-GRAY);
}
#breadcrumbs span a{
    color: var(--WHITE);
}
#breadcrumbs span{
    font-size: 13px;
    line-height: 24px;
    color: var(--WHITE);
    font-weight: 200;
}
.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 35px 0;
}
.header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.header__logo .header__logo-image{
    margin-top: 9px;
}
.header__open-menu span{
    font-size: 15px;
    color: var(--WHITE);
    font-weight: 300;
}
.header__open-menu {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.header__open .header__menu-list li a:hover{
    color: var(--YELLOW);
}
.header__open .header__menu-list li a{
    font-weight: 900;
    font-size: 16px;
    color: var(--WHITE);
    line-height: 23px;
    transition: all 0.2s;
}
.header__open .header__menu-list{
    display: grid;
    gap: 30px;
}
.header__open .header__close{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.header__open {
    position: fixed;
    top: 0;
    left: -500px;
    width: 500px;
    height: 100vh;
    background-color: var(--BLACK);
    padding: 140px 60px;
    z-index: 200;
    transition: left 0.5s ease;
}
.header__open.is-active {
    left: 0;
}
html header.header--sticky{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
}
/* Download versions */
.swiper.download_versions .swiper-slide {
    height: 150px;
}
.swiper.download_versions .swiper-slide .download-title{
    position: absolute;
    font-weight: 900;
    color: var(--WHITE);
    font-size: 10px;
    text-transform: uppercase;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.swiper.download_versions .swiper-slide img{
    height: 150px;
    width: 100%;
    object-fit: cover;
}
/* Hero */
.page-template-page-home header{
    background-color: transparent;
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    z-index: 100; /* kad būtų virš hero paveikslėlio */
}
section.hero{
    position: relative;
    height: 100vh;
    width: 100%;
}
section.hero .hero__image{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
section.hero .hero__content{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    z-index: 2;
}
section.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    mix-blend-mode: multiply;
    opacity: 0.42;
    z-index: 1;
}
section.hero .hero__content .hero__title h1{
    font-weight: 900;
    font-size: 57px;
    color: var(--WHITE);
    line-height: 80px;
}
section.hero .hero__content .hero__title {
    margin-bottom: 80px;
}
section.hero .hero__scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 9;
    text-align: center;
    animation: bounce 2s infinite;
    transform: translateX(-50%);
    cursor: pointer;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
/* Why choose our version */
section#why-choose-our-version .why-choose__wrapper .why-choose__list ul {
    font-size: 21px;
    line-height: 25px;
    color: var(--WHITE);
    font-weight: 200;
    list-style: none;
    padding-left: 0;
}
section#why-choose-our-version .why-choose__wrapper .why-choose__list ul li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}
section#why-choose-our-version .why-choose__wrapper .why-choose__list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-color: var(--YELLOW);
    border-radius: 50%;
}
section#why-choose-our-version .why-choose__wrapper .why-choose__intro .why-choose__desc{
    font-size: 16px;
    line-height: 24px;
    color: var(--WHITE);
    font-weight: 200;
    margin-bottom: 90px;
}
section#why-choose-our-version .why-choose__wrapper .why-choose__intro .why-choose__title{
    margin-bottom: 30px;
}
section#why-choose-our-version .why-choose__wrapper .why-choose__intro .why-choose__title h2{
    font-weight: 900;
    font-size: 47px;
    color: var(--WHITE);
    line-height: 70px;
}
section#why-choose-our-version .why-choose__wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 300px;
}
section#why-choose-our-version{
    background-color: var(--DARK-GRAY);
    padding: 100px 0;
}
/* About the Game */
.section#about-the-game {
    background-color: var(--DARK-GRAY);
    padding-bottom: 100px;
}
.about-game__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}
.about-game__image-img {
    width: 100%;
    height: 100%;
    max-height: 532px;
    object-fit: cover;
}
.about-game__title {
    margin-bottom: 30px;
}
.about-game__title h2{
    font-weight: 900;
    font-size: 47px;
    color: var(--WHITE);
    line-height: 70px;
}
.about-game__desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--WHITE);
    font-weight: 200;
    margin-bottom: 90px;
}
/* CTA */
section#cta .cta__content .cta__title{
    margin-bottom: 30px;
}
section#cta .cta__content .cta__title h3{
    font-weight: 900;
    font-size: 47px;
    color: var(--DARK-GRAY);
    line-height: 70px;
}
section#cta .cta__content{
    text-align: center;
}
section#cta {
    background-color: var(--YELLOW);
    padding: 40px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* Versions */
section#cs-versions {
    background-color: var(--DARK-GRAY);
    padding: 100px 0;
}
.versions__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 300px;
}
.versions__title{
    margin-bottom: 30px;
}
.versions__title h2{
    font-weight: 900;
    font-size: 47px;
    color: var(--WHITE);
    line-height: 70px;
}
.versions__desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--WHITE);
    font-weight: 200;
    margin-bottom: 60px;
}
.versions__list ul li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-color: var(--YELLOW);
    border-radius: 50%;
}
.versions__list ul li{
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}
.versions__list {
    margin-bottom: 60px;
}
.versions__list ul{
    font-size: 21px;
    line-height: 25px;
    color: var(--WHITE);
    font-weight: 200;
    list-style: none;
    padding-left: 0;
}
/* Footer */
footer .footer__wrapper .footer__copyright a{
    color: var(--YELLOW);
}
footer .footer__wrapper .footer__copyright{
    font-size: 14px;
    line-height: 1.5;
    color: var(--WHITE);
    font-weight: 200;
}
footer .footer__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .footer__container{
    border-top: 1px solid var(--YELLOW);
    padding-top: 30px;
}
footer{
    background-color: var(--DARK-GRAY);
    padding-bottom: 30px;
}
/* Download template */
.page-template-page-download section.intro .intro__title{
    margin-bottom: 90px;
}
.page-template-page-download section.intro .intro__title h1{
    font-weight: 900;
    font-size: 47px;
    color: var(--WHITE);
    line-height: 70px;
}
.page-template-page-download section.intro .intro__image{
    position: absolute;
    right: 0;
    top: 150px;
}
.page-template-page-download section.intro .intro__wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 300px;
    align-items: center;
    height: 80vh;
}
.page-template-page-download section.intro{
    background-color: var(--DARK-GRAY);
}
.page-template-page-download section.why-choose-down .why-choose__title{
    margin-bottom: 90px;
}
.page-template-page-download section.why-choose-down .why-choose__title h2{
    font-weight: 900;
    font-size: 47px;
    color: var(--DARK-GRAY);
    line-height: 70px;
}
.page-template-page-download section.why-choose-down .why-choose-down__wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 300px;
}
.page-template-page-download section.why-choose-down .why-choose__list li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-color: var(--DARK-GRAY);
    border-radius: 50%;
}
.page-template-page-download section.why-choose-down .why-choose__list li{
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}
.page-template-page-download section.why-choose-down .why-choose__list ul{
    font-size: 21px;
    line-height: 25px;
    color: var(--DARK-GRAY);
    font-weight: 200;
    list-style: none;
    padding-left: 0;
}
.page-template-page-download section.why-choose-down{
    background-color: var(--YELLOW);
    padding: 150px 0 100px;
}
.system-requirements {
    background-color: var(--DARK-GRAY);
    padding: 100px 0;
}
.system-requirements__heading {
    margin-bottom: 60px;
    text-align: center;
}
.system-requirements__title {
    font-weight: 900;
    font-size: 47px;
    color: var(--WHITE);
    line-height: 70px;
}
.system-requirements__subtitle {
    font-weight: 200;
    font-size: 21px;
    color: var(--WHITE);
    line-height: 70px;
}
.system-requirements__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.system-requirements__list strong{
    font-weight: 900;
    font-size: 27px;
    color: var(--WHITE);
}
.system-requirements__list {
    font-weight: 200;
    font-size: 21px;
    color: var(--WHITE);
    line-height: 2;
    text-align: center;
}
.system-requirements__list--min {
    margin-bottom: 60px;
}
.page-template-page-download .how-to-install {
    background-color: var(--DARK-GRAY);
    padding-bottom: 100px;
}
.page-template-page-download .how-to-install__heading {
    margin-bottom: 60px;
    text-align: center;
}
.page-template-page-download .how-to-install__title {
    font-weight: 900;
    font-size: 47px;
    color: var(--WHITE);
    line-height: 70px;
}
.page-template-page-download .how-to-install__subtitle {
    font-weight: 200;
    font-size: 21px;
    color: var(--WHITE);
    line-height: 70px;
}
.page-template-page-download .how-to-install__list ol {
    counter-reset: install-counter;
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 700px;
}
.page-template-page-download .how-to-install__list ol li {
    counter-increment: install-counter;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 1.5;
    color: var(--WHITE);
    font-weight: 200;
    text-align: left;
}
.page-template-page-download .how-to-install__list ol li::before {
    content: counter(install-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--YELLOW);
    color: var(--BLACK);
    font-weight: 700;
    font-size: 22px;
    box-shadow: inset 0 0 0 6px var(--BLACK);
    border: 3px solid var(--YELLOW);
}
.page-template-page-download .how-to-install__list {
    display: flex;
    justify-content: center;
    text-align: center;
}
.page-template-page-download .how-to-install__button__center{
    text-align: center;
    margin-top: 60px;
}
section#cta-download .cta__content .cta__description{
    font-weight: 200;
    font-size: 21px;
    color: var(--WHITE);
    line-height: 2;
    margin: 60px 0;
}
section#cta-download .cta__content .cta__title h2{
    font-weight: 900;
    font-size: 47px;
    color: var(--WHITE);
    line-height: 70px;
}
section#cta-download .cta__content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 40%;
}
section#cta-download .cta__image{
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 500px;
}
section#cta-download{
    position: relative;
    min-height: 500px;
    display: flex;
}
.page-template-page-blog footer .footer__container ,
.single-post footer .footer__container ,
.page-template-page-download footer .footer__container {
    border-top: unset;
}
/* Single post */
main.single-post {
    padding-bottom: 100px;
}
main.single-post .single-post__body .wp-element-caption{
    font-weight: 700;
}
main.single-post .single-post__body .wp-block-query ,
main.single-post .single-post__body .wp-block-gallery,
main.single-post .single-post__body .wp-block-heading{
    margin-bottom: 30px;
}
main.single-post .single-post__body .wp-block-list li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-color: var(--YELLOW);
    border-radius: 50%;
}
main.single-post .single-post__body .wp-block-list li{
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}
main.single-post .single-post__body .wp-block-list{
    font-size: 21px;
    line-height: 25px;
    color: var(--WHITE);
    font-weight: 200;
    list-style: none;
    padding-left: 0;
    margin: 30px auto;
    max-width: 100vh;
}

main.single-post .single-post__body h4,
main.single-post .single-post__body h5{
    font-weight: 900;
    font-size: 23px;
    line-height: 2;
    color: var(--WHITE);
    text-align: center;
}
main.single-post .single-post__body h3,
main.single-post .single-post__body h2{
    font-weight: 900;
    font-size: 27px;
    line-height: 2;
    color: var(--WHITE);
    text-align: center;
}
main.single-post .single-post__body p{
    font-weight: 200;
    font-size: 21px;
    color: var(--WHITE);
    line-height: 2;
    text-align: center;
    margin-bottom: 40px;
}
main.single-post .single-post__title{
    font-weight: 900;
    font-size: 25px;
    color: var(--WHITE);
    line-height: 1.5;
    text-align: center;
    margin: 60px 0 30px;
}
main.single-post .single-post__image img{
    height: 412px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 60px;
}
/* Blog */
section.blog-posts .blog-posts__list article .wp-post-image{
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
}
section.blog-posts .blog-posts__list p{
    color: var(--WHITE);
}
section.blog-posts .blog-posts__list article h2 a{
    color: var(--WHITE);
}
section.blog-posts .blog-posts__list article h2{
    font-weight: 900;
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 30px;
}
section.blog-posts .blog-posts__list{
    padding-bottom: 100px;
}
section.blog-posts .blog-posts__list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px
}
section.heading h1{
    font-weight: 900;
    font-size: 47px;
    color: var(--WHITE);
    line-height: 70px;
    text-align: center;
}
section.heading{
    margin: 60px 0 30px;
}
/* 404 */
.error404 .page-content .main-btn{
    margin-top: 60px;
}
.page-template-default .page-content{
    font-weight: 200;
    font-size: 21px;
    color: var(--WHITE);
    line-height: 2;
    padding-bottom: 100px;
}
.error404 .page-content{
    text-align: center;
    padding-bottom: 100px;
    font-weight: 200;
    font-size: 21px;
    color: var(--WHITE);
    line-height: 2;
}