.gcontainer{
  
   margin: 0 auto;
   justify-content: center;
   display: flex;
   flex-wrap: wrap;
   
 }
 
 .gallery-wrap {
   display: flex;
   flex-direction: row;
   width: 1165px;
   height: 350px;
 
 }
 
 /*მობილურის რეზოლუცია*/
 
 @media only screen and (max-width: 800px) {
     .gallery-wrap {
   display: flex;
   flex-direction: column;
   width: 100%;
 
 }
 .cardm{
     width: 95%;
  margin: 10px;
  box-shadow: 5px 5px 10px rgba(28, 27, 27, 0.5);
  border-radius: 30px;
  padding: 2px;
 }
 }
 
/*კომპიუტერის რეზოლუცია*/

@media only screen and (min-width: 800px) {
 .corner-left{
   border-radius: 25px 0px 0px 25px;
 }

 .corner-right{
   border-radius: 0px 25px 25px 0px;
 }
}

/* მთავარი კონტეინერი*/

 .item {
   flex: 1;
   height: 100%;
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   transition: flex 0.3s ease;
   &:hover{
     flex: 2;
   }
}
 
 /*სურათები*/
 .item-1 { 
   background-image: url('/images/Logo-image/1.jpg');
  
}
 .item-2 { 
   background-image: url('/images/Logo-image/2.jpg');
   
 }
 
  .item-a { 
   background-image: url('/images/Photo-editing/1.jpg');
  
}
 .item-b { 
   background-image: url('/images/Photo-editing/2.jpg');
   
 }
 
 