.area--fruit-slicer {
    margin-top: 40px;
}

.fruit-slicer {
    height: 320px;
    cursor: pointer;
}

.fruit-slicer__parallax {
    background-image: url("/~/static/images/fruit-slicer/bg-fruit-slicer.jpg");
    background-repeat: no-repeat;
    background-position: left 40%;
    height: 320px;
    /* width: 750px; */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.fruit-slicer__layer {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.fruit-slicer__layer>img {
    display: block;
}

.fruit-slicer__layer--1 {
    left: calc(25% - 164px);
    top: 35%;
    /* mix-blend-mode: plus-lighter; */
    z-index: 5;
}

.fruit-slicer__layer--1>img {
    width: 50px;
    height: 49px;
}

.fruit-slicer__layer--2 {
    left: calc(45.25% - 42px);
    top: 28.5%;
    z-index: 5;
}

.fruit-slicer__layer--2>img {
    width: 84px;
    height: 71px;
}

.fruit-slicer__layer--3 {
    /* left: 570px; */
    left: calc(66% - 312px);
    top: 0;
    z-index: 3;
}

.fruit-slicer__layer--3>img {
    width: 624px;
    height: 320px;
}

.fruit-slicer__layer--4 {
    left: 0;
    top: 0;
    z-index: 4;
}

.fruit-slicer__layer--4>img {
    width: 560px;
    height: 320px;
}

.fruit-slicer__layer--5 {
    left: calc(14.5% - 45.5px);
    top: -14%;
    z-index: 6;
}

.fruit-slicer__layer--5>img {
    width: 91px;
    height: 85px;
}

.fruit-slicer__layer--6 {
    left: calc(30.25% - 136px);
    top: -7%;
    z-index: 6;
}

.fruit-slicer__layer--6>img {
    width: 272px;
    height: 488px;
}

.fruit-slicer__layer--8 {
    left: calc(43.5% - 30px);
    top: 53%;
    z-index: 8;
}

.fruit-slicer__layer--8>img {
    width: 60px;
    height: 84px;
}

.fruit-slicer__layer--9 {
    left: calc(15.25% - 44px);
    top: 25%;
    z-index: 9;
}

.fruit-slicer__layer--9>img {
    width: 88px;
    height: 87px;
}

.fruit-slicer__layer--10 {
    left: calc(44.75% - 63.5px);
    top: -76%;
    z-index: 10;
}

.fruit-slicer__layer--10>img {
    width: 127px;
    height: 133px;
}

.fruit-slicer__layer--11 {
    left: calc(29.75% - 166px);
    top: calc(21.25% - 150.5px);
    position: relative;
    width: max-content;
    height: max-content;
    z-index: 11;
}

.fruit-slicer__layer__ani--11 {
    width: max-content;
    height: max-content;
}

.fruit-slicer__layer--11>img {
    width: 332px;
    height: 301px;
}

.fruit-slicer__layer--12 {
    left: calc(29.5% - 140.5px);
    top: calc(20% - 66.5px);
    z-index: 12;
}

.fruit-slicer__layer--12>img {
    width: 281px;
    height: 133px;
}

.fruit-slicer__layer--new {
    left: 1.5rem;
    top: 1.5rem;
    z-index: 12;
}

.fruit-slicer__layer--new>img {
    width: 48px;
    height: 48px;
}

.fruit-slicer__parallax__content {
    color: var(--other-1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* width: 100%; */
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* padding-left: 720px; */
    padding-left: 56%;
    padding-right: 24px;
    z-index: 20;
}

.fruit-slicer__parallax__content>img {
    margin-bottom: 16px;
}

.fruit-slicer__parallax__content h3.desk,
.fruit-slicer__parallax__content h4.desk {
    display: block;
}

.fruit-slicer__parallax__content h3.mobi,
.fruit-slicer__parallax__content h4.mobi {
    display: none;
}

.fruit-slicer__parallax__content h3 {
    text-transform: uppercase;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.fruit-slicer__parallax__content h4 {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 24px;
}

.fruit-slicer__parallax__content h3.mobi,
.fruit-slicer__parallax__content h4.mobi {
    display: none;
}


/* animations */

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
    }
    60% {
        -webkit-transform: rotate(216deg);
        transform: rotate(216deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
    }
    60% {
        -webkit-transform: rotate(216deg);
        transform: rotate(216deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* .fruit-slicer__layer--1 > img {
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
      -webkit-animation-name: rotate;
              animation-name: rotate;
      -webkit-animation-timing-function: linear;
                      animation-timing-function: linear;
      -webkit-animation-duration: 15s;
              animation-duration: 15s;
  } */

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.fruit-slicer__layer--11 {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@media (max-width: 1359px) {}

@media (max-width: 1139px) {
    .fruit-slicer__parallax {
        background-size: auto 400px;
        background-position: -4% 40%;
    }
    .fruit-slicer__layer--parallax>img,
    .fruit-slicer__layer__ani>img {
        transform: scale(0.9);
    }
    .fruit-slicer__layer--1 {
        left: calc(19% - 164px);
    }
    .fruit-slicer__layer--2 {
        left: calc(43.25% - 42px);
    }
    .fruit-slicer__layer--3 {
        left: calc(68% - 312px);
    }
    .fruit-slicer__layer--5 {
        left: calc(8.5% - 45.5px);
    }
    .fruit-slicer__layer--6 {
        left: calc(26.25% - 136px);
    }
    .fruit-slicer__layer--9 {
        left: calc(9.25% - 44px);
    }
    .fruit-slicer__layer--11 {
        left: calc(24.75% - 166px);
    }
    .fruit-slicer__layer--12 {
        left: calc(25.5% - 140.5px);
    }
}

@media (max-width: 1023px) {
    .fruit-slicer {
        height: 280px;
    }
    .fruit-slicer__parallax {
        height: 280px;
        background-size: auto 340px;
        /* background-position: -60% 40%; */
    }
    .fruit-slicer__layer--parallax>img,
    .fruit-slicer__layer__ani>img {
        transform: scale(0.8);
    }
    .fruit-slicer__layer--1 {}
    .fruit-slicer__layer--2 {}
    .fruit-slicer__layer--4 {
        left: -15%;
    }
    .fruit-slicer__layer--5 {
        left: calc(5.5% - 45.5px);
    }
    .fruit-slicer__layer--6 {
        left: calc(25.25% - 136px);
        top: -15%;
    }
    .fruit-slicer__layer--7 {}
    .fruit-slicer__layer--8 {}
    .fruit-slicer__layer--9 {
        left: calc(6.25% - 44px);
    }
    .fruit-slicer__layer--10 {}
    .fruit-slicer__layer--11 {
        left: calc(23.75% - 166px);
    }
    .fruit-slicer__layer--12 {
        left: calc(24.5% - 140.5px);
    }
    .fruit-slicer__parallax__content {
        padding-left: 51%;
        padding-right: 8px;
    }
    .fruit-slicer__parallax__content h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .fruit-slicer__parallax__content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .button.md-tablet {
        height: 40px;
        padding: 11px 20px;
        font-size: 12px;
    }
}

@media (max-width: 679px) {
    .fruit-slicer {
        height: 200px;
    }
    .fruit-slicer__parallax {
        height: 200px;
        background-size: auto 250px;
        background-position: -100px 40%;
    }
    .fruit-slicer__layer--parallax>img,
    .fruit-slicer__layer__ani>img {
        transform: scale(0.5);
    }
    .fruit-slicer__layer--1 {
        left: calc(37.5% - 164px);
    }
    .fruit-slicer__layer--2 {
        left: calc(45.25% - 42px);
        top: 20.5%;
    }
    .fruit-slicer__layer--3 {
        width: auto;
        height: 200px;
        left: 29%;
    }
    .fruit-slicer__layer--3>img {
        width: 100%;
        height: 100%;
    }
    .fruit-slicer__layer--4 {
        height: 200px;
        display: none;
    }
    .fruit-slicer__layer--5 {
        top: -30%;
    }
    .fruit-slicer__layer--6 {
        top: -60%;
    }
    .fruit-slicer__layer--8 {
        left: calc(44.5% - 30px);
        top: 37%;
    }
    .fruit-slicer__layer--9 {
        top: 6%;
    }
    .fruit-slicer__layer--10 {
        top: -99%;
    }
    .fruit-slicer__layer--10>img {}
    .fruit-slicer__layer--11 {}
    .fruit-slicer__layer--12 {}
    .fruit-slicer__layer--new {
        left: 0.5rem;
        top: 0.5rem;
    }
    .fruit-slicer__layer--new>img {
        width: 32px;
        height: 32px;
    }
    .fruit-slicer__parallax__content {
        padding-left: 49%;
    }
    .fruit-slicer__parallax__content>img {
        width: 71px;
        height: 32px;
        margin-bottom: 8px;
    }
    .fruit-slicer__parallax__content h3.desk,
    .fruit-slicer__parallax__content h4.desk {
        display: none;
    }
    .fruit-slicer__parallax__content h3.mobi,
    .fruit-slicer__parallax__content h4.mobi {
        display: block;
    }
    .fruit-slicer__parallax__content h3 {
        font-size: 14px;
        margin-bottom: 0;
    }
    .fruit-slicer__parallax__content h4 {
        font-size: 12px;
    }
    .button.md-tablet {
        height: 32px;
        padding: 9px 16px;
        font-size: 10px;
    }
}