/* Обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background: #0A3363;
}

/* Container */
.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

/* header */
header {
    padding: 15px 0;
    background: #0055B8;
}
header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    height: 30px;
    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: 600;
    font-size: 18px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
}
header .row ul li:hover {
    color: #0A3363;
}
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: 42px;*/
    /*line-height: 54px;*/
    color: #ffffff;
    font-style: italic;
    font-weight: 900;
    font-size: 64px;
    line-height: 98.5%;
    text-transform: uppercase;
    max-width: 762px;
}
.intro p {
    margin: 0 0 30px 0;
    max-width: 876px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
}
.intro a {
    padding: 20px 73.5px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    background: linear-gradient(272.95deg, #3893FF 0%, #33CEFF 99.6%);
box-shadow: inset 0px 4px 17px #32B4FD;
    color:#FFFFFF;
    /*background: #FFFFFF;*/
    border-radius: 9px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: .3s;
}
.intro a span {
    color: #0055B8;
    transition: .3s;
}
.intro a:hover {
    background: #0055B8;
}
.intro a:hover span {
    color: #FFFFFF;
}
/* Content */
.content {
    padding: 57px 47px;
}
.content h2, .faq__title,
.faq__head, strong {
    margin: 25px 0 15px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: #FFFFFF;
}
.content p,
.content ul li,
.content ol li,
.faq__content {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
}
.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: #FFFFFF;
    font-size: 6em;
    line-height: 150%;
}

/* footer */
footer {
    background: #0055B8;
}
footer ul {
    display: flex;
    justify-content: center;
    padding: 16.6px 0;
    flex-wrap:wrap;
}
footer ul li {
    margin: 0 19px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
    margin-bottom:15px;
}
footer ul li:hover {
    color: #0A3363;
}
footer ul li:last-child {
    margin: 0;
}
footer ul li a {
    color: inherit;
    text-decoration: none;
}

/*promo style*/

.text-prom {
    font-family: 'HeliosExtBlack', sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom:20px;
}
.but-prom {
    width:52px;
}
.promo__link {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    flex-direction: row !important;
}

.copy-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    font-family: 'HeliosExtBlack', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 19px;
    color: #0C42A1;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 5px 5px 5px 20px;
    flex-direction:row !important;
}
.copy-promo img {
    cursor: pointer;
}


body{
    padding-bottom:60px;
}

.btn-bottom {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    font-size: 20px;
    line-height: 27px;
    color: #FFFFFF;
    padding-top: 17px;
    padding-bottom: 17px;
    display: inline-block;
    text-decoration: none;
background: linear-gradient(272.95deg, #3893FF 0%, #33CEFF 99.6%);
box-shadow: inset 0px 4px 17px #32B4FD;
    z-index: 10000;
}


/*table*/

table{
width: 100%;
border-collapse:collapse;
border-spacing:0;
width:80%;
margin:20px auto;
}
table, td, th{
border: 1px solid #ffffff;
}
td, th{
padding: 3px;
width: 30px;
height: 25px;
}
th{
background-color: #7accee!important;
}
.menu__anchor li a{
    text-decoration:none;
    color:#ffffff;
}
.menu__anchor li a:hover{
    text-decoration:underline;
  }

@media screen and (max-width:600px) {
    table {
        width:100%;
        font-size:12px;

    }
}
.container ul li a {
    color:#ffffff;
}
.container ul li a:hover {
    color:#0A3363;
}

.img-micro {
    float:left;
    margin-right:20px !important;
    margin-top:25px !important;
}
.img-micro-right {
      float:right;
    margin-left:20px !important;
    margin-top:25px !important;
}
.img-micro img, .img-micro-right img {
    border-radius:9px;
}
.post-images {
    text-align:center;
    margin-bottom:20px;
}
.post-images img {
    border-radius:9px;
    max-width:1024px;
    width:100%;
}

.img-big {
    text-align:center;
}
.img-big img{
    border-radius:10px;
    width:50%;
}
.button__link {
    text-align:center;
    margin:30px auto;
}

.button__link a{
    padding: 20px 73.5px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    background: linear-gradient(272.95deg, #3893FF 0%, #33CEFF 99.6%);
    box-shadow: inset 0px 4px 17px #32B4FD;
    color: #FFFFFF;
    /* background: #FFFFFF; */
    border-radius: 9px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: .3s;
}

.button__link a:hover {
    background: #0055B8;
}

@media screen and (max-width:1000px) {
    .img-micro img, .img-micro-right img {
        width:150px;
    }

    .img-big img {
    width:100%;
}
}

@media screen and (max-width:600px) {
    .button__link {
        width:100%;
    }
    .button__link a {
        display:block;
    }
}


/*style author plashka*/

.block__expert {
display: flex;
justify-content: space-around;
/* align-items: center; */
border-radius: 13px;
margin: 70px auto;
padding: 20px 15px;
background:linear-gradient(to right, #0055B8, #1880FF);
}
.block__expert-img img {
max-width: 110px;
width: 95%;
border-radius: 50%;
}
.block__expert__data-mobile {
display: none;
}
.block__expert-name {
font-size:24px !important;
font-weight:700 !important;
color:#FFFFFF !important;
}
.block__expert-prof {
background-color:#33C8FF;
padding:4px 13px;
border-radius:37px;
max-width: 100px;
color: #ffffff !important;
font-weight:700 !important;
text-align: center;
}
.block__expert__text {
width: 90%;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.block__name-mobile {
color:#FFFFFF !important;
font-size:16px !important;
font-weight:700 !important;
}
.block__prof-mobile {
background-color:#33C8FF;
padding:4px 13px;
border-radius:37px;
font-weight:700 !important;
max-width: 80px;
color: #ffffff !important;
text-align: center;
}
.block__expert-prof {
margin-left:20px !important;
}
@media screen and (max-width: 600px) {
.block__expert {
flex-direction: column;
}
.block__expert-img {
display: flex;
}
.block__expert-img img {
max-width: 60px;
}
.block__expert__data-mobile {
display: block;
margin-left: 15px;
}
.block__expert__text {
width: 100%;
}
.block__expert-name,.block__expert-prof {
display: none;
}
}

.content .img-cov{
    width: 200px;
    float: left;
    margin: 0 25px 25px 0;
    height: 200px;
}

.content .img-cov img {
    width: 100%;
    height: auto;
}

.img-big{
    clear: both;
}