@font-face {
    font-family: "SF Pro";
    src: url('../fonts/SF-Pro-Display-Thin.otf');
    font-weight: 100;
}
@font-face {
    font-family: "SF Pro";
    src: url('../fonts/SF-Pro-Display-Ultralight.otf');
    font-weight: 200;
}
@font-face {
    font-family: "SF Pro";
    src: url('../fonts/SF-Pro-Display-Light.otf');
    font-weight: 300;
}
@font-face {
    font-family: "SF Pro";
    src: url('../fonts/SF-Pro-Display-Regular.otf');
    font-weight: 400;
}
@font-face {
    font-family: "SF Pro";
    src: url('../fonts/SF-Pro-Display-Medium.otf');
    font-weight: 500;
}
@font-face {
    font-family: "SF Pro";
    src: url('../fonts/SF-Pro-Display-Semibold.otf');
    font-weight: 600;
}
@font-face {
    font-family: "SF Pro";
    src: url('../fonts/SF-Pro-Display-Bold.otf');
    font-weight: 700;
}
@font-face {
    font-family: "SF Pro";
    src: url('../fonts/SF-Pro-Display-Black.otf');
    font-weight: 800;
}

html {
    font-size: calc(100vw / 1440 * 10);
}
body {
    font-family: 'SF Pro';
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #323232;
    background: #FCFCFC;
}
a, h1, h2, h3, h4, h5, p, span, button, ul, li {
    padding: 0;
    margin: 0;
    background: transparent;
    text-decoration: none;
    border: none;
    transition: all .2s linear;
    color: #323232;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 132rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
div {
    transition: all .2s linear;
}
path, rect, circle {
    transition: all .2s linear;
}
main {
    display: flex;
    flex-direction: column;
    padding-top: 16.5rem;
}
svg {
    vertical-align: middle;
    overflow: visible;
}

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #FCFCFC;
    padding: 2rem 0 2.5rem 0;
}
.header-container {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.header-top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.header-phone {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    gap: 0.6rem;
    border-radius: 1rem;
    background: rgba(199, 148, 71, 0.15);
    color: #C79447;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.header-phone svg {
    width: 2.4rem;
    height: auto;
}
.header-email {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.header-email svg {
    width: 2.4rem;
    height: auto;
}
.logo {
    display: flex;
    width: 33.3rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
.logo img {
    width: 100%;
}
.logo img:nth-child(2) {
    display: none;
}
.header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    padding-bottom: 1rem;
}
.header-buyer {
    color: #C79447;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 510;
    line-height: 120%;
}
.header-time {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.header-time svg {
    width: 1.9rem;
    height: auto;
}
.header-time p {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-bottom nav ul {
    display: flex;
    gap: 4.4rem;
    align-items: center;
}
.header-bottom nav ul li {
    display: flex;
    list-style: none;
}
.header-bottom nav ul li a {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.header-buttons {
    display: flex;
    gap: 2.4rem;
    align-items: center;
}
.header-buttons a {
    display: flex;
}
.header-buttons a svg {
    width: 2.4rem;
    height: auto;
}
.burger-open {
    display: none;
}
.mobile_menu {
    display: none;
}
header.fixed .logo img:nth-child(1) {
    display: none;
}
header.fixed .logo img:nth-child(2) {
    display: block;
}
header.fixed .header-email {
    display: none;
}
header.fixed .header-time {
    display: none;
}
header.fixed .logo {
    width: 26.2rem;
    bottom: 0;
    margin: auto;
}
header.fixed .header-top {
    align-items: center;
}
header.fixed .header-info {
    padding-bottom: 0;
}
header.fixed .header-container {
    gap: 1.5rem;
}
.header-top .header-buttons {
    display: none;
}

@media screen and (max-width: 992px) {
    html {
        font-size: calc(100vw / 375 * 10);
    }
    .container {
        max-width: 33.5rem;
    }
    main {
        padding-top: 5.4rem;
    }
    .header-bottom {
        display: none;
    }
    .header-email {
        display: none;
    }
    .header-info {
        display: none;
    }
    .logo {
        width: 14.4rem;
        bottom: 0;
        margin: auto;
    }
    header {
        padding: 1.5rem 0;
    }
    .header-top {
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }
    .header-phone {
        padding: 0;
        font-size: 0;
        background: transparent;
    }
    .header-phone svg {
        width: 2.2rem;
    }
    .header-top .header-buttons {
        display: flex;
        margin-left: auto;
        gap: 1rem;
    }
    .burger-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 2.4rem;
        height: 1.7rem;
        gap: 0.8rem;
        position: relative;
        z-index: 999;
    }
    .bar {
        height: 1px;
        width: 2.4rem;
        background: #000;
        border-radius: 0.2rem;
    }
    .bar:nth-child(3) {
        max-width: 1.2rem;
    }
    .change .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-0.7rem, 0.6rem);
    }
    .change .bar:nth-child(2) {
        opacity: 0;
    }
    .change .bar:nth-child(3) {
        transform: rotate(45deg) translate(-0.5rem, -0.5rem);
        max-width: 2.4rem;
    }
    header.fixed .logo img:nth-child(2) {
        display: none;
    }
    header.fixed .logo img:nth-child(1) {
        display: block;
    }
    header.fixed .logo {
        width: 14.4rem;
    }

}

/* miro_banner */

.miro_banner {
    position: relative;
    height: 61.4rem;
    display: flex;
    margin-bottom: 8rem;
}
.miro_banner-fon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.miro_banner::before {
    content: '';
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(259deg, rgba(47, 35, 17, 0.00) 25.94%, #2F2311 92.75%);
}
.miro_banner-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    padding-right: 4rem;
    padding-bottom: 8.2rem;
}
.miro_banner-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.miro_banner-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
}
.miro_banner-title {
    color: #FFF;
    text-shadow: 0 0 9.1px #2F2311;
    font-family: "Cormorant SC";
    font-size: 6.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    max-width: 82.9rem;
}
.miro_banner-subtitle {
    color: #FFF;
    text-shadow: 0 0 9.1px #2F2311;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 46.1rem;
}
.miro_banner-slider {
    width: 100%;
    max-width: 39.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.miro_banner_swiper {
    width: 100%;
}
.miro_banner_swiper .swiper-slide {
    height: auto;
}
.miro_banner_swiper-product {
    border-radius: 1rem;
    border: 1px solid #F5F3F1;
    background: linear-gradient(248deg, rgba(245, 243, 241, 0.90) 40.35%, rgba(245, 243, 241, 0.50) 72.21%);
    display: flex;
    position: relative;
}
.miro_banner_swiper-product__tag {
    border-radius: 0 0.5rem 0.5rem 0;
    background: #C79447;
    padding: 0.2rem 0.9rem;
    color: #FFF;
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 510;
    line-height: 100%;
    letter-spacing: -0.042rem;
    position: absolute;
    top: 1.2rem;
    left: -1px;
    z-index: 3;
}
.miro_banner_swiper-product__img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 17rem;
    min-width: 17rem;
    padding: 1.2rem;
    height: 21.5rem;
}
.miro_banner_swiper-product__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.miro_banner_swiper-product__col {
    padding: 2rem 1.1rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.miro_banner_swiper-product__title {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.miro_banner_swiper-product__description {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.miro_banner_swiper-product__buy {
    width: 20.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 1rem;
    border: 1px solid #323232;
    background: #F5F3F1;
    backdrop-filter: blur(5px);
    padding: 1.8rem 3.2rem;
    margin-top: 1rem;
}
.miro_banner_swiper-product__buy svg {
    width: 2.4rem;
    height: auto;
}
.miro_banner_swiper-product__buy p {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.miro_banner-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.miro_banner-pagination .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 100%;
    margin: 0 !important;
    opacity: 0.4;
    background: #F5F3F1;
}
.miro_banner-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}
.miro_banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 2rem;
    gap: 0.7rem;
    width: 11rem;
}
.miro_banner-link p {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.miro_banner-link svg {
    width: 1rem;
    height: auto;
}
.miro_banner-title br:nth-child(1) {
    display: none;
}

@media screen and (max-width: 992px) {
    .miro_banner {
        height: 60.2rem;
        margin-bottom: 4rem;
    }
    .miro_banner-container {
        flex-direction: column;
        align-items: center;
        padding-right: 0;
        padding-bottom: 5.2rem;
        justify-content: flex-end;
    }
    .miro_banner-row {
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
    }
    .miro_banner-name {
        align-items: center;
        gap: 0.5rem;
    }
    .miro_banner-title {
        text-align: center;
        font-size: 3.4rem;
        max-width: 82.9rem;
    }
    .miro_banner-title br:nth-child(1) {
        display: block;
    }
    .miro_banner-title br:nth-child(2) {
        display: none;
    }
    .miro_banner-subtitle {
        font-size: 1.4rem;
        text-align: center;
        max-width: 19.3rem;
    }
    .miro_banner-slider {
        max-width: 27.4rem;
    }
    .miro_banner_swiper-product__tag {
        font-size: 1rem;
        letter-spacing: -0.03rem;
        top: 1rem;
    }
    .miro_banner_swiper-product__img {
        width: 10.4rem;
        min-width: 10.4rem;
        padding: 1rem;
        height: 15.3rem;
    }
    .miro_banner_swiper-product__col {
        padding: 1.5rem 1.1rem 1.8rem 0;
        gap: 0.5rem;
    }
    .miro_banner_swiper-product__title {
        font-size: 1.4rem;
        max-width: 14.9rem;
    }
    .miro_banner_swiper-product__description {
        font-size: 1.2rem;
        max-width: 14.9rem;
    }
    .miro_banner_swiper-product__buy {
        width: 15.2rem;
        padding: 1rem 3.2rem;
        margin-top: 0.7rem;
    }
    .miro_banner_swiper-product__buy p {
        font-size: 1.2rem;
    }
    .miro_banner-pagination {
        gap: 0.5rem;
    }
    .miro_banner-pagination .swiper-pagination-bullet {
        width: 0.6rem;
        height: 0.6rem;
    }
    .miro_banner-link {
        bottom: 1rem;
        gap: 0.5rem;
        width: 10rem;
    }
    .miro_banner-link p {
        font-size: 1.4rem;
    }
}

/* miro_collection */

.miro_collection {
    margin-bottom: 8rem;
}
.miro_collection-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 111.7rem;
}
.title {
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
}
.miro_collection-main {
    display: flex;
    flex-direction: column;
}
.miro_collection-slider {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.miro_collection_swiper {
    width: 100%;
}
.miro_collection_swiper .swiper-slide {
    height: auto;
}
.product_item {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.product_item-img__block {
    position: relative;
    height: 26rem;
    min-height: 26rem;
}
.product_item-labels {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 1.5rem;
}
.product_item-hit {
    padding: 0.4rem 0.9rem;
    border-radius: 0 0.5rem 0.5rem 0;
    background: #C79447;
    color: #FFF;
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 510;
    line-height: 100%;
    letter-spacing: -0.042rem;
}
.product_item-sale {
    border-radius: 0.5rem;
    border: 1px solid #C79447;
    background: #FCFCFC;
    padding: 0.4rem 0.5rem;
    color: #C79447;
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 510;
    line-height: 100%;
    letter-spacing: -0.042rem;
}
.product_item-img {
    border-radius: 1rem;
    background: #F5F3F1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    height: 100%;
}
.product_item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product_item-addtocart {
    display: flex;
    width: 4.6rem;
    height: 4.6rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.4rem;
    background: #323232;
    right: 1.5rem;
    z-index: 2;
    bottom: -2.3rem;
    opacity: 0;
    position: absolute;
}
.product_item-addtocart svg {
    width: 2.4rem;
    height: auto;
}
.product_item:hover .product_item-addtocart {
    opacity: 1;
}
.product_item-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    justify-content: space-between;
    height: 100%;
}
.product_item-title {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.product_item-price__block {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.product_item-price {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.product_item-oldprice {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: line-through;
}
.miro_collection-pagination {
    display: none;
}

@media screen and (max-width: 992px) {
    .miro_collection {
        position: relative;
        overflow: hidden;
    }
    .miro_collection-container {
        gap: 2rem;
        max-width: 33.5rem;
    }
    .title {
        font-size: 2rem;
    }
    .miro_collection-main {
        gap: 3rem;
    }
    .miro_collection_swiper {
        overflow: visible;
    }
    .miro_collection_swiper .swiper-slide {
        position: relative;
    }
    .miro_collection_swiper .swiper-slide::before {
        content: '';
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        left: 0;
        transition: .3s all;
        border-radius: 1rem;
        background: linear-gradient(90deg, rgba(252, 252, 252, 0.00) 0%, #FCFCFC 42.31%);
        z-index: 5;
    }
    .miro_collection_swiper .swiper-slide.swiper-slide-active::before {
        opacity: 0;
        display: none;
    }
    .miro_collection_swiper .swiper-slide.swiper-slide-prev::before {
        opacity: 0;
        display: none;
    }
    .miro_collection_swiper .swiper-slide.swiper-slide-next::before {
        opacity: 0;
        display: none;
    }
    .product_item-img__block {
        height: 13rem;
        min-height: 13rem;
    }
    .product_item-labels {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        top: 1rem;
    }
    .product_item-hit {
        padding: 0.2rem 0.9rem;
        font-size: 1rem;
        letter-spacing: -0.03rem;
    }
    .product_item-sale {
        padding: 0.3rem 0.5rem;
        margin-left: auto;
        font-size: 1rem;
        letter-spacing: -0.03rem;
    }
    .product_item-img {
        padding: 1rem;
    }
    .product_item-addtocart {
        display: none;
    }
    .product_item-main {
        gap: 0.8rem;
    }
    .product_item-title {
        font-size: 1.1rem;
        letter-spacing: -0.011rem;
    }
    .product_item-price__block {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .product_item-price {
        font-size: 1.4rem;
    }
    .product_item-oldprice {
        font-size: 1rem;
    }
    .miro_collection-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
    }
   .miro_collection-pagination .swiper-pagination-bullet {
        margin: 0;
        width: 3.3rem;
        background: #ECDDC6;
        height: 2px;
        opacity: 1;
        border-radius: 1rem;
    }
    .miro_collection-pagination .swiper-pagination-bullet-active {
        background: #C79447;
    }
}

/* miro_products */

.miro_products {
    margin-bottom: 12rem;
}
.miro_products-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 135.6rem;
    padding: 0 1.8rem;
    overflow: hidden;
}
.miro_products_swiper {
    width: 100%;
    overflow: visible;
}
.miro_products_swiper .swiper-slide {
    height: auto;
}
.miro_products_slide {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}
.miro_products_slide-images {
    width: 65rem;
    min-width: 65rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.miro_products_slide-images__row {
    display: flex;
    align-items: center;
    position: relative;
}
.miro_products_slide-images__prev {
    display: flex;
    width: 3.6rem;
    height: 3.6rem;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #ECDDC6;
    background: #FCFCFC;
    position: absolute;
    z-index: 3;
    left: -1.8rem;
}
.miro_products_slide-images__prev svg {
    width: 0.6rem;
    height: auto;
}
.miro_products_slide-images__next {
    display: flex;
    width: 3.6rem;
    height: 3.6rem;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #ECDDC6;
    background: #FCFCFC;
    position: absolute;
    z-index: 3;
    right: -1.8rem;
}
.miro_products_slide-images__next svg {
    width: 0.6rem;
    height: auto;
}
.miro_products_slide_swiper {
    width: 100%;
    height: 65rem;
}
.miro_products_slide_swiper .swiper-slide {
    height: auto;
}
.miro_products_slide_swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    background: #F5F3F1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.miro_products_slide_swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.miro_products_slide-images-video .miro_products_slide_swiper-slide svg {
    width: 4rem;
    height: auto;
    position: absolute;
    z-index: 4;
}
.miro_products_slide-images-video .miro_products_slide_swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.miro_products_slide-images-video .miro_products_slide_swiper-slide::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    border-radius: 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.miro_products_slide-images__thumbs-col {
    display: flex;
    flex-direction: column;
}
.miro_products_slide-images__thumbs {
    width: 100%;
    height: 11.9rem;
}
.miro_products_slide-images__thumbs .swiper-slide {
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    cursor: pointer;
    transition: .3s all;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
}
.miro_products_slide-images__thumbs .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.miro_products_slide-images__thumbs .swiper-slide.swiper-slide-thumb-active {
    opacity: .5;
}
.miro_products_slide-images__thumbs .miro_products_slide-images__thumbs-video svg {
    width: 2.1rem;
    height: auto;
    position: absolute;
    z-index: 4;
}
.miro_products_slide-images__thumbs .miro_products_slide-images__thumbs-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.miro_products_slide-images__thumbs-video::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    border-radius: 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.miro_products_slide-images__thumbs-pagination {
    display: none;
}
.miro_products_slide-main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
}
.miro_products_slide-name {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.miro_products_slide-title {
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.miro_products_slide-description {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.miro_products_slide-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.miro_products_slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.miro_products_slide-sale {
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--accent, #C79447);
    background: #FCFCFC;
    color: var(--accent, #C79447);
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.042rem;
}
.miro_products_slide-hit {
    color: #FFF;
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.042rem;
    padding: 0.4rem 0.9rem;
    border-radius: 0.5rem;
    background: var(--accent, #C79447);
}
.miro_products_slide-form__col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.miro_products_slide-form__price-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.miro_products_slide-form__price {
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.miro_products_slide-form__oldprice {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration-line: line-through;
}
.miro_products_slide-form__aviable {
    color: var(--accent, #C79447);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.miro_products_slide-form__buttons {
    display: flex;
    gap: 1rem;
}
.miro_products_slide-form__addtocart {
    display: flex;
    width: 40.7rem;
    padding: 1.8rem 3.2rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--black, #323232);
    background: #FCFCFC;
    backdrop-filter: blur(5px);
}
.miro_products_slide-form__addtocart svg {
    width: 2.4rem;
    height: auto;
}
.miro_products_slide-form__addtocart p {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 510;
    line-height: 120%;
}
.miro_products_slide-form__wishlist {
    display: flex;
    height: 6rem;
    padding: 1.8rem 3.2rem;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    border: 1px solid var(--black, #323232);
    background: #FCFCFC;
    backdrop-filter: blur(5px);
}
.miro_products_slide-form__wishlist svg {
    width: 2.1rem;
    height: auto;
}
.miro_products_slide-specifications {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.miro_products_slide-specifications__name {
    border-bottom: 1px solid #ECDDC6;
    padding-bottom: 1rem;
}
.miro_products_slide-specifications__name p {
    color: var(--accent, #C79447);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 510;
    line-height: normal;
    text-transform: uppercase;
}
.miro_products_slide-specifications__col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.miro_products_slide-specifications__row {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}
.miro_products_slide-specifications__row p {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.miro_products_slide-specifications__row p:nth-child(1) {
    min-width: 8rem;
}
.miro_products-navigation {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}
.miro_products-prev {
    color: #C79447;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.miro_products-pagination {
    position: absolute;
    bottom: auto !important;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 50% !important;
}
.miro_products-pagination .swiper-pagination-bullet {
    width: 3.3rem;
    height: 2px;
    border-radius: 1rem;
    background: #ECDDC6;
    opacity: 1;
    margin: 0 !important;
}
.miro_products-pagination .swiper-pagination-bullet-active {
    background: #C79447;
}
.miro_products-next {
    color: #C79447;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.miro_products_slide > .miro_products_slide-title {
    display: none;
}

@media screen and (max-width: 992px) {
    .miro_products {
        margin-bottom: 8rem;
    }
    .miro_products-container {
        max-width: 35.9rem;
        padding: 0 1.2rem;
    }
    .miro_products_slide {
        flex-direction: column;
        gap: 2rem;
    }
    .miro_products_slide-images {
        width: 100%;
        min-width: 100%;
        gap: 1.3rem;
    }
    .miro_products_slide-images__prev {
        width: 2.4rem;
        height: 2.4rem;
        left: -1.2rem;
    }
    .miro_products_slide-images__next {
        width: 2.4rem;
        height: 2.4rem;
        right: -1.2rem;
    }
    .miro_products_slide_swiper {
        height: 33.5rem;
    }
    .miro_products_slide-images-video .miro_products_slide_swiper-slide svg {
        width: 2rem;
    }
    .miro_products_slide-images__thumbs-col {
        gap: 2rem;
    }
    .miro_products_slide-images__thumbs {
        height: 8.8rem;
    }
    .miro_products_slide-images__thumbs .miro_products_slide-images__thumbs-video svg {
        width: 2.1rem;
    }
    .miro_products_slide-images__thumbs-pagination {
        display: flex;
        gap: 0.7rem;
        justify-content: center;
        align-items: center;
    }
    .miro_products_slide-images__thumbs-pagination .swiper-pagination-bullet {
        width: 3.3rem;
        height: 2px;
        opacity: 1;
        background: #ECDDC6;
        border-radius: 1rem;
        margin: 0 !important;
    }
    .miro_products_slide-images__thumbs-pagination .swiper-pagination-bullet-active {
        background: #C79447;
    }
    .miro_products_slide-main {
        gap: 1.5rem;
    }
    .miro_products_slide-name {
        order: 2;
    }
    .miro_products_slide-title {
        font-size: 2rem;
        text-align: center;
        display: none;
    }
    .miro_products_slide > .miro_products_slide-title {
        display: block;
    }
    .miro_products_slide-description {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    .miro_products_slide-description br {
        display: none;
    }
    .miro_products_slide-tags {
        gap: 0.7rem;
    }
    .miro_products_slide-sale {
        padding: 0.3rem 0.7rem;
        font-size: 1rem;
        letter-spacing: -0.03rem;
    }
    .miro_products_slide-hit {
        font-size: 1rem;
        letter-spacing: -0.042rem;
        padding: 0.3rem 0.5rem;
    }
    .miro_products_slide-form__col {
        gap: 1rem;
    }
    .miro_products_slide-form__price-block {
        gap: 0.5rem;
    }
    .miro_products_slide-form__price {
        font-size: 2rem;
    }
    .miro_products_slide-form__oldprice {
        font-size: 1.2rem;
    }
    .miro_products_slide-form__aviable {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .miro_products_slide-form__addtocart {
        width: 100%;
        padding: 1rem 3.2rem;
    }
    .miro_products_slide-form__addtocart p {
        font-size: 1.2rem;
    }
    .miro_products_slide-form__wishlist {
        height: 4.4rem;
        padding: 1.3rem 2rem;
    }
    .miro_products_slide-specifications {
        order: 3;
        gap: 1.5rem;
    }
    .miro_products_slide-specifications__name {
        padding-bottom: 0.8rem;
    }
    .miro_products_slide-specifications__name p {
        font-size: 1.2rem;
    }
    .miro_products_slide-specifications__row {
        gap: 1rem;
    }
    .miro_products_slide-specifications__row p {
        font-size: 1.1rem;
    }
    .miro_products_slide-specifications__row p:nth-child(1) {
        min-width: 10.5rem;
    }
    .miro_products-prev {
        font-size: 1.1rem;
        text-align: left;
        max-width: 7.6rem;
    }
    .miro_products-pagination {
        gap: 0.5rem;
        width: 15rem !important;
    }
    .miro_products-pagination .swiper-pagination-bullet {
        width: 2.3rem;
    }
    .miro_products-next {
        font-size: 1.1rem;
        text-align: right;
        max-width: 7.6rem;
    }
}

/* miro_blog */

.miro_blog {
    margin-bottom: 12rem;
}
.miro_blog-container {
    position: relative;
    display: flex;
    flex-direction: column;
}
.miro_blog-fon-1 {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 7rem;
    width: 70.3rem;
}
.miro_blog-fon-2 {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 62.3rem;
    width: 84.4rem;
}
.miro_blog-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.miro_blog-item__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    justify-content: space-between;
    padding: 2rem 2.8rem 4rem 6rem;
}
.miro_blog-item__title {
    font-family: "Cormorant SC";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.miro_blog-item__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.miro_blog-item__description {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.016rem;
    max-width: 47.5rem;
}
.miro_blog-item__read {
    color: #C79447;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 510;
    line-height: normal;
}
.miro_blog-item__img {
    height: 45rem;
    position: relative;
}
.miro_blog-item:nth-child(3) .miro_blog-item__img::before {
    content: '';
    background: linear-gradient(0deg, rgba(252, 252, 252, 0.00) 83.76%, #FCFCFC 100%);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.miro_blog-item:nth-child(4) .miro_blog-item__col {
    order: 2;
    padding: 2rem 4.4rem;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
.miro_blog-item:nth-child(4) .miro_blog-item__col .miro_blog-item__title {
    text-align: center;
}
.miro_blog-item:nth-child(4) .miro_blog-item__col .miro_blog-item__description {
    text-align: center;
    max-width: 40.1rem;
}
.miro_blog-item:nth-child(4) .miro_blog-item__col .miro_blog-item__info {
    align-items: center;
}
.miro_blog-item:nth-child(5) .miro_blog-item__img::before {
    content: '';
    background: linear-gradient(0deg, #FCFCFC 0%, rgba(252, 252, 252, 0.00) 21.25%);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.miro_blog-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.miro_blog-item__fon-1 {
    width: 6.7rem;
    position: absolute;
    top: 10rem;
    left: 17.4rem;
    z-index: -1;
}
.miro_blog-item__fon-2 {
    width: 6rem;
    position: absolute;
    right: 19.8rem;
    bottom: 8rem;
    z-index: -1;
}
.miro_blog-item__fon-3 {
    width: 7.9rem;
    position: absolute;
    left: 17.2rem;
    z-index: -1;
    bottom: 4.5rem;
}
.miro_blog-item__subtitle {
    font-family: "Cormorant SC";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
}
.miro_blog-item:nth-child(5) .miro_blog-item__col {
    padding: 4.7rem 19.8rem 4.7rem 17.2rem;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 5.4rem;
    position: relative;
}
.miro_blog-fon-1.mob {
    display: none;
}
.miro_blog-fon-2.mob {
    display: none;
}

@media screen and (max-width: 992px) {
    .miro_blog {
        margin-bottom: 8rem;
    }
    .miro_blog-fon-1 {
        display: none;
    }
    .miro_blog-fon-2 {
        display: none;
    }
    .miro_blog-item {
        display: flex;
        flex-direction: column;
    }
    .miro_blog-item__col {
        align-items: center;
        gap: 3.5rem;
        padding: 0 2rem;
        z-index: 3;
    }
    .miro_blog-item__title {
        font-size: 2.4rem;
        text-align: center;
    }
    .miro_blog-item__info {
        align-items: center;
        gap: 1rem;
    }
    .miro_blog-item__description {
        font-size: 1.2rem;
        text-align: center;
        letter-spacing: -0.012rem;
        max-width: 29.5rem;
    }
    .miro_blog-item__read {
        font-size: 1.1rem;
        margin-bottom: -2.3rem;
    }
    .miro_blog-item__img {
        height: 35rem;
    }
    .miro_blog-item:nth-child(4) .miro_blog-item__col {
        padding: 3.5rem 2rem 3rem 2rem;
        gap: 1.7rem;
    }
    .miro_blog-item:nth-child(4) .miro_blog-item__img {
        order: 3;
        height: 23.4rem;
    }
    .miro_blog-item:nth-child(4) .miro_blog-item__col .miro_blog-item__description {
        max-width: 30.5rem;
    }
    .miro_blog-item:nth-child(4) .miro_blog-item__read {
        margin-bottom: 0;
    }
    .miro_blog-item__fon-1 {
        width: 5rem;
        top: 3.5rem;
        left: 6.1rem;
    }
    .miro_blog-item__fon-2 {
        width: 4rem;
        right: 7.2rem;
        bottom: 7.5rem;
    }
    .miro_blog-item__fon-3 {
        width: 6.7rem;
        left: 7.7rem;
        bottom: 3.5rem;
    }
    .miro_blog-item__subtitle {
        font-size: 1.6rem;
    }
    .miro_blog-item:nth-child(5) .miro_blog-item__col {
        padding: 7.5rem 8.5rem 4.3rem 7rem;
        gap: 4.4rem;
    }
    .miro_blog-item__subtitle:nth-child(2) {
        margin-bottom: 4.4rem;
    }
    .miro_blog-item:nth-child(5) .miro_blog-item__img {
        height: 22rem;
    }
    .miro_blog-fon-1.mob {
        display: block;
        width: 100%;
        top: 1rem;
    }
    .miro_blog-fon-2.mob {
        display: block;
        width: 100%;
        top: 63.7rem;
    }
}

/* miro_banner2 */

.miro_banner2 {
    position: relative;
    height: 43.8rem;
    display: flex;
    margin-bottom: 10rem;
}
.miro_banner2-fon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.miro_banner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    background: linear-gradient(0deg, rgba(50, 50, 50, 0.10) 0%, rgba(50, 50, 50, 0.10) 100%);
}
.miro_banner2-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 2.9rem;
    z-index: 3;
}
.miro_banner2-logo {
    width: 52.5rem;
}
.miro_banner2-title {
    position: absolute;
    color: #FFF;
    font-family: "Cormorant SC";
    font-size: 5.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    bottom: 6rem;
    right: 0;
}

@media screen and (max-width: 992px) {
    .miro_banner2 {
        height: 21.6rem;
        margin-bottom: 8rem;
    }
    .miro_banner2-container {
        padding-top: 0.9rem;
    }
    .miro_banner2-logo {
        width: 17.6rem;
    }
    .miro_banner2-title {
        font-size: 2rem;
        bottom: 2rem;
    }
}

/* reviews */

.reviews {
    margin-bottom: 10rem;
}
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 0 1.8rem;
}
.reviews-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.reviews-slider {
    display: flex;
    align-items: center;
    position: relative;
}
.reviews-prev {
    display: flex;
    width: 3.6rem;
    height: 3.6rem;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #ECDDC6;
    background: #FCFCFC;
    position: absolute;
    z-index: 2;
    left: -1.7rem;
}
.reviews-prev svg {
    width: 0.6rem;
    height: auto;
}
.reviews-next {
    display: flex;
    width: 3.6rem;
    height: 3.6rem;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #ECDDC6;
    background: #FCFCFC;
    position: absolute;
    z-index: 2;
    right: -1.7rem;
}
.reviews-next svg {
    width: 0.6rem;
    height: auto;
}
.reviews_swiper {
    width: 100%;
}
.reviews_swiper .swiper-slide {
    height: auto;
}
.reviews_slide {
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    justify-content: space-between;
    background: #F5F3F1;
    border-radius: 1rem;
}
.reviews_slide__column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.reviews_slide-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reviews_slide-title {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.reviews_slide-stars {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.reviews_slide-star {
    width: 2rem;
    height: auto;
}
.reviews_slide-star.active path {
    fill: #C79447;
}
.reviews_slide-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.reviews_slide-images a {
    display: flex;
    height: 11.4rem;
}
.reviews_slide-images a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}
.reviews_slide-description {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.reviews_slide-read {
    color: #C79447;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: auto;
}
.reviews-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.reviews-pagination {
    position: absolute;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    bottom: auto !important;
}
.reviews-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 3.3rem;
    background: #ECDDC6;
    height: 2px;
    opacity: 1;
    border-radius: 1rem;
}
.reviews-pagination .swiper-pagination-bullet-active {
    background: #C79447;
}
.reviews-link {
    color: #C79447;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    z-index: 2;
}

@media screen and (max-width: 992px) {
    .reviews {
        margin-bottom: 8rem;
    }
    .reviews-container {
        gap: 2rem;
        padding: 0;
    }
    .reviews-main {
        gap: 2.6rem;
    }
    .reviews-prev {
        width: 2.4rem;
        height: 2.4rem;
        left: -1.2rem;
    }
    .reviews-next {
        width: 2.4rem;
        height: 2.4rem;
        right: -1.2rem;
    }
    .reviews_slide {
        padding: 2rem;
        gap: 0.1rem;
    }
    .reviews_slide__column {
        gap: 1rem;
    }
    .reviews_slide-title {
        font-size: 1.4rem;
    }
    .reviews_slide-stars {
        gap: 0.5rem;
    }
    .reviews_slide-star {
        width: 1.6rem;
    }
    .reviews_slide-images {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .reviews_slide-images a {
        width: 8rem;
        height: 8rem;
    }
    .reviews_slide-description {
        font-size: 1.1rem;
    }
    .reviews_slide-read {
        font-size: 1.2rem;
    }
    .reviews-pagination {
        gap: 0.4rem;
    }
    .reviews-pagination .swiper-pagination-bullet {
        width: 2.3rem;
    }
    .reviews-link {
        font-size: 1.1rem;
    }
}

/* footer */

footer {
    padding-bottom: 3.8rem;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-menus {
    display: flex;
    align-items: flex-start;
    gap: 6.2rem;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}
.footer-menu__title {
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.footer-menu nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.footer-menu nav ul li {
    display: flex;
    list-style: none;
}
.footer-menu nav ul li a {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}
.footer-time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-time p {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.footer-phone {
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.footer-contact {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.footer-requisites {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-requisites p {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5.7rem;
}
.footer-content__col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4rem;
    width: 100%;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 28.5rem;
}
.footer-social {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
}
.footer-social a {
    display: flex;
}
.footer-social a svg {
    width: 4.2rem;
    height: auto;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-links a {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-bottom {
    padding-top: 2.7rem;
    border-top: 1px solid #C79447;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copyright {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-dev {
    display: flex;
}
.footer-dev img {
    width: 12rem;
}
.footer-column2 {
    display: none;
}

@media screen and (max-width: 992px) {
    footer {
        padding-bottom: 1.5rem;
    }
    .footer-main {
        flex-direction: column-reverse;
        gap: 4rem;
    }
    .footer-menus {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 4rem 1rem;
        width: 100%;
    }
    .footer-menu {
        gap: 1.5rem;
        min-width: 10rem;
    }
    .footer-menu__title {
        font-size: 1.4rem;
    }
    .footer-menu nav ul {
        gap: 1rem;
    }
    .footer-menu nav ul li a {
        font-size: 1.2rem;
    }
    .footer-time p {
        font-size: 1.2rem;
    }
    .footer-column {
        order: 1;
    }
    .footer-contacts {
        gap: 1rem;
    }
    .footer-phone {
        font-size: 1.4rem;
    }
    .footer-contact {
        font-size: 1.2rem;
    }
    .footer-requisites p {
        font-size: 1.2rem;
    }
    .footer-content {
        width: 100%;
    }
    .footer-content__col {
        gap: 2rem;
        width: 100%;
        align-items: center;
    }
    .footer-logo img {
        width: 21.6rem;
    }
    .footer-social a svg {
        width: 3.4rem;
    }
    .footer-menu:nth-child(3) {
        order: 2;
    }
    .footer-menu:nth-child(1) {
        order: 3;
    }
    .footer-menu:nth-child(2) {
        order: 4;
    }
    .footer-links {
        display: none;
    }
    .footer-column .footer-menu:nth-child(2) {
        display: none;
    }
    .footer-links a {
        font-size: 1.2rem;
    }
    .footer-bottom {
        padding-top: 2.5rem;
    }
    .footer-copyright {
        font-size: 1.2rem;
    }
    .footer-dev img {
        width: 10.4rem;
    }
    .footer-column2 {
        display: flex;
        order: 7;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-column2 .footer-links {
        display: flex;
        order: 5;
    }

}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}