.galery {
    max-width: 915px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: sticky;
    top: 20px;
}

.galery__img-wrap {
    border-radius: 5px;
    position: relative;
}
.galery__img-wrap:nth-child(1) {
    width: 100%;
    margin-bottom: 15px;
}

.galery__img-wrap:nth-child(2),
.galery__img-wrap:nth-child(3) {
    width: calc(50% - 8px);
}
.galery__img-wrap:hover .galery__btn {
    display: flex;
}

.galery__img {
    width: 100%;
}
.galery__img img {
    width: 100%;
    display: block;
}

.galery__btn {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media(max-width:721px) {
    .galery__img {
        padding-bottom: 50%;
    }
    .galery__img img {
        position: absolute;
        left: 0;
        height: 100%;
        top: 0;
    }
    .galery__img-wrap {
        height: max-content;
    }
    .galery__btn {
        display: none;
    }
    .galery__img-wrap {
        height: max-content !important;
        padding: 0 !important;
    }
	.galery {
		padding-top: 0px;
	}

    .main__scrolline {
    
         margin-top: 0px; 
       
    }
}

.added {
    opacity: 0;
    transition: .5s;
}

