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

    .header .nav {
        display: none;
    }

    .header .mobile-nav {
        display: flex;
    }

    .hero {
        width: 88%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 60px;
    }

    .hero .right .feedbacks {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 20px;
        display: grid;
        grid-template-columns: 1fr;
        background-color: transparent;
        margin-top: 100px;
    }

    .hero .right .feedbacks .fedback-image {
        background: none;
        width: 100%;
        height: 100%;
        background-color: #00A6FA;
        border-radius: 10px 10px 0 0;
        padding: 10px 0 20px 0;
    }

    .hero .right .feedbacks .fedback-image .text-1 {
        margin-right: 0;
    }

    .hero .right .feedbacks .fedback-image .text-2 {
        margin-right: 0;
    }

    .hero .evaluations {
        position: relative;
        width: 100%;
        height: max-content;
        background-color: #131617;
        right: auto;
        top: auto;
        padding: 10px;

    }

    .hero .left {
        width: 100%;
        padding-left: 0;
        height: max-content;
        box-sizing: border-box;
    }

    .hero .left h1::before {
        display: none;
    }

    .hero .left .desc {

        padding-right: 0;
        padding-left: 0;
    }

    .slide .slider .item {
        width: calc(100%/2);
        min-width: calc(100%/2);
    }

    .product .left .photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .product {
        grid-template-columns: repeat(1, 1fr);
    }

    .product .right .desc {

        padding-right: 0px;
        padding-left: 0px;
    }

    .products .container {
        grid-template-columns: 1fr;
    }

    .products .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .products .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .basket .wrapper .item {
        flex-direction: column;
    }

    .basket .wrapper .item .left .script-image {
        display: none;
    }

}


@media only screen and (max-width : 500px) {
    .hero .right .feedbacks .fedback-image {
        width: auto;
    }

    .hero .evaluations {
        width: auto;
    }

    .slide .slider .item {
        width: calc(100%/1);
        min-width: calc(100%/1);
    }

    .basket .btn {
      
        font-size: 13px;
    }
}