@import url('https://fonts.googleapis.com/css?family=Poppins: wght0400; 50 0;700; 800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    background: #000;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

.wrapper {
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(26,14,1,1) 100%);
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

header {
    padding: 50px 0;
}

header .logo, footer .blocks .logo {
    text-transform: uppercase;
    font-size: 29px;
    font-weight: 800;
}

header nav {
    float: right;
    width: 50%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

header nav ul li {
    display: inline-block;
}

header nav ul li.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #DC7000;
    border-radius: 10px;
}

header nav ul li a {
    color: #fff;
}

header nav ul li:not(.active):not(.btn) a:hover {
    border-bottom: 5px solid #DC7000;
}

header nav ul li.btn a {
    background: #FA9021;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 250ms ease;
}

header nav ul li.btn a:hover {
    background: #856600;
}

.hero {
    padding-bottom: 100px;
    position: relative;
}

.hero--info {
    width: 530px;
    padding-top: 70px;
}

.hero--info h2 {
    color: #E87D0E;
    font-size: 20px;
    font-weight: 600;
}

.hero--info h1 {
    font-size: 50px;
    font-weight: 600;
}

.hero--info p {
    font-weight: 500;
    line-height: 170%;
    margin: 30px 0;
}

.hero--info .btn, .hero-about .info .btn {
    background: #FA8305;
    color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    border: 0;
    transition: all 250ms ease;
    font-size: 18px
}

.hero--info .btn:hover, .hero-about .info .btn:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.hero img {
    position: absolute;
    top: -150px;
    right: 50px;
    size: 0.2%;
}

/* О нас */

.hero-about {
    position: relative;
}

.hero-about .info {
    width: 500;
    padding: 50px 0;
}

.hero-about .info h1 {
    margin-bottom: 15px;
    font-size: 30px;
}

.hero-about .info .btn, .hero--info .btn {
    margin-top: 20px;
}

.hero-about img {
    position: relative;
    top: 50px;
    border-radius: 10px;
    opacity: 80%;
}

.work {
    padding: 80px 0;
}

.work h2 {
    font-size: 25px;
    margin-bottom: 40px;
}

.work .blocks {
    display: flex;
    justify-content: space-between;
}

.work .blocks .block {
    width: 25%;
    border-radius: 10px;
    padding: 50px 35px;
    background: #1C140F;
}

.work .blocks .block h3 {
    font-size: 20px;
    margin: 20px 0;
}

.work .blocks .block .badge {
    border-radius: 7px;
    padding: 10px 20px;;
}

.work .blocks .block .badge.purple {
    background: #560F67;
}

.work .blocks .block .badge.brown {
    background: #311c0f;
}

.work .blocks .block .badge.green {
    background: #1c3b0e;
}

/* best players */
.best {
    padding-top: 50px;
}

.best h3 {
    font-weight: 600;
    font-size: 31px;
}

.best .players {
    display: flex;
    justify-content: space-between;
    width: 25%;
    padding: 50px 0;
}

.best .players .block img {
    position: unset;
    size: 10%;
}

.best .players span {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.best .players .block .badge {
    border-radius: 7px;
    padding: 10px 20px;
    width: 71%;
}

.best .players .block .badge.yellow {
    background: #635905;
}

.best .players .block .badge.green {
    background: #275512;
}

/* servers */

.servers {
    position: relative;
}

.servers .servers-info {
    width: 500;
    padding: 50px 0;
}

.servers-info h2 {
    color: #E87D0E;
    font-size: 20px;
    font-weight: 600;
}

/* news */
.news {
    padding: 80px 0;
}

.news h2 {
    font-size: 25px;
    margin-bottom: 40px;
}

.news .blocks {
    display: flex;
    justify-content: space-between;
}

.news .blocks .block {
    width: 100%;
    border-radius: 10px;
    padding: 50px 35px;
    background: #1C140F;
}

.news .blocks .block h3 {
    font-size: 20px;
    margin: 20px 0;
}

.news .blocks .block .badge {
    border-radius: 7px;
    padding: 10px 20px;
}

.news .blocks .block .badge.green {
    background: #275512;
}

.news .blocks .block ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    float: right;
}

.news .blocks .block ul li {
    display: inline-block;
    border-radius: 7px;
    padding: 10px 20px;
    background: #252525;
    opacity: 0.5;
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0;
}

footer .blocks {
    display: flex;
    justify-content: space-between;
}

footer .blocks p {
    width: 300px;
    margin: 15px 0;
}

footer .blocks h4 {
    font-weight: 500;
    font-size: 17px;
}

footer .blocks ul {
    list-style: none;
}

footer .blocks ul li {
    margin-top: 7px;
    opacity: 0.8;
}

footer hr {
    margin: 30px 0;
    border: 0;
    height: 0.6px;
    background: #ccc;
}

footer > p {
    text-align: center;
}
