/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/assets/fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-mu0SC55I.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Обнуление стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    font-family: 'Open Sans', sans-serif;
    background: #193C81;
}

/* Container */
.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}
/* header */
header {
    display: flex;
    justify-content: space-between;
    margin: 11px 0 0 0;
    padding: 20px 28px 20px 18px;
    background: #005B9E;
    border-radius: 17px;
    align-items: center;
}
header .logo {
    width: 141.5px;
    height: 25.5px;
    text-decoration: none;
}
header .logo img {
    width: inherit;
    height: inherit;
}
header ul {
    display: flex;
    align-items: center;
}
header ul li {
    margin: 0 0 0 38px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    list-style: none;
    transition: .3s;
    opacity: 0.8;
}
header ul li:hover {
    opacity: 1;
}
header ul li:first-child {
    margin: 0;
}
header ul li a {
    text-decoration: none;
    color: inherit;
}

/* main */
main {
    margin: 25px 0 0 0;
}

/* Intro */
.intro {
    display: flex;
    flex-direction: column;
    padding: 32px 54px 38px 54px;
    background: url('../img/bg.webp') center / cover no-repeat;
    border-radius: 22px;
}
.intro h1 {
    margin: 0 0 15px 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    color: #FFFFFF;
}
.intro h1 span {
    color: #008BF0;
}
.intro p {
    max-width: 876px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}
.intro a {
    margin: 30px 0 0 0;
    padding: 15px 43.5px;
    background: #005B9E;
    border-radius: 42px;
    text-decoration: none;

    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    align-self: flex-start;
    color: #FFFFFF;
    transition: .3s;
}
.intro a:hover {
    background: #FFFFFF;
    color: #008BF0;
}

/* Content */
.content {
    margin: 46px 0 0 0;
    padding: 0 0 46px 0;
}
.content h2, .content h3, .faq__head, strong {
    margin: 25px 0 20px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #FFFFFF;
}
.content p, .faq__content {
    margin: 0 0 20px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}
.content ul,
.content ol {
    margin: 0 0 20px 20px;
}
.content ul li,
.content ol li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}

footer {
    padding: 20px 0;
    background: #112B5F;
}
footer .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .row .logo {
    width: 141.5px;
    height: 25.5px;
    text-decoration: none;
}
footer .row .logo img {
    width: inherit;
    height: inherit;
}
footer .row ul {
    display: flex;
}
footer .row ul li {
    margin: 0 0 0 38px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    list-style: none;
    transition: .3s;
}
footer .row ul li:hover {
    color: #008BF0;
}
footer .row ul li:first-child {
    margin: 0;
}
footer .row ul li a {
    color: inherit;
    text-decoration: none;
}
/* Burger */
.burger {
    display: none;
}

@media screen and (max-width: 1280px) {
    /* Container */
    .container {
        max-width: 1100px;
    }
}

@media screen and (max-width: 1110px) {
    /* Container */
    .container {
        max-width: 1024px;
    }
}

@media screen and (max-width: 1024px) {
    /* Container */
    .container {
        max-width: 900px;
    }
    
    
    .contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: unset;
}

.social svg {
    fill: #B3BDD1;
    margin-right: 0;
}

.contact-items-phone img, .contact-items-email img{
margin-left:0!important;
    
}

.social{
    margin-bottom:20px;
}
    
}

@media screen and (max-width: 768px) {
    /* Container */
    .container {
        max-width: none;
        width: 100%;
    }

    /* Burger */
    .burger {
        display: block;
        width: 30px;
        height: 26px;
        background: url('../img/burger.svg') center / cover no-repeat;
        transition: .3s;
    }

    /* header */
    header {
        position: relative;
        margin: 0;
        padding: 20px 50px;
        border-radius: 0;
        z-index: 99999;
    }
    header.active .burger {
        background-image: url('../img/close.svg');
    }
    header.active ul {
        top: 66px;
    }
    header ul {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: -20000%;
        left: 0;
        padding: 20px 50px 20px 50px;
        width: 100%;
        background-color: #193C81;
        transition: .3s;
    }
    header ul li {
        display: flex;
        margin: 20px 0 0 0;
        width: 100%;
        align-self: flex-start;
        text-align: left;
        transition: .3s;
    }
    header ul li:hover a {
        background: #008BF0;
    }
    header ul li a {
        padding: 15px 25px;
        width: 100%;
        height: 100%;
        border-radius: 33px;
    }

    /* main */
    main {
        margin: 0;
    }

    /* Intro */
    .intro {
        padding: 30px 50px 40px 50px;
        border-radius: 0;
    }

    /* Content */
    .content {
        padding: 0 50px 46px 50px;
    }

    /* footer */
    footer .row {
        justify-content: space-around;
    }
    footer .row .logo {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    /* header */
    header {
        padding: 15px;
    }
    header .logo {
        width: auto;
        height: 20px;
    }
    header.active ul {
        top: 50px;
    }
    header ul {
        padding: 15px;
    }
    header ul li {
        margin: 6.5px 0 0 0;
        font-size: 12px;
        line-height: 123.7%;
    }
    header ul li a {
        padding: 7px 16px;
    }

    /* Burger */
    .burger {
        width: 25px;
        height: 19px;
    }

    /* Intro */
    .intro {
        padding: 23px 15px 40px 15px;
        background-image: url('../img/mob.webp');
    }
    .intro h1 {
        margin: 0 0 9px 0;
        font-size: 19.7518px;
        line-height: 27px;
    }
    .intro p {
        font-size: 12px;
        line-height: 123.7%;
    }
    .intro a {
        margin: 18px 0 0 0;
        padding: 10.5px 45px;
        font-size: 12px;
        line-height: 16px;
    }
    .content {
        margin: 28px 0 0 0;
        padding: 0 15px 30px 15px;
    }
    .content p, .faq__content {
        margin: 0 0 8px 0;
        font-size: 12px;
        line-height: 123.7%;
    }
    .content ul,
    .content ol {
        margin: 0 0 0 15px;
    } 
    .content ul li,
    .content ol li {
        margin: 0 0 8px 0;
        font-size: 12px;
        line-height: 123.7%;
    }
    
     .content ol li {
         margin-bottom:20px;
     }
     
     .anchor__menu a{
             line-height: 1.6;
         
     }
     
    
    .content h2, .content h3, .faq__head, strong {
        margin: 20px 0 15px 0;
        font-size: 16px;
        line-height: 22px;
    }

    /* footer */
    footer {
        padding: 20px 15px;
    }
    footer .row {
        display: block;
    }
    footer .row ul {
        justify-content: space-between;
        margin-top:20px;
    }
    footer .row ul li {
        margin: 0;
        font-size: 7.97348px;
        line-height: 123.7%;
    }
}

.site-content-error {
    position: relative;
    height: calc(100vh - 150px);
    min-height: 600px;
}
.error-text {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 85px !important;
    line-height: 85px !important;
    text-align: center;
}

.error-code {
    margin: 20px 0 0 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 50px !important;
    line-height: 50px !important;
    text-align: center;
}
.container-error {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*Promocode*/
.text-prom {
    color: #fff;
    margin:20px 0;
}
.but-prom {
    max-width:194px;
    width:100%;
    color:#fff;
    border: 1px solid #008BF0;
    cursor: pointer;
    text-align: center;
    padding: 15px ;
    border-radius: 42px;
    font-weight:700;
   
}
.but-prom:hover {
    background:#008BF0;
}
@media screen and (max-width:500px) {
.text-prom, .but-prom {
font-size:12px;
}
.but-prom {
    width:170px;
    padding:10px 0;
}
}

.img-big {
    text-align:center;
    margin:20px auto;
    
}

.img-big img {
    width:50%;
    border-radius:20px;
    height:100%;
}

table{
width: 100%;
border-collapse:collapse;
border-spacing:0;
color:#ffffff;
width:70%;
margin:20px auto;
}
table, td, th{
border: 1px solid #ffffff;
}
td, th{
padding: 3px;
width: 30px;
height: 25px;
}


.anchor__menu a {
    color:#ffffff;
    text-decoration:none;
}
.anchor__menu a:hover {
      text-decoration:underline;
}

@media screen and (max-width:500px) {
    .img-big img {
    width:100%;

}
table {
   font-size: 12px;
    line-height: 123.7%;
    width:100%;
}
}

.main__link-btn {
    max-width:220px;
    width:100%;
    text-align:center;
    margin:20px auto;
   
    border-radius: 42px;
}
.main__link-btn a {
    color:#ffffff;
        font-weight: 700;
    font-size: 16px;
    line-height: 22px;
        padding: 15px 43.5px;
        display:block;
        background: #005B9E;
            border-radius: 42px;
        text-decoration:none;
}
.main__link-btn a:hover {
     background: #ffffff;
     color:#005B9E;
}

@media screen and (max-width:768px) {
    .main__link-btn {
        max-width:100%;
    }
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px;
}
.social svg {
    fill: #B3BDD1;
    margin-right: 15px;
 
}
.social svg:hover {
    fill: #ffffff;
}

.contacts-items, .contact-items-phone, .contact-items-email {
    display: flex;
    align-items: center;
    color: #B3BDD1;
}

.contact-items-phone img, .contact-items-email img {
    width: 28px;
    margin-left: 28px;
    margin-right: 15px;
}
.social a {
    text-decoration:none;
    padding:0px 15px;
}

.img-micro {
    float:left;
    margin-right:20px !important;
}

.img-micro-right {
    float:right;
    margin-left:20px !important;
}

.img-micro img, .img-micro-right img {
    border-radius:10px;
    max-width:200px;
    width:200px;
    height:200px;
    width:100%;
}

@media screen and (max-width: 768px) {
    .contacts-items {
    flex-direction: column;
    font-size: 12px;
}
.contact-items-phone {
    margin-bottom: 20px;
    
}
.contact-items-phone img {
    margin-left:20px;
}
.img-micro img, .img-micro-right img {

    max-width:200px;

}

}

header img,
footer img{
    width:143px;
    height:27px;
}

.contact-items-phone img, .contact-items-email img{
    width:28px;
    height:28px;
}
