body {
    font-family: 'Lora', sans-serif;
    padding: 0;
    margin: 0;
}

nav {
    background-color: black;
    color: azure;
    padding: 20px 50px;
}

.navTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search {
    display: flex;
    align-items: center;
    background-color: rgb(137, 136, 136);
    padding: 10px 20px;
    border-radius: 10px;
}

.searchInput {
    border: none;
    background-color: transparent;
    color: white;
    margin-right: 10px;
}

.searchInput::placeholder {
    color: lightgray;
}

.navBottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuItem {
    margin-right: 50px;
    cursor: pointer;
    color: lightgray;
    font-weight: 400;
}

.slider {
    position: relative;
    overflow: hidden;
}

.sliderWapper {
    display: flex;
    width: 500vw;
    transition: all 1s ease-in-out;
}

.sliderImg {
    height: auto;
    display: block;
    margin: 0 auto;
}

.sliderItem {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.slideTitle {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    color: rgb(238, 232, 232);
}

.productGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.productItem {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.productItem img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 5px #ccc);
}

#map {
    margin: 20px 0;
}

.brand {
    padding: 30px 14%;
    background: var(--var-text);
}

.brand__image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}

.brand__image img {
    max-width: 120px;
}

.brand__image:hover {
    opacity: 1;
}

@media screen and (max-width:700px) {
    nav {
        padding: 5px;
    }
    .search {
        display: none;
    }
    .navBottom {
        flex-wrap: wrap;
    }
    .menuItem {
        margin: 20px;
        font-weight: 800;
        font-size: 15px;
    }
    .slider {
        clip-path: none;
    }
    .slideTitle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        font-size: 24px;
    }
    .sliderImg {
        width: 500px;
    }
}