/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-white {
    color: #fff;
}

.d-block {
    display: block !important;
}

.d-none {
    display: block !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.w-100 {
    width: 100%;
}

.link-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nice-link {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size 0.25s ease-out, color 0.2s;
}

.nice-link:hover {
    background-size: 100% 1px;
}

.nice-link--active {
    background-size: 100% 1px;
}

.nice-link--active:hover {
    background-size: 0 1px;
}

.edge-area {
    width: 10%;
    max-width: 70px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    height: 100%;
    display: none;
    pointer-events: none;
}

.edge-area.active {
    display: block;
}

.edge-area--l {
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.edge-area--r {
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
    left: auto;
    right: 0;
}

.image-box {
    position: relative;
}

.image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 1000px) {
    .d-lg-none {
        display: none;
    }
}

@media (max-width: 999.98px) {
    .d-sm-none {
        display: none;
    }
}

:root {
    --side-padding: 12rem;
}

* {
    box-sizing: border-box;
}

html {
    font-size: clamp(7px, 0.7vw, 10px);
}

body {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    min-width: 320px;
    background: #fff;
    font-family: "Arial", sans-serif;
    color: #000;
}

img {
    max-width: 100%;
}

img[data-src] {
    visibility: hidden;
}

a,
button {
    transition: all 0.2s;
}

a {
    text-decoration: none;
    color: currentColor;
}

.btn-burger {
    display: inline-block;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 1rem;
    line-height: 0;
}

.btn-burger span {
    display: inline-block;
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
}

.btn-burger i {
    transition: all 0.2s;
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
    width: 100%;
}

.btn-burger i:nth-child(1) {
    transform: translateY(-0.7rem);
}

.btn-burger i:nth-child(3) {
    transform: translateY(0.7rem);
}

.btn-burger.active i:nth-child(1) {
    transform: rotate(45deg);
}

.btn-burger.active i:nth-child(2) {
    opacity: 0;
}

.btn-burger.active i:nth-child(3) {
    transform: rotate(-45deg);
}

.btn-arrow {
    display: inline-block;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    padding: 0.2rem 1.5rem;
    align-items: center;
    font-family: inherit;
    font-size: 1.6rem;
    line-height: 1.5;
}

.btn-arrow .icon {
    margin-left: 0.7142857143em;
    width: 1em;
    height: 1em;
    font-size: 0.875em;
}

.btn-white {
    display: inline-block;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    min-width: 10.25em;
    border: 0.3rem solid #ffffff;
    box-shadow: 0px 0px 0.2rem rgba(0, 0, 0, 0.3);
    border-radius: 0.5em;
    padding: 0.7em 0.5em;
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3em;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}

.btn-white:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 999.98px) {
    .btn-white {
        min-width: 8.6666666667em;
        padding: 0.4666666667em 0.6666666667em;
        font-size: 1.5rem;
    }
}

.page__wrapper {
    overflow: hidden;
}

.page__locked {
    overflow: hidden;
}

.page__center, .header__center {
    padding: 0 var(--side-padding);
    box-sizing: content-box;
    max-width: 1200px;
    margin: 0 auto;
}

.page__h1 {
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.363;
    text-align: center;
}

@media (max-width: 999.98px) {
    .page__center, .header__center {
        max-width: 600px;
    }

    .page__h1 {
        margin-bottom: 0.52em;
        font-weight: 900;
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

.goods {
    padding-bottom: 13rem;
    padding-top: 6rem;
}

.goods__list {
    max-width: 100rem;
    margin: 0 auto;
}

.goods__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -3rem;
    margin-top: -6rem;
}

.goods__col {
    flex: 0 0 auto;
    width: 33.33%;
    padding: 0 2rem;
    margin-top: 4rem;
    display: flex;
}

.goods__item {
    flex-grow: 1;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0px 0.8rem 2.7rem rgba(0, 0, 0, 0.25);
    border-radius: 2.4rem;
    min-height: 30rem;
}

.goods__image {
    position: relative;
    height: 14rem;
}

.goods__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.goods__desc {
    padding: 1rem 0;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    text-align: center;
}

.goods__article {
    display: none;
}

@media (max-width: 999.98px) {
    .goods {
        padding-top: 3rem;
        padding-bottom: 4.5rem;
    }

    .goods__list {
        max-width: 31rem;
    }

    .goods__row {
        margin-top: -4.2rem;
    }

    .goods__col {
        width: 100%;
        margin-top: 4.2rem;
    }

    .goods__text {
        padding: 0 1.2rem;
    }

    .goods__h1 {
        text-align: left;
    }

    .goods__article {
        display: block;
        margin-bottom: 1.2rem;
    }
}

.contacts {
    padding-top: 17rem;
    padding-bottom: 16.4rem;
}

.contacts__desc {
    font-weight: 400;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.6;
}

@media (max-width: 999.98px) {
    .contacts {
        padding: 0 2rem;
        padding-bottom: 5.6rem;
        padding-top: 6.5rem;
    }

    .contacts__desc {
        margin-top: 2.1rem;
        font-size: 1.5rem;
        line-height: 1.218;
    }
}

.finance {
    padding-top: 3.5rem;
    padding-bottom: 5.8rem;

    background: linear-gradient(to bottom right, blue, pink);
}

.finance__table {
    background: #ffffff;
    border-radius: 5.5rem;
    padding: 6.4rem 4rem 4rem 4rem;
    max-width: 100rem;
    margin: 0 auto;
    margin-top: 4.2rem;
}

.finance__table table {
    width: 100%;
    max-width: 75.4rem;
    margin: 0 auto;
}

.finance__table td {
    border-bottom: 1px solid #eeeeee;
    padding: 2.8rem;
    padding-left: 0;
    font-size: 2rem;
    line-height: 1.2em;
}

.finance__table td:nth-child(1) {
    padding-left: 2.8rem;
    width: 45%;
    font-weight: 700;
    line-height: 1.6;
    text-transform: uppercase;
    color: #001c35;
}

@media (max-width: 999.98px) {
    .finance__table {
        border-radius: 3.8rem;
        padding: 3rem 3.7rem;
    }

    .finance__table table,
    .finance__table tr,
    .finance__table td {
        display: block;
        width: 100% !important;
    }

    .finance__table tr {
        padding: 3.2rem 1rem;
        border-bottom: 1px solid #c2c2c2;
    }

    .finance__table tr:last-child {
        border-bottom: 0;
    }

    .finance__table td {
        border-bottom: 0;
        padding: 0 !important;
        font-size: 1.8rem;
        line-height: 1.2222222222;
    }

    .finance__table td:first-child {
        margin-bottom: 1rem;
    }
}

.footer {
    padding-top: 6rem;
    padding-bottom: 5rem;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.3em;
    text-align: center;
    background: linear-gradient(to bottom right, blue, pink);
    color: white;
}

@media (max-width: 999.98px) {
    .footer {
        padding-top: 2.6rem;
        padding-bottom: 2.1rem;
        font-weight: 800;
        font-size: 1.5rem;
        line-height: 1.2666666667;
    }
}

.header {
    transition: all 0.2s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding-top: 1.5rem;
    background: rgba(0,0,0, 0.61);
    padding-bottom: 1.5rem;
}

.header.fixed {
    padding: 2rem 0;
    background: linear-gradient(90deg, #000000 0%, #434343 100%);
}

.header--no-bg {
    transition: none;
    background: transparent !important;
}

.header__btn-burger {
    display: none;
}

@media (max-width: 999.98px) {
    .header {
        padding: 0 !important;
    }

    .header__center {
        max-width: none;
        display: flex;
    }

    .header__btn-burger {
        display: block;
        margin-left: auto;
        margin-right: -1rem;
    }
}

.nav-top ul {
    display: flex;
    justify-content: space-between;
}

.nav-top li a {
    display: inline-block;
    padding: 0.9rem 4.3rem;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.3em;
    color: #ffffff;
}

.nav-top li a.active {
    background: #ffffff;
    box-shadow: 0px 0.4rem 1.3rem rgba(0, 0, 0, 0.25);
    border-radius: 0.3rem;
}

@media (max-width: 999.98px) {
    .nav-top {
        display: none;
    }
}

.nav-mobile {
    transition: all 0.2s;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 35rem;
    min-width: 320px;
    transform: translateX(100%);
}

.nav-mobile__window {
    overflow: auto;
    height: 100%;
    padding: 6.5rem 2.4rem;
}

.nav-mobile__links li {
    margin: 1.6rem 0;
}

.nav-mobile__links li:first-child {
    margin-top: 0;
}

.nav-mobile__links li:last-child {
    margin-bottom: 0;
}

.nav-mobile__links li a {
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1.3333333333;
}

.nav-mobile__links li a.active, .nav-mobile__links li a:hover {
    color: #1CA566;
}

.nav-mobile__btn-arrow {
    margin-top: 3.2rem;
}

@media (max-width: 999.98px) {
    .nav-mobile.active {
        transform: translateX(0);
    }
}

@media (max-width: 499.98px) {
    .nav-mobile {
        max-width: none;
    }
}

.article {
    font-size: 2rem;
    line-height: 1.4;
}

.article ul {
    list-style: outside disc;
    padding-left: 3rem;
}

.article ul li {
    margin: 1.15em 0;
}

.article ul li:first-child {
    margin-top: 0;
}

.article ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 999.98px) {
    .article {
        font-size: 1.5rem;
    }

    .article ul {
        padding-left: 1rem;
    }
    .article ul li {
        margin: 1.15em 0;
        line-height: 1.15;
    }
}

.promo {
    padding-top: 18rem;
    padding-bottom: 10rem;
    background: linear-gradient(to bottom right, blue, pink);
}

.promo__logo {
    position: relative;
    display: inline-block;
}

.promo__desc {
    margin-top: 0.5rem;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.408;
    color: #ffffff;
}

.promo__btn-price {
    margin-top: 6.2rem;
}

@media (max-width: 999.98px) {
    .promo {
        padding: 16.2rem 2rem 9.2rem 2rem;
    }

    .promo__desc {
        margin-top: 3.2rem;
        font-size: 1.5rem;
    }

    .promo__btn-price {
        margin-top: 4rem;
    }
}

@media (max-width: 999.98px) {
    .products {
        padding: 6.5rem 0;
    }

    .products__image {
        margin: 0 -3vw;
    }
}

@media (max-width: 999.98px) {
    :root {
        --side-padding: 2rem;
    }

    html {
        font-size: 10px;
    }
}

/* новый сайт */
.promo__logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 42rem;
}

.promo__desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 92rem;
    text-align: center;
}

.promo__btn-price {
    text-align: center;
}

.nav-top li a.active {
    color: #434343;
}

.btn-white {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    color: #434343;
    min-width: 9em;
    font-size: 2rem;
    padding: 0.5em 0.5em;
    font-weight: 900;
}

.btn-white:hover {
    background: #434343;
    color: #FFFFFF;
}

.block_plate_text {

    background: #fff;
    border-radius: 5.5rem;
    padding: 8rem 4rem 8rem 4rem;
    max-width: 100rem;
    margin: 0 auto;
    margin-top: 2.2rem;

    box-shadow: 0px 100px 304px rgba(0, 0, 0, 0.07), 0px 41.2783px 127.004px rgba(0, 0, 0, 0.0609038), 0px 17.0821px 67.9024px rgba(0, 0, 0, 0.0636157), 0px 4.62774px 38.0655px rgba(0, 0, 0, 0.0665745), 0px -1.09945px 20.2163px rgba(0, 0, 0, 0.066661), 0px -2.25211px 8.41246px rgba(0, 0, 0, 0.0591538);
}

.page__h1.contacts__h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.page__h1.finance__h1 {
    font-size: 3.4rem;
    margin-bottom: 1em;
    color: #ECE9E6;
}

.contacts__desc {
    color: #000;
}


.goods__row {
    margin: 0 auto;
    margin-top: 3rem;
}


/* mobile */
.btn-burger.active i {
    background: #1CA566;
}



.btn-arrow .icon {
    fill: #ffffff;
}

.btn-arrow {
    border: 0px;
    background: #1CA566;
    border-radius: 3px;
    color: white;
    font-weight: 700;
}

a.btn-arrow-bottom .icon {
    width: 39px;
    height: 20px;
}

a.btn-arrow-bottom {
    display: block;
    margin: 30px;
}

@media (max-width: 999.98px) {
    .promo__logo {
        width: 28rem;
    }

    .promo {
        padding: 11.2rem 2rem 8.2rem 2rem;
    }

    .promo__desc {
        margin-top: 2.2rem;
        font-size: 1.5rem;
    }

    .btn-white {
        min-width: 8em;
        font-size: 1.8rem;
    }

    .goods__row {
        margin-top: 0.5rem;
    }


    .finance {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .page__h1.finance__h1 {
        font-size: 1.8rem;
        margin-bottom: 1.6em;
    }
    .finance__table {
        margin-top: 2.2rem;
    }
    .block_plate_text {
        padding: 3rem 2rem 2rem 2rem;
        border-radius: 2.5rem;
        margin-right: -2rem;
        margin-left: -2rem;
    }

    .contacts {
        padding-bottom: 4.5rem;
        padding-top: 2.5rem;
    }

    .contacts__desc br {
        display: none;
    }

    .page__h1.contacts__h1 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    a.btn-arrow-bottom .icon {
        width: 39px;
        height: 20px;
    }

    a.btn-arrow-bottom {
        display: block;
        margin: 30px;
    }

}