/* Обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    font-family: 'Open Sans', sans-serif;
    color: #5B6883;
    background: #15112B;
}

/* Container */
.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

/* header */
header {
    padding: 15px 0;
    background: #15112B;
}

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 17px;
    transition: .3s;
}

header .logo img {
    height: 100%;
    width: auto;
}

header .logo:hover {
    transform: scale(1.05);
}

header .row ul {
    display: flex;
    align-items: center;
}

header .row ul li {
    margin: 0 0 0 21px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
}

header .row ul li:hover {
    color: #FE2548;
}

header .row ul li:first-child {
    margin: 0;
}

header .row ul li a {
    color: inherit;
    text-decoration: none;
}

header .row-mobile {
    display: none;
}

/* Intro */
.intro {
    padding: 57px 0 39px 0;
    background: url('../img/bg.png') center / cover no-repeat;
}

.intro .container div {
    display: flex;
    flex-direction: column;
}

.intro h1 {
    margin: 0 0 15px 0;
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    color: #ffffff;
}

.intro h1 span {
    color: #FE2548;
}

.intro p {
    margin: 0 0 30px 0;
    max-width: 876px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}

.intro a,
.btn {
    padding: 15px 43.5px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    background: #FE2548;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: .3s all linear;
}

.intro a span,
.btn span {
    color: #FFFFFF;
    transition: .3s;
}

.intro a:hover,
.btn:hover {
    background: #0E101B;
}

/* Content */
.content {
    padding: 57px 47px;
}

.content h2,
.content h3 {
    margin: 25px 0 15px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #FFFFFF;
}

.content p,
.content ul li,
.content ol li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #A9A9A9;
}

.content ul,
.content ol {
    margin: 0 0 15px 20px;
}

.content p {
    margin: 0 0 15px 0;
}

.container-error {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 150px);
}

.container-error h3 {
    margin: 0;
    color: #FE2548;
    font-size: 8em;
    line-height: 150%;
}

.container-error h4 {
    margin: 0;
    color: #FE2548;
    font-size: 8em;
    line-height: 150%;
}

/* footer */
footer {
    background: #100C23;
}

footer ul {
    display: flex;
    justify-content: center;
    padding: 16.6px 0;
}

footer ul li {
    margin: 0 19px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
}

footer ul li:hover {
    color: #FE2548;
}

footer ul li:last-child {
    margin: 0;
}

footer ul li a {
    color: inherit;
    text-decoration: none;
}

.table-responsive {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    color: #A9A9A9;
}

table,
td,
th {
    border: 1px solid #ffffff;
}

td,
th {
    padding: 10px;
    width: 30px;
    height: 25px;
}

th {
    background-color: #7accee !important;
}

.img-text {
    width: 60%;
    margin: 20px auto !important;
    display: flex;
}

.img-text img {
    width: 100%;
    height: 100%;
    border-radius: 9px;
}

.img-cov {
    width: 200px;
    height: 200px;
}

.img-cov img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

@media screen and (max-width: 600px) {
    table {
        font-size: 12px;
    }

    .img-text {
        width: 100%;
    }

    .img-cov {
        float: none !important;
        margin: 20px auto !important;
    }
}

.table {
    width: 100%;
    max-width: 100%;
    overflow: auto;
}

.content .img-small {
    position: relative;
    top: 10px;
    margin: 0 20px 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    float: left;
    width: 200px;
    height: 200px;
    padding: 0;
}

.content .img-small img{
    width: 100%;
    height: auto;
}

.content .img-big {
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
}

.content .img-big img {
    border-radius: 15px;
    max-width: 100%;
    width: auto;
    height: auto;
}

.review{
    padding: 20px 20px 5px 20px;
    border-radius: 15px;
    background: #100C23;
    margin-bottom: 15px;
    clear: both;
}

.content .review__title{
    font-weight: 700;
    color: #fff;
}

.content .review__rating{
    margin-bottom: 0;
    color: #fff;
}

.content a {
    color: #fff;
    text-decoration: none;
}

.content a:hover{
    color: #FE2548;
}

.menu__title{
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.anchor__menu a {
    color: #fff;
    text-decoration: none;
}

.anchor__menu a:hover{
    color: #FE2548;
}