



/*fix stars*/







/*category*/

.product-category{
    position: relative;
    padding-block: 50px 60px;
}

.category-head{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
}

.category-head h3{
    color: var(--primary-color);
    font-size: 25px;
    /*font-weight: 600;*/
    margin-bottom: 20px;
    font-family: 'VZ-Bold';
}

.category-head h1{
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'VZ-Bold';
    font-size: var(--site-title);
}

.category-head span{
    color: var(--primary-color);
    font-size: var(--size-title2);
    line-height: 28px;
}

.category-items{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.swiper_category{
    padding-inline: 55px;
    width: 86%;
}

.each-cat-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-inline: 23px;

    cursor:url(../images/cursor.png), auto !important;
}

.each-cat-item span{
    color: var(--primary-color);
    font-size: 15px;
}

.each-cat-image{
    width: 108px;
    height: 131px;
}

.each-cat-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category_big{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
}

.category-big-image{
    width: 430px;
    height: 430px;
    position: relative;
    cursor:url(../images/cursor.png), auto !important;
}

.category-big-image.loaded{
    opacity: 1;
    animation: roll_big cubic-bezier(0.4, 0, 1, 1) .9s;
}


@keyframes roll_big {

    50%{
        transform:translateY(-34%);
    }

}

.category-big-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stars img:first-child{
    position: absolute;
    top: 30%;
    left: -10%;
    width: 20px;
    height: 20px;
    opacity: .4;
    animation: shining 2s;
    animation-iteration-count: infinite;
    /*animation-delay: .7s;*/
}

.stars img:nth-child(2){
    position: absolute;
    top: 15%;
    left: 0;
    width: 20px;
    height: 20px;
    opacity: .4;
    animation: shining 2s;
    animation-iteration-count: infinite;
    animation-delay: .7s;
}

.stars img:nth-child(3){
    position: absolute;
    top: 20%;
    right: 0;
    width: 20px;
    height: 20px;
    opacity: .4;
    animation: shining 2s;
    animation-iteration-count: infinite;
    animation-delay: .7s;
}

.stars img:nth-child(4){
    position: absolute;
    top: 47%;
    right: -20%;
    width: 20px;
    height: 20px;
    opacity: .4;
    animation: shining 2s;
    animation-iteration-count: infinite;
    /*animation-delay: .7s;*/
}

/*category*/



/*about section*/


.about-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background-image: url(../images/index/about-back.png);
    background-repeat: no-repeat;
    padding-block: 70px 163px;
    padding-inline: 220px;
    background-size: contain;
    background-position: center;
}



.about-box.loaded{
    animation: tilt-shaking 1s;
}

@keyframes tilt-shaking {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(7deg); }
    50% { transform: rotate(0eg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

/*.about-box::before{*/
/*    position: absolute;*/
/*    content: '';*/
/*    background-image: url("../images/index/about-back.png");*/
/*    background-repeat: no-repeat;*/
/*    width: 100%;*/
/*    height: 500px;*/
/*    z-index: -1;*/
/*}*/


.about-box h2{
    color: var(--white-color);
    font-size: var(--site-title);
    /*font-weight: 600;*/
    padding-bottom: 15px;
    font-family: 'VZ-Bold';
}

.about-box h6{
    color: var(--white-color);
    font-weight: 500;
    font-size: var(--size-title2);
    padding-bottom: 20px;
}

.about-box p{
    color: var(--white-color);
    font-size: 15px;
    text-align: center;
    line-height: 28px;
}




/*about section*/




/*blog section*/

.blog-section{
    position: relative;
    padding-block: 75px 50px;
}

.blog-head{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 9px;
}

.blog-head h3{
    color: var(--primary-color);
    font-size: var(--site-title);
    /*font-weight: 600;*/
    font-family: 'VZ-Bold';
}


.whole-swiper-blogs{
    position: relative;
    padding-inline: 30px;
}


.whole-swiper-blogs .swiper_blogs_index, .whole-swiper-blogs .swiper_blogs_index .swiper-wrapper{
    position: unset !important;
}


.blogs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    padding: 0;
}

.each-blog{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffff;
    border-radius: 9px;
    padding: 21px;
    position: relative;
    /* box-shadow: 0px 0px 11px 3px var(--secondary-color); */
    cursor: url(../images/cursor.png), auto !important;
    border: 3px solid var(--secondary-color);
}

.swiper_blogs_index .swiper-wrapper{
    padding-block: 20px;
}

.swiper_blogs_index .swiper-slide{
    padding-inline: 8px;
}


.each-blog:nth-child(odd)::before{
    content: '';
    position: absolute;
    background-image: url(../images/index/ex1.svg);
    background-repeat: no-repeat;
    width: 38px;
    height: 39px;
    background-size: contain;
    top: 11px;
    right: 13px;
    transform: rotate(129deg);
}

.each-blog:nth-child(odd)::after{
    content:'';
    position: absolute;
    background-image: url("../images/index/ex2.svg");
    background-repeat: no-repeat;
    width: 36px;
    height: 33px;
    background-size: contain;
    top: 201px;
    left: -6px;
    transform: rotate(129deg);
}

.each-blog:nth-child(even)::before{
    content: '';
    position: absolute;
    background-image: url(../images/index/ex1.svg);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-size: contain;
    top: 15px;
    left: 14px;
}

.each-blog:nth-child(even)::after{
    content: '';
    position: absolute;
    background-image: url(../images/index/ex2.svg);
    background-repeat: no-repeat;
    width: 44px;
    height: 43px;
    background-size: contain;
    top: 201px;
    right: -1px;
}


.each-blog:hover{
    background: var(--secondary-color);
}


.blog-name{
    font-size: var(--blog-name);
    color: var(--primary-color);
     /*font-weight: 600;*/
    text-align: center;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 56px;
    font-family: 'VZ-Bold';
}

.blog-image{
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.each-blog p{
    font-size: var(--blog-p);
    color: var(--text-color);
    line-height: 20px;
    text-align: justify;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}


/*blog section*/




/*responsive*/
/*responsive*/
/*responsive*/
/*responsive*/
@media screen and (max-width: 1599px){

    .about-box p {
        font-size: 13px;
    }
    .each-cat-item span {
        font-size: 13px;
    }
    .category-big-image{
        width: 390px;
        height: 390px;
    }



}



@media screen and (max-width: 1500px){

    .category-big-image {
        width: 360px;
        height: 360px;
    }

}



@media screen and (max-width: 1399px){

    .category-big-image {
        width: 390px;
        height: 390px;
    }

    .about-box {
        padding-block: 28px 85px;
        padding-inline: 212px;
    }

    .each-cat-item {
        padding-inline: 9px;
    }

    .category-big-image {
        width: 300px;
        height: 300px;
    }


}


@media screen and (max-width: 1199px){

    .swiper_category {
        padding-inline: 32px !important;
        width: 83%;
    }

    .each-cat-item span {
        font-size: var(--mobile-text-font);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
    }

    .each-cat-item {
        gap: 8px;
    }

    .swiper_category {
        padding-inline: 120px;
    }

    .category-big-image {
        width: 290px;
        height: 290px;
    }

    .about-box p {
        font-size: 15px;
    }

    .each-cat-image {
        width: 116px;
        height: 116px;
    }

    .about-box h6 {
        font-size: 16px;
    }

    .about-box h2 {
        font-size: 32px;
    }

    .product-category {
        padding-block: 0 75px;
    }

    .blog-name {
        font-size: 15px;
    }

    .blog-image {
        height: 136px;
    }


    .each-blog:nth-child(odd)::after {
        width: 36px;
        height: 31px;
        top: 153px;
        left: 2px;
    }

    .each-blog:nth-child(even)::after {
        width: 36px;
        height: 31px;
        top: 153px;
        right: 2px;
    }

    .each-blog:nth-child(odd)::before {
        width: 46px;
        height: 42px;
        top: 21px;
        right: 14px;
    }

    .each-blog:nth-child(even)::before {
        width: 46px;
        height: 42px;
        top: 21px;
        left: 14px;
    }

    .faqs-section {
        padding-block: 57px 81px;
    }

    .blog-section {
        position: relative;
        padding-block: 51px 50px;
    }
    .about-box {
        padding-inline: 148px;
    }

    .about-box h6 {
        font-size: 18px;
        padding-bottom: 8px;
    }

    .category-items {
        gap: 10px;
    }

}


@media screen and (max-width: 991px){

    .category-head h1 {
        font-size: calc(var(--site-title) - 5px);
    }


    .category-head h6{
        font-size: calc(var(--primary-color) - 5);
    }


    .about-box h2 {
        font-size: calc(var(--site-title) - 5px);
    }

    .blog-head h3 {
        font-size: calc(var(--site-title) - 5px);
    }


    .faqs-head span {
        font-size: 14px;
        font-weight: 500;
        line-height: 28px;
    }

    .faqs-head {
        padding-inline: 17px;
    }


    .about-box h2 {
        padding-bottom: 8px;
    }

    .about-box h6 {
        font-size: 16px;
        padding-bottom: 3px;
    }
    .read-more {
        font-size: 15px;
    }

    .about-box p {
        color: var(--white-color);
        text-align: justify;
        font-size: 12px;
        line-height: 26px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }

    .about-box p {
        font-size: 14px;
        line-height: 28px;
    }

    .about-box h6 {
        font-size: 15px;
        padding-bottom: 3px;
    }

}


@media screen and (max-width: 767px){

    .category-big-image {
        width: 290px;
        height: 290px;
    }

    .swiper_category .swiper-button-prev, .swiper_category.swiper-rtl .swiper-button-next {
        left: 90px;
        right: auto;
    }

    .swiper_category .swiper-button-next, .swiper_category.swiper-rtl .swiper-button-prev {
        right: 90px;
        left: auto;
    }


    .swiper-slide {
        padding-inline: 60px !important;
    }

    .about-box {
        padding-inline: 75px;
    }

    .about-box p {
        -webkit-line-clamp: 5;
        font-size: 11px;
        line-height: 18px;
    }

    .about-box h2 {
        font-size: 20px;
        padding-bottom: 7px;
    }

    .about-box h6 {
        font-size: 14px;
        padding-bottom: 7px;
    }

    .about-box {
        padding-block: 21px 63px;
        padding-inline: 30px;
    }

}


@media screen and (max-width: 575px){


    .category-head h1{
        font-size: var(--main-mobile-title);
        text-align: center;

    }

    .category-head h6{
        font-size: var(--main-mobile-title);
    }

    .each-cat-image {
        width: 80px;
        height: 80px;
    }

    .category-head {
        padding-bottom: 45px;
    }

    .swiper_category {
        width: 68%;
    }


    .about-box h2 {
        font-size: var(--mobile-title-font);
        line-height: var(--mobile-line-height);
        /*font-weight: 600;*/
        padding-bottom: 0;
        font-family: 'VZ-Bold';
    }

    .about-box h6 {
        font-size: var(--mobile-mini-title);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
        padding-bottom: 0px;
        font-family: 'VZ-Bold';
        /*font-weight: 600;*/
    }

    .about-box p {
        font-size: var(--mobile-text-font);
        line-height: var(--mobile-line-height);
        margin-bottom: 3px;
    }

    .category-big-image {
        width: 173px;
        height: 170px;
    }

    .category_big {
        padding-top: 34px;
        padding-bottom: 26px;
    }

    .swiper_category .swiper-button-prev, .swiper_category.swiper-rtl .swiper-button-next {
        left: 70px;
        right: auto;
    }

    .swiper_category .swiper-button-next, .swiper_category.swiper-rtl .swiper-button-prev {
        right: 70px;
        left: auto;
    }

    .about-box {
        padding-inline: 40px;
        background-size: contain;
        height: 270px;
        background-position: center;
        padding-block: 21px 42px;
    }

    .about-box p {
        /*-webkit-line-clamp: 3;*/
        /*font-size: var(--mobile-text-font);*/
        -webkit-line-clamp: 6;
        font-size: var(--mobile-text-font);
        font-size: 7px;
        line-height: 11px;

    }

    .about-box h2 {
        font-size: var(--main-mobile-title);
        margin-bottom: 0px;
    }

    .read-more {
        bottom: 24%;
        left: 16%;
        font-size: var(--mobile-text-font);
    }


    .blog-name {
        font-size: var(--mobile-title-font);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
        /*font-weight: 600;*/
        font-family: 'VZ-Bold';
        min-height: 38px;
    }

    .each-blog p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        font-size: var(--mobile-text-font);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
        text-align: center;
    }

    .blog-head h3 {
        font-size: var(--main-mobile-title);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
        /*font-weight: 600;*/
        font-family: 'VZ-Bold';
    }

    .faqs-head h3 {
        font-size: var(--main-mobile-title);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
        /*font-weight: 600;*/
        font-family: 'VZ-Bold';
    }
    .category-head h3 {
        font-size: var(--mobile-title-font);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
    }

    .faqs-head span {
        font-size: var(--mobile-text-font);
        line-height: var(--mobile-line-height);
        text-align: center;
    }

    .category-head h6 {
        font-size: var(--main-mobile-title);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
        text-align: center;
        /*font-weight: 600;*/
        font-family: 'VZ-Bold';
    }
    .category-head span {
        font-size: var(--mobile-text-font);
        line-height: var(--mobile-line-height);
        margin-bottom: 0;
    }

    .each-blog {
        border-radius: 22px;
        padding: 17px;
    }

    .blog-section {
        padding-block: 0px 0px;
    }

    .swiper_blogs_index .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .each-blog {
        width: 74%;
    }

    .each-blog:nth-child(odd)::after {
        top: 138px;
        left: -6px;
        transform: scale(0.7) rotate(129deg);
    }

    .each-blog:nth-child(odd)::before {
        transform: scale(0.7) rotate(129deg);
        top: 6px;
        right: 1px;
    }

    .blog-image {
        margin-bottom: 11px;
    }

    .faqs-section {
        padding-block: 57px 31px;
    }

    .swiper_blogs_index .swiper-wrapper {
        padding-block: 0;
    }

}


@media screen and (max-width: 425px){

    .product-category{
        margin-top: 20px;
    }

    .whole-swiper-blogs {
        padding-inline: 0;
    }


    .category-head {
        padding-bottom: 22px;
    }

    .about-box {
        height: 217px;
    }

    .category-big-image {
        width: 173px;
        height: 160px;
    }

    .category_big {
        padding-top: 20px;
        padding-bottom: 0px;
    }

    .swiper_category .swiper-button-prev, .swiper_category.swiper-rtl .swiper-button-next {
        left: 60px;
        right: auto;
    }

    .swiper_category .swiper-button-next, .swiper_category.swiper-rtl .swiper-button-prev {
        right: 60px;
        left: auto;
    }

    /*.blog-name {*/
    /*    font-size: 16px;*/
    /*    line-height: 25px;*/
    /*}*/

    .blog-image {
        margin-bottom: 15px;
    }

    .blog-name {
        padding-bottom: 0px;
    }

    .swiper-slide {
        padding-inline: 43px !important;
    }

    .faqs-section {
        padding-block: 31px 51px;
    }
}


@media screen and (max-width: 375px){

    .product-category {
        margin-top: 0;
    }

    .about-box {
        height: 220px;
    }


    /*.category-big-image {*/
    /*    width: 271px;*/
    /*    height: 317px;*/
    /*}*/

    .swiper_category .swiper-button-prev, .swiper_category.swiper-rtl .swiper-button-next {
        left: 40px;
        right: auto;
    }

    .swiper_category .swiper-button-next, .swiper_category.swiper-rtl .swiper-button-prev {
        right: 40px;
        left: auto;
    }

    .swiper-slide {
        padding-inline: 11px !important;
    }


}


@media screen and (max-width: 320px){

    .about-box {
        height: 204px;
    }

    .about-box p {
        -webkit-line-clamp: 5;
    }

    .read-more {
        bottom: 27%;
    }

    /*.category-big-image {*/
    /*    width: 478px;*/
    /*    height: 341px;*/
    /*}*/

    .each-blog {
        padding: 12px;
    }

    .swiper_category .swiper-button-prev, .swiper_category.swiper-rtl .swiper-button-next {
        left: 20px;
        right: auto;
    }

    .swiper_category .swiper-button-next, .swiper_category.swiper-rtl .swiper-button-prev {
        right: 20px;
        left: auto;
    }
}


@media screen and (max-width: 309px){
    .about-box p {
        font-size: 6px;
    }
}

@media screen and (max-width: 290px){
    .about-box h2 {
       margin-bottom: -6px;
        font-size: 10px;
    }
}





/*responsive*/
/*responsive*/
/*responsive*/
/*responsive*/
