* {
    box-sizing: border-box;
    outline: none;
    /* מוריד את המסגרת מסביב לדברים */
}

body {
    background-color: silver;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.container_fluid {
    width: 100%;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    min-height: inherit;/* יורש את הגובה מאבא */
}

header {
    min-height: 100px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

header .logo {
    max-width: 200px;
    float: left;
    padding: 10px;
}

header .logo img {
    width: 100%;
    margin-top: 15px;
}

header .burger {
    float: right;
    font-size: 2.6em;
    line-height: 100px;
    margin-right: 10px;
    display: none;
}

header nav {
    float: left;
    display: flex;
    align-items: center;
    min-height: 100px;
}

header nav ul {
    list-style-type: none;
    /* בלי נקודות */
    margin: 0;
    padding: 0;
}

header nav li {
    display: inline-block;
    /* אחד ליד השני */
}

header nav a {
    color: rgb(218, 140, 23);
    text-decoration: none;
    /* שלא יהיה קו תחתית */
    padding: 0 12px;
    font-size: 1.2em;
}

header nav a:hover {
    color: rgb(0, 0, 0);
}

header .search {
    float: right;
    display: flex;
    align-items: center;
    min-height: 100px;
}

header .search form {
    border: 1px solid silver;
    padding: 10px;
    border-radius: 8px;
}

header .search input {
    border: 0px solid black;
}

header .search button {
    background-color: transparent;
    border: 0px solid black;
}

header .search button:active {
    transform: translate(0, 2px);
}

.strip {
height: 1000px;
    /* min-height: 800px; */
    /* background-color: red; */
    background-image: url(../images/shop.jpg);
    background-size: cover;
    background-size: 100%;
    background-position: left center;
    padding: 1px;
    position: relative;
    /* שיתייחס לאבא */
    height: 650px;
}

.strip h1 {
    position: absolute;
    bottom: 15px;
    padding: 0 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
    font-size: 55px;
}

.blocks {
    min-height: 100px;
    background-color: rgb(216, 212, 212);
    padding: 24px 0;
}

.blocks .row {
    width: 100%;
    min-height: inherit;
    overflow: hidden;
}

.blocks .box {
    width: 23%;
    min-height: 200px;
    float: left;
    margin-right: 2.66%;
}

.blocks .box_end {
    margin-right: 0;
}

.blocks .box h3 {
    text-align: center;
    color: white;
    background-color:#414141;
    margin: 0px;
    padding: 16px 0;
    border-bottom: 4px solid #414141;
}

.blocks .box>div {
    width: 100%;
    background-color: white;
    min-height: 180px;
    text-align: center;
    padding: 16px;
    border: 1px solid silver;
}

.blocks .box>div p {
    font-size: 0.9em;
}

.blocks .box>div a {
    font-size: 0.9em;
    color:silver;
    text-decoration: none;
}

footer {
    height: 150px;
    background-color:#414141;
}



.btna {
    width: 80%;
    height: 25px;
    border-radius: 50px;
    background-color:#414141;
    font-size: 15px;
    border: none;
}



@media screen and (max-width:768px) {

    header .burger {
        display: block;
    }

    header nav {
        display: none;
        position: absolute;
        background-color: white;
        width: 50%;
        text-align: center;
        z-index: 1;
        right: 0;
        border: 1px solid silver;
        top: 100px;
    }

    header nav li {
        display: block;
        padding: 10px;
        border-bottom: 1px solid gray;
    }

    header .search {
        display: none;
    }

    .strip h1 {
        width: 100%;
        text-align: center;
    }

    .blocks {
        padding: 24px 16px;
    }

    .blocks .box {
        width: 100%;
        margin: 0;
        margin-bottom: 16px;
    }
}



