@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');
/* Reset and base styles  */
* {
    padding: 0;
    margin: 0;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* Links */
a:hover  {
    text-decoration: none;
}
/* Common */
aside, nav, footer, header, section, main {
    display: block;
}
h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
img, svg {
    max-width: 100%;
    display: block;
    height: auto;
    margin: 0 auto;
}
address {
    font-style: normal;
}
button {
    color: inherit;
    background-color: transparent;
}
/*------------------------------*/

:root {
    --background-color: #E4E9F4;
    --text-color: #181818;
    --btn-color: #DF3414;
    --title-color: #00C7DE;
    --extra-text: #FFF;
    --tbl-bg: #E0E3EB;
    --tbl-border: #F1F1F1;
    --shadow: 0 4px 14px 0 rgba(192, 192, 192, 0.25), -4px -4px 14px 0 rgba(255, 255, 255, 0.25);

    --text-font-weight: 400;
    --nav-fw: 600;
    --title-font-weight: 700;

    --table-font-size: 18px;
    --normal-font-size: 16px;
}
body {
    font-family: 'Manrope', sans-serif;
    font-weight: var(--text-font-weight);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    background: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

}
.rem {
    display: none;
}
button {
    white-space: nowrap;
    font-size: 20px;
    font-weight: var(--title-font-weight);
    border-radius: 30px;
    cursor: pointer;
    padding: 13px 32px;
    margin: 12px 8px;
    background: var(--tbl-bg);
    border: 3px solid var(--tbl-border);
    box-shadow: var(--shadow);
}
button:hover, article button {
    color: var(--extra-text);
    background: var(--btn-color);
}

/*------------------------------HEADER*/
header {
    display: flex;
    align-items: center;
    justify-content: center;
}
header span {
    font-size: var(--table-font-size);
    font-weight: bold;
    margin: 15px;
}
.head-wr, .person, .nav-div-wr {
    display: flex;
    align-items: center;
}
.head-wr {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1150px;
}
nav {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--background-color);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 5;
}
nav div {
    display: flex;
    width: 100%;
    justify-content: center;
}
.menu-open {
    width: 46px;
    height: 46px;
    cursor: pointer;
}
.mob-img {
    border-radius: 10px;
    margin: 20px;
    padding: 8px;
    background: var(--tbl-bg);
    border: 3px solid var(--tbl-border);
    box-shadow: var(--shadow);
}
.op-m {
    background: url("../svg/burger.svg") no-repeat center;
}
.cl-m {
    background: url("../svg/close.svg") no-repeat center;
}
nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    list-style: none;
    margin-bottom: 100px;
}
nav li {
    width: 90%;
    font-weight: var(--title-font-weight);
    margin-bottom: 65px;
    cursor: pointer;
    font-size: var(--table-font-size);
    padding: 16px 0;
    border-bottom: 3px solid transparent;
}
nav li:hover {
    border-color: var(--btn-color);
}
.us-btn button:first-child {
    border: none;
    background: none;
    box-shadow: none;
}
.us-btn button:first-child:hover {
    color: var(--btn-color);
}

/*------------------------------MAIN*/
main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.bg-hid {
    width: 100%;
    height: 1000px;
    background: url("../img/i1.png") no-repeat left;
    mix-blend-mode: multiply;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -135px;
}
.blur {
    background: rgba(0, 0, 0, 0.50);
    filter: blur(1px);
}
article {
    position: relative;
    z-index: 1;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
}
article button {
    width: 250px;
    margin: 20px 0;
    font-weight: var(--title-font-weight);
}
article button:hover {
    background: var(--extra-text);
    color: var(--btn-color);
}
img {
    border-radius: 30px;
    margin: 25px 0;
}
figure {
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1, h2, h3 {
    font-weight: var(--title-font-weight);
    text-align: start;
    margin: 20px 0;
    color: var(--title-color);
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 38px;
}
h3 {
    font-size: 32px;
}
main ul, ol {
    text-align: start;
    margin-bottom: 50px;
}
article  ul, ol {
    margin-left: 20px;
}
li {
    padding: 7px;
}
a {
    color: var(--btn-color);
}
p {
    margin-bottom: 12px;
    line-height: 24px;
    text-align: start;
}
.block {
    background: var(--tbl-bg);
    border-radius: 10px;
    margin-bottom: 16px;
    border: 3px solid var(--tbl-border);
}
.block-title {
    color: var(--btn-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 90%;
    font-weight: var(--title-font-weight);
    cursor: pointer;
    padding: 18px;
    text-align: left;
    transition: 0.4s;
    margin-bottom: 5px;
    border-radius: 3px;
}
span.block-title::after {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    content: '';
    background: url("../svg/arrow-open.svg") no-repeat;
    float: right;
    margin-left: 5px;
}
span.minus::after {
    transform: rotate(180deg);
}
.block-text {
    position: relative;
    padding: 20px 40px;
    display: none;
    overflow: hidden;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: var(--text-font-weight);
}
.block-text li {
    margin-bottom: 5px;
    cursor: pointer;
}
.active {
    background: #FFF;
}

/*------------------------------TABLES*/
table {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 50px;
    padding: 0 15px 15px 15px;
}
tr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
}
tr:nth-child(2n+1) {
    color: var(--btn-color);
    background: var(--tbl-bg);
    border: 3px solid var(--tbl-border);
    box-shadow: var(--shadow);
}
th {
    width: 100%;
    padding-bottom: 5px;
    font-size: var(--table-font-size);
    font-weight: var(--title-font-weight);
}
td {
    font-size: var(--table-font-size);
    word-wrap: break-word;
    padding: 5px;
}
tr td:first-child {
    min-width: 100%;
    text-align: center;
}
.table_four td {
    width: 33%;
}
.table_three td {
    width: 50%;
}
.table_two td {
    width: 100%;
}
.uP_btn {
    font-size: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 50px;
    position: fixed;
    bottom: 70px;
    right: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}
.uP_btn:hover {
    background: var(--title-color);
}

/*------------------------------FOOTER*/
footer {
    font-size: 11px;
}
footer p {
    margin: 30px 15px;
    text-align: center;
}

@media (min-width: 1085px) {
    .rem {
        display: flex;
        align-items: center;
    }
    .menu {
        display: none;
    }

    /*------------------------------HEADER*/
    nav {
        display: flex;
        position: relative;
        background: none;
        top: 0;
        padding-top: 0;
        margin-left: 50px;
    }
    nav div {
        display: none;
    }
    nav ul {
        flex-direction: row;
        margin: 0;
    }
    nav li {
        font-weight: var(--nav-fw);
        width: auto;
        margin: 12px;
        padding: 10px 12px;
    }
    nav li:hover {
        color: var(--btn-color);
        background: none;
    }
    .mob-img {
        display: none;
    }

    /*------------------------------MAIN*/
    article {
        max-width: 1200px;
    }
    main ul, ol {
        margin-bottom: 30px;
    }

    /*------------------------------TABLES*/
    table {
        padding: 0;
        margin-bottom: 70px;
    }
    th {
        width: auto;
        padding-bottom: 0;
    }
    td {
        padding: 15px;
    }
    .table_four td, .table_four th {
        width: 25%;
    }
    .table_three td, .table_three th {
        width: 33%;
    }
    .table_two td, .table_two th {
        width: 50%;
    }
    tr td:first-child {
        min-width: 25%;
        padding: 15px;
    }
}

