.gruzomallBody.active {
    overflow-y: hidden;
}
.headerBlock {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 80px;
    background: var(--ui-st-color-white);
    z-index: 799;
}
.headerContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1300px;
    min-height: 36px;
    padding: 12px 0;
}
.headerLogotype {
    display: flex;
    align-items: center;
    height: 40px;
}
.headerLogotype img {
    height: 40px;
}
.headerLinks {
    display: flex;
    flex-direction: row;
}
.headerLink {
    display: flex;
    align-items: center;
    font-family: var(--ui-st-font);
    font-size: 14px;
    color: var(--ui-st-color-black);
    padding: 0 15px;
    transition: var(--ani-st-02-seconds);
    cursor: pointer;
}
.headerLink:hover {
    color: var(--ui-st-color-accent);
}
.headerButton {
    display: flex;
    align-items: center;
    font-family: var(--ui-st-font);
    font-size: 14px;
    color: var(--ui-st-color-white);
    background: var(--ui-st-color-accent);
    height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    cursor: pointer;
    margin: 0 0 0 15px;
}
.modelMenu {
    position: fixed;
    top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--ui-st-color-white);
    overflow: hidden;
    transition: var(--ani-st-03-seconds);
    transform: translateY(-100%);
    z-index: 798;
}
.modelMenu.active {
    transform: translateY(0%);
}
.modelContent {
    display: flex;
    width: 1320px;
    padding: 24px 0;
}
.modelCard {
    width: 20%;
    position: relative;
    cursor: pointer;
    transition: var(--ani-st-02-seconds);
}
.modelCard:hover {
    scale: 1.03;
}
.modelArea {
    width: 100%;
    padding-bottom: 100%;
}
.modelImage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
}
.modelArea img {
    width: 80%;
}
.modelHeader {
    position: absolute;
    font-family: var(--ui-st-font);
    font-size: 16px;
    font-weight: 600;
    bottom: 10px;
    text-align: center;
    width: 100%;
}
/*Banner*/
.bannerContainer {
    width: 100%;
    margin: 90px 0 0 0;
    padding: 10px;
    position: relative;
    transition: var(--ani-st-03-seconds);
}
.bannerContent {
    background: var(--ui-st-color-white);
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: 24vw;
    position: relative;
}
.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.bannerContainer:hover .prevButton {
    opacity: 1;
}
.bannerContainer:hover .nextButton {
    opacity: 1;
}
.prevButton,
.nextButton {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ui-st-color-white);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--ani-st-03-seconds);
    margin: 15px;
}
.prevButton {
    left: 10px;
}
.prevButton svg {
    rotate: 180deg;
}
.nextButton {
    right: 10px;
}
.prevButton:hover,
.nextButton:hover {
    background: var(--ui-st-color-lightg);
}
/* Button */
.buttonContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.buttonArea {
    display: flex;
    flex: auto;
    width: 33.3%;
    padding: 10px;
    transition: var(--ani-st-02-seconds);
    cursor: pointer;
}
.buttonArea:hover {
    scale: 1.03;
}
.buttonContent {
    position: relative;
    overflow: hidden;
    background: var(--ui-st-color-white);
    border-radius: 24px;
    width: 100%;
}
.buttonSelect {
    width: 100%;
    padding-bottom: 20%;
}
.buttonImageAndText {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
}
.buttonIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
    width: 54px;
    height: 54px;
    border-radius: 30px;
    background: var(--ui-st-color-accent);
}
.buttonIcon svg {
    fill: var(--ui-st-color-white);
}
.buttonText {
    font-family: var(--ui-st-font);
    font-size: 16px;
    margin: 22px 0;
}
.buttonText p {
    margin: 0 0 3px 0;
}
/* Goods */
.goodsSection {
    width: 100%;
    padding: 10px;
}
.goodsContainer {
    width: 100%;
    background: var(--ui-st-color-white);
    border-radius: 24px;
}
.goodsHeader {
    font-family: var(--ui-st-font);
    font-weight: 700;
    font-size: 36px;
    padding: 25px 17px 10px 17px;
    color: var(--ui-st-color-theme);
}
.cardContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 5px 15px 5px;
}
.cardBlock {
    width: 25%;
    padding: 10px;
    cursor: pointer;
    transition: var(--ani-st-02-seconds);
    transform: translateY(0%);
}
.cardBlock:hover {
    transform: translateY(-3%);
}
.cardArea {
    display: flex;
    flex-direction: column;
    background: var(--ui-st-color-white);
}
.cardImage {
    width: 100%;
    height: 200px;
    background: var(--ui-st-color-white);
    border-radius: 14px;
    overflow: hidden;
}
.cardImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cardInfo {
    display: flex;
    flex-direction: column;
    font-family: var(--ui-st-font);
}
.priceText {
    font-weight: 600;
    margin: 10px 0 5px 0;
}
.priceText span {
    font-weight: 400;
    text-decoration: line-through;
    color: var(--ui-st-color-gray);
}
.nameText {
    margin: 0;
}
.complectText {
    color: var(--ui-st-color-gray);
    margin: 5px 0;
}
/* Form */
.formContainer {
    width: 100%;
    padding: 10px 10px 0 10px;
}
.formArea {
    display: flex;
    align-items: center;
    width: 100%;
    height: 310px;
    border-radius: 24px;
    background: var(--ui-st-color-theme);
    position: relative;
}
.formContent {
    display: flex;
    flex-direction: column;
    padding: 40px;
    width: 100%;
}
.formHeader {
    font-family: var(--ui-st-font);
    color: var(--ui-st-color-white);
    font-weight: 700;
    font-size: 36px;
    margin: 0 0 20px;
}
.formDesc {
    font-family: var(--ui-st-font);
    color: var(--ui-st-color-white);
    font-size: 20px;
    width: 58%;
    margin: 0 0 28px;
}
.formPolicy {
    font-family: var(--ui-st-font);
    font-size: 16px;
    color: var(--ui-st-color-white);
}
.formPolicy a {
    color: var(--ui-st-color-white);
    text-decoration: underline;
}
.formClass {
    display: flex;
    flex-direction: row;
    margin: 0 0 28px;
}
.formInput, .formButton {
    display: flex;
    flex: auto;
    width: 25%;
    font-family: var(--ui-st-font);
    font-size: 16px;
    height: 40px;
}
.formInput {
    border-radius: 20px;
    padding: 0 15px;
    outline: none;
    color: var(--ui-st-color-white);
    margin: 0 20px 0 0;
    border: 1px solid var(--ui-st-color-white);
    background: transparent;
}
.formButton {
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: none;
    background: var(--ui-st-color-white);
    color: var(--ui-st-color-theme);
    cursor: pointer;
    transition: var(--ani-st-02-seconds);
}
/* Footer */
.footerContainer {
    width: 1300px;
    margin: 0 auto 30px auto;
    padding 0 0 30px 0;
}
.policyAndContact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 76px;
    padding: 0 30px;
}
.policyLink {
    font-family: var(--ui-st-font);
    font-size: 16px;
    color: var(--ui-st-color-gray);
    font-weight: 400;
    transition: var(--ani-st-02-seconds);
}
.policyLink:hover {
    color: var(--ui-st-color-accent);
}
.contact {
    display: flex;
    flex-direction: row;
}
.contactLink {
    font-family: var(--ui-st-font);
    font-size: 16px;
    color: var(--ui-st-color-gray);
    font-weight: 400;
    margin: 0 0 0 30px;
    transition: var(--ani-st-02-seconds);
}
.contactLink:hover {
    color: var(--ui-st-color-accent);
}
.copyrightBlock {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
}
.line {
    width: 100%;
    height: 1px;
    margin: 0 0 30px;
    opacity: 0.5;
    background: var(--ui-st-color-gray);
}
.copyrightArea {
    width: 50%;
}
.infoText {
    font-family: var(--ui-st-font);
    font-size: 12px;
    color: var(--ui-st-color-gray);
    width: 85%;
    margin: 22px 0 0;
}
/* PopUp */
.popupBlock {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 800;
}
.popupBlock.active {
    display: flex;
}
.popupCredit {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 800;
}
.popupCredit.active {
    display: flex;
}
.popupCorp {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 800;
}
.popupCorp.active {
    display: flex;
}
.popupForm {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 560px;
    background: var(--ui-st-color-white);
    border-radius: 30px;
    overflow: hidden;
    padding: 40px;
    z-index: 801;
}
.closeForm {
    display: flex;
    align-items: center;
    width: 40px;
    height: 114px;
    position: absolute;
    top: 0;
    right: 32px;
    cursor: pointer;
    stroke: var(--ui-st-color-gray);
    transition: var(--ani-st-02-seconds);
}
.closeForm:hover {
    stroke: var(--ui-st-color-theme);
}
.popupHead {
    font-family: var(--ui-st-font);
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 40px;
}
.inputDesc {
    font-family: var(--ui-st-font);
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--ui-st-color-gray);
    cursor: default;
}
.inputDesc span {
    color: var(--ui-st-color-accent-hover);
}
.popupInput {
    font-family: var(--ui-st-font);
    font-size: 16px;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    border: 1px solid var(--ui-st-color-lightg);
    padding: 0 15px;
    background: transparent;
    margin: 0 0 15px;
    outline: none;
}
.popupPolicy {
    font-family: var(--ui-st-font);
    font-size: 16px;
    color: var(--ui-st-color-black);
    margin: 10px 0 20px;
}
.popupPolicy a {
    text-decoration: underline;
}
.popupButton {
    font-family: var(--ui-st-font);
    font-size: 16px;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    color: var(--ui-st-color-white);
    background: var(--ui-st-color-accent);
    border: none;
    cursor: pointer;
    margin: 0 0 5px;
    transition: var(--ani-st-02-seconds);
}
/* Response */
.iconResponse {
    display: flex;
    justify-content: center;
    margin: 0 0 20px 0;
}
.textResponse {
    font-family: var(--ui-st-font);
    font-size: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.notificationContainer {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 0;
    bottom: 0;
    margin: 0 55px 10px 0;
    z-index: 999;
}
.notification {
    position: relative;
    font-family: var(--ui-st-font);
    font-size: 16px;
    width: 500px;
    color: var(--ui-st-color-white);
    padding: 30px 25px;
    background: var(--ui-st-color-theme);
    margin: 0 0 10px;
    border-radius: 20px;
}
.copyrightAreaRight {
    display: flex;
    justify-content: flex-end;
    width: 50%;
}











