@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');

/* varibles */
:root {
    --color-primary: #58544C;
    --color-white: #fff;
    --color-orange: #FF4E00;
    --color-grey: #FBF5E6;
    --bg-primary: #58544C;
    --bg-white: #fff;
    --bg-grey: #FBF5E6;
    --bg-orange: #FF4E00;
    --ff-roboto-mono: 'Roboto Mono', monospace;
  }

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
body {
    margin: 0;
    color: #000;
    font-family: var(--ff-roboto-mono);
    font-style: 18px;
    font-weight: 400;
    background: #000
}
h1, h2, h3, h4 {
    font-style: normal;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
    width: 100%;
    margin: 30px 0;
}
h1 {
    font-size: 36px;
    line-height: 50px
}
h2 {
    font-size: 28px;
    line-height: 47px
}
h3 {
    font-size: 22px;
    line-height: 43px
}
h4 {
    font-size: 24px;
    line-height: 43px
}
p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #000;
}
a {
    text-decoration: underline;
    color: var(--color-orange);
}
a:visited {
    color: #bd48ff;
}
a:hover {
    color: var(--color-orange);
    cursor: pointer;
    text-decoration: underline
}
a:active {
    color: #ff7739
}
img {
    display: block;
    max-width: 100%;
    margin: 30px auto;
    border-radius: 26px;
}
.aligncenter, .alignleft, .alignright {
    display: block;
    padding: 0
}
.aligncenter {
    float: none;
    margin: .5em auto 1em
}
.alignright {
    float: right;
    margin: .5em 0 1em 1em
}
.alignleft {
    float: left;
    margin: .5em 1em 1em 0
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 20px 0 20px
}
header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #000;
    padding: 20px 20px
}
.header-logo {
color: var(--color-grey);
font-weight: 500;
font-size: 22px;
text-transform: uppercase;
}

header img {
    margin: unset
}
#top-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
#top-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%
}
#top-menu ul li {
    list-style-type: none;
    margin: 0 35px;
    color: var(--color-orange);
}
#top-menu ul li:first-child {
    margin-left: 0
}
#top-menu ul li:last-child {
    margin-right: 0
}
#top-menu ul li a {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    color: #fff;
    text-decoration: none
}
#top-menu ul li a.active {
    font-weight: 700;
    text-decoration: underline
}
#top-menu ul li a:hover {
    text-decoration: underline
}
.wrap {
    background: rgba(255, 255, 255, .9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
.main {
    width: 100%;
    padding: 20px
}
.main ol, .main ul {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #000;
    padding: 0 0 0 20px;
    margin-left: 10px
}
.main ol li, .main ul li {
    margin-bottom: 20px;
    position: relative;
    list-style: none
}
.main ol li::before, .main ul li::before {
    content: "";
    display: block;
    position: absolute;
    height: 5px;
    width: 5px;
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #000;
    border-radius: 50%
}
.main .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px
}
.main .row .col {
    background: #2f2f2f;
    padding: 20px 40px;
    width: 50%
}
.main .row .col:first-child {
    margin-right: 40px
}
.main .row .col .title {
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    color: #fff
}
.main .row .col p {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    color: #fff
}
aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-width: 540px;
    padding: 20px
}
aside img {
    margin: unset
}
aside .latest-games {
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    background: #2f2f2f;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin: 20px 0 20px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}
aside .latest-games:hover {
    background: #4c4c4c;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}
aside .latest-game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0 10px 0
}
aside .latest-game:first-of-type {
    margin-top: 0
}
aside .latest-game img {
    margin-right: 25px
}
aside .title {
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    color: #000;
    padding-right: 25px
}
#sidebar-menu ul {
    padding: 0;
    margin: 10px 0
}
#sidebar-menu ul li {
    list-style-type: none;
    margin: 20px 0
}
#sidebar-menu ul li a {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    text-decoration: none
}
#sidebar-menu ul li a:hover {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}
.article {
    background: #fff;
    padding: 10px;
    min-height: 95vh
}
footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #000;
    width: 100%
}
footer p {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 50px;
    color: var(--color-orange);
}
#showMenu {
    position: absolute;
    width: 30px;
    height: 25px;
    background: 0 0;
    outline: 0;
    border: none;
    display: none;
    left: 0
}
#showMenu.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 28px
}
#showMenu.open span:nth-child(2) {
    width: 0
}
#showMenu.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 28px
}
#showMenu span {
    width: 100%;
    position: absolute;
    height: 3px;
    background: #fff;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}
#showMenu span:nth-child(1) {
    top: 0;
    right: 0
}
#showMenu span:nth-child(2) {
    top: 11px;
    right: 0
}
#showMenu span:nth-child(3) {
    top: 22px;
    right: 0
}
blockquote {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    background: #c64005;
    padding: 25px 55px;
    margin: 25px auto
}
table {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin: 20px auto;
    width: 100%;
    font-size: 12px;
    line-height: 14px;
    color: #fff
}
table tr {
    text-align: center
}
table tr td {
    padding: 10px;
    border: 2px solid #c64005;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    background: #c64005
}
@media only screen and (max-width:1600px) {
    body.inner-page .main {
        width: 100%
    }
    .main {
        width: 70%
    }
    aside {
        width: 30%;
        min-width: unset
    }
    aside .latest-game img {
        margin-right: 10px
    }
    aside .title {
        font-size: 18px;
        line-height: 25px;
        padding-right: 0
    }
    .main .row .col p {
        font-size: 20px;
        line-height: 25px
    }
}
@media only screen and (max-width:1440px) {
    .banner-wrap h1 {
        font-size: 60px;
        line-height: 50px
    }
    #top-menu ul li {
        margin: 0 25px
    }
}
@media only screen and (max-width:1200px) {
    #top-menu ul li a {
        font-size: 25px
    }
    .banner-wrap h1 {
        font-size: 50px;
        line-height: 40px
    }
    #top-menu ul li {
        list-style-type: none;
        margin: 0 15px
    }
    aside .latest-game {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    aside .latest-game img {
        margin: 0 0 10px 0
    }
    aside .title {
        text-align: center
    }
    aside .latest-games {
        font-size: 25px;
        line-height: 35px
    }
    .main .row .col {
        padding: 20px
    }
    .main .row .col .title {
        font-size: 24px;
        line-height: 30px
    }
}
@media only screen and (max-width:992px) {
    .main, aside {
        padding: 20px 10px 20px 10px
    }
    #top-menu {
        width: 100%
    }
    #top-menu ul {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
    #top-menu ul li {
        margin: 0 5px
    }
    #top-menu ul li a {
        font-size: 22px;
        min-width: auto
    }
    .main .row .col:first-child {
        margin-right: 20px
    }
    h1 {
        line-height: 35px
    }
    p {
        line-height: 30px
    }
    aside .latest-games {
        font-size: 20px
    }
}
@media only screen and (max-width:768px) {
    header {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        position: relative;
        padding: 20px 10px;
    }
    header img {
        max-height: 50px
    }
    .container {
        padding: 0
    }
    #showMenu {
        display: block;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 10px
    }
    .banner-wrap {
        top: 42px;
        left: 12px;
        right: 12px;
        min-height: 290px !important
    }
    #top-menu {
        display: none;
        width: 250px
    }
    #top-menu.open {
        display: block;
        position: absolute;
        left: 40px;
        top: 15px;
        background: #000;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }
    #top-menu.open ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 0 20px 20px;
        margin: 0
    }
    #top-menu.open ul li {
        margin: 0;
        display: block;
        width: 100%;
        padding: 0;
        text-align: left
    }
    #top-menu.open ul li:first-child {
        margin-top: 10px
    }
    #top-menu.open ul li:last-child {
        margin-bottom: 10px;
        margin-right: unset
    }
    #top-menu.open ul li a {
        font-weight: 700;
        font-size: 30px;
        line-height: 50px;
        padding: 0;
        background: unset;
        color: #fff
    }
    .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .main .post-title {
        border: none;
        padding: 0
    }
    .main .post-preview {
        border: none
    }
    .main .main-news {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .main .main-news img {
        margin: 10px auto
    }
    main .news-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .wrap.inner-page {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 20px
    }
    .wrap.inner-page .main {
        padding: 10px
    }
    .wrap.inner-page #sidebar-menu {
        padding-left: 10px
    }
    .wrap.inner-page #sidebar-menu {
        padding-left: 0
    }
    table {
        overflow-x: auto;
        white-space: nowrap
    }
    blockquote {
        padding: 25px
    }
    .main .news-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 0 20px 0
    }
    .main .news-item img {
        margin: 10px auto
    }
    .main .news-item .btn {
        margin: 0 auto
    }
    .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .main {
        width: 100%;
        padding: 10px
    }
    .main .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 10px
    }
    .main .row .col {
        width: 100%;
        margin-bottom: 10px
    }
    aside {
        padding-top: 0;
        width: 100%
    }
    aside img {
        margin: 0 auto
    }
    aside .latest-games {
        margin: 20px auto
    }
    aside .latest-game {
        width: 100%
    }
    footer p {
        font-size: 20px;
        line-height: 24px;
        padding: 15px 0
    }
}
@media (max-width:480px) {
    table tr td {
        padding: 5px
    }
}
@media all and (max-width:480px) {
    footer p {
        text-align: center
    }
    .alignleft, .alignright {
        float: none;
        margin: 20px auto
    }
    blockquote {
        width: 100%
    }
    aside table {
        width: 95%
    }
    .main ol, .main ul {
        margin: 20px 0 20px 20px;
        padding: 0
    }
}
@media only screen and (max-width:480px) {
    .banner-wrap h1 {
        font-size: 25px;
        line-height: 25px
    }
}