*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header{
    position: sticky;
    top: 0;
    background: #ffffff;
    width: 100%;
    height: 8vh;
    /* background: #888686; */
    display: flex;
    justify-content: space-around;
   
    padding: 0 10px;
    align-items: center;
    z-index: 3;
    
}
.logosvg{
    fill: #e60023;

}
.links{
    display: flex;
    gap: 30px;
}

.links a{
    text-decoration: none;
    color: rgb(80, 78, 78);
    font-size: 20px;
    font-weight: 600;

}
.input {
    width:70vw;
    height: 5vh;
}
.input input{
    font-size: 18px;
    color: rgb(78, 77, 77);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
    outline: none;
    padding-left: 10px;
    background: #e9e9e9;
      
}
.input input::placeholder{
    font-size: 18px;
}
.searchdata{
    display: none;
    position:relative;
    background: #ffffff;
    width: 100%;
    height: fit-content;
    margin-top: 10px;
    padding: 15px 0px;
   border-radius: 0 0 10px 10px;

}
.searchdata span{
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-left: 20px;
    gap: 10px;
}
.searchdata span i{
    font-size: 18px;
    padding: 10px 0;
}
.searchdata p{
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    
}
.searchdata span:hover{
    background: #E9E9E9;
}
.icon{
    display: flex;
    gap: 15px;
}
.icon a {
    text-decoration: none;
    color: rgba(30, 29, 29);
    font-size: 22px;
}
.overlay{
    position: fixed;
    z-index: 2;
    display: none;
    width: 100vw;
    height: 100vh;
    background: #686767aa;
}
.content{
    position: relative;
    z-index: 1;
    width: 70%;
   padding-top: 3vh;
    margin: auto;
    columns: 5;
    column-gap: 20px;
}
.content .box{
    break-inside: avoid;
    margin-top: 10px;
}
.content .box img{
    max-width: 100%;
  min-width: 100%;
  border-radius: 10px;
   object-fit: cover;
  
}
img:hover {
    opacity: 0.95;
  }
  @media (max-width: 1427px) {
    .content {
      columns: 5;
      width: calc(100% - 40px);
    }
  }
  @media (max-width: 1200px) {
    .content {
      columns: 4;
    }
  }
  
  @media (max-width: 1000px) {
    .content {
      columns: 3;
    }
  
    body {
      overflow-x: hidden;
    }
  }
  
  @media (max-width: 786px) {
    .content {
      columns: 2;
    }
    .links{
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .content {
      columns: 1;
    }
  }