/* Обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background: #1E1F2F;
}

/* Container */
.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

/* header */
header {
    background: #1E1F2F;
}

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 30px;
    transition: .3s;
    margin-right: 15px;
}

header .logo img {
    height: 100%;
    width: 100%;
}

header .logo:hover {
    transform: scale(1.05);
}

header .row ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px;
}

header .row ul li {
    margin: 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
}

header .row ul li:hover {
    color: #1DA2FD;
}

header .row ul li:first-child {
    margin-left: 0;
}

header .row ul li a {
    color: inherit;
    text-decoration: none;
}

header .row-mobile {
    display: none;
}

/* Intro */
.intro {
    padding: 57px 0 39px 0;
}

.intro .container div {
    display: flex;
    flex-direction: column;
}

h1 {
    margin: 0 0 15px 0;
    font-style: normal;
    font-weight: 800;
    font-size: 34px;
    line-height: 120%;
    color: #ffffff;
}


.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: #025B97;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: .3s;
}

.intro a span {
    color: #FFFFFF;
    transition: .3s;
}

.intro a:hover {
    background: #FFFFFF;
}

.intro a:hover span {
    color: #1DA2FD;
}

/* Content */
.content {
    padding: 25px 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: #E8EAF4;
}

.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: #ffffff;
    font-size: 8em;
    line-height: 150%;
}

.container-error h4 {
    margin: 0;
    color: #1DA2FD;
    font-size: 8em;
    line-height: 150%;
}

/* footer */
footer {
    background: #1A1B29;
}

footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 11.6px 0;
}

footer ul li {
    margin: 5px 15px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
}

footer ul li:hover {
    color: #1DA2FD;
}

footer ul li a {
    color: inherit;
    text-decoration: none;
}


.faq__title, .faq__head {
    margin: 25px 0 15px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #FFFFFF;
}

.table-responsive {
    margin: 20px auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 30px 0;
}

table, td, th {
    border: 1px solid #595959;
}

td, th {
    padding: 3px;
    width: 30px;
    height: 25px;
}

th {
    background-color: #7accee !important;
}

a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #E8EAF4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.img-micro {
    float: left;
    margin-right: 20px !important;
}

.img-micro img {
    max-width: 200px;
    width: 100%;
}

.img-title {
    margin-top: 0 !important;
}

@media screen and (max-width: 600px) {
    .faq__title, .faq__head {
        margin: 15px 0 8px 0;
        font-size: 16px;
        line-height: 22px;
    }

    .faq__content {
        margin: 0 0 8px 0;
        font-size: 12px;
        line-height: 123.7%;
    }

    table {
        font-size: 12px;
    }

    a {
        font-size: 12px;
        line-height: 123.7%;
    }

    .img-micro img {
        max-width: 150px;
        width: 100%;
    }
}

.container-img {
    width: 100%;
    border-radius: 20px;
}

footer {
    padding: 20px 0;
}

footer p {
    text-align: center;
}

header button {
    border-radius: 6px;
    padding: 10px 15px;
    background: #0a2a4a;
    color: white;
    border: none;
    margin: 5px;
}

.head {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
main img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 24px auto;
}