html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;

}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter';
    line-height: 1.4;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a,
a:hover,
a:visited {
    text-decoration: none;
    color: #cc9715;
}

h1 {
    font-size: 20px;
    font-weight: 500;
    color: #660e36;
}

h2 {
    font-size: 70px;
    font-weight: bold;
    color: #ffffff;
    padding-bottom: 20px;
}

h3 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

h4 {
    font-size: 40px;
    font-weight: bold;
    color: #660e36;
    padding-bottom: 60px;
}

h5 {
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
    padding-bottom: 30px;
    padding-left: 52px;
}

p {
    font-size: 20px;
    font-weight: 300;
}

.wrapper {
    box-sizing: border-box;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.wrap_full_color {
    width: 100%;
    box-sizing: border-box;
    background-color: #660e36;
}

.fstscreen {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header {
    height: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header .logo_div {
    width: 287px;
}

.header .logo {
    width: 236px;
    height: 61px;
}

.header .button_mob {
    display: none;
}

.header a.button {
    display: flex;
    align-items: center;
    color: #660e36;
    background: rgba(102, 14, 54, .1);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    user-select: none;
    padding: .5em 1.9em;
    outline: none;
    border: 2px solid rgba(102, 14, 54, .1);
    border-radius: 30px;
    transition: 0.2s;
}

.header a.button:hover {
    border: 2px solid #660e36;
}

.header a.button:active {
    background: rgba(255, 255, 255, .1);
}

.header .ico_phone {
    width: 30px;
    height: 30px;
}

.banner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 40px;
    padding-top: 20px;
    height: 100%;
}

.banner .item {
    display: flex;
    width: calc(50% - 20px);
    border-radius: 35px;
}

.banner .left {
    background-color: #660e36;
}

.banner .right {
    background-color: #660e36;
    background-image: url('../images/banner_right_back.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner .content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner a.button {
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    user-select: none;
    padding: .6em 2em;
    outline: none;
    border: 2px solid #cc9715;
    border-radius: 30px;
    transition: 0.2s;
}

.banner a.button:hover {
    background: rgba(255, 255, 255, .1);
}

.banner a.button:active {
    background: rgba(255, 255, 255, .1);
}

.pricelist {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.price {
    table-layout: fixed;
    width: 920px;
    border-spacing: 40px 0px;
    border-collapse: separate;
}

.price th {
    font-size: 25px;
    font-weight: 500;
    padding: 20px;
}

.price td {
    font-size: 25px;
    font-weight: 500;
    padding: 10px 10px;
    text-align: center;
}

.price tbody tr:nth-child(odd) {
    background: #660e36;
    color: #ffffff;
}

.price tbody tr:nth-child(even) {
    background: #ffffff;
}

.faq {
    display: flex;
    flex-direction: row;
    padding: 70px;
    background: #660e36;
}

.faq h4 {
    color: #ffffff;
}

.faq .p2 {
    font-weight: 200;
    padding-top: 20px;
}

.faq .left {
    padding-right: 50px;
}

.faq .right {
    width: 800px;
    color: #ffffff;
}

.faq details {
    width: 100%;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq summary {
    cursor: pointer;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.faq summary::after {
    content: '';
    min-width: 36px;
    min-height: 36px;
    background: url('../images/ico_arrow_down.svg');
    background-repeat: no-repeat;
    transition: .2s;
    margin-left: 20px;
}

details[open]>summary::after {
    transform: rotate(180deg);
}

.about {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
}

.about .p2 {
    font-size: 16px;
}

.resume {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 60px;
    padding-top: 20px;
    height: 100%;
}

.resume .item {
    display: flex;
    width: calc(50% - 20px);
    border-radius: 20px;
}

.resume .left {
    background-image: url('../images/about_left_back.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.resume .right {
    display: flex;
    flex-direction: column;
    background: rgba(102, 14, 54, .1);
}

.resume .content {
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.plus {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*padding-bottom: 40px;*/
    padding-top: 20px;
}

.plus .items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.plus .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 23%;
}

.plus .icon {
    width: 70px;
    height: 70px;
    padding-bottom: 40px;
}

.plus p {
    text-align: center;
}

.docs {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    background: rgba(102, 14, 54, .1);
    border-radius: 30px;
}

.list .right {
    width: 427px;
    min-width: 360px;
    background-image: url('../images/docs_right_back.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 40px;
}

.list .left {
    padding: 40px 0 40px 40px;
    display: flex;
    flex-direction: column;
}

.list .onedoc {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.list .onedoc_end {
    margin-bottom: 0px;
}

.list a.button {
    display: inline-block;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    user-select: none;
    padding: .3em .7em;
    margin-left: 50px;
    outline: none;
    border: 2px solid #660e36;
    border-radius: 10px;
    transition: 0.2s;
}

.list a.button:hover {
    background: rgba(255, 255, 255, .1);
}

.list a.button:active {
    background: rgba(255, 255, 255, .1);
}

.list .mobile {
    display: none;
}


.wrap_full_color_map {
    width: 100%;
    background-color: #660e36;
    background-image: url('../images/contacts_map.png');
    background-repeat: no-repeat;
    background-size: 1095px;
    background-position: top calc(100vh / 5) left calc(100vw / 2);
}

.contacts {
    display: flex;
    flex-direction: column;
    padding: 70px;
}

.contacts h4 {
    color: #fff;
    text-align: center;
}

.clist {
    table-layout: fixed;
    width: 600px;
}

.clist td {
    text-align: left;
    color: #fff;
    vertical-align: top;
    padding: 5px 0;
}

.clist .ico {
    width: 52px;
}

.clist .ico_img {
    width: 32px;
    height: 32px;
}
.clist .text{
    padding-top: 8px;
}

.contacts .p2 {
    font-size: 16px;
    font-weight: 200;
    padding-top: 5px;
}

.footer {
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding: 70px;

}

.footer p {
    font-weight: 200;
    color: #660e36;
}

.p404 {
    font-size: 110px;
    color: #660e36;
    -webkit-text-stroke: 1px #FFFFFF;
    text-stroke: 1px #FFFFFF;
}

#cookie_note {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    z-index: 100;
    bottom: 15px;
    left: 50%;
    box-sizing: border-box;
    width: calc(100% - 30px);
    max-width: 800px;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p {
    margin: 0;
    font-size: 0.8rem;
    text-align: left;
    color: black;
}

.cookie_accept_btn {
    display: block;
    margin: 0 auto;
    padding: .5em 1em;
}

#cookie_note.show {
    display: flex;
}

.btn-up {
    position: fixed;
    background-color: #efe6eb;
    right: 40px;
    bottom: 40px;
    border-radius: 18px;
    border: 2px solid rgba(102, 14, 54, .1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.btn-up::before {
    content: "";
    width: 30px;
    height: 30px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
    background-image: url('../images/ico_btn_up.svg');
}

.btn-up_hide {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .btn-up:hover {
        border: 2px solid #660e36;
    }
}



@media (max-width:1200px) {
    h1 {
        font-size: 16px;
    }

    h2 {
        font-size: 56px;
    }

    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 32px;
        padding-bottom: 48px;
    }

    h5 {
        font-size: 21px;
        padding-bottom: 24px;
        padding-left: 52px;
    }

    p {
        font-size: 16px;
    }

    .header {
        height: 120px;
    }

    .header .logo_div {
        width: 230px;
    }

    .header .logo {
        width: 189px;
        height: 49px;
    }

    .header a.button {
        font-size: 16px;
        border-radius: 24px;
    }

    .header .ico_phone {
        width: 25px;
        height: 25px;
    }

    .banner {
        padding-bottom: 48px;
        padding-top: 16px;
    }

    .banner .item {
        width: calc(50% - 16px);
        border-radius: 28px;
    }

    .banner .content {
        padding: 56px;
    }

    .banner a.button {
        font-size: 20px;
        border-radius: 24px;
    }

    .pricelist {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .price {
        width: 800px;
        border-spacing: 32px 0px;
    }

    .price th {
        font-size: 20px;
        padding: 15px;
    }

    .price td {
        font-size: 20px;
    }

    .faq {
        padding: 56px;
    }

    .faq .left {
        padding-right: 40px;
    }

    .about {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .resume {
        padding-bottom: 48px;
        padding-top: 16px;
    }

    .resume .item {
        width: calc(50% - 16px);
        border-radius: 16px;
    }

    .resume .content {
        padding: 40px;
    }

    .plus {
        /*padding-bottom: 48px;*/
        padding-top: 16px;
    }

    .plus .icon {
        padding-bottom: 32px;
    }

    .plus p {
        text-align: center;
    }

    .docs {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .list {
        border-radius: 24px;
    }

    .list .right {
        border-radius: 16px;
        margin: 32px;
    }

    .list .left {
        padding: 32px 0 32px 32px;
    }

    .list .onedoc {
        padding: 16px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .list a.button {
        font-size: 16px;
        margin-left: 40px;
        border-radius: 8px;
    }

    .wrap_full_color_map {
        background-size: 876px;
        background-position: top calc(100vh / 3) left calc(100vw / 2);
    }

    .contacts {
        padding: 40px;
    }

    .clist {
        width: 550px;
    }

    .contacts .p2 {
        font-size: 12px;
    }

    .footer {
        padding: 40px;
    }
}

@media (max-width:890px) {
    h1 {
        display: none;
    }

    h2 {
        text-align: center;
    }

    h3 {
        text-align: center;
        padding-bottom: 40px;
    }

    h4 {
        text-align: center;
    }

    .fstscreen {
        height: 100%;
    }

    .banner {
        flex-direction: column;
        padding-top: 0px;
        padding-bottom: 42px;
    }

    .banner .item {
        width: 100%;
        border-radius: 0px;
    }

    .banner .left {
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        min-height: 400px;
    }

    .banner .right {
        height: 100vw;
        border-bottom-right-radius: 28px;
        border-bottom-left-radius: 28px;
    }

    .banner .content {
        align-items: center;

    }

    .price {
        width: 100%;
    }

    .faq {
        flex-direction: column;
        padding-left: 42px;
        padding-right: 42px;
    }

    .faq .p2 {
        font-weight: 200;
        padding-top: 20px;
    }

    .faq .left {
        padding-right: 0px;
    }

    .faq .right {
        width: 100%;
    }

    .resume {
        flex-direction: column;
    }

    .resume .item {
        width: 100%;
        border-radius: 0px;
    }

    .resume .left {
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        height: 550px;
    }

    .resume .right {
        border-bottom-right-radius: 28px;
        border-bottom-left-radius: 28px;
    }

    .plus .items {
        width: 80%;
        flex-direction: column;
    }

    .plus .item {
        flex-direction: row;
        width: 100%;
        padding-bottom: 10px;
        padding-top: 10px;

    }

    .plus .icon {
        width: 70px;
        height: 70px;
        padding-bottom: 0px;
        padding-right: 30px;
    }

    .plus p {
        text-align: left;
        font-size: 20px;
        font-weight: 500;
    }

    .list {
        width: 100%;
        flex-direction: column-reverse;
    }

    .list .right {
        width: 100%;
        min-width: 100%;
        height: 550px;
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
        margin: 00px;
    }

    .list .left {
        padding: 32px;
    }

    .wrap_full_color_map {
        background-image: none;
    }


    .clist {
        width: 100%;
    }

    .clist .ico {
        width: 52px;
    }

    .clist .ico_img {
        width: 32px;
        height: 32px;
    }

    .p404 {
        font-size: 80px;
    }

    .btn-up {
        right: 30px;
        bottom: 30px;
        border-radius: 10px;
        width: 40px;
        height: 40px;
    }

    .btn-up::before {
        width: 25px;
        height: 25px;
    }
}

@media (max-width:750px) {
    #cookie_note {
        flex-direction: column;
    }

    #cookie_note p {
        text-align: center;
    }

    .cookie_accept_btn {
        margin-top: 20px;
    }
}

@media (max-width:480px) {
    h2 {
        font-size: 42px;
    }

    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 24px;
        padding-bottom: 36px;
    }

    h5 {
        font-size: 16px;
        padding-bottom: 20px;
        padding-left: 40px;
    }

    /*p {
        font-size: 14px;
        font-weight: light;
    }*/

    .header {
        height: 100px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header .button_desk {
        display: none;
    }

    .header .button_mob {
        display: flex;
    }

    .header .ico_phone {
        width: 40px;
        height: 40px;
    }

    .banner {
        padding-bottom: 36px;
    }

    .banner .content {
        padding: 30px 15px;
    }

    .banner a.button {
        font-size: 14px;
        padding: .6em 1em;
        border-radius: 20px;
    }

    .banner .left {
        min-height: 0px;
    }

    .banner .right {
        height: 100vw;
        background-image: url('../images/banner_right_back_s.webp');
    }

    .pricelist {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .price {
        border-spacing: 10px 0px;
    }

    .price th {
        font-size: 16px;
        padding: 10px;
    }

    .price td {
        font-size: 16px;
    }

    .faq {
        padding: 30px 15px;
    }

    .faq .p2 {
        padding-top: 14px;
    }

    .faq summary::after {
        min-width: 28px;
        min-height: 28px;
        margin-left: 15px;
    }

    .about {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .resume .left {
        height: 100vw;
        background-image: url('../images/about_left_back_s.webp');

    }

    .resume .content {
        padding: 30px 15px;
    }

    .plus .items {
        width: 90%;
    }

    .plus .icon {
        width: 50px;
        height: 50px;
        padding-right: 20px;
    }

    .plus p {
        font-size: 18px;

    }

    .docs {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .list a.button {
        font-size: 14px;
        margin-left: 20px;
    }

    .list .right {
        height: 350px;
    }

    .list .left {
        padding: 15px;
    }

    .list .desktop {
        display: none;
    }

    .list .mobile {
        display: flex;
    }

    .contacts {
        padding: 30px 15px;

    }

    .clist .ico {
        width: 40px;
    }

    .clist .ico_img {
        width: 25px;
        height: 25px;
    }

    .footer {
        padding: 30px 15px;
    }

    .btn-up {
        right: 20px;
        bottom: 20px;
        border-radius: 8px;
        width: 35px;
        height: 35px;
    }

    .btn-up::before {
        width: 25px;
        height: 25px;
    }
}