
* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Inter;
    src: url("../fonts/Inter-Regular.ttf") format('truetype'),
    url("../fonts/Inter-Regular.woff2") format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url("../fonts/Inter-SemiBold.ttf") format('truetype'),
    url("../fonts/Inter-SemiBold.woff2") format('woff2');
    font-weight: 700;
    font-display: swap;
}


@font-face {
    font-family: Bebas Neue Pro;
    src: url("../fonts/BebasNeuePro-BoldItalic.ttf") format('truetype'),
    url("../fonts/BebasNeuePro-BoldItalic.woff2") format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Bebas Neue Pro;
    src: url("../fonts/BebasNeuePro-Bold.ttf") format('truetype'),
    url("../fonts/BebasNeuePro-Bold.woff2") format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


html {
    box-sizing: border-box;
    font-size: calc(100vw / 1536 * 10);
    scroll-behavior: smooth;
}

img {
    width: 100%;
}

body {
    background: rgba(214, 213, 213, 0.78);
    margin: 0;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #d4d3d4;
    z-index: 9999;
    display: grid;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 8rem;
}

.small-circle {
    stroke-dasharray: 210;
    stroke-dashoffset: 210;
    transform-origin: 50%;
    animation: 1s draw-small infinite alternate;
}

@keyframes draw-small {
    0% {
        stroke-dashoffset: 0;
        transform: rotate(0deg);
    }
    100% {
        stroke-dashoffset: 210;
        transform: rotate(360deg);
    }
}

.big-circle {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    transform-origin: 50%;
    animation: 1s draw-big infinite alternate 0.5s;
}

@keyframes draw-big {
    0% {
        stroke-dashoffset: 0;
        transform: rotateY(180deg) rotate(360deg);
    }
    100% {
        stroke-dashoffset: 240;
        transform: rotateY(180deg) rotate(0deg);
    }
}


.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: none;
}

.omg-container {
    position: relative;
    z-index: 1;
    padding-left: 17.6rem;
    padding-right: 17.6rem;
}

.tablet-br {
    display: none;
}

.mob-br {
    display: none;
}

.header {
    background: rgba(255, 255, 255, 0.27);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    padding-top: 1.8rem;
    padding-bottom: 1.7rem;
    z-index: 10;
    position: fixed;
    left: 0;
    right: 0;

}

.header-scrolled {
    box-shadow: 0 0.4rem 1.8rem 0.4rem rgba(0, 0, 0, 0.25);
}

.line-content {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
}

.line-actions {
    text-align: center;
    display: grid;
    grid-template-columns: auto auto;
    gap: 1.764rem;
}

.line-logo {
    width: 16.4rem;
    height: 3.8rem;
}

.line-logo img {
    width: 100%;
}

.omg-action {
    background: radial-gradient(76.16% 76.16% at 31.97% 19.67%, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.00) 69.79%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(0deg, #FFBB36 0%, #FFBB36 100%), #FFD249;
    color: #000000;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 3.2rem;
    line-height: 5.2rem;
    text-decoration: none;
    width: 25.2rem;
    height: 5.2rem;
    border-radius: 0.8rem;
    display: inline-block;
    align-items: center;
    justify-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    transition: 0.1s linear;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}


.omg-action:hover {
    color: #FFFFFF;
    background: radial-gradient(76.16% 76.16% at 31.97% 19.67%, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.00) 69.79%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(0deg, #FE4034 0%, #FE4034 100%), #FFD249;
}


.transparent-action {
    background-color: transparent;
    color: black;
    border: 0.2rem solid #000000;
    font-family: Bebas Neue Pro, sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 5.2rem;
    text-decoration: none;
    width: 19.4rem;
    height: 5rem;
    border-radius: 0.8rem;
    display: inline-block;;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-items: center;
    text-transform: uppercase;
    transition: 0.1s ease-in-out;
    text-align: center;
}

.transparent-action:hover {
    color: #FFFFFF;
    border: 0.2rem solid #FFFFFF;
}

.paper-wrapper {
    position: relative;
}


.paper-background {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
}

.paper-background-mob {
    display: none;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
}


.footer {
    background: radial-gradient(76.16% 76.16% at 31.97% 19.67%, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.00) 69.79%, rgba(255, 255, 255, 0.00) 100%), #FFBE3F;
    padding-top: 1.9rem;
    padding-bottom: 1.9rem;
    z-index: 2;
    position: relative;
}

.red-action {
    color: #FFFFFF;
    background: radial-gradient(76.16% 76.16% at 31.97% 19.67%, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.00) 69.79%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(0deg, #FE4034 0%, #FE4034 100%), #FFD249;
}

.red-action:hover {
    color: #ED1A0C;
    background: radial-gradient(76.16% 76.16% at 31.97% 19.67%, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.00) 69.79%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(0deg, #EAE8E8 0%, #EAE8E8 100%), #FFD249;
}

.main {
    padding-top: 8.5rem;
    position: relative;
    margin-bottom: 5.4rem;
}

.main-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.main-content {
    position: relative;
    padding-top: 5.5rem;
}

.main-info {
    width: 80.6rem;
    z-index: 2;
    display: grid;
    position: absolute;
    top: 16rem;
    right: -6rem;
}

.main-background {
    position: relative;
    width: 100%;
    z-index: 0;
}

.main-background-mob {
    display: none;
}

.main-pair {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 77.5rem;
    bottom: 0;
}


.main-title-yellow {
    width: 60.3rem;
    justify-self: flex-start;
    z-index: 2;
}

.main-title-red {
    width: 47.4rem;
    justify-self: flex-end;
    margin-top: -0.5rem;
    z-index: 4;
}

.main-zip {
    position: absolute;
    right: 1rem;
    top: -6rem;
    z-index: 3;
    width: 28.3rem;
}

.main-link {
    display: block;
    width: 45rem;
    padding-left: 20.7rem;
    margin-top: -1.2rem;
}

.main-link-mob {
    display: none;

}

.skier {
    padding-bottom: 18.6rem;
}

.skier-content {
    display: grid;
    grid-template-columns: 1fr 27.3rem 1fr;
    gap: 2.9rem;
}

.skier-info-1 {
    position: relative;
}

.skier-decor-1 {

}

.skier-text-1 {
    color: #0B0A0A;
    text-align: center;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 29rem;
    position: absolute;
    top: 11rem;
    right: 11rem;
}

.skier-image {

}

.skier-image-mob {
    display: none;
}

.skier-info-2 {
    position: relative;
}

.skier-decor-2 {

}

.skier-text-2 {
    color: #0B0A0A;
    font-family: Inter, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: normal;
    width: 32.6rem;
    position: absolute;
    top: 9.5rem;
    left: 9.5rem;
}

.tree-wrapper {
    position: relative;
}


.pwa {
    padding-top: 5rem;
    margin-bottom: 7rem;
}

.pwa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.6rem;
}

.pwa-info-1 {

}

.pwa-title {
    color: #0B0A0A;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 5.6rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}

.pwa-text {
    color: #0B0A0A;
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 3.2rem;
}

.pwa-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.8rem;
}

.pwa-advantage {
    display: grid;
    grid-template-rows: 8rem 7rem 7.8rem;

}

.pwa-advantage-icon {
    width: 7.2rem;
    height: 7.2rem;
    margin-bottom: 1.6rem;
}

.pwa-advantage-title {
    color: #0B0A0A;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.pwa-advantage-text {
    color: #666;
    font-family: Inter, sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pwa-advantages-note {
    color: #8C8C8C;
    font-family: Inter, sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    grid-column-start: 1;
    grid-column-end: 4;
}

.pwa-info-2 {
    display: grid;
}

.pwa-image {
    width: 73rem;
    position: absolute;
    right: 0rem;
    top: -2rem;
}

.pwa-image-mob {
    display: none;
}

.pwa-action {
    display: grid;
    align-self: flex-end;
    justify-self: center;
}

.pwa-action-text {
    color: #7D7D7D;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1.2rem;
}

.pwa-bold {
    font-family: Inter, sans-serif;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.pwa-button {
    margin-left: auto;
    margin-right: auto;
    width: 33.4rem;
    height: 5.2rem;
    line-height: 5.2rem;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}


.best {
    padding-top: 4rem;
    margin-bottom: 4.5rem;
    position: relative;
}

.best-title {
    width: 86.2rem;
    margin: 0 auto 4.5rem auto;
}

.best-title-mob {
    display: none;
    width: 100%;
}

.best-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.8rem;
}

.best-item {
    display: grid;
}

.best-item-image {
    margin-bottom: 2.3rem;
}

.best-item-image img {
    height: 38.3rem;
    border-radius: 3.5rem;
    overflow: hidden;
}

.best-item-info {
    height: 15rem;
}

.best-item-title {
    color: #1F1E1E;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 4.5rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.best-item-text {
    color: #1F1E1E;
    font-family: Inter, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.05;
}

.best-item-actions {
    display: grid;
}

.best-item-price {
    color: #1F1E1E;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    justify-self: right;
    margin-bottom: 0.2rem;
}

.best-item-price-number {
    color: #1F1E1E;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;

}


.best-item-link {
    font-size: 3.6rem;
    font-style: normal;
    width: 100%;
}

.red-span {
    color: #FE4034;
}

.tree-left {
    position: absolute;
    left: 0;
    top: -1rem;
    width: 18rem;
}

.tree-right {
    position: absolute;
    right: 0;
    bottom: -4rem;
    width: 16.3rem;
}

.paper-background-2 {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
}

.paper-background-2-mob {
    display: none;
}


.advent {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.advent-grid {
    position: relative;
    display: grid;
}

.advent-info {
    position: relative;
    display: grid;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
}

.advent-decor-1 {
    width: 47.6rem;
    position: absolute;
    left: 0;
    top: 0;
}

.advent-decor-2 {
    width: 47.6rem;
    position: absolute;
    right: 0;
    top: 0;
}

.advent-title {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    padding-left: 22rem;
}

.advent-title-yellow {
    z-index: 2;
    width: 50.4rem;
    display: inline-block;
}

.advent-title-red {
    z-index: 4;
    display: inline-block;;
    width: 28.9rem;
    margin-left: -4rem;
}

#advent-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 17.2rem);
    gap: 2.8rem;
    margin-bottom: 3.5rem;
}

.day {
    border-radius: 2rem;
    overflow: hidden;
}

.day-past {
    filter: grayscale(100%);
}

.day-active {
    box-shadow: 0.4rem 0.4rem 1.4rem 0.2rem #ffd249;
}

.day-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    -webkit-object-fit: fill;
}

.day-image {
    width: 100%;
    height: 100%;
}

.day:nth-child(1) {
    grid-area: 1 / 1 / 2 / 4;
}


.day:nth-child(2) {
    grid-area: 1 / 4 / 2 / 7;
}

.day:nth-child(3) {
    grid-area: 1 / 7 / 4 / 9;
}

.day:nth-child(4) {
    grid-area: 1 / 9 / 2 / 11;
}

.day:nth-child(5) {
    grid-area: 1 / 11 / 2 / 13;
}


.day:nth-child(6) {
    grid-area: 2 / 1 / 3 / 3;
}


.day:nth-child(7) {
    grid-area: 2 / 3 / 4 / 5;
}

.day:nth-child(8) {
    grid-area: 2 / 5 / 4 / 7;
}

.day:nth-child(9) {
    grid-area: 3 / 1 / 4 / 3;
}

.day:nth-child(10) {
    grid-area: 2 / 9 / 4 / 13;
}

.day-image-mob {
    display: none;
}

#open-popup {
    width: 37.6rem;
    height: 5.7rem;
    line-height: 5.7rem;
    font-size: 3.8rem;
    border: none;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}


#popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 99;
}

#popup.hidden {
    display: none;
}

#popup-content {
    position: relative;
    background: white;
    width: 98.2rem;
    padding: 3.2rem 7.2rem 3.2rem 3.3rem;
    border-radius: 2rem;
    text-align: center;
}

#popup-close {
    width: 2rem;
    height: 2rem;
    z-index: 999;
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    cursor: pointer;
}

.popup-grid {
    display: grid;
    grid-template-columns: 1fr 40.2rem;
    gap: 2.4rem;
}

.popup-info {
    display: grid;
    position: relative;
}

.popup-data {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    color: #8E8E8E;
    font-family: Inter, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

#day-number {

}

#date {

}

#title {
    color: #090909;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 5.2rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.05;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#text {
    color: #4C4C4C;;
    font-family: Inter, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: left;
}

.promo-info {
    box-sizing: border-box;
    position: relative;
    display: grid;
    grid-template-columns: 2.4rem 1fr 2.4rem;
    justify-content: space-between;
    width: 100%;
    height: 6.5rem;
    border: 0.2rem solid #DAD9D9;
    border-radius: 2rem;
    background: #EDECEC;
    align-items: center;
    padding: 0 2.7rem;
    align-self: flex-end;
    margin-top: 2rem;
}

.promo-info:focus {
    border: 0.2rem solid #FFD249;
}

#promo-code {
    color: #090909;
    text-align: center;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 3.3rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

#promo-copy {
    width: 2.4rem;
    height: 2.4rem;
}

.popup-image {
    width: 100%;
    height: 100%;
}

.popup-image img {
    height: 100%;
}

.popup-note {
    font-size: 1rem;
    line-height: 1;
    color: #8C8C8C;
    font-family: Inter, sans-serif;
    font-weight: 400;
    position: absolute;
    bottom: -1.8rem;
    left: 0.2rem;

}

.best-video {
    position: relative;
}

.best-video-content {
    position: relative;
}

.video-link {
    position: absolute;
    width: 45rem;
    left: 36.7rem;
    bottom: -7rem;
    z-index: 4;
}

.video-tree {
    position: absolute;
    width: 39.7rem;
    right: 0;
    bottom: -14.5rem;
    z-index: 4;
}


.catalog {
    padding-top: 7rem;
    padding-bottom: 6rem;
}

.catalog-title {
    width: 50.4rem;
    margin: 0 auto 7.2rem auto;
}

.catalog-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 2.9rem;
    row-gap: 5.5rem;
}


.cat-item {
    display: grid;
}

.cat-item-image {
    margin-bottom: 1.6rem;
}

.cat-item-image img {
    height: 28.1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cat-item-info {
    height: 10rem;
}

.cat-item-title {
    color: #1F1E1E;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cat-item-text {
    color: #1F1E1E;
    font-family: Inter, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.05;
}

.cat-item-actions {
    display: grid;
}

.cat-item-price {
    color: #1F1E1E;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    justify-self: right;
    margin-bottom: 0.2rem;
}

.cat-item-price-number {
    color: #1F1E1E;
    font-family: Bebas Neue Pro, sans-serif;
    font-size: 3.3rem;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;

}


.cat-item-link {
    line-height: 4.9rem;
    height: 4.9rem;
    display: block;
    width: 100%;
    font-size: 2.6rem;
    font-style: normal;
}


.last {
    position: relative;
    padding-top: 36rem;
    padding-bottom: 17rem;
}

.last-container {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}

.paper-background-3 {
    position: absolute;
    bottom: -9rem;
    left: 0;
    right: 0;
}

.paper-background-3-mob {
    display: none;
    position: absolute;
    bottom: 0rem;
    left: 0;
    right: 0;
}

.last-info {
    position: relative;
    display: block;
    z-index: 4;
    max-width: 41.5rem;
    align-items: start;
}

.last-title {
    position: relative;
    margin-bottom: 7rem;
}


.last-title-gift {
    width: 40.3rem;
    justify-self: flex-start;
}

.baza-title {
    display: block;
    position: absolute;
    width: 18.3rem;
    left: 10.7rem;
    bottom: -6rem;
}

.last-text {
    color: #0B0A0A;
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4rem;
}

.last-action {
    justify-self: flex-start;
    left: 0;
    display: block;
    width: 31.2rem;
    height: 6.1rem;
    line-height: 6.1rem;
    margin: 0;
}

.last-content {
    position: relative;
    display: grid;
}

.last-tree {
    position: absolute;
    width: 33.3rem;
    right: 44rem;
    top: -0.5rem;
    z-index: 2;
}

.last-image {
    width: 68rem;
    height: 41.7rem;
    z-index: 0;
    justify-self: flex-end;
}

.last-image img {
    height: 100%;
}

.last-image-mob {
    display: none;
}

.last-link {
    position: absolute;
    width: 30.8rem;
    bottom: 0;
    right: -3rem;
}


@media screen and (max-width: 1024px) {


    html {
        font-size: calc(100vw / 1024 * 10);
    }

    .tablet-br {
        display: block;
    }

    .omg-container {
        padding-left: 2.9rem;
        padding-right: 2.9rem;
    }

    .header {
        padding-top: 1.8rem;
        padding-bottom: 2rem;
    }

    .line-actions {
        gap: 0.8rem;
    }

    .omg-action {
        font-size: 2.7rem;
        width: 21.4rem;
        height: 4.4rem;
        line-height: 4.4rem;
        border-radius: 0.7rem;
    }

    .transparent-action {
        font-size: 2.7rem;
        width: 16.5rem;
        height: 4.2rem;
        line-height: 4.2rem;
        border-radius: 0.7rem;
    }


    .paper-background {
        overflow: hidden;
    }

    .paper-background img {
        height: 100rem;
    }

    .main {
        margin-bottom: 3.4rem;
    }


    .main-lights {
        top: 4.5rem;
    }


    .main-content {
        padding-top: 0.8rem;
    }


    .main-pair {
        width: 52rem;
    }

    .main-background {
        position: relative;
        width: 100%;
        z-index: 0;
        height: 39.2rem;
        overflow: hidden;
        border-radius: 4rem;
    }

    .main-background img {
        object-fit: cover;
    -webkit-object-fit: cover;
        aspect-ratio: 968 / 392;
    }

    .main-info {
        width: 53.7rem;
        top: 6.9rem;
        right: 4.7rem;
    }

    .main-title-yellow {
        width: 40.2rem;
    }

    .main-title-red {
        width: 31.5rem;
        margin-top: -0.3rem;

    }


    .main-zip {
        position: absolute;
        right: -1.5rem;
        top: -6rem;
        z-index: 3;
        width: 22rem;
    }

    .main-link {
        display: block;
        width: 30rem;
        padding-left: 13.5rem;
        margin-top: -0.8rem;
    }

    .skier {
        padding-bottom: 14rem;
    }

    .skier-content {
        display: grid;
        grid-template-columns: 1fr 22.2rem 1fr;
        gap: 2.3rem;
    }


    .skier-info-1 {
        position: relative;
    }

    .skier-decor-1 {

    }

    .skier-text-1 {
        font-size: 2.4rem;
        line-height: 1.05;
        width: 23.6rem;
        position: absolute;
        top: 9.5rem;
        right: 8rem;
    }

    .skier-image {

    }

    .skier-info-2 {
        position: relative;
    }

    .skier-decor-2 {

    }

    .skier-text-2 {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.05;
        width: 26.2rem;
        position: absolute;
        top: 8.8rem;
        left: 8rem;
    }

    .pwa {
        padding-top: 3rem;
        margin-bottom: 7rem;
        overflow: hidden;
    }

    .pwa-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .pwa-info-1 {

    }

    .pwa-title {
        font-size: 5.6rem;
        margin-bottom: 1.6rem;
    }

    .pwa-text {
        font-size: 1.8rem;
        margin-bottom: 2.4rem;
    }

    .pwa-advantages {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
    }

    .pwa-advantage {
        display: grid;
        grid-template-rows: 7.8rem 5.5rem 7.8rem;

    }

    .pwa-advantage-icon {
        width: 7.2rem;
        height: 7.2rem;
        margin-bottom: 1.6rem;
    }

    .pwa-advantage-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .pwa-advantage-text {
        font-size: 1.2rem;
    }

    .pwa-advantages-note {
        font-size: 1.6rem;
        grid-column-start: 1;
        grid-column-end: 4;
    }

    .pwa-info-2 {
        display: grid;
    }

    .pwa-image {
        width: 65rem;
        right: -15rem;
        top: 0;
    }

    .pwa-image-mob {
        display: none;
    }


    .pwa-action-text {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .pwa-button {
        width: 33.4rem;
        height: 5.2rem;
        line-height: 5.2rem;
        font-size: 3.2rem;
    }


    .best {
        padding-top: 1rem;
        margin-bottom: 3rem;
    }

    .best-title {
        width: 61.1rem;
        margin: 0 auto 3.2rem auto;
    }

    .best-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.9rem;
    }

    .best-item {
        display: grid;
    }

    .best-item-image {
        margin-bottom: 1.7rem;
    }

    .best-item-image img {
        height: 30.8rem;
        border-radius: 2.4rem;
        overflow: hidden;
    }

    .best-item-info {
        height: 11.5rem;
    }

    .best-item-title {
        font-size: 3.6rem;
        margin-bottom: 0.5rem;
    }

    .best-item-text {
        font-size: 1.4rem;

    }

    .best-item-actions {
        display: grid;
    }

    .best-item-price {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
    }

    .best-item-price-number {
        font-size: 3.6rem;


    }


    .best-item-link {
        font-size: 2.9rem;
        font-style: normal;
        width: 100%;
    }


    .tree-left {
        display: none;
    }

    .tree-right {
        display: none;
    }


    .advent {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }


    .advent-info {
        padding-top: 4rem;
        padding-bottom: 5rem;
        margin-bottom: 2rem;
    }

    .advent-decor-1 {
        width: 38.8rem;

    }

    .advent-decor-2 {
        width: 38.8rem;

    }

    .advent-title {
        padding-left: 18rem;
    }

    .advent-title-yellow {
        z-index: 2;
        width: 41.1rem;
    }

    .advent-title-red {
        z-index: 4;
        width: 23.7rem;
        margin-left: -4rem;
    }

    #advent-content {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(3, 14rem);
        gap: 2.2rem;
        margin-bottom: 3rem;
    }

    .day {
        border-radius: 1.6rem;
        overflow: hidden;
    }

    #open-popup {
        width: 37.6rem;
        height: 5.2rem;
        font-size: 2.6rem;
        line-height: 5.2rem;

    }


    #popup-content {
        width: 80.2rem;
        padding: 2.6rem 6rem 2.6rem 2.7rem;
        border-radius: 2rem;
    }

    #popup-close {
        width: 2rem;
        height: 2rem;
        top: 2.6rem;
        right: 2.2rem;
    }

    .popup-grid {
        grid-template-columns: 1fr 32.8rem;
        gap: 2.3rem;
    }

    .popup-info {
        display: grid;

    }

    .popup-data {
        display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
        justify-content: space-between;
        color: #8E8E8E;
        font-family: Inter, sans-serif;
        font-size: 1.8rem;
        font-weight: 400;
    }

    #day-number {

    }

    #date {

    }

    #title {
        font-size: 4.2rem;
    }

    #text {
        color: #4C4C4C;;
        font-family: Inter, sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        text-align: left;
    }

    .promo-info {
        grid-template-columns: 2.4rem 1fr 2.4rem;
        height: 7rem;
        border: 0.2rem solid #DAD9D9;
        border-radius: 1.6rem;
        padding: 0 2.7rem;
    }

    .promo-info:focus {
        border: 0.2rem solid #FFD249;
    }

    #promo-code {
        color: #090909;
        text-align: center;
        font-family: Bebas Neue Pro, sans-serif;
        font-size: 3.3rem;
        font-style: italic;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
    }

    #promo-copy {
        width: 2.4rem;
        height: 2.4rem;
    }

    .popup-image {
        width: 100%;
        height: 100%;
    }

    .popup-image img {
        height: 100%;
    }

    .best-video {
        position: relative;
    }

    .best-video-content {
        position: relative;
    }

    .video-link {
        position: absolute;
        width: 45rem;
        left: 36.7rem;
        bottom: -7rem;
        z-index: 4;
    }

    .video-tree {
        position: absolute;
        width: 39.7rem;
        right: 0;
        bottom: -14.5rem;
        z-index: 4;
    }


    .catalog {
        padding-top: 5rem;
        padding-bottom: 13rem;
    }

    .catalog-title {
        width: 39.5rem;
        margin: 0 auto 5.2rem auto;
    }

    .catalog-content {
        column-gap: 3rem;
        row-gap: 4.8rem;
    }

    .cat-item-image {
        margin-bottom: 0.8rem;
    }

    .cat-item-image img {
        height: 22.3rem;
        border-radius: 0.4rem;
        overflow: hidden;
    }

    .cat-item-info {
        height: 9rem;
    }

    .cat-item-title {
        font-size: 2.4rem;
        margin-bottom: 0.5rem;
    }

    .cat-item-text {
        font-size: 1.1rem;
    }

    .cat-item-actions {

    }

    .cat-item-price {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }

    .cat-item-price-number {
        font-size: 2.6rem;

    }


    .cat-item-link {
        height: 3.9rem;
        line-height: 3.9rem;
        font-size: 2rem;
    }


    .last {
        padding-top: 8rem;
        padding-bottom: 2rem;
    }


    .last-info {
        max-width: 37.9rem;
        align-items: start;
    }

    .last-title {
        margin-bottom: 5rem;
    }


    .last-title-gift {
        width: 34.2rem;
        justify-self: flex-start;
    }

    .baza-title {
        display: block;
        position: absolute;
        width: 18.3rem;
        left: 10.7rem;
        bottom: -6rem;
    }

    .last-text {
        font-size: 1.8rem;
        margin-bottom: 2.6rem;
    }

    .last-action {
        justify-self: flex-start;
        left: 0;
        display: block;
        width: 31.2rem;
        height: 5.1rem;
        line-height: 5.1rem;
        margin: 0;
    }

    .last-content {
        position: relative;
        display: grid;
    }

    .last-tree {
        top: unset;
        width: 23.6rem;
        right: 38rem;
        bottom: 0;
    }


    .last-image {
        width: 52rem;
        height: 35rem;
        z-index: 0;
        justify-self: flex-end;
    }

    .last-image img {
        height: 100%;
        object-fit: fill;
    -webkit-object-fit: fill;
    }

    .last-image-mob {
        display: none;
    }

    .last-link {
        position: absolute;
        width: 22rem;
        bottom: -1rem;
        right: -1rem;
    }


    .footer {
        background: radial-gradient(76.16% 76.16% at 31.97% 19.67%, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.00) 69.79%, rgba(255, 255, 255, 0.00) 100%), #FFBE3F;
        padding-top: 1.8rem;
        padding-bottom: 2.1rem;
        top: 6.5rem;
        bottom: unset;
        z-index: 2;
        position: relative;
    }

}


@media screen and (max-width: 767px) {

    html {
        font-size: calc(100vw / 375 * 10);
    }

    .omg-container {
        padding-left: 1.7rem;
        padding-right: 1.7rem;
    }


    .mob-br {
        display: block;
    }

    .pc-br {
        display: none;
    }

    .header {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .line-logo {
        width: 10rem;
        height: 2.3rem;
    }

    .line-actions {
        grid-template-columns: auto;
        gap: 0;
    }

    .transparent-action {
        display: none;
    }

    .omg-action {
        width: 15.8rem;
        height: 3.3rem;
        line-height: 3.3rem;
        font-size: 2rem;
        font-style: normal;
        border-radius: 0.4rem;
    }

    .paper-background {
        display: none;
    }

    .paper-background-mob {
        display: block;
    }

    .paper-background img {
        object-fit: cover;
    -webkit-object-fit: cover;
        height: 150rem;
        aspect-ratio: 5 / 2;
        object-position: right top;
    }

    .main {
        overflow: hidden;
        padding-top: 11.5rem;
        padding-bottom: 7rem;
        margin-bottom: 3.2rem;
    }

    .main-background {
        display: none;
    }

    .main-lights {
        top: -5rem;
        width: 115rem;
    }

    .main-background-mob {
        position: relative;
        padding-top: 0.3rem;
        display: block;
        border-radius: 3.6rem;
        overflow: hidden;
        z-index: 0;
    }

    .main-content {
        z-index: 0;
    }

    .main-pair {
        top: 20rem;
        width: 58rem;
        left: 0rem;
    }


    .main-pair {
        position: absolute;
        bottom: unset;
        top: 18rem;
        left: -21rem;
        z-index: 2;
        width: 60rem;
    }


    .main-info {
        width: 34.3rem;
        top: -1.9rem;
        right: 0rem;
        z-index: 4;
    }

    .main-title-yellow {
        width: 33.3rem;
        justify-self: start;
        padding-left: 1rem;
    }

    .main-title-red {
        padding-left: 3rem;
        width: 26rem;
        margin-top: -0.3rem;
        justify-self: center;
    }

    .main-zip {
        display: none;
    }

    .main-link {
        display: none;
    }


    .main-link-mob {
        position: absolute;
        top: 62.5rem;
        left: 6.5rem;
        z-index: 4;
        display: block;
        width: 24.6rem;
        padding-left: 0;
    }

    .skier {
        padding-bottom: 14rem;
    }

    .skier-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0rem;
    }


    .skier-info-1 {
        position: relative;
    }

    .skier-decor-1 {
        margin-left: -1.2rem;
        transform: scale(-1, 1)
    }

    .skier-text-1 {
        font-size: 2.4rem;
        line-height: 1.05;
        width: 23.6rem;
        position: absolute;
        top: 8rem;
        right: 3.5rem;
    }

    .skier-image {
        display: none;
    }

    .skier-image-mob {
        display: block;
        margin-bottom: 2.9rem;
    }

    .skier-info-2 {
        position: relative;
    }

    .skier-decor-2 {
        transform: scale(-1, -1);
        margin-right: -1.2rem;
    }

    .skier-text-2 {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.05;
        width: 26.2rem;
        position: absolute;
        top: 0rem;
        left: 0;
    }

    .pwa {
        padding-top: 0.5rem;
        margin-bottom: 7rem;
        overflow: hidden;
    }

    .pwa-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pwa-info-1 {

    }

    .pwa-title {
        font-size: 5.6rem;
        margin-bottom: 1.6rem;
    }

    .pwa-text {
        font-size: 1.8rem;
        margin-bottom: 2.4rem;
    }

    .pwa-advantages {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .pwa-advantage {
        display: grid;
        grid-template-rows: 8.8rem 7.4rem 7.8rem;

    }

    .pwa-advantage-icon {
        width: 7.2rem;
        height: 7.2rem;
        margin-bottom: 1.6rem;
    }

    .pwa-advantage-title {
        font-size: 2.8rem;
        margin-bottom: 1.6rem;
    }

    .pwa-advantage-text {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .pwa-advantages-note {
        padding-top: 2.3rem;
        font-size: 1.4rem;
        grid-column-start: unset;
        grid-column-end: unset;
    }

    .pwa-info-2 {
        display: grid;
    }

    .pwa-image {
        display: none;
    }

    .pwa-image-mob {
        display: block;
        margin-left: -1.9rem;
        margin-right: -1.9rem;
    }


    .pwa-action-text {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }

    .pwa-button {
        width: 33.4rem;
        height: 5.2rem;
        line-height: 5.2rem;
        font-size: 3.2rem;
    }

    .best {

    }

    .best-title {
        display: none;
    }

    .best-title-mob {
        display: block;
        margin-bottom: 2.4rem;
    }

    .best-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.3rem;
    }


    .best-item-image {
        margin-bottom: 2rem;
    }

    .best-item-image img {
        height: 34.9rem;
        border-radius: 2.7rem;
        overflow: hidden;
    }

    .best-item-info {
        height: 11.5rem;
    }

    .best-item-title {
        font-size: 4.1rem;
        margin-bottom: 0.4rem;
    }

    .best-item-text {
        font-size: 1.6rem;

    }

    .best-item-actions {
        display: grid;
    }

    .best-item-price {
        font-size: 2.1rem;
        margin-bottom: 0.2rem;
    }

    .best-item-price-number {
        font-size: 4.1rem;


    }


    .best-item-link {
        font-size: 3.2rem;
        font-style: normal;
        width: 100%;
        height: 5.2rem;
        line-height: 5.2rem;
        border-radius: 0.7rem;
    }


    .tree-left, .tree-right {
        display: none;
    }


    .advent {
        padding-top: 7rem;
        padding-bottom: 0rem;
    }


    .advent-info {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
        display: grid;
        justify-content: center;
    }

    .advent-decor-1 {
        width: 15.7rem;
        z-index: 6;
    }

    .advent-decor-2 {
        width: 15.7rem;
        z-index: 6;

    }

    .advent-title {
        padding-top: 0;
        padding-left: 0;
        display: grid;
    }

    .advent-title-yellow {
        z-index: 2;
        width: 29.7rem;
    }

    .advent-title-red {
        display: block;
        z-index: 4;
        width: 17.4rem;
        margin-left: 0;
        position: absolute;
        left: 8.3rem;
        top: 6.7rem;
    }

    #advent-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 15.8rem);
        gap: 2.2rem;
        margin-bottom: 3rem;
    }

    .day {
        border-radius: 1rem;
        overflow: hidden;
    }

    .day-image {
        display: none;
    }

    .day-image-mob {
        display: block;
        height: 100%;
    }

    .day-image-mob img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    -webkit-object-fit: fill;

    }

    .day-active {
        box-shadow: 0.3rem 0.3rem 1.8rem 0.5rem #ffd249;
    }

    #open-popup {
        width: 100%;
        height: 5.2rem;
        font-size: 2.6rem;
        line-height: 5.2rem;

    }

    #popup {
        padding-bottom: 3rem;
    }


    #popup-content {
        width: 100%;
        padding: 2.5rem 2.3rem 2.3rem 2.3rem;
        border-radius: 2rem;
        overflow-y: auto;
        max-height: 85vh;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    #popup-close {
        width: 2rem;
        height: 2rem;
        top: 2.7rem;
        right: 2.3rem;
    }

    .popup-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .popup-info {
        display: grid;

    }

    .popup-data {
        margin-bottom: 1.2rem;
        max-width: 17.5rem;
        font-size: 1.5rem;
    }

    #day-number {

    }

    #date {

    }

    #title {
        font-size: 4.3rem;
        margin-bottom: 1.4rem;
        letter-spacing: -0.05rem;
        line-height: 3.9rem;
    }

    #text {
        color: #4C4C4C;;
        font-family: Inter, sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        text-align: left;
    }

    .promo-info {
        grid-template-columns: 2.4rem 1fr 2.4rem;
        height: 7rem;
        border: 0.2rem solid #DAD9D9;
        border-radius: 1.6rem;
        padding: 0 2.7rem;
        margin-top: 1.2rem;
    }

    .promo-info:focus {
        border: 0.2rem solid #FFD249;
    }

    #promo-code {
        font-size: 2.6rem;
    }

    #promo-copy {
        width: 2.4rem;
        height: 2.4rem;
    }



    .day:nth-child(1) {
        grid-area: 1 / 1 / 2 / 3;
    }


    .day:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .day:nth-child(3) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .day:nth-child(4) {
        grid-area: 3 / 1 / 5 / 2;
    }

    .day:nth-child(5) {
        grid-area: 3 / 2 / 4 / 3;
    }


    .day:nth-child(6) {
        grid-area: 4 / 2 / 6 / 3;
    }


    .day:nth-child(7) {
        grid-area: 5 / 1 / 6 / 2;
    }

    .day:nth-child(8) {
        grid-area: 6 / 1 / 7 / 2;
    }

    .day:nth-child(9) {
        grid-area: 6 / 2 / 7 / 3;
    }

    .day:nth-child(10) {
        grid-area: 7 / 1 / 9 / 3;
    }


    .catalog {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .catalog-title {
        width: 29.7rem;
        margin: 0 auto 4.4rem auto;
    }

    .catalog-content {
        grid-template-columns: 1fr 1fr;
        column-gap: 1.2rem;
        row-gap: 3rem;
    }

    .cat-item-image {
        margin-bottom: 0.8rem;
    }

    .cat-item-image img {
        height: 16rem;
        border-radius: 0.3rem;
        overflow: hidden;
    }

    .cat-item-info {
        height: 5.5rem;
    }

    .cat-item-title {
        font-size: 1.7rem;
        margin-bottom: 0.2rem;
    }

    .cat-item-text {
        font-size: 0.8rem;
    }

    .cat-item-actions {

    }

    .cat-item-price {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .cat-item-price-number {
        font-size: 1.9rem;

    }


    .cat-item-link {
        height: 2.8rem;
        line-height: 2.8rem;
        font-size: 1.5rem;
    }


    .last {
        padding-top: 20rem;
        padding-bottom: 4rem;
    }

    .last-title {
        margin-bottom: 7rem;
    }

    .last-container {
        display: grid;
    }

    .paper-background-3 {
        display: none;
    }

    .paper-background-3-mob {
        display: block;
        bottom: -7rem;
    }

    .last-info {
        width: 100%;
        position: relative;
        display: grid;
        top: 0;
        left: 0;
        z-index: 1;
        margin-bottom: 3.5rem;
    }

    .last-title-gift {

        width: 100%;
        justify-self: flex-start;
    }

    .baza-title {
        margin-top: 0;
        width: 18.3rem;
        left: 7.7rem;
        bottom: -6.2rem;
    }

    .last-content {
        position: relative;
        z-index: 1;
    }

    .last-tree {
        width: 14.3rem;
        right: 8.4rem;
        top: 20rem;
    }

    .last-image {
        display: none;
    }

    .last-image-mob {
        display: block;
    }

    .last-action {
        width: 100%;
        font-size: 3.2rem;
        height: 5.2rem;
        line-height: 5.2rem;
    }

    .last-link {
        z-index: 5;
        width: 17.4rem;
        bottom: -3rem;
        right: 7rem;
    }


    .footer {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}


.omg-path-1, .omg-path-2, .omg-path-3 {
    transition: 0.3s ease-in-out;
}


.main-link:hover .omg-path-1, .main-link-mob:hover .omg-path-1, .video-link:hover .omg-path-1, .last-link:hover .omg-path-1 {
    fill: #FFD658;
}

.main-link:hover .omg-path-2, .main-link-mob:hover .omg-path-2, .video-link:hover .omg-path-2, .last-link:hover .omg-path-2 {
    fill: #FE4034;
}

.main-link:hover .omg-path-3, .main-link-mob:hover .omg-path-3, .video-link:hover .omg-path-3, .last-link:hover .omg-path-3 {
    fill: white;
}

