/* Обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Подключение шрифта */
@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro.ttf');
}
@font-face {
    font-family: 'Gotham Pro Bold';
    src: url('../fonts/GothamPro-Bold.ttf');
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-black.ttf');
}

.burger {
    display: none;
}

/* ROOT */
:root {
    --main-color: #161F2C;
}

/* body */
body {
    padding: 22px 0 20px 0;
    background: #0D131C;
    font-family: 'Gotham Pro';
}

body a {
    text-decoration: none;
}

/* header */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 14px auto;
    padding: 0 28px;
    max-width: 1280px;
    align-items: center;
    background-color: var(--main-color);
    border-radius: 15px;
}
header .logo {
    height: 25px;
    transition: .3s;
}
header .logo img {
    height: 100%;
    width: auto;
}
header ul {
    display: flex;
    margin: 0 25px 0 0;
}
header ul li {
    padding: 27px 5px;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-size: 12px;
    line-height: 11px;
    text-transform: uppercase;
    color: #FFFFFF;
    list-style: none;
    transition: .3s all linear;
    cursor: pointer;
}
header ul li:hover {
    background: linear-gradient(180deg, #32A1F5 0%, #0F76D5 100%);
}
header ul li:first-child {
    margin: 0;
}
header ul li a {
    padding: inherit;
    color: inherit;
    text-decoration: none;
}

/* DropDown */
.dropdown {
    zoom: 150%;
    position: absolute;
    top: 15px;
    right: 10px;
}
.dropdown__header {
    cursor: pointer;
}
.flag {
    width: 20px;
    height: 15px;
    position: relative;
    z-index: 1000;
}
.dropdown__content {
    display: none;
}
.dropdown:hover .dropdown__content {
    display: block;
}

/* Intro */
.intro {
    display: flex;
    flex-direction: column;
    margin: 14px auto 0 auto;
    padding: 36.5px 10px;
    max-width: 1280px;
    border-radius: 5px;
    background: url('../img/bg.png') center / cover no-repeat;
}
.intro h1 {
    margin: 0 0 15px 0;
    max-width: 876px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    align-self: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
.intro h1 span {
    background: linear-gradient(180deg, #32A1F5 0%, #0F76D5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.intro p {
    margin: 0 0 30px 0;
    max-width: 876px;
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    align-self: center;
    color: #FFFFFF;
}
.intro a, .button {
    padding: 15px 45px;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 13px;
    text-align: center;
    align-self: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: linear-gradient(180deg, #32A1F5 0%, #0F76D5 100%);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: .5s;
}
.intro a:hover, .button:hover {
    color: #0F76D5;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
}
.content {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 54px 0 45px 0;
    max-width: 1280px;
}
.content h2 {
    margin: 25px 0 15px 0;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 31px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
.content h2 span,
.content h3 span,
.faq__head span{
    background: linear-gradient(180deg, #32A1F5 0%, #0F76D5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.content h3, .faq__head, strong {
    margin: 20px 0 10px 0;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
.content p,
.content ul li,
.content ol li,
.faq__content {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
}
.content p,
.content ul,
.content ol,
.faq__content {
    max-width: 984px;
    margin: 0 auto 15px auto;
    list-style-position: inside;
}

.big {
    align-self: center;
    width: 70%;
    margin: 0 auto 15px auto;
    height: auto;
}

.long {
    align-self: center;
    width: 20%;
    margin: 0 auto 15px auto;
    height: auto;
}

table{
    max-width: 984px;
    margin: 0 auto 15px auto;
border-collapse:collapse;
border-spacing:0
}
table, td, th{
border: 1px solid #0F76D5;
}
td, th{
padding: 5px;
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
}
th{
background-color: #7accee!important;
}

.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;
    background: linear-gradient(180deg, #32A1F5 0%, #0F76D5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 8em;
    line-height: 150%;
}

/* footer */
footer {
    max-width: 1280px;
    margin: 0 auto;
    background-color: var(--main-color);
    border-radius: 15px;
}
footer ul {
    display: flex;
    justify-content: center;
}
footer ul li {
    padding: 27px 5px;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 11px;
    text-transform: uppercase;
    color: #FFFFFF;
    list-style: none;
    transition: .3s all linear;
    cursor: pointer;
}
footer ul li:hover {
    background: linear-gradient(180deg, #32A1F5 0%, #0F76D5 100%);
}
footer ul li a {
    padding: 25px 9.25px;
    color: inherit;
    text-decoration: none;
}

.img-big {
    width:60%;
}
.img-big img{
    width:100%;
}
@media screen and (max-width:600px){
    .img-big {
    width:100%;
}
}
.anchor__menu a {
    color:#FFFFFF;
    text-decoration:none;
}
.anchor__menu a:hover {
    color:#32A1F5;
}
.img-micro {
    max-width: 200px !important;
    margin-top: 20px !important;
}
.img-micro img {
    width:100%;
}

picture {
    text-align:center;
}