/* varibles */
/* ---------------------------------------------------------------- */

:root {
    --color-lightgrey: #a4a4a4;
    --color-lightlightgrey: #cecece;
    --color-grey: #8c8a8b;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-red: #e72940;
    --color-violet: #5b41f5;
    --color-violet-hover: #876fff;
    --color-dark-grey: #3e3e3d;
    --color-disabled: #bababa;
}

/* common styles */
/* ---------------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:before {
    box-sizing: border-box;
}

*:after {
    box-sizing: border-box;
}

body {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    font-family: "inter", sans-serif;
    color: #3c3c3c;
    width: 100%;
    margin: 0;
    padding: 0;
    min-width: 390px;
    overflow-x: hidden;
    background: #ffffff;
}

html {
    position: relative;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

main {
    position: relative;
    z-index: 1;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    outline: none !important;
    font-family: inherit;
    font-size: inherit;
}

* {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
        supported by Chrome, Edge, Opera and Firefox */
}

* {
    /* blue select disable */
    -webkit-tap-highlight-color: transparent;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

input {
    font-family: inherit;
    font-size: inherit;
}

.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="ratio"].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: insert(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.container {
    width: 980px;
    margin: 0 auto;
    padding: 10px;
}

.jump {
    animation: bouncing 0.5s infinite alternate both;
    margin-bottom: 20px;
}

@keyframes bouncing {
    0% {
        top: 92%;
    }

    100% {
        top: 90%;
    }
}

/* preloader */
/* ---------------------------------------------------------------- */

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid;
    border-color: var(--color-red) transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100%;
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s linear;
}

.loader-wrapper.active {
    visibility: visible;
    opacity: 1;
}

/* header */
/* ---------------------------------------------------------------- */

header {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 100;
}

.section__wrapper {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 82.5px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
}

.logo__wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    width: 60%;
    height: 100%;
}

.logo__wrapper::before {
    position: absolute;
    right: 0;
    content: "";
    width: 100vw;
    height: 100%;
    background: var(--color-lightgrey);
    z-index: -1;
}

.logo {
    display: flex;
    align-items: center;
    width: 105px;
    padding: 15px 0;
    cursor: pointer;
}

.logo__description {
    display: none;
}

@media (min-width: 768px) {
    .logo__description {
        display: unset;
        color: var(--color-white);
        font-weight: 700;
        font-size: 10px;
        width: 30%;
    }
}

.contacts__wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    width: 40%;
    padding-left: 10px;
}

.contacts__wrapper::before {
    position: absolute;
    left: 0;
    content: "";
    width: 100vw;
    height: 100%;
    background: var(--color-white);
    z-index: -1;
}

.contacts__phones {
    display: none;
}

@media (min-width: 1000px) {
    .contacts__wrapper {
        justify-content: space-between;
    }

    .contacts__phones {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}

.contacts__phones-item {
    color: var(--color-black);
    font-weight: 900;
    font-size: 12px;
    transition: all 300ms ease-in-out;
}

.contacts__phones-item:hover {
    color: var(--color-red);
}

.contacts__phones-item span {
    color: var(--color-grey);
    font-weight: 900;
    font-size: 12px;
}

.ring__order {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-black);
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--color-red);
    border-radius: 8px;
    background: var(--color-white);
    padding: 10px 15px;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.25);
    transition: all 300ms ease-in-out;
    cursor: pointer;
}

.ring__order:hover {
    background: var(--color-red);
    color: var(--color-white);
}

/* first section */
/* ---------------------------------------------------------------- */
.first-section {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 92.5px);
    max-height: 485px;
}

@media (min-width: 768px) {
    .first-section {
        height: calc(100vh - 82.5px);
        max-height: 700px;
    }
}

.first-section__backgorund {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 82.5px);
    max-height: 100vh;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
}

.first-section::after {
    position: absolute;
    content: "";
    background: url(/img/first-mask.svg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 10;
}

.right-part {
    display: none;
}

@media (min-width: 768px) {
    .left-part {
        position: relative;
        display: flex;
        height: 100%;
        width: 60%;
    }

    .left-part:before {
        position: absolute;
        content: "";
        right: 0;
        display: flex;
        background: url(/img/left-part-main.png);
        background-size: cover;
        background-position: center;
        height: calc(100vh - 82.5px);
        width: 60vw;
    }

    .right-part {
        position: relative;
        display: flex;
        height: 100%;
        width: 40%;
    }

    .right-part::before {
        position: absolute;
        content: "";
        left: 0;
        display: flex;
        background: url(/img/right-part-main.png);
        background-size: cover;
        background-position: center;
        height: calc(100vh - 82.5px);
        width: 60vw;
    }
}

.first-section__circle1 {
    position: absolute;
    right: 50%;
    top: 80px;
    transform: translateX(600px);
    content: "";
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px dashed #8c8a8b;
}

.first-section__circle2 {
    position: absolute;
    right: 50%;
    top: 45px;
    transform: translateX(634px);
    content: "";
    width: 448px;
    height: 448px;
    border-radius: 50%;
    border: 2px dashed #c7c7c7;
}

.first-section__tables {
    position: absolute;
    right: 50%;
    top: 130px;
    transform: translateX(601px);
    content: "";
    background: url(/img/tables.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    width: 500px;
    height: 380px;
    z-index: 20;
}

@media (min-width: 768px) {
    .first-section__tables {
        width: 700px;
    }
}

.first-section__content {
    position: absolute;
    right: 50%;
    top: 265px;
    transform: translate(50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 30;
}

@media (min-width: 768px) {
    .first-section__content {
        align-items: flex-start;
        transform: translate(245px, -50%);
        width: 615px;
    }
}

@media (min-width: 1000px) {
    .first-section__content {
        transform: translate(140px, -50%);
    }
}

.first-section__title {
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 56px;
    color: #3b3b3b;
    text-shadow: 1px 1px 5px #ffffffc5;
}

.first-section__subtitle {
    font-size: 1.4rem;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: #8c8a8b;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .first-section__title {
        font-size: 36px;
    }

    .first-section__subtitle {
        font-size: 26px;
    }
}

@media (min-width: 1000px) {
    .first-section__title {
        font-size: 46px;
    }

    .first-section__subtitle {
        font-size: 30px;
    }
}

.first-section__line {
    width: 94px;
    height: 4px;
    background: #e40a22;
    margin-bottom: 10px;
}

.first-section__list-title {
    font-weight: 500;
    font-size: 22px;
    color: #3c3c3c;
    margin-bottom: 15px;
}

.first-section__item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.first-section__list-marker {
    background: linear-gradient(180deg, #f96475 0%, #aa2131 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    content: "";
    width: 16px;
    height: 16px;
}

.first-section__list-content {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #3c3c3c;
}

.first-section__arrow {
    position: absolute;
    display: none;
    left: 50%;
    top: 90%;
    width: 45px;
    height: 20px;
    transform: translate(-50%, -50%);
    content: "";
    background: url(/img/white-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 30;
}

@media (min-width: 768px) {
    .first-section__arrow {
        display: block;
    }
}

.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 30px;
    background: linear-gradient(180deg, #f96475 0%, #aa2131 100%);
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    border: none;
    margin-top: 25px;
    cursor: pointer;
    scale: 1;
    transition: all 300ms ease-in-out;
}

.button:hover {
    scale: 1.05;
}

/* second section */
/* ---------------------------------------------------------------- */

.second-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.64) 20.4%, #ffffff 100%), url(/img/second-section.png);
}

.second-section::after {
    position: absolute;
    content: "";
    background: url(/img/second-mask.svg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 10;
}

.second-section__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 80px auto;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .second-section__content {
        position: relative;
        margin: 80px auto;
        align-items: flex-start;
        left: 50%;
        width: 100%;
        z-index: 1;
    }
}

@media (min-width: 1200px) {
    .second-section__content {
        position: relative;
        margin: 80px auto;
        padding-left: 320px;
        left: unset;
        width: unset;
    }
}

.second-section__title {
    font-weight: 700;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: center;
}

@media (min-width: 768px) {
    .second-section__title {
        font-size: 1.9rem;
        text-align: left;
        max-width: 500px;
    }
}

@media (min-width: 1000px) {
    .second-section__title {
        font-size: 36px;
    }
}

.second-section__line {
    position: relative;
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

.second-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

.second-section__list {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 80px;
    width: 100%;
    gap: 20px;
}

@media (min-width: 768px) {
    .second-section__list {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 40px;
        margin-bottom: 80px;
        width: 565px;
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .second-section__list {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 40px;
        margin-bottom: 80px;
        width: 565px;
        gap: 20px;
    }
}

.second-section__item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 270px;
    padding-left: 60px;
}

.second-section__list-marker {
    position: absolute;
    top: -7px;
    left: 0;
    content: "";
    width: 48px;
    height: 40px;
}

.second-section__list-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3b3b3b;
}

.second-section__list-content {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.06em;
    color: #6a6a6a;
}

.second-section__subtitle {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    margin-top: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .second-section__subtitle {
        font-weight: 500;
        font-size: 21px;
        line-height: 130%;
        letter-spacing: -0.03em;
        color: #3b3b3b;
        margin-top: 20px;
        text-align: left;
    }
}

.second-section__text {
    font-weight: 500;
    width: 80%;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: -0.05em;
    color: #3b3b3b;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 768px) {
    .second-section__text {
        font-weight: 500;
        width: 520px;
        font-size: 15px;
        line-height: 130%;
        letter-spacing: -0.05em;
        color: #3b3b3b;
        margin-top: 12px;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

.second-section__image1 {
    position: absolute;
    display: block;
    left: 50%;
    top: -80px;
    transform: translateX(170px);
    content: "";
    background: url(/img/second-image1.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 400px;
    height: 300px;
    z-index: 20;
}

.second-section__image2 {
    position: absolute;
    display: block;
    left: 50%;
    top: 320px;
    transform: translateX(168px);
    content: "";
    background: url(/img/second-image2.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 230px;
    height: 205px;
    z-index: 20;
}

.second-section__circle {
    display: none;
}

@media (min-width: 768px) {
    .second-section__image1 {
        position: absolute;
        display: block;
        left: 50%;
        top: 0;
        transform: translateX(300px);
        content: "";
        background: url(/img/second-image1.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 400px;
        height: 300px;
        z-index: 20;
    }

    .second-section__image2 {
        position: absolute;
        display: block;
        left: 50%;
        top: 312px;
        transform: translateX(300px);
        content: "";
        background: url(/img/second-image2.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 230px;
        height: 205px;
        z-index: 20;
    }

    .second-section__circle {
        position: absolute;
        display: block;
        left: 50%;
        top: 45px;
        transform: translateX(-630px);
        width: 600px;
        height: 600px;
        border-radius: 50%;
        border: 3px dashed #c7c7c7;
    }
}

@media (min-width: 1000px) {
    .second-section__circle {
        position: absolute;
        left: 50%;
        top: 45px;
        transform: translateX(-630px);
        width: 600px;
        height: 600px;
        border-radius: 50%;
        border: 3px dashed #c7c7c7;
    }
}

@media (min-width: 1200px) {
    .second-section__image1 {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(430px);
        content: "";
        background: url(/img/second-image1.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 400px;
        height: 300px;
        z-index: 20;
    }

    .second-section__image2 {
        position: absolute;
        left: 50%;
        top: 312px;
        transform: translateX(430px);
        content: "";
        background: url(/img/second-image2.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 230px;
        height: 205px;
        z-index: 20;
    }

    .second-section__circle {
        position: absolute;
        left: 50%;
        top: 45px;
        transform: translateX(-750px);
        width: 600px;
        height: 600px;
        border-radius: 50%;
        border: 3px dashed #c7c7c7;
    }
}

.second-section__circle1 {
    position: absolute;
    width: 502px;
    height: 502px;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: url(/img/second-circle2.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.second-section__circle2 {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 502px;
    height: 502px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 20px solid #ffffff;
    box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.25);
    padding-left: 150px;
    padding-top: 70px;
}

.circle-text__uppercase {
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #6a6a6a;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.8);
}

.circle-text__uppercase span {
    font-weight: 700;
    font-size: 154px;
    line-height: 100px;
    letter-spacing: -0.1em;
    color: #b3a189;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

.circle-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #6a6a6a;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.8);
    width: 220px;
}

.catalog-slider {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    margin-bottom: 0;
}

.catalog-slider__wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    width: 200px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .catalog-slider__wrapper {
        width: 600px;
    }
}

@media (min-width: 1000px) {
    .catalog-slider__wrapper {
        padding: 75px 10px 30px;
        width: 860px;
    }
}

.catalog-slider__list {
    position: relative;
}

.catalog-slider__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.catalog-slider-item__image {
    width: 150px;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    margin-bottom: 40px;
}

.swiper-slide-active .catalog-slider-item__image {
    border: 1px dashed #f90000;
    background: transparent;
    opacity: 1;
    z-index: 1;
    transform: scale(1.2);
    padding: 5px;
}

.catalog-slider-item__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3b3b3b;
}

.catalog-slider-item__price {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3b3b3b;
}

.catalog-slider-item__price span {
    font-weight: 400;
}

.swiper-button-prev1 {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    transform: translateX(-150px);
    top: 90px;
    background: url(/img/arrow-left.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
}

@media (min-width: 768px) {
    .swiper-button-prev1 {
        transform: translateX(-350px);
    }
}

@media (min-width: 1000px) {
    .swiper-button-prev1 {
        transform: translateX(-480px);
        top: 130px;
    }
}

.swiper-button-prev1::after {
    content: "";
}

.swiper-button-next1 {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    transform: translateX(110px);
    top: 90px;
    background: url(/img/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.3s;
    content: "";
    z-index: 5;
}

@media (min-width: 768px) {
    .swiper-button-next1 {
        transform: translateX(310px);
    }
}

@media (min-width: 1000px) {
    .swiper-button-next1 {
        transform: translateX(440px);
        top: 130px;
    }
}

.swiper-button-next1::after {
    content: "";
}

.swiper-pagination1 {
    position: absolute;
    bottom: var(--swiper-pagination-bottom, 40px);
    top: var(--swiper-pagination-top, 160px);
    left: 50%;
    width: 100%;
    transform: translateX(-75px);
    color: #f90000;
    font-weight: 700;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

@media (min-width: 1000px) {
    .swiper-pagination1 {
        top: var(--swiper-pagination-top, 210px);
    }
}

@media (min-width: 1200px) {
    .swiper-pagination1 {
        transform: translateX(-415px);

    }
}

.second-section__button {
    margin-bottom: 80px;
    z-index: 50;
}

/* third section */
/* ---------------------------------------------------------------- */

.third-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

.third-section__content {
    position: relative;
    margin: 80px auto 35px;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.third-section__content::before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0) 65%, #ffffff 100%), linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 15%, #FFFFFF 85%, rgba(255, 255, 255, 0) 100%), url(/img/third-section2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
    .third-section__content::before {
        width: 100vw;
    }
}

.third-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: center;
}

@media (min-width: 1000px) {
    .third-section__title {
        font-weight: 700;
        position: relative;
        font-size: 36px;
        letter-spacing: -0.03em;
        color: #3b3b3b;
        text-align: center;
    }
}

.third-section__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

@media (min-width: 768px) {
    .third-section__line {
        position: absolute;
        left: 0;
        transform: unset;
        content: "";
        width: 350px;
        height: 5px;
        margin-top: 10px;
        background: #d9d9d9;
    }
}

.third-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

.third-section__list {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 800px;
    gap: 20px;
}

.third-section__item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 250px;
    padding-left: 60px;
}

.third-section__list-image {
    position: relative;
    display: flex;
    align-self: flex-start;
    margin-left: 35px;
    margin-bottom: 5px;
    width: 65px;
    background: #DCE1E7;
    height: 65px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.third-section__list-image img {
    width: 60%;
}

.third-section__list-marker {
    position: absolute;
    top: 63px;
    left: 10px;
    font-weight: 800;
    font-size: 48px;
    line-height: 58px;
    color: #f5d8d8;
}

.third-section__list-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    margin-bottom: 5px;
}

.third-section__list-content {
    font-weight: 600;
    font-size: 11px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #949494;
}

.third-section__button {
    margin-bottom: 30px;
    z-index: 50;
}

@media (min-width: 860px) {
    .third-section__button {
        margin-bottom: 130px;
    }
}

.third-section__image1 {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-681px);
    content: "";
    background: url(/img/third-image1.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 300px;
    height: 240px;
    z-index: 20;
}

.app-third-section__content {
    position: relative;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 90%, #FFFFFF 100%), url(/img/third-section.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
}

@media (min-width: 860px) {
    .app-third-section__content {
        position: relative;
        padding-bottom: 170px;
        z-index: 50;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 90%, #FFFFFF 100%), url(/img/third-section.png);
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
        width: 100%;
    }
}

.app-third-section__content::after {
    position: absolute;
    content: "";
    background: url(/img/second-mask.svg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 110%;
    height: 100%;
    z-index: 0;
}

.app-third-section__wrapper {
    position: relative;
    margin: 0 auto 100px;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 860px) {
    .app-third-section__content {
        position: relative;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .app-third-section__wrapper {
        position: relative;
        margin: 0 auto 170px;
        z-index: 50;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        width: 840px;
    }
}

.app-third-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 860px) {
    .app-third-section__title {
        font-size: 36px;
    }
}


.app-third-section__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

.app-third-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

.app-third-section__text {
    max-width: 360px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-top: 10px;
    text-align: center;
}

@media (min-width: 860px) {
    .app-third-section__title {
        font-weight: 700;
        position: relative;
        font-size: 36px;
        letter-spacing: -0.03em;
        color: #ffffff;
        text-align: left;
        margin-bottom: 30px;
        align-self: flex-start;
    }

    .app-third-section__line {
        position: absolute;
        left: 0;
        transform: unset;
        content: "";
        width: 350px;
        height: 5px;
        margin-top: 10px;
        background: #d9d9d9;
    }

    .app-third-section__text {
        width: 425px;
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        letter-spacing: -0.03em;
        color: #FFFFFF;
        margin-top: 10px;
        text-align: left;
        align-self: flex-start;
    }
}

.app-third-section__form {
    position: relative;
    width: 380px;
    height: 380px;
    background: url(/img/app-circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

@media (min-width: 480px) {
    .app-third-section__form {
        position: relative;
        width: 400px;
        height: 400px;
        background: url(/img/app-circle.svg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }
}

@media (min-width: 860px) {
    .app-third-section__form {
        position: absolute;
        left: 50%;
        top: 125px;
        transform: translateX(3px);
        width: 400px;
        height: 400px;
        background: url(/img/app-circle.svg);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
}

.form__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.form__text {
    font-weight: 500;
    font-size: 13px;
    line-height: 170%;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.form__input {
    width: 210px;
    background: #FFFFFF;
    border: 2px solid #B61023;
    border-radius: 51px;
    padding: 8px 24px;
    margin-top: 15px;
    font-size: 16px;
}

.form__input::placeholder {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #6A6A6A;
}

.app-third-section__button {
    margin-top: 15px;
}

.error::placeholder {
    color: red;
}

/* forth section */
/* ---------------------------------------------------------------- */

.forth-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.forth-section__content {
    position: relative;
    margin: 40px auto;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.forth-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: center;
}

@media (min-width: 1000px) {
    .forth-section__content {
        position: relative;
        margin: 80px auto 35px;
        z-index: 50;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .forth-section__title {
        font-weight: 700;
        position: relative;
        font-size: 36px;
        letter-spacing: -0.03em;
        color: #3b3b3b;
        text-align: center;
    }
}

.forth-section__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

.forth-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

@media (min-width: 768px) {
    .forth-section__line {
        position: absolute;
        left: 0;
        transform: unset;
        content: "";
        width: 350px;
        height: 5px;
        margin-top: 10px;
        background: #d9d9d9;
    }
}

.forth-section__image1 {
    position: absolute;
    left: 50%;
    top: 42px;
    transform: translateX(-1100px);
    content: "";
    background: url(/img/solt&peper.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 685px;
    height: 300px;
    z-index: 20;
}

.forth-section__image2 {
    position: absolute;
    left: 50%;
    top: 121px;
    transform: translateX(542px);
    content: "";
    background: url(/img/spoons.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 490px;
    height: 410px;
    z-index: 20;
}

.tableslice {
    margin-top: 40px;
    padding: 0 25px;
    padding-bottom: 40px;
}

@media (min-width: 1000px) {
    .tableslice {
        margin-top: 40px;
        padding: 0;
        padding-bottom: 40px;
    }
}

/* forth section - partners*/
/* ---------------------------------------------------------------- */

.partners__list {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 10px;
    margin: 30px 0 70px;
}

.partner__item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    max-width: 200px;
}

/* .partner__logo {
} */

/* fifth section */
/* ---------------------------------------------------------------- */

.fifth-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.97) 100%), url(/img/fifth-section.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.fifth-section::before {
    position: absolute;
    content: "";
    background: url(/img/fifth-mask.svg);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 10;
}

.fifth-section::after {
    position: absolute;
    content: "";
    background: url(/img/first-mask2.svg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 10;
}

.fifth-section__content {
    position: relative;
    margin: 90px auto 35px;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    z-index: 50;
}

.fifth-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: center;
    margin-top: 20px;
    max-width: 90%;
}

@media (min-width:1000px) {
    .fifth-section__title {
        font-size: 36px;
        margin-top: 50px;
        max-width: unset;
    }
}

.fifth-section__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

@media (min-width:1000px) {
    .fifth-section__line {
        position: absolute;
        left: 0;
        transform: unset;
        content: "";
        width: 350px;
        height: 5px;
        margin-top: 10px;
        background: #d9d9d9;
    }
}

.fifth-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

.fifth-section__text {
    width: 90%;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    margin-top: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .fifth-section__text {
        width: 425px;
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        letter-spacing: -0.03em;
        color: #3b3b3b;
        margin-top: 30px;
        text-align: center;
    }
}

.tablestypes {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 150px;
    z-index: 50;
    max-width: 600px;
}

@media (min-width: 768px) {
    .tablestypes {
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 300px;
        z-index: 50;
        max-width: 1200px;
    }
}

.tabletypes__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex: 0 1 100%;
    max-width: 200px;
}

@media (min-width: 768px) {
    .tabletypes__item {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        flex: 0 1 100%;
    }

    .tabletypes__item-2,
    .tabletypes__item-5 {
        margin-top: 30px;
    }

    .tabletypes__item-4,
    .tabletypes__item-3 {
        margin-top: 60px;
    }
}

.tabletypes__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3B3B3B;
}

/* six section */
/* ---------------------------------------------------------------- */

.six-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    padding-top: 40px;
}

@media (min-width: 768px) {
    .six-section {
        padding-top: 0;
    }
}

.six-section__content {
    position: relative;
    margin: 0 auto 35px;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    z-index: 50;
}

.six-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: center;
}

.six-section__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

.six-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

@media (min-width: 1000px) {
    .six-section__title {
        font-weight: 700;
        position: relative;
        font-size: 36px;
        letter-spacing: -0.03em;
        color: #3b3b3b;
        text-align: center;
    }

    .six-section__line {
        position: absolute;
        left: 0;
        transform: none;
        content: "";
        width: 350px;
        height: 5px;
        margin-top: 10px;
        background: #d9d9d9;
    }
}

.catalog-works-slider {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

.catalog-works__wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 75px 40px;
    width: 1140px;
    height: 380px;
}

.catalog-works__list {
    position: relative;
}

.catalog-works__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.catalog-works-item__image {
    width: 200px;
    box-shadow: 0px 2px 12px 5px rgba(0, 0, 0, 0.26);
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.3s;
    object-fit: cover;
    object-position: center;
}

.catalog-works-item__image img {
    height: 200px;
}

.swiper-slide-active .catalog-works-item__image {
    border: 5px solid white;
    opacity: 1;
    z-index: 1;
    transform: scale(1.2);
}

.swiper-button-prev2 {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    transform: translateX(-165px);
    bottom: 190px;
    background: url(/img/arrow-left.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
}

@media (min-width: 768px) {
    .swiper-button-prev2 {
        transform: translateX(-165px);
    }
}

@media (min-width: 1200px) {
    .swiper-button-prev2 {
        transform: translateX(-575px);
    }
}

.swiper-button-prev2::after {
    content: "";
}

.swiper-button-next2 {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    transform: translateX(125px);
    bottom: 190px;
    background: url(/img/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.3s;
    content: "";
    z-index: 5;
}

@media (min-width: 768px) {
    .swiper-button-next2 {
        transform: translateX(125px);
    }
}

@media (min-width: 1200px) {
    .swiper-button-next2 {
        transform: translateX(-290px);
    }
}

.swiper-button-next2::after {
    content: "";
}

.swiper-pagination2 {
    position: absolute;
    bottom: var(--swiper-pagination-top, 95px);
    left: 50%;
    width: 100%;
    transform: translateX(-90px);
    color: #f90000;
    font-weight: 700;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

@media (min-width: 1200px) {
    .swiper-pagination2 {
        transform: translateX(-515px);
    }
}

.second-section__button {
    margin-bottom: 80px;
    z-index: 50;
    margin-top: 0;
}

/* seven section */
/* ---------------------------------------------------------------- */

.seven-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFFFFF 15%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 67.99%, #FFFFFF 100%), linear-gradient(90deg, #FFFFFF 12.31%, rgba(255, 255, 255, 0) 23.65%, rgba(255, 255, 255, 0) 46.42%, #FFFFFF 56.82%, #FFFFFF 67.22%), url(/img/seven-section.png);
    background-size: 2224px 903px;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 40px;
}

@media (min-width: 1000px) {
    .seven-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow-x: hidden;
        background: linear-gradient(180deg, #FFFFFF 15%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 67.99%, #FFFFFF 100%), linear-gradient(90deg, #FFFFFF 12.31%, rgba(255, 255, 255, 0) 23.65%, rgba(255, 255, 255, 0) 46.42%, #FFFFFF 56.82%, #FFFFFF 67.22%), url(/img/seven-section.png);
        background-size: 1560px 680px;
        background-repeat: no-repeat;
        background-position: center top;
        padding-top: 80px;
    }
}

.seven-section__content {
    position: relative;
    margin: 0 auto 35px;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    z-index: 50;
}

.seven-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: center;
}

.seven-section__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

@media (min-width: 1150px) {
    .seven-section__title {
        font-weight: 700;
        position: relative;
        font-size: 36px;
        letter-spacing: -0.03em;
        color: #3b3b3b;
        text-align: center;
        padding-left: 460px;
    }

    .seven-section__line {
        position: absolute;
        left: unset;
        transform: none;
        content: "";
        width: 350px;
        height: 5px;
        margin-top: 10px;
        background: #d9d9d9;
    }
}

.seven-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

.work-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    z-index: 5;
}

@media (min-width: 560px) {
    .work-plan {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        z-index: 5;
    }
}

@media (min-width: 1150px) {
    .work-plan {
        position: absolute;
        left: 50%;
        transform: translateX(-80px);
        top: 180px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        z-index: 5;
    }
}

.work-plan__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: 100%;
}

@media (min-width: 1000px) {
    .work-plan__item {
        flex-direction: row;
        align-items: flex-end;

    }
}

@media (min-width: 1000px) {
    .work-plan__item--second {
        margin-left: 100px;
    }
}

.work-plan__number {
    font-weight: 800;
    font-size: 100px;
    line-height: 80%;
    color: #FFFFFF;
    text-shadow: 0px 4px 11px rgba(0, 0, 0, 0.25);
    width: 75px;
}

.work-plan__block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    height: 115px;
    padding: 17px;
    background: #FFFFFF;
    box-shadow: -2px 5px 20px 7px rgba(0, 0, 0, 0.25);
}

@media (min-width: 560px) {
    .work-plan__block {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 500px;
        height: 115px;
        padding: 17px 42px;
        background: #FFFFFF;
        box-shadow: -2px 5px 20px 7px rgba(0, 0, 0, 0.25);
        margin: 0;
    }
}

.work-plan__block--second {
    padding-left: 150px;
}

@media (min-width: 420px) {
    .work-plan__block--second {
        padding-left: 200px;
    }
}

.work-plan__item-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3B3B3B;
    margin-bottom: 5px;
}

.work-plan__item-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.06em;
    color: #3B3B3B;
}

.work-plan__item:nth-child(3) .work-plan__item-text {
    width: 60%;
}

@media (min-width: 560px) {
    .work-plan__item-text {
        font-weight: 500;
        font-size: 12px;
        line-height: 130%;
        letter-spacing: -0.06em;
        color: #3B3B3B;
        width: unset;
    }
}

.seven-section__button {
    margin-top: 10px;
}

.work-plan__item-img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.work-plan__item-img--first {
    max-width: 20%;
}

.work-plan__item-img--second {
    left: 0;
    max-width: 35%;
}

.work-plan__item-img--third {
    max-width: 40%;
}

.seven-section__circle1 {
    position: absolute;
    right: 50%;
    top: 60px;
    transform: translateX(720px);
    content: "";
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px dashed #8c8a8b;
}

.seven-section__circle2 {
    position: absolute;
    right: 50%;
    top: 5px;
    transform: translateX(770px);
    content: "";
    width: 448px;
    height: 448px;
    border-radius: 50%;
    border: 2px dashed #c7c7c7;
}

.seven-section__circle3 {
    position: absolute;
    right: 50%;
    top: 600px;
    transform: translateX(-335px);
    content: "";
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 2px dashed #8c8a8b;
    z-index: 15;
}

.seven-section__circle4 {
    position: absolute;
    right: 50%;
    top: 560px;
    transform: translateX(-300px);
    content: "";
    width: 322px;
    height: 322px;
    border-radius: 50%;
    border: 2px dashed #c7c7c7;
    z-index: 5;
}

@media (min-width: 1000px) {
    .seven-section__circle1 {
        position: absolute;
        right: 50%;
        top: 60px;
        transform: translateX(720px);
        content: "";
        width: 340px;
        height: 340px;
        border-radius: 50%;
        border: 2px dashed #8c8a8b;
    }

    .seven-section__circle2 {
        position: absolute;
        right: 50%;
        top: 5px;
        transform: translateX(770px);
        content: "";
        width: 448px;
        height: 448px;
        border-radius: 50%;
        border: 2px dashed #c7c7c7;
    }

    .seven-section__circle3 {
        position: absolute;
        right: 50%;
        top: 450px;
        transform: translateX(-400px);
        content: "";
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 2px dashed #8c8a8b;
        z-index: 15;
    }

    .seven-section__circle4 {
        position: absolute;
        right: 50%;
        top: 410px;
        transform: translateX(-360px);
        content: "";
        width: 322px;
        height: 322px;
        border-radius: 50%;
        border: 2px dashed #c7c7c7;
        z-index: 5;
    }
}

@media (min-width: 1150px) {
    .seven-section__circle1 {
        position: absolute;
        right: 50%;
        top: 60px;
        transform: translateX(845px);
        content: "";
        width: 340px;
        height: 340px;
        border-radius: 50%;
        border: 2px dashed #8c8a8b;
    }

    .seven-section__circle2 {
        position: absolute;
        right: 50%;
        top: 5px;
        transform: translateX(900px);
        content: "";
        width: 448px;
        height: 448px;
        border-radius: 50%;
        border: 2px dashed #c7c7c7;
    }

    .seven-section__circle3 {
        position: absolute;
        right: 50%;
        top: 585px;
        transform: translateX(-482px);
        content: "";
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 2px dashed #8c8a8b;
        z-index: 15;
    }

    .seven-section__circle4 {
        position: absolute;
        right: 50%;
        top: 545px;
        transform: translateX(-440px);
        content: "";
        width: 322px;
        height: 322px;
        border-radius: 50%;
        border: 2px dashed #c7c7c7;
        z-index: 5;
    }
}

.map-block {
    position: relative;
    width: 100%;
    height: 860px;
}

@media (min-width: 640px) {
    .map-block {
        height: 660px;
    }
}

@media (min-width: 1150px) {
    .map-block {
        margin-top: 510px;
    }

    .map-section--collection .map-block {
        margin-top: 0;
        z-index: 1000;
    }

    .map-section--catalog .map-block {
        margin-top: 0;
        z-index: 1000;
    }
}

.map__overlay {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 20.16%, rgba(255, 255, 255, 0) 52.72%, #FFFFFF 100%), linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 25.88%, rgba(255, 255, 255, 0) 80.4%, #FFFFFF 100%);
    z-index: 1;
    pointer-events: none;
}

.map-block__contacts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: url(/img/map-contacts.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 45px 70px;
    border-radius: 10px;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.25);
    max-width: 335px;
    z-index: 10;
}

@media (min-width: 640px) {
    .map-block__contacts {
        transform: translate(-300px, -50%);
    }
}

@media (min-width: 840px) {
    .map-block__contacts {
        transform: translate(-400px, -50%);
    }
}

@media (min-width: 1150px) {
    .map-block__contacts {
        transform: translate(-500px, -50%);
    }
}

.map-block__title {
    position: relative;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #3B3B3B;
    margin-bottom: 50px;
}

.map-block__title::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 52px;
    background: #f90000;
}

.map-block__contacts-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.map-block__contacts-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.map-block__contacts-marker {
    position: relative;
    content: "";
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #F46372 0%, #A71E2E 100%);
    flex-shrink: 0;
}

.map-block__contact {
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
    color: #3B3B3B;
    text-decoration: none;
    transition: 0.3s;
}

.map-block__contact:hover {
    color: #f90000;
}

.map-block__subtitle {
    font-weight: 700;
    font-size: 19px;
    line-height: 22px;
    color: #3B3B3B;
    margin-bottom: 5px;
}

.map-block__text {

    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #3B3B3B;
    margin-bottom: 15px;
}

.seven-section__image1 {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(430px);
    content: "";
    background: url(/img/seven-image1.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 480px;
    height: 300px;
    z-index: 20;
}

.seven-section__image2 {
    position: absolute;
    left: 50%;
    top: 312px;
    transform: translateX(500px);
    content: "";
    background: url(/img/seven-image2.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 320px;
    height: 205px;
    z-index: 20;
}

/* map */
/* --------------------------------------------------------------- */
[class*="ground-pane"] {
    filter: grayscale(1);
}

/* footer */
/* --------------------------------------------------------------- */

footer {
    position: relative;
    background: linear-gradient(180deg, #8092A0 0%, #535D66 100%);
    width: 100%;
}

.footer__content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
}

.policy {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.3s;
}

.logo--footer {
    display: flex;
    align-items: center;
    width: 70px;
    padding: 3px 0;
    cursor: pointer;
}

.policy:hover {
    color: #f90000;
}

/* popup_form */
/* ----------------------------------------------------------------- */

.popup__ring-order {
    position: absolute;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.popup__ring-order.active {
    z-index: 1000;
    visibility: visible;
    opacity: 1;
}

.popup__form {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: #ffffff;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/img/app-circle.svg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 50%;
}

@media (min-width: 640px) {
    .popup__form {
        width: 400px;
        height: 400px;
    }
}

.popup__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3b3b3b;
}

@media (min-width: 640px) {
    .popup__title {
        font-size: 24px;
    }
}

.popup__text {
    font-weight: 500;
    font-size: 13px;
    line-height: 170%;
    text-align: center;
    letter-spacing: -0.03em;
    color: #3b3b3b;
}

.close-btn {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    background: transparent;
    cursor: pointer;
}

.popup-btn {
    margin-top: 15px;
}

@media (min-width: 640px) {
    .popup-btn {
        margin-top: 25px;
    }
}

.close-btn:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    top: 50%;
    right: -50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #3b3b3b;
    transition: all 300ms ease-in-out;
}

.close-btn::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    top: 50%;
    right: -50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #3b3b3b;
    transition: all 300ms ease-in-out;
}

.close-btn:hover::before,
.close-btn:hover::after {
    background-color: #B61023;
}

.popup__overlay {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(141, 141, 141, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
}

/* popup_notice */
/* ----------------------------------------------------------------- */

.popup__notice-wrapper {
    position: absolute;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.popup__notice-wrapper.active {
    z-index: 1000;
    visibility: visible;
    opacity: 1;
}

.popup__notice {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: #ffffff;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/img/app-circle.svg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #B61023;
    text-align: center;
}

@media (min-width: 640px) {
    .popup__notice {
        width: 400px;
        height: 400px;
    }
}

.popup__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #3b3b3b;
}

@media (min-width: 640px) {
    .popup__title {
        font-size: 24px;
    }
}

.popup__overlay {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(141, 141, 141, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
}

/* popup collection card */
/* ----------------------------------------------------------------- */

.popup__collection-card {
    position: absolute;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.popup__collection-card.active {
    z-index: 1000;
    visibility: visible;
    opacity: 1;
}

.popup__collection-card-content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    width: 95%;
    min-height: 510px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    z-index: 1000;
    text-align: center;
    padding: 20px;
}

@media (min-width: 550px) {
    .popup__collection-card-content {
        padding: 30px;
    }
}

.popup__collection-card .close-btn {
    top: 10px;
    right: 10px;
}

.logo--popup {
    padding: 0;
}

.popup__collection-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

@media (min-width: 550px) {
    .popup__collection-card-wrapper {
        flex-direction: row;
    }
}

.collection-card-image__preview-wrapper {
    position: relative;
    display: flex;
    width: 120px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
    border: .1px solid var(--color-lightlightgrey);
}

.collection-card-image__fullsize-wrapper {
    position: relative;
    display: none;
    width: 210px;
    height: 320px;
    flex-shrink: 0;
    border: .1px solid var(--color-lightlightgrey);
}

@media (min-width: 1080px) {
    .collection-card-image__fullsize-wrapper {
        display: flex;
    }
}

.collection-card-image__fullsize-wrapper img {
    object-fit: cover;
}

.collection-card-properties__wrapper {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (min-width: 550px) {
    .collection-card-properties__wrapper {
        margin-left: 10px;
    }
}

.collection-card-properties__header {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;

}

@media (min-width: 700px) {
    .collection-card-properties__header {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.card-properties__header-item {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

@media (min-width: 700px) {
    .card-properties__header-item {
        gap: 10px;
    }

    .card-properties__header-item--model {
        margin-left: 20px;
        gap: 15px;
    }
}

.card-properties__header-subtitle {
    position: relative;
    display: block;
    font-size: 11px;
    font-family: inherit;
    color: var(--color-dark-grey);
    text-align: left;
    width: 100%;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.card-properties__header-subtitle--collection {
    color: var(--color-lightgrey);
}

.card-properties__header-title {
    position: relative;
    display: block;
    font-family: inherit;
    color: var(--color-dark-grey);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 100%;
    font-size: 30px;
    text-align: left;
    width: 100%;
}

.card-properties__header-title--collection {
    color: var(--color-lightgrey);
    font-size: 40px;
    font-weight: 600;
}

.collection-card-properties__description {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: var(--color-dark-grey);
    text-align: left;
    width: 100%;
}

@media (min-width: 550px) {
    .collection-card-properties__description {
        font-size: 13px;
        line-height: 18px;
    }
}

.collection-card-properties-params__wrapper {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.card-properties-params__title {
    position: relative;
    display: flex;
    font-weight: 500;
    font-size: 13px;
    line-height: 28px;
    letter-spacing: 0.1em;
    color: var(--color-dark-grey);
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}

.card-properties-params__list {
    position: relative;
    width: 100%;
    max-width: 410px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
}

.card-properties-params__item {
    position: relative;
    display: flex;
    cursor: pointer;
    color: var(--color-lightgrey);
    font-size: 13px;
    font-weight: 400;
    width: 130px;
}

/* catalog section */
/* ---------------------------------------------------------------- */

.catalog-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

.catalog-section__content {
    position: relative;
    margin: 35px auto;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 1080px;
    width: 100%;
    padding: 0 10px;
}

.catalog-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: left;
    width: 100%;
    padding: 0 10px 60px 10px;
}

@media (min-width: 1000px) {
    .catalog-section__title {
        font-size: 36px;
    }
}

.catalog-section__line {
    position: absolute;
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

.catalog-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

.catalog__list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 30px;
    width: 100%;
    max-width: 1080px;
    padding: 0 10px;
}

.catalog-list__item {
    position: relative;
    display: flex;
    width: 100%;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.catalog-list__item:hover {
    transform: scale(1.02);
}

.catalog-list-item__image {
    position: relative;
    width: 100%;
    line-height: 0;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
}

.catalog-list-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-list-item__title {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 14px;
    background-color: var(--color-white);
    color: var(--color-dark-grey);
    border-radius: 5px;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.25);
}

/* privat policy section */
/* ---------------------------------------------------------------- */

.policy-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

.policy-section__content {
    position: relative;
    margin: 35px auto;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 1080px;
    width: 100%;
    padding: 0 10px;
}

.policy-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: left;
    width: 100%;
    padding: 0 10px 60px 10px;
}

@media (min-width: 1000px) {
    .policy-section__title {
        font-size: 36px;
    }
}

.policy-section__line {
    position: absolute;
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

.policy-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

.policy__text {
    padding: 0 10px;
}

.policy__text h3 {
    margin: 10px 0;
}

.policy__text p {
    margin: 5px 0;
    font-size: 14px;
}

@media (min-width: 1000px) {
    .policy__text p {
        margin: 5px 0;
        font-size: 14px;
    }
}

/* collection section */
/* ---------------------------------------------------------------- */

.collection-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

.collection-section__content {
    position: relative;
    margin: 35px auto;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 1080px;
    width: 100%;
    padding: 0 10px;
}

.collection-section__title {
    font-weight: 700;
    position: relative;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    color: #3b3b3b;
    text-align: center;
    width: 100%;
    padding: 0 10px 60px 10px;
}

@media (min-width: 1000px) {
    .collection-section__title {
        font-size: 36px;
        text-align: left;
    }
}

.collection-section__line {
    position: absolute;
    content: "";
    width: 350px;
    height: 5px;
    margin-top: 10px;
    background: #d9d9d9;
}

.collection-section__line::after {
    position: absolute;
    content: "";
    width: 95px;
    height: 5px;
    left: 0;
    top: 0;
    background: #f90000;
}

.collection__list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 30px;
    width: 100%;
    max-width: 1080px;
    padding: 0 10px;
}

.collection-list__item {
    position: relative;
    display: flex;
    width: 100%;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.collection-list__item:hover {
    transform: scale(1.02);
}

.collection-list-item__image {
    position: relative;
    width: 100%;
    line-height: 0;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
}

.collection-list-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-list-item__title {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 14px;
    background-color: var(--color-white);
    color: var(--color-dark-grey);
    border-radius: 5px;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.25);
}

.btn-card-popup {
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all 300ms ease-in-out;
}

@media (min-width: 1000px) {
    .btn-card-popup {
        opacity: 0;
        visibility: hidden;
    }
}

.btn-card-popup svg {
    pointer-events: none;
}

.collection-list__item:hover .btn-card-popup {
    opacity: 1;
    visibility: visible;
    transition: all 300ms ease-in-out;
}

/* breadcrumbs */
/* ---------------------------------------------------------------- */

.breadcrumbs {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--color-lightgrey);
    font-weight: 400;
    flex-wrap: wrap;
    padding: 0 10px;
}

.breadcrumbs li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

@media (min-width: 550px) {
    .breadcrumbs {
        gap: 20px;
    }

    .breadcrumbs li {
        gap: 20px;
    }
}

.breadcrumbs li span {
    color: var(--color-red);
}

.breadcrumbs li a {
    transition: color 200ms ease-in-out;
}

.breadcrumbs li:hover a {
    color: var(--color-dark-grey);
}