* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

.bg-mobile {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(7px);
    z-index: 500;
    background: rgba(0, 0, 0, 0.5);
}

html {
    width: 100%;
    min-width: 320px;
}

body {
    width: 100%;
    font-family: "Noto Sans", Arial, sans-serif;
    min-width: 320px;
    padding-bottom: 0 !important;
}
.nav{
    display: flex;
}

.main-wrap {
    width: 100%;
}

.main-wrap h3 {
    font-size: 28px;
    color: #000000;
    margin-top: 20px;
}

.main-wrap ul li {
    list-style: none;
}

.main-wrap.wrap-banner {
    background: #CF0A2C url("../img/dragon.png") no-repeat;
    background-size: 50%;
    background-position: right top;
}

.wrap-inner {
    max-width: 980px;
    margin: 0 auto;
}

.header {
    display: flex;
    height: 60px;
    align-items: center;
    width: 100%;
    position: relative;
}

.header a, .header button {
    font-size: 20px;
    color: #fff;
}

.header .logo {
    margin-right: 40px;
    width: 180px;
}

.header .nav {
    flex-grow: 1;
}

.header .nav a {
    margin-right: 20px;
}

.header .lang {
    position: relative;
    right: 0;
    background: rgba(150, 1, 33, .7);
    border-radius: 15px;
    padding: 5px 20px;
    cursor: pointer;
}

.wrap-banner .dragon-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
}

.head-description * {
    color: #fff;
}

.head-description {
    padding-left: 40px;
}

.head-description h2 {
    font-size: 36px;
    text-align: left;
    margin: 20px 0 10px;
}

.head-description li {
    font-size: 18px;
    padding-left: 20px;
    position: relative;
}

.head-description li:before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 12px;
}

.head-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.head-blocks-item {
    width: 49%;
    height: 150px;
    padding: 20px 30px;
    background: rgba(150, 2, 34, .7);
    margin-bottom: 20px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
}

.wrap-inner .tab__container {
    background: #F3F4F5;
    border-radius: 35px;
    width: 100%;
}

.wrap-inner .tab__container .tab__real-width {
    width: 100%;
}

.wrap-inner .tab__container .tab__real-width .tab__item {
    width: 33%;
    text-align: center;
    color: #1E1E1E;
    font-weight: 400;
}

.wrap-inner .tab__container .tab__real-width .tab__item.is-active {
    background: #CF0A2C;
    border-radius: 25px;
    color: #fff;
}

.wrap-inner .tab-list-wrap {
    background: #F3F4F5;
    padding: 30px;
    border-radius: 35px;
    margin-top: 20px;
}

.tab-content .tab-list-wrap.list-cols-2 {
    display: flex;
    justify-content: space-between;
}

.tab-content .tab-list-wrap.list-cols-2 ul {
    width: 49%;
}

.tab-content .tab-list-wrap ul li {
    color: #1E1E1E;
    font-size: 18px;
    padding-left: 20px;
    position: relative;
}

.tab-content .tab-list-wrap ul li:before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1E1E1E;
    position: absolute;
    left: 0;
    top: 12px;
}

.tab-list-wrap.contacts {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.tab-list-wrap.contacts p {
    color: #1E1E1E;
    line-height: 30px;
    width: 60%;
}

.tab-list-wrap.contacts img {
    width: 25%;
    position: absolute;
    top: -70px;
    right: 40px;
}

.nav-mob, .nav-mob-close, .bg-mobile {
    display: none;
}
.nav-mob-close{
    background: transparent;
}

@media (max-width: 1024px) {
    .main-wrap{
        padding: 0 20px;
    }
    .header{
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .header .logo {
        margin-right: 20px;
        width: 150px;
    }
    .main-wrap.wrap-banner{
        padding: 0;
    }
    .nav {
        display: none;
        flex-direction: column;
        padding: 40px 30px 20px;
        background: rgba(150, 2, 34, .7);
        position: absolute;
        right: 40px;
        top: 20px;
        z-index: 500;
        border-radius: 20px;
    }
    .nav a{
        display: block;
    }

    .nav-mob, .nav-mob-close {
        display: block;
    }
    .nav-mob, .nav-mob-close{
        position: absolute;
        right: 20px;
        cursor: pointer;
    }
    .nav-mob-close{
        top: 10px;
    }
    .head-description{
        background: linear-gradient(270deg, rgba(207, 10, 44, 0) 6.32%, #CF0A2C 31.87%);
        background-blend-mode: multiply;
        margin-top: 245px;
        padding-bottom: 30px;
        width: 70%;
    }
    .main-wrap.wrap-banner {
        background: #CF0A2C url("../img/dragon.png") cover no-repeat;
        background-size: 100%;
        background-position: center top;
    }
    .head-blocks{
        background: #fff;
        flex-direction: column;
        padding: 20px 20px 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        margin-top: -15px;
    }
    .head-blocks-item {
        width: 100%;
        height: auto;
        background: #F2F3F5;
        color: #1E1E1E;
    }
    .head-blocks-item:last-of-type {
        margin: 0;
    }
    .main-wrap .tab.tab--filled{
         padding-top: 0;
     }
    .tab-content .tab-list-wrap ul li {
         font-size: 16px
     }
    .wrap-inner .tab__container .tab__real-width {
        display: flex;
        flex-direction: column;
        padding: 3px;
    }
    .wrap-inner .tab__container .tab__real-width .tab__item {
        width: auto;
    }
    .tab-list-wrap.contacts p {
        width: auto;
        margin-top: 50px;
    }
    .tab-list-wrap.contacts img {
        width: 150px;
        top: -47px;
        margin: 0 auto;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }
    .tab-content .tab-list-wrap.list-cols-2 {
        flex-wrap: wrap;
    }
    .tab-content .tab-list-wrap.list-cols-2 ul{
        width: 100%;
    }
}
@media (max-width: 360px) {
    .header .logo {
        line-height: 14px;
    }
    .header .lang {
        font-size: 16px;
    }
    .head-description{
        margin-top: 160px;
        width: 100%;
        background: linear-gradient(180deg, rgba(207, 10, 44, 0) 6.32%, #CF0A2C 31.87%);
    }
}