/* Обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background: #ffffff;
}

/* Container */
.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

/* header */
header {
    /* padding: 20px 0 10px 0; */
    background: #0F203E;
}
header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .row a {
    text-decoration: none;
    width: 25%;
}
/* header .row img {
    height: 25px;
} */
header .row ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
header .row ul li {
    margin: 0 0 10px 38px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
    opacity: 0.8;
}
header .row ul li:hover {
    color: #FFFFFF;
    opacity: 1;
}
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 h1 {
    margin: 0 0 15px 0;
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    color: #FFFFFF;
}
.intro h1 span {
    color: #FDD907;
}
.intro p {
    margin: 0 0 30px 0;
    max-width: 876px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}
.intro a {
    padding: 15px 43.5px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    background: #FDD907;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: .3s;
}
.intro a span {
    color: #0F203E;
    transition: .3s;
}
.intro a:hover {
    background: white;
}
.intro a:hover span {
    color: #100F20;
}
/* Content */
.content {
    padding: 57px 47px;
    background: #ffffff;
}
.content h2, .faq__head, .menu__title {
    margin: 25px 0 15px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #0F203E;
}
.content h2 span {
    color: #0F203E;
}
.content p,
.content ul li,
.content ol li,
.faq__content {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #5B6883;
}
.content ul,
.content ol {
    margin: 0 0 15px 20px;
}
.content p, .faq__content {
    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: #FDD907;
    font-size: 8em;
    line-height: 150%;
}
.container-error h4 {
    margin: 0;
    color: #FDD907;
    font-size: 6em;
    line-height: 150%;
}

/* footer */
footer {
    background: #0F203E;
}
footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 16.6px 0 6.6px 0;
}
footer ul li {
    margin: 0 20px 10px 0;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
    opacity: 0.8;
}
footer ul li:hover {
    color: #FFFFFF;
    opacity: 1;
}
footer ul li:last-child {
    margin: 0;
}
footer ul li a {
    color: inherit;
    text-decoration: none;
}
.anchor__menu a {
    text-decoration: none;
    color:#5B6883;
}
.anchor__menu a:hover {
    color:#FDD907;
}
.table {
    overflow: auto;
}
table{
    width: 80%;
    border-collapse:collapse;
    border-spacing:0;
    color: #5B6883;
    margin: 20px auto;
    }
    table, td, th{
    border: 1px solid #FDD907;
    }
    td, th{
    padding: 3px;
    width: 30px;
    height: 25px;
    }
    th{
    background-color: #7accee!important;
    }
    .img-micro {
        width: 200px;
        height: 200px;
        float:left;
        margin: 25px 20px 0 0 !important;
    }
    .img-micro-right {
        width: 200px;
        height: 200px;
        float: right;
        margin: 25px 0 0 20px !important;
    }
    .img-micro-right img,  .img-micro img {
        width:100%;
        height: 100%;
        border-radius: 10px;
    }

    @media screen and (max-width:425px) {
        table {
            font-size: 12px;
            line-height: 123.7%;
            width:100%;
    }
 .img-micro-right,   .img-micro {
    width:150px;
    height: 150px;
 }
    }