.wrapper__photos .row__photo:nth-child(odd){
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, auto);
	grid-template-areas:
    "photobig photobig photo2"
    "photobig photobig photo3"
    "photo4 photo5 photo6";}
.wrapper__photos .row__photo:nth-child(even){
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, auto);
	grid-template-areas:
    "photo2 photobig photobig "
    "photo3 photobig photobig "
    "photo4 photo5 photo6";}
.row__photo{margin-bottom:40px; grid-column-gap: 40px; grid-row-gap: 40px;}
.wrapper__photos .row__photo:last-child{margin:0}
.row__photo img{max-width:100%; height:auto}
.row__photo a{overflow:hidden; border-radius:20px}
.row__photo a:nth-child(1){grid-area: photobig;}
.row__photo a:nth-child(2){grid-area: photo2}
.row__photo a:nth-child(3){grid-area: photo3}
.row__photo a:nth-child(4){grid-area: photo4}
.row__photo a:nth-child(5){grid-area: photo5}
.row__photo a:nth-child(6){grid-area: photo6}
.wrapper__newform {}
@media(max-width:1229px){
	.row__photo{margin-bottom:30px; grid-column-gap: 30px; grid-row-gap: 30px;}
}
@media(max-width:991px){
	.row__photo{margin-bottom:20px; grid-column-gap: 20px; grid-row-gap: 20px;}
}
@media(max-width:767px){
	.wrapper__newform{padding-top:40px !important}
	.row__photo{margin-bottom:15px; grid-column-gap: 15px; grid-row-gap: 15px;}
}

@media(max-width:575px){
	.wrapper__newform{padding-top:35px !important}
	.row__photo{margin-bottom:10px; grid-column-gap: 10px; grid-row-gap: 10px;}
	.row__photo img{border-radius:10px}
}


