:root{
    --blueish: #026A83;
    --yellow: #D3B300;
    --pinkish: #B20051;
    --searchShaodw: -13px 13px 26px rgba(181, 181, 181, 0.2), 13px -13px 26px rgba(181, 181, 181, 0.2), -13px -13px 26px rgba(255, 255, 255, 0.9), 13px 13px 33px rgba(181, 181, 181, 0.9), inset 1px 1px 2px rgba(255, 255, 255, 0.3), inset -1px -1px 2px rgba(181, 181, 181, 0.5);
    --greyText: #424242;

}

*{
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    /* scroll-behavior: smooth; */
    box-sizing: border-box;
}
body{
    padding: 1rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:black;
}
/* nav  */

.search-sect{
    width:max-content;
    height:max-content;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 30px;
    display: flex;
    place-items: center;
    /* justify-content: space-between; */

}

.search-icon{
    width:20px;
    height:20px;
    margin-left: 4px;
    cursor:pointer;
}
.search-icon:hover{
    filter: invert(52%) sepia(18%) saturate(2505%) hue-rotate(167deg) brightness(98%) contrast(95%);
}
.searchbar::placeholder{
    font-size: 16px;
}
.red{
   transition: 0.2s;
}
.red::placeholder{
color: var(--pinkish);
}
/* @keyframes vibrate{
    0%{
        transform: translateX(5px);
        padding-left: -5px;
    }
    100%{
        transform: translateX(-5px);
        padding-left: 5px;
    }
} */
.searchbar{
    background-color: rgb(255, 255, 255);
    border:none;
    outline: none;
    font-size: 16px;
    border-right: 1px solid var(--greyText);
}
nav{
    display: flex;
    align-items:center;
    justify-content: space-between;
    position: fixed;
    z-index: 5;
    left: 0;
    top:0;
    width: 100%;
    padding: 5px 10px;
    background: #00000054;
}
nav a{
    text-decoration:none;
    margin-left:20px;
    padding-bottom: 3px;
    position: relative;
}
.a-line{
position: absolute;
bottom:0;
width:100%;
height:2px;
/* background:#ff0e0e; */
}
.ham{
    /* display: none; */
   
    cursor: pointer;;

}
.icon{
    width: 27px;
    height: 27px;
}
.icon-close{
    display: none;
    transform-origin: center;
    animation: rota .5s ease-in;
    transform: rotate(180deg);
}

@keyframes rota{
    100%{
        transform: none;
    }
}

/* nav a:focus{
    text-decoration: underline;
} */
.drop a{
    text-decoration: none;
    color: #b20051;
    position: relative;
    width: 90%;
    text-align: left;
    margin-bottom: 5px;
    margin-left: 10px;
    padding: 4px 7px;
    transition: 0.2s;
    border-radius: 30px;
}
.drop a:hover{
    background:#007effb8;
}
.drop{
    display: none;
    padding-top: 6px;
    position: absolute;
    /* bottom:0; */
    width: 200px;
    background: #ffffff;
    border-left: 2px solid #44dd88;
    border-right: 2px solid #4d8f;
    padding-right: 7px;
}
.show{
    display: grid;
    
}
.remove{
    display: none;
}



ol{
    margin: 0;
}

main{
    width: 100%;
    margin-top: 2rem;
}
li{
    color: var(--pinkish);
    margin: 1.5rem 0;
    font-size: 20px;
    font-weight: 600;
    list-style-type: none;
}
.general, section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px,391px)); */
}

article{
    display: flex;
    flex-direction: column-reverse;
    /* box-shadow: var(--searchShaodw); */
    padding: 5px;
    margin: 10px;
    width: 300px;
    background-color: white;
}
.cat-holder{
    width: max-content;
}
/* .cat{
    box-shadow: none;
} */
p{
    color: var(--blueish);
    margin: 1rem 0;
}
h1{
    color: blue;
    text-align: center;
}
img{
    width: 300px;
    height: 300px;
}
.general img, section img{
    width: 100%;
   height: 275px;
    object-fit: fill;
    max-height: 430px;
    min-height: 230px;
    min-width: 200px;
}
.vital{
    background: #00000021;
    flex-direction: column;
    width: 100%;
}
.bp{
    display: flex;
    /* background-color: #00000030; */
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.bp img{
    margin: 5px;
    width: 258px;
    height: 210px;
    min-height: unset;
    object-fit: cover;
}
.con{
    object-fit: contain! important;
}
figure{
    width: 100%;
}

.general .logo{
    width: 100px;
    height: 100px;
    max-height: unset;
    min-height: unset;
    min-width: unset;
    margin: 10px;
}
.column{
    flex-direction: column;
}
.big-logo{
    width: 250px;
    height: 55px;
}
@media screen and (max-width: 500px){
 h1{
     font-size: 20px;
 }
 nav{
     padding: 6px;
 }
 .general img, section img{
    height: unset;
    min-height: unset;
    object-fit: cover;
 }
 .search-sect {
    padding: 8px 15px;
 }
}