/*
Theme Name: Athlos
Theme URI: https://opencollective.com/blankslate
Template: blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready,one-column,two-columns,custom-menu,featured-images,microformats,sticky-post,threaded-comments,translation-ready
Version: 2026.1776150142
Updated: 2026-04-14 07:02:22

*/


/* GENERAL */
body {
    background-color: #000;
    color: #F7F3F2;
    padding: 3rem 50px;
    position: relative;
    font-family: 'Manrope';
}
body p, .inner {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 1rem;
}
body a {
    color: #FFF;
    text-decoration: none;
}
body h2, body h3 {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}
body h4, body h5, body h6 {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}
body::after {
    content: "";
    width: 800px;
    height: 800px;
    display: block;
    position: fixed;
    bottom: -200px;
    right: -200px;
    border-radius: 500px;
    background: radial-gradient(
        circle,
        rgba(193, 193, 193, 0.4) 0%,
        rgba(193, 193, 193, 0.2) 50%,
        rgba(193, 193, 193, 0) 100%
    );
}
body.dontMove {
    overflow: hidden;
}

/* HEADER HERE */
#header img {
    width: 100%;
    height: 100%;
    max-width: calc(100% - 80%);
}
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#burger_menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}
#burger_menu .line {
    content: "";
    cursor: pointer;
    height: 3px;
    width: 40px;
    background-color: rgba(193, 193, 193, 1);
    transition: .3s all ease-in-out;
}
#burger_menu.active .one {
    transform: translate(0px, 10px) rotate(-45deg);
    transition: .3s all ease-in-out;
}
#burger_menu.active .two {
    display: none;
    transition: .3s all ease-in-out;
}
#burger_menu.active .three {
    transform: translate(0px, 1px) rotate(45deg);
    transition: .3s all ease-in-out;
}

#side_menu {
    width: 100%;
    height: 100vh;
    max-width: 30rem;
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #333333; */
    background-color: #000;
    overflow: hidden;
    transform: translateX(-100%);
    transition: .5s all ease-in-out;
}
#side_menu.show {
    transform: translateX(0);
    transition: .5s all ease-in-out;
}
#side_menu li {
    padding: 15px 0;
}
#side_menu li a {
    font-size: 30px; 
    cursor: pointer;
    transition: .3s all ease-in-out;
}
#side_menu li a:hover {
    color: rgba(193, 193, 193, 1);
    transition: .3s all ease-in-out;
}
#side_menu::before {
    content: "";
    width: 400px;
    height: 400px;
    display: block;
    position: absolute;
    top: -100px;
    left: -100px;
    border-radius: 500px;
    background: radial-gradient(
        circle,
        rgba(193, 193, 193, 0.4) 0%,
        rgba(193, 193, 193, 0.2) 50%,
        rgba(193, 193, 193, 0) 100%
    );
}
#side_menu::after {
    content: "";
    width: 400px;
    height: 400px;
    display: block;
    position: absolute;
    bottom: -100px;
    right: -100px;
    border-radius: 500px;
    background: radial-gradient(
        circle,
        rgba(193, 193, 193, 0.4) 0%,
        rgba(193, 193, 193, 0.2) 50%,
        rgba(193, 193, 193, 0) 100%
    );
}


section {
    margin: 0 auto;
    position: relative;
    padding: 5rem 0;
}
section::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(193, 193, 193, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

/* FOOTER HERE */
footer {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}
footer a {
    text-decoration: underline;
    transition: .3s all ease-in-out;
}
footer a:hover {
    color: rgba(193, 193, 193, 1);
    transition: .3s all ease-in-out;
}

/* BACK TO TOP BUTON HERE */
#backToTop {
    background-color: rgba(193, 193, 193, 0.4);
    border: none;
    border-radius: 500px;
    width: 40px;
    height: 40px;
    color: #F7F3F2;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
    position: fixed;
    z-index: 1;
    bottom: 50px;
    right: 30px;
    
}
#backToTop:hover {
    animation: upAndDown 1s infinite;
}
@keyframes upAndDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* HERO SECTION HERE */
#hero {
    padding-top: 2rem !important;
}
#hero iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* min-height: 600px; */
    aspect-ratio: 10 / 6;
}

/* PLAYERS SECTION HERE */
#players .inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
#players a {
    width: calc(100% - 77%);
    border-radius: 10px;
    /* overflow: hidden; */
    height: fit-content;
    transition: .3s all ease-in-out;
}
/* #players a:hover {
    box-shadow: 0 0 30px rgba(193, 193, 193, 0.4);
    transition: .3s all ease-in-out;
} */
#players img {
    width: 100%;
    height: 350px;
    
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: .3s all ease-in-out;
}
#players img:hover {
    transform: scale(1.025);
    box-shadow: 0 0 30px rgba(193, 193, 193, 0.4);
    transition: .3s all ease-in-out;
}

/* GIATI ATHLOS SECTION HERE */
#giati_athlos h2 {
    margin: 0 auto;
    width: 50%;
}
#giati_athlos .inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: auto;
    text-align: left;
}
#giati_athlos a {
    display: flex;
}
#giati_athlos p, #creators p {
    margin-bottom: 0.5rem;
    font-size: 20px;
}
@media (max-width: 1250px) {
#giati_athlos a {
    flex-direction: column;
}
#giati_athlos h2 {
    margin-bottom: 3rem;
    width: 100%;
}
}

/* CREATORS SECTION HERE */
#creators .main {

    margin-top: 5rem;
    position: relative;
    z-index: 1;
}
#creators .main a {
    width: 100%;
    text-align: left;
    display: flex;
    gap: 3rem;
}
#creators .main a h4 {
    width: 47%;
}
#creators .main a .inner {
    width: 100%;
}
#creators .main a:nth-child(1) {
    flex-direction: row-reverse;
    margin-bottom: 3rem;
    text-align: right;
}

/* #creators .main p {
    margin-bottom: 1rem;
} */
@media (max-width: 1250px) {
#creators .main {
    margin-top: 1rem;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
} 
#creators .main a {
    width: 100%;
    flex-direction: column;
}
#creators .main a:nth-child(1) {
    flex-direction: column;
    text-align: left;
}
#creators .main a h4 {
    width: 100%;
    margin-bottom: 0;
}
}

/* POST INNER PAGE HERE */
#post {
    position: relative;
    z-index: 1;
}
#post h1 {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}
#post img {
    margin: auto;
    width: 55%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    object-position: center;
    display: flex;
}
#post .inner {
    width: 55%;
    margin: 4rem auto;
    text-align: center;
}
#players .post {
    margin-bottom: 0;
    padding-top: 3rem;
}
#players .post a {
    width: calc(100% - 68%);
}
#players h3 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 400;
}
.more {
    position: absolute;
    top: 3rem;
    font-size: 30px;
    cursor: pointer;
    color: inherit;
    transition: .3s all ease-in-out;
}
.more::after {
    content: "";
    height: 3px;
    width: 0;
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: rgba(193, 193, 193, 0.7);
    transition: .3s all ease-in-out;
}
.more:hover::after {
    width: 100%;
    transition: .3s all ease-in-out;
}
.more:hover {
    color: rgba(193, 193, 193, 0.7);
    transition: .3s all ease-in-out;
}

/* RESPONSIVE HERE */
@media (min-width: 769px) and (max-width: 1300px) {
#players .post a {
    width: calc(100% - 70%) !important;
}
}
@media (min-width: 1025px) and (max-width: 1250px) {
#players .inner {
    justify-content: center;
}
#players a {
    width: calc(100% - 69%);
}
#players .post a {
    width: calc(100% - 70%);
}
#post img, #post .inner {
    width: 75%;
}
}

@media (min-width: 769px) and (max-width: 1024px) {
body {
    padding: 3rem 30px;
}
#players .inner {
    justify-content: center;
}
#players a {
    width: calc(100% - 52%);
}
#post img, #post .inner {
    width: 85%;
}
}


@media (max-width: 768px) {
body {
    padding: 3rem 20px;
}
body p {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
body h2, body h3 {
    font-size: 6vw;
    margin-bottom: 2rem;
}
body h4, body h5, body h6 {
    font-size: 5vw;
    margin-bottom: 2rem;
}
body::after {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -200px;
}
section {
    padding: 3rem 0;
}
#header img {
    max-width: calc(100% - 70%);
}
#side_menu li a {
    font-size: 20px;
}
#backToTop {
    width: 30px;
    height: 30px;
    padding: 1rem;
    font-size: 20px;
    bottom: 20px;
}
#giati_athlos .inner, #post .inner {
    text-align: left;
}
#players .inner {
    justify-content: center;
}
#players a {
    width: 100%;
}
#players .post a {
    width: 100%;
}
#post img, #post .inner {
    width: 100%;
}
.more {
    font-size: 25px;
    top: 1.5rem;
}
}


@media (max-width: 400px) {
body h2, body h3 {
    font-size: 8vw;
}
body h4, body h5, body h6 {
    font-size: 7vw;
}
#header img {
    max-width: calc(100% - 60%);
}
footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}
}


