.cont{
    height: 95vh;
    width: 80%;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    z-index: 10000;
    border-radius: 50px;
    box-shadow: 0px 0px 20px #adadad;
    display: flex;
    overflow: hidden;
    opacity: 0;
    transition: all linear 0.2s;
}
.cont>div{
    width: 50%;
    height: 100%;
}
.left{
    /* background-color: royalblue; */
    background-size: cover;
    background-position: center;
    position: relative;
}
.left i{
    position: absolute;
    top: 5%;
    left: 5%;
    font-size: 30px;
    cursor: pointer;
    color: #e60023;
}
.right{
    /* background-color: coral; */
    padding: 3px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.right .menu{
    width: 100%;
    height: 10%;
    /* border: 1px solid #000; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu .part-1{
    height: 100%;
    width: 14%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu .part-1 svg{
    cursor: pointer;
}
.menu .part-2{
    height: 100%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu .part-2 span{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.part-2 button{
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    background-color: #e60023;
    padding: 15px 18px;
}
.part-2 button:hover{
    background-color: #B60000;
}
.right .comment{
    height: 12%;
    width: 100%;
    /* border: 1px solid #000; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #000;
    font-weight: 700;
}
.comment p{
    color: rgba(0, 0, 0, 0.6);
    font-weight: normal;
}
.right .cmnt{
    width: 100%;
    height: 20%;
    /* border: 1px solid #000; */
}
.cmnt div{
    width: 100%;
    height: 50%;
    /* border: 1px solid #000; */
}
.cmnt .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cmnt .top span{
    display: flex;
    align-items: center;
    gap: 5px;
}
.top>p{
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.cmnt .top span div:nth-child(1){
    border: 1px solid #fff;
    cursor: pointer;
}
.cmnt .top span div:nth-last-child(1){
    margin-left: 8px;
    background-color: #DCDCDC;
    border: 1px solid #DCDCDC;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
}
.cmnt .bottom{
    /* background-color: plum; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bottom .circle{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: url(https://i.pinimg.com/75x75_RS/38/44/ef/3844efb4ef82df369abbb3412392415d.jpg);
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.bottom .input-container{
    height: 100%;
    width: 88%;
    border-radius: 100px;
    border: none;
    background-color: #DADADA;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.input-container input{
    height: 100%;
    background-color: transparent;
    width: 85%;
    padding-left: 15px;
    border: none;
    outline: none;
    cursor: pointer;
}
.input-container:hover{
    background-color: #b8b8b8;
}
.input-container span{
    font-size: 24px;
    cursor: pointer;
}
.input-container input::placeholder{
    color: rgba(0, 0, 0, 0.6);
}


.container {
    padding-top: 3vh;
    width: 100%;
    margin: auto;
    columns: 6;
    column-gap: 20px;
  }
  .container .box {
    width: 100%;
    margin-bottom: 10px;
    break-inside: avoid;
    border-radius: 15px;
  }
  .container .box img {
    max-width: 100%;
    min-width: 100%;
    border-radius: 10px;
  }
  
  img:hover {
    opacity: 0.95;
  }
  
  .caption {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2px;
  }
  
  @media (max-width: 1427px) {
    .container {
      columns: 5;
      width: calc(100% - 40px);
    }
  }
  @media (max-width: 1200px) {
    .container {
      columns: 4;
    }
  }
  
  @media (max-width: 1000px) {
    .container {
      columns: 3;
    }
  
    body {
      overflow-x: hidden;
    }
  }
  
  @media (max-width: 786px) {
    .container {
      columns: 2;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      columns: 1;
    }
  }