/*

energole

*/

:root {
    --col1: #dcb131;
    --col2: #8ba0b2;
    --text: #c9d7e3;
    --bgcol: #0b1622;
    --bgmedium: #131f2d;
}

/* scroll */

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-thumb {
    background: var(--col1);
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* font */

@font-face {
    font-family: 'Overpass';
    font-weight: 300;
    src: url(../../font/Overpass-Light.ttf);
}

@font-face {
    font-family: 'Overpass';
    font-weight: 400;
    src: url(../../font/Overpass-Regular.ttf);
}

@font-face {
    font-family: 'Overpass';
    font-weight: 700;
    src: url(../../font/Overpass-Bold.ttf);
}

@font-face {
    font-family: 'Overpass';
    font-weight: 800;
    src: url(../../font/Overpass-ExtraBold.ttf);
}

/* podstawowe style */

* {
    box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
}

body {
    background: var(--bgcol);
    font-family: 'Overpass', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 800;
    line-height: 1.15;
}

h1 {
    font-size: 200%;
    color: #fff;
}

h2 {
    font-size: 180%;
}

h3 {
    font-size: 135%;
}

h4 {
    font-size: 140%;
}

h5 {
    font-size: 120%;    
}

h6 {
    font-size: 110%;
}

a {
    text-decoration: none;
    color: var(--col2);
    transition: .2s ease;
    outline: none;
}

a:hover {
    color: var(--col1);
}

a:active, a:focus {
    outline: 0;
    border: none;
}

b, strong {
    font-weight: 800;
}

:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 30px;
}

.center, p.center {
    text-align: center;
}

.justify, p.justify {
    text-align: justify;
}


.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 15px;
    width: 100%;
}

.energole > .col {
    width: 25%;
}

.bottom_space_10 {
    margin-bottom: 10px !important;
}

/* header */

header, footer {
    padding-top: 30px;
    text-align: center;
}

h1 {
    font-weight: 300;
    letter-spacing: 5px;
}

h1 span {
    display: block;
    color: var(--col1);
    font-weight: 800;
    letter-spacing: 4.2px;
}

/* tiery */

.tier-container {
    display: flex;
}

.tier {
    background: var(--col1);
}

.tier:not(.tierinfo) {
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
}

.tier10 {
    background: rgba(254, 65, 87, .1);
}

.tier10 .tier {
    background: #fe4157;
    color: #ffced2;
}

.tier9 {
    background: rgba(230, 209, 171, .1);
}

.tier9 .tier {
    background: #e6d1ab;
    color: #ea404c;
}

.tier8 {
    background: rgba(106, 52, 187, .1);
}

.tier8 .tier {
    background: #6a34bb;
    color: #d3d3d4;
}

.tier7 {
    background: rgba(123, 189, 52, .1);
}

.tier7 .tier {
    background: #7bbd34;
    color: #1a1a1a;
}

.tier6 {
    background: rgba(120, 83, 62, .1);
}

.tier6 .tier {
    background: #78533e;
    color: #1a1a1a;
}

.tier5 {
    background: rgba(255, 255, 53, .1);
}

.tier5 .tier {
    background: #ffff35;
    color: #1a1a1a;
}

.tier4 {
    background: rgba(240, 92, 94, .1);
}

.tier4 .tier {
    background: #f05c5e;
    color: #444b30;
}

.tier3 {
    background: rgba(175, 10, 42, .1);
}

.tier3 .tier {
    background: #af0a2a;
    color: #fff655;
}

.tier2 {
    background: rgba(53, 185, 240, .1);
}

.tier2 .tier {
    background: #35b9f0;
    color: #050505;
}

.tier1 {
    background: rgba(0, 0, 0, .1);
}

.tier1 .tier {
    background: #000000;
    color: #ffec17;
}

.tier0 {
    background: rgba(167, 209, 38, .1);
}

.tier0 .tier {
    background: #a7d126;
    color: #010101;
}

.tierinfo {
    color: var(--bgcol);
    margin-top: 30px;
    padding: 15px 20px 10px;
}

/* energole */

.energole {
    text-align: center;
    width: calc(100% - 50px);
    padding: 15px;
}

.energol {
    height: 100%;
}

.energol img {
    margin: 0 auto 20px;
}

.energol p {
    margin: 5px 0 0;
}

/* info */

.info {
    border: 2px solid var(--col1);
    padding: 30px;
    margin: -17px 0 15px;
}

.info p {
    margin: 0 0 2px;
}

.info p:last-child {
    margin: 0;
}

/* footer */

footer {
    margin-top: 15px;
    padding: 20px 0 15px;
    background: var(--bgmedium);
}

footer h4 {
    color: var(--col1);
    margin-bottom: 5px;
}

footer p {
    margin: 0;
}

/* rwd */

@media(max-width: 1400px) {
    body {
        font-size: 16px;
    }

    .energole > .col {
        width: 33.333%;
    }
}

@media(max-width: 1000px) {
    body {
        font-size: 15px;
    }

    .energole > .col {
        width: 50%;
    }

    .energole img {
        max-height: 100px;
    }
}

@media(max-width: 600px) {
    body {
        font-size: 14px;
    }

    .energole > .col {
        width: 100%;
    }
}