#products-intro {
    width:100%;
    height: 50vh;
 
    background-repeat: no-repeat;
    background-size: cover;
}

.intro-blocker {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: rgba(11, 10, 10, 0.7);
    z-index: 1;
}

.intro-title {
    position: absolute;
    top: 39vh;
    margin: auto;
}

.intro-title h4 {
    font-size: 80px;
    color: #EDEDED;
    font-family: 'Londrina Outline', cursive;
}


/*product-filter*/

.filter-box {
    width: 70%;
    position: relative;
    top: 0;
    margin:auto;
}

.search-box {
    margin: auto;
    position: relative;
    margin-top: 15px;
    left: 0;
    right: 0;
    margin-bottom: 20px;
    width: 300px;
    height: 100px;
}

.search-box .search {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: #474343;
    border-radius: 50%;
    transition: all 1s;
    z-index: 4;
}

.search-box .search:hover {
    cursor: pointer;
}

.search-box .search::before {
    content: "";
    position: absolute;
    margin: auto;
    top: 22px;
    right: 0;
    bottom: 0;
    left: 22px;
    width: 12px;
    height: 2px;
    background: white;
    transform: rotate(45deg);
    transition: all 0.5s;
}

.search-box .search::after {
    content: "";
    position: absolute;
    margin: auto;
    top: -5px;
    right: 0;
    bottom: 0;
    left: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
    transition: all 0.5s;
}

.search-box input {
    font-family: "Inconsolata", monospace;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    background: #474343;
    color: white;
    text-shadow: 0 0 10px #474343;
    padding: 0 80px 0 20px;
    border-radius: 30px;
    transition: all 1s;
    opacity: 0;
    z-index: 5;
    font-weight: bolder;
    letter-spacing: 0.1em;
}

.search-box input:hover {
    cursor: pointer;
}

.search-box input:focus {
    width: 300px;
    opacity: 1;
    cursor: text;
}

.search-box input:focus~.search {
    right: -250px;
    background: #151515;
    z-index: 6;
}

.search-box input:focus~.search::before {
    top: 0;
    left: 0;
    width: 25px;
}

.search-box input:focus~.search::after {
    top: 0;
    left: 0;
    width: 25px;
    height: 2px;
    border: none;
    background: white;
    border-radius: 0%;
    transform: rotate(-45deg);
}

.search-box input::placeholder {
    color: white;
    opacity: 0.5;
    font-weight: bolder;
}

.filter-options {
    display: block;
    text-align: center;
}

.filter-options ul {
    margin-top: 0px;
    border: 2px solid #474343;
    display: block;
    text-align: center;
}

.filter-options li {
    font-size: 30px;
    display: inline-block;
    margin: 30px;
    cursor: pointer;
    font-family: 'Teko', sans-serif;
}


.row{
    margin:0;
}

/*products-section*/

.product-big-cont {
    width: 85%;
    display: flex;
    position: relative;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 120px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    transition: all 0.5s ease-in-out;
}

.card {
    width: 400px !important;
    transition: all .5s ease-in-out;
    position: relative;
    margin-bottom: 50px !important;
    background-color: #474343 !important;
}

.card img {
    height: 350px;
    object-fit: cover;
    border-bottom-right-radius: 45px;
    border-bottom-left-radius: 45px;
}

.card-body {
    background-color: #474343;
    text-align: center;
}
.card-body h2{
    font-family: 'Teko', sans-serif;
    color: #EDEDED;
}
.card-body p {
    font-family: 'Hind', sans-serif;
    color: #EDEDED;

}

.btn {
    padding: 0px !important;
    width: 80px;
    background-color: #EDEDED !important;
    color: #474343 !important;
    font-size: 25px;
font-family: 'Teko', sans-serif;
}

.footer {
    top: 50px !important;
}
@media screen and (min-width:1025px){
    #product-intro{
        background-attachment:fixed;
    }
}
@media screen and (max-width:1300px) {
    .product-big-cont {
        width: 90%;
    }
}

@media screen and (max-width:1164px) {
    .search-box {
        margin-top: 0px;
    }
    .filter-options ul {
        margin-top: 0px;
    }
    .filter-box {
        width: 70%;
        position: relative;
        top: 0;
        margin-left: 15%;
    }
}
@media screen and (max-width:760px){
    .intro-title h4{
        font-size:50px;
    }

}
@media screen and (max-width:375px){

    .search-box{
        left: -30px;
    }
}
@media screen and (max-width:320px){

    .search-box{
        left: -46px;
    }
}