@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
}

h1 {
    font-family: "Oswald", sans-serif;
}

p {
    font-family: "Oswald", sans-serif;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes leftRight {
    0% {
        transform: rotate(0deg);
        border-radius: 0%;
    }

    50% {
        transform: rotate(180deg);
        border-radius: 50%;
    }

    100% {
        transform: rotate(360deg);
        border-radius: 0%;
    }
}

.back {
    right: 0;
    width: 200px;
    height: 300px;
    animation: pulse 2s infinite ease-in-out;

    @media (max-width: 1000px) {
        display: none;
    }
}

.wrapp-last-item {
    
    display: flex;
    flex-direction: unset!important;
    margin: 20px 0;
    padding:20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



.container {
    width: 90%;
    margin: 0 auto;
    /* overflow-x: hidden; */
}

.logo {
    width: 100px;
}

.head_menu {
    position: sticky;
    background-color: #ffffff6c;
    /* color: black; */
    top: 0;
    z-index: 9999;
    transition: top 0.3s ease;
    -webkit-backdrop-filter: blur(10px);

    img {
        width: 60px;
    }

    &.hidden {
        top: -100px;
    }

    .menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none;
        margin: 0 auto;
        max-width: 90%;

    @media(max-width: 991px){

        max-width:100%;
        padding:0;
    }

        div {
            display: flex;

            .activeScroll {
                color: rgb(206, 7, 7);
            }
        }


        /* background-color: rgba(255, 255, 255, 0.15);  */
        backdrop-filter: blur(10px);
        border-radius: 12px;

        /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  */
        .scroll-top {
            width: 100px;
            cursor: pointer;
            transition: transform 0.3s ease;

@media(max-width: 991px){

    width: 60px;
}

            &:hover {
                transform: scale(1.1);
            }
        }

        li {
            font-size: 18px;
            font-weight: 500;
            color: rgb(11, 11, 11);
            padding: 0 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            user-select: none;

@media(max-width: 991px){

    max-width:100%;
    padding:0 4px;
}

        a {

            text-decoration: none;
                            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-weight: 900;
                            text-transform: uppercase;
                font-size: 20px;
                color: #262626;
                text-shadow: 2px 2px 5px #00000055, 0 0 5px #d28ed2, 2px 2px 10px #000000aa;

@media(max-width: 991px){

    font-size:12px;
    text-transform: unset;
    margin:0!important;
}
        }

            &:hover {
                /* background-color: rgba(255, 255, 255, 0.6);  */
                color: #262424;
                transform: scale(1.05);
            }

            &:focus {
                outline: none;
            }
        }
    }
}



header {
    background-image: url("./background.png");
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;

    @media (max-width: 1024px) {
        height: auto;
    }



    .container {
        background-image: url("./vhed.png");
        background-size: cover;
        background-position: center;
        height: 100vh;

        @media (max-width: 1024px) {
            height: auto;
        }

        .head {
            display: flex;
            justify-content: space-between;
            align-items: center;

            div {
                h1 {
                    font-size: 80px;
                    font-weight: bolder;
                    color: white;

                    @media (max-width: 1024px) {
                        font-size: 60px;
                    }

                    @media (max-width: 768px) {
                        font-size: 45px;
                    }

                    @media (max-width: 480px) {
                        font-size: 32px;
                    }
                }

                div {
                    background-color: white;
                    text-align: center;
                    padding: 5px;
                    border-radius: 11px;
                    color: red;
                }
            }

            @media (max-width: 768px) {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }
        }

        .right {
            display: flex;
            width: 100%;
            justify-content: flex-end;

            h1 {
                text-align: center;
                color: white;
                font-size: 50px;
                transition: transform 0.3s ease, text-shadow 0.3s ease;
                animation: pulse 2s infinite ease-in-out;



                &:hover {
                    transform: scale(1.1);
                    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
                    color: #d28ed2;
                    cursor: pointer;
                }
            }

            @keyframes pulse {
                0% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.02);
                }

                100% {
                    transform: scale(1);
                }


                @media (max-width: 1024px) {
                    font-size: 40px;
                }

                @media (max-width: 768px) {
                    font-size: 30px;
                }

                @media (max-width: 480px) {
                    font-size: 24px;
                }
            }
        }

        @media (max-width: 480px) {
            background-position: top;
        }
    }

    .blue {
        background-color: blue;
        position: absolute;
        top: 60%;
        color: white;
        border-radius: 10px;
        padding: 5px 10px;
        /* font-size: 30px; */
        font-weight: bolder;

        @media (max-width: 1024px) {
            font-size: 24px;
        }

        @media (max-width: 768px) {
            font-size: 20px;
            padding: 4px 12px;
        }

        @media (max-width: 480px) {
            font-size: 16px;
            padding: 3px 10px;
            top: 65%;
        }
    }

    .blue_right {
        background-color: blue;
        position: absolute;
        top: 90%;
        right: 0;
        color: white;
        border-radius: 10px;
        padding: 5px 15px;
        /* font-size: 30px; */
        font-weight: bolder;

        @media (max-width: 1024px) {
            font-size: 24px;
        }

        @media (max-width: 768px) {
            font-size: 20px;
            padding: 4px 12px;
        }

        @media (max-width: 480px) {
            font-size: 16px;
            padding: 3px 10px;
            top: 95%;
        }
    }
}


.bubble_li {
    padding: 100px 0;
    background-color: #00c7ff0f;
    text-align: center;

@media (max-width: 686px) {
    padding: 20px 0;
}

    .container {
        justify-content: center;
        display: flex;

        @media (max-width: 686px) {
            justify-content: space-between;
        }

        @media (max-width: 686px) {
            flex-direction: column;
            align-items: center;
        }

        .bubble_left {
            display: flex;
            flex-direction: column;
            gap: 20px;

            @media (max-width: 1000px) {}

            @media (max-width: 686px) {
                align-items: center;
            }

            .img {
                width: 300px;
                position: relative;
                transition: transform 0.3s ease, z-index 0.3s;

                &:hover {
                    transform: scale(1.05);
                    /* немного увеличиваем */
                    z-index: 10;
                    cursor: pointer;
                }

                @media (max-width: 1000px) {
                    max-width: 400px;
                }

                @media (max-width: 686px) {
                    width: 60%;
                }

                .img_wrapper {
                    color: black;
                    position: absolute;
                    display: flex;
                    top: 10px;

                    height: 100%;
                    align-items: center;
                    justify-content: space-between;
                    width: 95%;


                    .right {
                        display: flex;
                        flex-direction: column;
                        gap: 9px;

                        @media (max-width: 1000px) {
                            font-size: 12px;
                        }
                    }

                    .left_top {
                        font-weight: bolder;
                        font-size: 17px;
                        color: black;
                        width: 20%;
                        padding-left: 7px;
                        padding-bottom: 13px;
                        line-height: 1em;
                        color: white;

                        @media (max-width: 1000px) {
                            font-size: 12px;
                        }


                    }

                    .right_top {
                        background-color: white;
                        padding-left: 5px;
                        padding-right: 5px;
                        padding-top: 2px;
                        padding-bottom: 2px;
                        border-radius: 5px;



                    }

                    .right_bottom {
                        background-color: white;
                        padding-left: 5px;
                        padding-right: 5px;
                        padding-top: 2px;
                        padding-bottom: 2px;
                        border-radius: 5px;

                    }
                }


                img {
                    width: 100%;
                    z-index: -1100000;
                    border-radius: 10px;



                }
            }
        }

        .bubble_center {
            width: 33%;
            display: flex;
            gap: 20px;
            flex-direction: column;
            justify-content: center;
            align-items: center;

        @media(max-width: 991px) {
            width: 100%;
        }

            .img {
                width: 300px;
                position: relative;
                display: flex;
                text-align: center;
                transition: transform 0.3s ease, z-index 0.3s;

                &:hover {
                    transform: scale(1.05);
                    /* немного увеличиваем */
                    z-index: 10;
                    cursor: pointer;
                }

                @media (max-width: 1000px) {
                    max-width: 200px;
                }

                img {
                    width: 400px;
                    border-radius: 10px;
                }

                .img_wrapper {
                    color: black;
                    position: absolute;
                    display: flex;
                    top: 20px;
                    height: 100%;
                    align-items: center;
                    justify-content: space-between;
                    width: 95%;

                    .right {
                        display: flex;
                        flex-direction: column;
                        gap: 9px;
                    }

                    .left_top {
                        font-weight: bolder;
                        font-size: 17px;
                        color: black;
                        width: 20%;
                        padding-left: 7px;
                        padding-bottom: 13px;
                        line-height: 1em;
                        color: white;

                        @media (max-width: 1000px) {
                            font-size: 12px;
                        }


                    }

                    .right_top {
                        background-color: white;
                        padding-left: 5px;
                        padding-right: 5px;
                        padding-top: 2px;
                        padding-bottom: 2px;
                        border-radius: 5px;

                        @media (max-width: 1000px) {
                            font-size: 12px;
                        }



                    }

                    .right_bottom {
                        background-color: white;
                        padding-left: 5px;
                        padding-right: 5px;
                        padding-top: 2px;
                        padding-bottom: 2px;
                        border-radius: 5px;

                        @media (max-width: 1000px) {
                            font-size: 12px;
                        }

                    }
                }


                img {
                    width: 100%;
                }
            }

            h1 {
                font-family: 'Comic Sans MS', cursive, sans-serif;
                font-size: 50px;
                font-weight: bold;
                padding: 0;
                margin: 0;
                color: white;
                text-shadow:
                    2px 2px 5px #00000055,
                    0 0 5px #d28ed2,
                    4px 4px 10px #000000aa;
            }

            p {
                width: 60%;
                padding: 0;
                margin: 0;
            }

            .img {
                width: 300px;

            }
        }

        .bubble_right {
            display: flex;
            flex-direction: column;
            gap: 50px;

            @media (max-width: 1000px) {
                align-items: flex-end
            }

            .bubble_right_top {
                display: flex;
                align-items: center;
                gap: 25px;

                @media (max-width: 1000px) {}

                @media (max-width: 686px) {
                    width: 100%;
                    justify-content: center;
                    margin-top: 20px;

                }

                div {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;

                    @media (max-width: 1000px) {}

                    .active {
                        color: black;
                        font-weight: bolder;
                        font-size: 30px;

                        @media (max-width: 1000px) {
                            font-size: 20px;
                        }
                    }

                    span {
                        font-size: 30px;
                        font-weight: lighter;
                        color: rgb(38, 37, 37);

                        @media (max-width: 1000px) {
                            font-size: 20px;
                        }
                    }
                }

                .bubble_right_top_img {
                    background-color: #008d07;
                    font-size: 24px;
                    line-height: 30px;
                    color: white;
                    font-weight: bolder;
                    border-radius: 10px;
                    padding: 8px;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    @media (max-width: 1000px) {
                        font-size: 20px;
                    }


                }
            }

            .bubble_right_center {
                background-color: rgba(255, 255, 0, 0.784);
                border-radius: 20px;

                @media (max-width: 1000px) {
                    padding-left: 10px;
                    padding-right: 10px;
                    width: 200px;
                }

@media(max-width: 991px) {
    width: 100%;
}

                div {
                    justify-content: center;
                    gap: 25px;
                    display: flex;
                    align-items: center;

                    img {
                        width: 50px;
                        height: 50px;

                        @media (max-width: 1000px) {
                            width: 20px;
                            height: 20px;
                        }
                    }

                    h4 {
                        color: white;
                        font-weight: bolder;
                        text-align: justify;
                        font-size: 20px;

                        @media (max-width: 1000px) {
                            font-size: 15px;
                        }
                    }
                }




            }

            .bubble_right_bottom {
                @media (max-width: 1000px) {
                    display: flex;
                    justify-content: flex-end;
                }

                @media (max-width: 686px) {
                    width: 100%;
                    display: flex;
                    justify-content: center;

                }

                .img {
                    width: 300px;
                    height: 350px;

                    @media (max-width: 1000px) {
                        height: auto;
                    }

                    img {
                        width: 100%;
                    }
                }
            }
        }

    }

}



.bubble_bear {
    text-align: center;
    padding-top: 25px;
    background-image: url("./background.png");
    /* width: 90%; */
    /* margin:0 auto; ; */

    /* .container {
        margin: 0 auto;
        width: 90%; */
    @media (max-width:1100px) {
        flex-direction: column;
        align-items: center;
    }

    .header {

        .container {
            display: flex;
            height: auto;
            /* background-color: #000000aa; */
            /* flex-direction: column; */
            justify-content: space-between;
            align-items: center;

            @media (max-width:600px) {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .bubble_act {
                display: flex;
                height: 100%;
                align-items: flex-end;

                .bubble_right_top_img {
                    background-color: green;
                    font-size: 30px;
                    padding-top: 10px;
                    padding-bottom: 10px;
                    padding-left: 10px;
                    padding-right: 10px;
                    color: white;
                    height: 50px;
                    font-weight: bolder;
                    border-radius: 10px;
                    /* width: 90px; */
                    /* height: 70px; */

                    display: flex;
                    align-items: center;
                    justify-content: center;

                    @media (max-width: 600px) {
                        font-size: 40px;
                        padding: 20px;
                    }

                }

            }

            h1 {
                font-family: 'Comic Sans MS', cursive, sans-serif;
                font-size: 50px;
                font-weight: bold;
                padding: 0;
                margin: 0;
                color: white;
                text-shadow: 2px 2px 5px #00000055, 0 0 5px #d28ed2, 4px 4px 10px #000000aa;

                @media (max-width:1100px) {
                    font-size: 30px;
                }
            }

            span {
                color: rgb(180, 3, 3);
                font-weight: bolder;
                font-size: 20px;

                @media (max-width:1100px) {
                    font-size: 17px;
                }

                @media (max-width:900px) {
                    font-size: 12px;
                }
            }
        }

    }
}

.bear_carts {

    .container {
        margin-top: 100px;
        display: flex;
        justify-content: space-between;
        /* height: 600px; */

        @media (max-width: 600px) {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }


        .bear_cart {
            position: relative;
            border-radius: 10px;
            width: 30%;
            height: 400px;
            /* animation: leftRight 2s infinite ease-in-out; */


            @media (max-width: 600px) {
                width: 60%;
            }

            img {
                border-radius: 10px;
                width: 80%;
                transition: transform 0.3s ease, z-index 0.3s;
                position: relative;
                height: 400px;
                cursor: pointer;


                &:hover {
                    transform: scale(1.1);
                    /* немного увеличиваем */
                    z-index: 10;
                }
            }

            .bear_cart_content {
                background-color: #d28ed252;
                position: absolute;
                top: 28px;
                left: 20px;

                /* width: 100%; */
                /* height: 100%;    */
                .button {
                    font-size: 20px;
                    padding-top: 10px;
                    padding-left: 10px;
                    padding-right: 44px;
                    border-radius: 10px;

                    padding-bottom: 10px;
                    background-color: white
                }

            }

        }
    }

    /* } */


}

.tayvan {
    .container {
        display: flex;
        /* background-color: whitesmoke; */

        div {
            /* justify-content: center; */
            padding-left: 30px;
            padding-right: 40px;
            font-weight: bolder;
            line-height: 2em;
            letter-spacing: 3px;
            /* width:400px; */
            padding-top: 8px;
            padding-bottom: 8px;
            display: flex;
            border-radius: 10px 10px 0px 0px;
            align-items: center;
            gap: 10px;
            background-color: white;
            margin-top: 50px;
            color: rgb(180, 3, 3);
        }
    }
}

.certificates {
    margin-top: 100px;

    .header {

        .container {
            display: flex;
            height: 110px;
            /* background-color: #000000aa; */
            /* flex-direction: column; */
            justify-content: space-between;
            align-items: center;

            @media (max-width:1000px) {
                height: auto;
            }

            h1 {
                font-weight: lighter;
                color: rgb(180, 3, 3);

                @media (max-width:1000px) {
                    font-size: 22px;
                }

            }

            .bubble_center {
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .active {
                font-weight: bolder;
                font-size: 30px;
                line-height: 0.8em;
                color: rgba(36, 36, 36, 0.605);

                @media (max-width:1000px) {
                    font-size: 22px;
                }
            }

            div {
                font-weight: lighter;
                font-size: 20px;
                line-height: 0.8em;
                color: rgba(36, 36, 36, 0.444);

                @media (max-width:1000px) {
                    font-size: 18px;
                }

            }


        }

    }

    .certificates_text {
        .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 100px;

            img {
                animation: leftRight 4s infinite linear;

            }

            @media (max-width:1000px) {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;

            }

            div {
                display: flex;
                flex-direction: column;
                align-items: center;

                /* align-items: center; */
                img {
                    width: 60px;
                    height: 60px;
                    animation: leftRight 4s infinite linear;

                }

                p {
                    color: rgb(180, 3, 3);
                }
            }
        }

    }

    .certificates_content {
        /* overflow-y: hidden; */
        /* display: flex; */
        /* justify-content: space-evenly; */

        position: relative;





        .container {

            margin-top: 100px;
            display: flex;
            gap: 10px;
            justify-content: space-evenly;

            @media (max-width:1000px) {
                justify-content: space-between;

            }

            img {
                /* width: 20%; position: relative; */
                width: 30%;
                position: relative;
                transition: transform 0.4s ease;


                &:hover {
                    transform: scale(1.2) rotate(2deg);
                    z-index: 10;
                    cursor: pointer;
                }


                @media (max-width:1000px) {
                    width: 30%;

                }
            }

        }
    }
}

.ingredients h1{

    color: rgb(180, 3, 3);
}

.Production h1{

    color: rgb(180, 3, 3);
}

.forWhose {
    margin-top: 100px;

    .container {
        .header {
            display: flex;
            justify-content: space-between;

            h1 {
                color: rgb(180, 3, 3);

                @media (max-width:1000px) {
                    font-size: 25px;
                }

            }

            h3 {
                font-weight: lighter;
                font-size: 20px;
            }

            .absalute {
                margin-top: -10px;
                height: 80px;
            }
        }

        .content {
            display: flex;
            margin-top: 50px;
            flex-direction: column;
            /* justify-content: space-between; */

            li {
                font-size: 20px;
                line-height: 1.5em;
                list-style-type: none;
            }

            li::before {
                content: "";
                display: inline-block;
                width: 8px;
                height: 8px;
                background-color: rgba(224, 39, 25, 0.844);
                border-radius: 50%;
                margin-right: 8px;
                vertical-align: middle;
            }

            .content_top {
                display: flex;
                justify-content: center;
                gap: 50px;

                @media (max-width:1000px) {
                    flex-direction: column;
                    width: 100%;
                    align-items: center;
                    gap: 10px;
                }

                .content_left {
                    width: 50%;
                    display: flex;

                    @media (max-width:1000px) {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        width: auto;
                    }

                    img {
                        height: 80px;

                        @media (max-width:1000px) {
                            /* width: 30%; */
                        }

                    }


                    .content_left_text {
                        div {

                            h1 {
                                color: rgb(180, 3, 3);

                                @media (max-width:1000px) {
                                    font-size: 20px;
                                }

                            }

                            h2 {
                                @media (max-width:1000px) {
                                    font-size: 15px;
                                }
                            }
                        }


                        .content_rad {
                            li {

                                /* text-align: center; */
                                @media (max-width:1000px) {
                                    font-size: 15px;
                                }
                            }
                        }


                    }
                }

                .content_right {
                    display: flex;
                    flex-direction: column;
                    gap: 24px;

                    @media (max-width:1000px) {
                        /* width: 100%; */
                        /* justify-content: center; */
                        /* align-items: center; */
                    }

                    li {
                        @media (max-width:1000px) {
                            font-size: 15px;
                        }
                    }

                }
            }

            .content_bottom {
                /* background-image: url("./bubBack.png"); */
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;

                .content_cursive {
                    display: flex;
                    justify-content: center;
                    gap: 50px;

                    @media (max-width:1000px) {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                    }

                    img {
                        height: 50px;

                        @media (max-width:1000px) {}


                    }

                    .cursive_left {
                        .cursive_left_top {

                            display: flex;
                            align-items: center;

                            h1 {
                                color: rgb(180, 3, 3);
                                font-size: 25px;

                                @media (max-width:1000px) {
                                    font-size: 20px;
                                }
                            }

                            h2 {
                                font-weight: lighter;
                                font-size: 25px;

                                @media (max-width:1000px) {
                                    font-size: 20px;
                                }

                            }
                        }

                        ul {
                            li {
                                @media (max-width:1000px) {
                                    font-size: 15px;
                                }
                            }
                        }

                    }

                    .cursive_right {
                        .cursive_right_top {


                            display: flex;
                            align-items: center;

                            h1 {
                                color: rgb(180, 3, 3);
                                font-size: 25px;

                                @media (max-width:1000px) {
                                    font-size: 20px;
                                }
                            }

                            h2 {
                                font-weight: lighter;
                                font-size: 25px;
                                font-size: 20px;
                            }

                        }

                        ul {
                            li {
                                @media (max-width:1000px) {
                                    font-size: 15px;
                                }
                            }
                        }

                        .button {
                            background-color: violet;
                            text-align: center;
                            font-size: 20px;
                            color: white;
                            padding-top: 5px;
                            padding-bottom: 5px;
                            border-radius: 5px;
                        }


                    }

                }
            }

        }
    }
}

.Production {
    margin-top: 100px;

    .container {
        display: flex;
        justify-content: space-evenly;
        gap: 40px;

        @media (max-width: 1200px) {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .left {
            width: 33%;
            display: flex;
            flex-direction: column;
            gap: 20px;

            @media (max-width: 1200px) {
                width: 90%;
            }

            .header {
                display: flex;
                align-items: center;
                gap: 10px;

                @media (max-width: 1200px) {
                    justify-content: center;
                }

                h1 {
                    font-weight: 300;
                    color: #b40303;
                    font-size: 2rem;

                    @media (max-width: 1200px) {
                        font-size: 1.2rem;
                    }
                }

                img {
                    height: 60px;

                    @media (max-width: 1000px) {
                        width: 10%;
                        height: auto;
                    }
                }
            }

            .content {
                p {
                    font-size: 18px;
                    color: #444;
                    line-height: 1.6;

                    @media (max-width: 1200px) {
                        text-align: center;
                    }

                    @media (max-width: 1000px) {
                        font-size: 15px;
                    }

                    span {
                        font-weight: bold;
                        color: #b40303;
                    }
                }
            }


        }

        .center {
            display: flex;
            align-items: center;

            .images {
                display: flex;
                flex-wrap: wrap;
                gap: 40px;
                cursor: pointer;
                justify-content: center;
                
                @media(max-width: 991px){
                    img {
                        display:none;
                    }
                         img:first-child {
                        display:block!important;
                    }
                }

                img {
                    transition: transform 0.5s ease;
                    width: 100%;
                    height: auto;

                    &:hover {
                        transform: scale(1.2);
                    }

                }

                @media (max-width: 1200px) {
                    justify-content: center;
                }

                img {
                    width:35%;
                    border-radius: 10px;
                    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

                    @media (max-width: 1200px) {
                        width: 50%;
                        margin-bottom: 10px;
                    }
                }
            }
        }

        .right {
            display: flex;
            flex-direction: column;
            gap: 20px;
            /* width: 30%; */

            @media (max-width: 1200px) {
                width: 90%;
                align-items: center;
            }

            div {
                display: flex;
                justify-content: flex-end;
                align-items: center;

                @media (max-width: 1200px) {
                    justify-content: center;
                }

                img {
                    width: 80px;

                    @media (max-width: 1200px) {
                        width: 30%;
                        margin: 0 auto;
                    }
                }
            }

            ul {
                padding: 0;
                margin: 0;
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 15px;

                li {
                    font-size: 18px;
                    line-height: 1.6;
                    color: #333;
                    position: relative;
                    padding-left: 20px;

                    &::before {
                        content: "";
                        position: absolute;
                        left: 0;
                        top: 10px;
                        width: 8px;
                        height: 8px;
                        background-color: rgba(224, 39, 25, 0.844);
                        border-radius: 50%;
                    }

                    br {
                        @media (max-width: 1200px) {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}


.ingredients {
    margin-top: 100px;

    .container {
        .header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .content_top {
            margin-top: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;

            @media (max-width:1000px) {
                justify-content: center;
                gap: 40px;

            }

            /* justify-content: center; */


            img {
                max-width: 500px;
@media (max-width:991px) {
    width: 100%;
}
            }

            .a {
                border: 3px solid red;
                height: 150px;
                display: flex;
                justify-content: center;
                width: 20%;
                flex-direction: column;
                margin: 0;
                padding: 0;
                gap: 5px;
                border-radius: 10px;
                padding: 10px;

                @media (max-width:1100px) {
                    width: 40%;
                }

                @media (max-width:991px) {
                    width: 60%;
                }

                .button {
                    width: 60%;

                    background-color: #d28ed2;
                    padding: 5px;
                    color: white;
                    font-size: 18px;
                    border-radius: 5px;

                }

                .bot {
                    display: flex;
                    align-items: center;

                    img {
                        height: 50px;
                    }
                }
            }

            .center {

                h1 {
                    font-weight: bolder;
                    color: red;
                }

                p {
                    font-size: 18px;
                }
            }
        }

        .content_bottom {
            margin-top: 50px;
            display: flex;
            justify-content: space-between;

            @media (max-width:1100px) {
                flex-direction: column;
                /* flex-wrap: wrap; */
                align-items: center;
                gap: 20px;
            }


            .cart {
                position: relative;
                width: 30%;
                transition: transform 0.3s ease;

                &:hover {
                    transform: scale(1.05);
                }

                @media (max-width:1100px) {
                    width: 50%;
                }

                img {
                    /* position: absolute; */
                    width: 100%;
                    height: auto;
                    /* height: 300px; */

                }

                .cart_content {
                    position: absolute;
                    width: 100%;
                    padding: 14px;
                    top: 0;

                    @media (max-width:730px) {
                        top: 20px;
                        left: 0;
                    }

                    @media (max-width:500px) {
                        width: auto;
                    }

                }

                .cart_header {
                    display: flex;
                    align-items: center;
                    gap: 18%;

                    @media (max-width:730px) {
                        /* justify-content: space-evenly; */
                        gap: 10%;
                    }

                    /* justify-content: space-be; */

                    img {
                        width: 30px;
                        cursor: pointer;
                    }

                    .button {
                        background-color: rgb(241, 7, 7);
                        width: 65%;
                        padding-top: 7px;
                        padding-bottom: 7px;
                        border-radius: 5px;
                        color: white;
                        padding: 5px;

                    }
                }

                p {
                    font-size: 20px;

                    @media (max-width:730px) {
                        font-size: 15px;
                    }

                }


            }


        }
    }

}

.extension {
    /* background-image: url("./extenshionsBackground.png"); */
    /* height: 100vh; */
    margin-top: 100px;

    .container {
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;

            @media (max-width:1100px) {
                font-size: 18px;
            }

            @media (max-width:600px) {
                flex-direction: column;
                gap: 30px;
            }

            h1 {
                color: rgb(12, 12, 12);
                font-size: 50px;

                @media (max-width:1100px) {
                    font-size: 20px;
                }


            }
        }

        .content {
            width: 100%;
            display: flex;
            justify-content: center;
            position: relative;

            img {
                width: 90%;
            }

            .hed {
                position: absolute;
                display: flex;
                align-items: center;
                left: 80px;
                gap: 100px;
                top: 10px;

                @media (max-width:1000px) {
                    gap: 10%;

                }

                h3 {
                    font-weight: lighter;

                    @media (max-width:1200px) {
                        font-size: 15px;
                    }

                    @media (max-width:1000px) {
                        font-size: 12px;
                        width: 100%;
                    }

                    br {
                        @media (max-width:1000px) {
                            display: none;

                        }
                    }

                    @media (max-width:900px) {
                        display: none;
                    }
                }

                img {
                    width: 60px;

                    @media (max-width:900px) {
                        width: 20%;
                    }

                }
            }

            .cub {
                padding-left: 20px;
                padding-right: 10px;
                padding-bottom: 20px;
                padding-bottom: 20px;
                border: 1px solid red;
                border-radius: 20px;
                position: absolute;
                height: 140px;
                left: 100px;
                top: 50%;
                bottom: 50%;

                @media (max-width:800px) {
                    display: none;
                }

                p {}

                div {
                    display: flex;
                    justify-content: flex-end;

                    img {
                        width: 30px;
                    }
                }
            }
        }
    }
}

.missy {
    margin-top: 100px;

    .container {
        display: flex;
        flex-direction: column;
        gap: 40px;

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;

            img {
                width: 60px;
            }

            h1 {
                color: #b40303;
                font-weight: 300;
                font-size: 2.5rem;
                letter-spacing: 2px;
            }
        }

        .missy_content {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            gap: 40px;

            @media (max-width: 930px) {
                flex-direction: column;
                align-items: center;
            }

            .left {
                display: flex;
                flex-direction: column;
                gap: 30px;

                div {
                    border: 1px solid #b40303;
                    width: 250px;
                    border-radius: 10px;
                    display: flex;
                    gap: 10px;
                    padding: 10px 15px;
                    align-items: center;
                    background-color: #fff7f7;
                    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

                    img {
                        height: 30px;
                    }
                }

                ul {
                    display: flex;
                    flex-direction: column;
                    gap: 30px;
                    padding: 0;
                    margin: 0;

                    li {
                        list-style: none;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        font-size: 18px;
                        color: #333;

                        &:before {
                            content: "✔️";
                            font-size: 16px;
                            color: #b40303;
                        }
                    }
                }
            }

            .center {
                img {
                    height: 500px;
                    transition: transform 0.3s ease;
                    position: relative;
                    border-radius: 15px;
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

                    &:hover {
                        transform: scale(1.2) rotate(3deg);
                        z-index: 10;
                        cursor: pointer;
                    }
                }
            }

            .right {
                display: flex;
                flex-direction: column;
                gap: 20px;
                max-width: 300px;
                margin-bottom: 50px;

                p {
                    font-size: 16px;
                    line-height: 1.6;
                    color: #555;
                    padding: 12px;
                    font-family: "Oswald", sans-serif;
                    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
                }

                .button {
                    /* background-color: #b40303; */
                    color: red;
                    padding: 10px 20px;
                    font-weight: bold;
                    border-radius: 10px;
                    /* color: #fff; */
                    letter-spacing: 2px;
                    text-align: center;
                    width: 80%;
                    transition: background-color 0.3s ease;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.237);

                    &:hover {
                        /* background-color: #a00202; */
                        cursor: pointer;
                    }
                }
            }
        }
    }
}


.contacts {
    position: relative;
    background: url("./footer.png") center/cover no-repeat;
    color: white;
    font-family: 'Inter', sans-serif;
margin-top: 50px;

    .center_img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 180px;
        opacity: 0.9;
        transition: height 0.4s ease-in-out;

    @media(max-width: 991px) {

        left: 75%;
    }

        &:hover {
            height: 200px;
        }
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);

        img {
            width: 50px;
            transition: transform 0.3s ease;

            &:hover {
                transform: scale(1.1);
            }
        }
    }

    .content {
        padding: 0px 0;

        a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;

            &:hover {
                color: #ff5e5e;
            }
        }

        .container {
            display: flex;
            flex-wrap: wrap;
            /* gap: 40px; */
            align-items: center;

            img {
                height: 32px;
                margin-right: 8px;
            }

            ul {
                list-style: none;
                padding: 0;
                font-size: 16px;
                line-height: 1.5;

                li {
                    /* margin-bottom: 6px; */
                }
            }
        }
    }

    .bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        /* padding: 16px 0; */

        a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;

            &:hover {
                color: #ff5e5e;
            }
        }

        .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            /* gap: 16px; */

            .scan {
                width: 100px;
            }
        }
    }

    hr {
        width: 20%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        /* margin: 24px auto; */
    }
}

video {

    width: 100%;
    margin-top: -105px;
}

@media(max-width: 991px){
    
video {

    margin-top: -65px;
}

}

.wrapper-image {

    background-color: #00c7ff0f;

    img {

        width: 100%;
    }
}

.wrapper-main-title {

    font-size: 48px;
    line-height: 54px;
    color: #b40303;
    margin-left: 50px;
    margin-bottom: 20px;

    a {

        color: #b40303;
    }
}

.buy-page .wrapper-items {

    display: flex;
    gap: 30px;
}

.buy-page .wrapper-items .wrapper-item{

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.buy-page .wrapper-items .wrapper-item{

    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
}

.buy-page .wrapper-items .wrapper-item img{

    max-width: 60%;
    max-height: 150px;
    margin: 0 auto;
}

.buy-page .wrapper-items .wrapper-item h2{

   font-size: 20px;
}

.buy-page .wrapper-items .wrapper-item .wrapper-logo{

    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 30px 0;
    position: relative;
}

.marquee span {
    position: absolute;
    left: -100%;
    animation: marquee 20s linear infinite;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 24px;
    color: #b40303;
    font-weight: 600;
}

@keyframes marquee {
    0% { left: -100%; }
    100% { left: 100%; }
}

@media(max-width: 991px) {

    video {

        height: auto;
        margin-top: 0;
    }

    .certificates {

        margin: 0 16px!important;
    }

    .certificates h1{

        font-size: 36px!important;
        line-height: 42px;
    }

    .certificates .container{

        margin: 30px 0!important;
        width: 100%;
    }

    .certificates .container p{

        margin: 0!important;
    }

    h1 {

        margin-top: 0;
    }

    .buy-page .wrapper-items {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

