.fixed-btn{
  position: fixed;
  bottom: 10%;
  right: 3%;
  background: #0FACF3;
  width: 180px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 3px;
  box-shadow: 4px 4px 4px #0a78aa;
  cursor: pointer;
}

.fixed-btn p{
  text-transform: uppercase;
  font-family: arial;
  font-weight: 900;
  color: #fff;
}

.fixed-btn:active{
  box-shadow: 0  0;
}


.button {
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 4px;
  position: relative;
  background-color: #0FACF3;
  border: none;
  color: #fff;
  padding: 20px;
  width: 200px;
  text-align: center;
  transition-duration: 0.4s;
  overflow: hidden;
  box-shadow: 0 5px 15px #193047;
  border-radius: 4px;
  position: relative;
  margin-top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}

.button:hover {
  background: #fff;
  box-shadow: 0px 2px 10px 5px #00aeff;
  color: #000;
}

.button:after {
  content: "";
  background: #1abc9c;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px !important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s
}

.button:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
}

.button:focus { outline:0; }




.cards-wrapper {
display: grid;
justify-content: center;
align-items: center;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 4rem;
padding: 4rem;
margin: 0 auto;
width: max-content;
}

.card {
font-family: 'Heebo';
--bg-filter-opacity: 0;
background-image: linear-gradient(rgba(0,0,0,var(--bg-filter-opacity)),rgba(0,0,0,var(--bg-filter-opacity))), var(--bg-img);
height: 20em;
width: 15em;
font-size: 1.5em;
color: white;
border-radius: 1em;
padding: 0em;
/*margin: 2em;*/
display: flex;
align-items: flex-end;
background-size: cover;
background-position: center;
box-shadow: 0 0 5em -1em black;
transition: all, var(--transition-time);
position: relative;
overflow: hidden;
border: 8px solid #ccc;
text-decoration: none;

}



.card:hover {
transform: rotate(0);
}

.card h1 {
margin: 0;
font-size: 1.5em;
line-height: 1.2em;
}

.card p {
font-size: 0.75em;
font-family: 'Open Sans';
margin-top: 0.5em;
line-height: 2em;
}

.card .tags {
display: flex;
}

.card .tags .tag {
font-size: 0.75em;
background: #00aeff;
border-radius: 0.3rem;
padding: 0 0.5em;
margin-right: 0.2em;
line-height: 1.5em;
transition: all, var(--transition-time);
}

.tags{
color: white;
}

.card:hover .tags .tag {
background: #00aeff;

}

.card .date {
position: absolute;
top: 0;
right: 0;
font-size: 0.82em;
padding: 1em;
line-height: 1em;
opacity: .8;
color: black;
}

/*.photo:before, .card:after {
content: '';
transform: scale(0);
transform-origin: top left;
border-radius: 50%;
position: absolute;
left: -50%;
top: -50%;
z-index: -5;
transition: all, var(--transition-time);
transition-timing-function: ease-in-out;
}*/

.card:before {
background: #ddd;
width: 250%;
height: 250%;
}

.card:after {
background: white;
width: 200%;
height: 200%;
}

.card:hover {
color: var(--color);
}

.card:hover:before, .card:hover:after {
transform: scale(1);
}

.card-grid-space .num {
font-size: 3em;
margin-bottom: 1.2rem;
margin-left: 1rem;
}

.info {
font-size: 1.2em;
display: flex;
padding: 1em 3em;
height: 3em;
}

.info img {
height: 3em;
margin-right: 0.5em;
}

.info h1 {
font-size: 1em;
font-weight: normal;
}

.new1 {
font-size: 19px;
color: #0a78aa;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1285px) {
.cards-wrapper {
  grid-template-columns: 1fr 1fr;
}
}

@media screen and (max-width: 900px) {
.cards-wrapper {
  grid-template-columns: 1fr;
}
.info {
  justify-content: center;
}
.card-grid-space .num {
  margin-left: 0;
  text-align: center;
}
}

@media screen and (max-width: 500px) {
.cards-wrapper {
  padding: 4rem 2rem;
}
.card {
  max-width: calc(100vw - 4rem);
}
}

@media screen and (max-width: 450px) {
.info {
  display: block;
  text-align: center;
}
.info h1 {
  margin: 0;
}
}


.input1 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label1 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
  margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input1:checked + .label1{
  background-color: white;
}

.input1:focus + .label1{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide1 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input1:checked ~ .slide1 {
  transform: translateX(100%);
}

.input1:checked + .label1 + .slide1 {
  transform: translateX(0);
  opacity: 1;
}

.bg1{
  background-image: url(photo/molberts/52.jpg);
}
.bg2{
  background-image: url(photo/molberts/52.1.jpg);
}



.input2 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label2 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input2:checked + .label2{
  background-color: white;
}

.input2:focus + .label2{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide2 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input2:checked ~ .slide2{
  transform: translateX(100%);
}

.input2:checked + .label2 + .slide2 {
  transform: translateX(0);
  opacity: 1;
}

.bg4{
  background-image: url(photo/molberts/62.jpg);
}
.bg5{
  background-image: url(photo/molberts/62.1.jpg);
}
.bg6{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}


.input3 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label3 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input3:checked + .label3{
  background-color: white;
}

.input3:focus + .label3{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide3 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input3:checked ~ .slide3{
  transform: translateX(100%);
}

.input3:checked + .label3 + .slide3 {
  transform: translateX(0);
  opacity: 1;
}

.bg7{
  background-image: url(photo/molberts/14.jpg);
}
.bg8{
  background-image: url(photo/molberts/14.1.jpg);
}


.input4 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label4 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 60px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input4:checked + .label4{
  background-color: white;
}

.input4:focus + .label4{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide4 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input4:checked ~ .slide4{
  transform: translateX(100%);
}

.input4:checked + .label4 + .slide4 {
  transform: translateX(0);
  opacity: 1;
}

.bg10{
  background-image: url(https://images.ua.prom.st/2608103127_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg11{
  background-image: url(photo/molberts/40.1.1.jpg);
}
.bg12{
  background-image: url(photo/molberts/41.1.2.jpg);
}

.input5 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label5 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input5:checked + .label5{
  background-color: white;
}

.input5:focus + .label5{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide5 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input4:checked ~ .slide5{
  transform: translateX(100%);
}

.input5:checked + .label5 + .slide5 {
  transform: translateX(0);
  opacity: 1;
}

.bg13{
  background-image: url(photo/molberts/20.jpg);
}
.bg14{
  background-image: url(photo/molberts/20.1.jpg);
}


.input6 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label6 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input6:checked + .label6{
  background-color: white;
}

.input6:focus + .label6{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide6 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input6:checked ~ .slide6{
  transform: translateX(100%);
}

.input6:checked + .label6 + .slide6 {
  transform: translateX(0);
  opacity: 1;
}

.bg16{
  background-image: url(photo/molberts/10.jpg);
}
.bg17{
  background-image: url(photo/molberts/10.1.jpg);
}


.input7 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label7 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 65px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input7:checked + .label7{
  background-color: white;
}

.input7:focus + .label7{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide7 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input7:checked ~ .slide7{
  transform: translateX(100%);
}

.input7:checked + .label7 + .slide7 {
  transform: translateX(0);
  opacity: 1;
}

.bg19{
  background-image: url(photo/molberts/16.jpg);
}
.bg20{
  background-image: url(photo/molberts/16.1.jpg);
}
.bg21{
  background-image: url(https://images.ua.prom.st/2428984649_w640_h640_molbert-statsionarnyj-hudozhestvennyj.jpg);
}

.input8 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label8 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 65px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input8:checked + .label8{
  background-color: white;
}

.input8:focus + .label8{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide8 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input8:checked ~ .slide8{
  transform: translateX(100%);
}

.input8:checked + .label8 + .slide8 {
  transform: translateX(0);
  opacity: 1;
}

.bg22{
  background-image: url(https://images.ua.prom.st/2429105863_w640_h640_molbert-statsionarnyj-hudozhestvennyj.jpg);
}
.bg23{
  background-image: url(https://images.ua.prom.st/2429105833_w640_h640_molbert-statsionarnyj-hudozhestvennyj.jpg);
}
.bg24{
  background-image: url(https://images.ua.prom.st/2429105865_w640_h640_molbert-statsionarnyj-hudozhestvennyj.jpg);
}

.input9 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label9 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 65px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input9:checked + .label9{
  background-color: white;
}

.input9:focus + .label9{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide9 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input9:checked ~ .slide9{
  transform: translateX(100%);
}

.input9:checked + .label9 + .slide9 {
  transform: translateX(0);
  opacity: 1;
}

.bg25{
  background-image: url(https://images.ua.prom.st/2608066339_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg26{
  background-image: url(https://images.ua.prom.st/2608066346_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg27{
  background-image: url(https://images.ua.prom.st/2608066414_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}


.input10 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label10 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input10:checked + .label10{
  background-color: white;
}

.input10:focus + .label10{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide10 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input10:checked ~ .slide10{
  transform: translateX(100%);
}

.input10:checked + .label10 + .slide10 {
  transform: translateX(0);
  opacity: 1;
}

.bg28{
  background-image: url(https://images.ua.prom.st/2588154184_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg29{
  background-image: url(https://images.ua.prom.st/2588154166_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg30{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}


.input11 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label11 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 65px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input11:checked + .label11{
  background-color: white;
}

.input11:focus + .label11{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide11 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input11:checked ~ .slide11{
  transform: translateX(100%);
}

.input11:checked + .label11 + .slide11 {
  transform: translateX(0);
  opacity: 1;
}

.bg31{
  background-image: url(https://images.ua.prom.st/2429067694_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg32{
  background-image: url(https://images.ua.prom.st/2429067726_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg33{
  background-image: url(https://images.ua.prom.st/2429067774_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}


.input12 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label12 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input12:checked + .label12{
  background-color: white;
}

.input12:focus + .label12{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide12 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input12:checked ~ .slide12{
  transform: translateX(100%);
}

.input12:checked + .label12 + .slide12 {
  transform: translateX(0);
  opacity: 1;
}

.bg34{
  background-image: url(https://images.ua.prom.st/2588190931_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg35{
  background-image: url(https://images.ua.prom.st/2588190927_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg36{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}


.input13 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label13 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 65px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input13:checked + .label13{
  background-color: white;
}

.input13:focus + .label13{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide13 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input13:checked ~ .slide13{
  transform: translateX(100%);
}

.input13:checked + .label13 + .slide13 {
  transform: translateX(0);
  opacity: 1;
}

.bg37{
  background-image: url(https://images.ua.prom.st/2429210817_w640_h640_molbert-statsionarnyj-hudozhestvennyj.jpg);
}
.bg38{
  background-image: url(https://images.ua.prom.st/2429210819_w640_h640_molbert-statsionarnyj-hudozhestvennyj.jpg);
}
.bg39{
  background-image: url(https://images.ua.prom.st/2429210816_w640_h640_molbert-statsionarnyj-hudozhestvennyj.jpg);
}


.input14 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label14 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input14:checked + .label14{
  background-color: white;
}

.input14:focus + .label14{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide14 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input14:checked ~ .slide14{
  transform: translateX(100%);
}

.input14:checked + .label14 + .slide14 {
  transform: translateX(0);
  opacity: 1;
}

.bg40{
  background-image: url(https://images.ua.prom.st/2588973954_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg41{
  background-image: url(https://images.ua.prom.st/2588973950_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg42{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input15 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label15 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input15:checked + .label15{
  background-color: white;
}

.input15:focus + .label15{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide15 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input15:checked ~ .slide15{
  transform: translateX(100%);
}

.input15:checked + .label15 + .slide15 {
  transform: translateX(0);
  opacity: 1;
}

.bg43{
  background-image: url(https://images.ua.prom.st/2588957466_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg44{
  background-image: url(https://images.ua.prom.st/2588957465_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg45{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}


.input16 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label16 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input16:checked + .label16{
  background-color: white;
}

.input16:focus + .label16{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide16 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input16:checked ~ .slide16{
  transform: translateX(100%);
}

.input16:checked + .label16 + .slide16 {
  transform: translateX(0);
  opacity: 1;
}

.bg46{
  background-image: url(https://images.ua.prom.st/2588957201_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg47{
  background-image: url(https://images.ua.prom.st/2588957191_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg48{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}


.input17 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label17 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input17:checked + .label17{
  background-color: white;
}

.input17:focus + .label17{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide17 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input17:checked ~ .slide17{
  transform: translateX(100%);
}

.input17:checked + .label17 + .slide17 {
  transform: translateX(0);
  opacity: 1;
}

.bg49{
  background-image: url(https://images.ua.prom.st/2588959427_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg50{
  background-image: url(https://images.ua.prom.st/2588959426_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg51{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input18 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label18 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input18:checked + .label18{
  background-color: white;
}

.input18:focus + .label18{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide18 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input18:checked ~ .slide18{
  transform: translateX(100%);
}

.input18:checked + .label18 + .slide18 {
  transform: translateX(0);
  opacity: 1;
}

.bg52{
  background-image: url(https://images.ua.prom.st/2588973381_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg53{
  background-image: url(https://images.ua.prom.st/2588973292_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg54{
  background-image: url(https://images.ua.prom.st/2588973381_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}

.input19 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label19 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input19:checked + .label19{
  background-color: white;
}

.input19:focus + .label19{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide19 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input19:checked ~ .slide19{
  transform: translateX(100%);
}

.input19:checked + .label19 + .slide19 {
  transform: translateX(0);
  opacity: 1;
}

.bg55{
  background-image: url(https://images.ua.prom.st/2588961243_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg56{
  background-image: url(https://images.ua.prom.st/2588961242_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg57{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input20 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label20 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input20:checked + .label20{
  background-color: white;
}

.input20:focus + .label20{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide20 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input20:checked ~ .slide20{
  transform: translateX(100%);
}

.input20:checked + .label20 + .slide20 {
  transform: translateX(0);
  opacity: 1;
}

.bg58{
  background-image: url(https://images.ua.prom.st/2588202438_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg59{
  background-image: url(https://images.ua.prom.st/2588202432_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg60{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input21 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label21 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input21:checked + .label21{
  background-color: white;
}

.input21:focus + .label21{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide21 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input21:checked ~ .slide21{
  transform: translateX(100%);
}

.input21:checked + .label21 + .slide21 {
  transform: translateX(0);
  opacity: 1;
}

.bg61{
  background-image: url(https://images.ua.prom.st/2588159467_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg62{
  background-image: url(https://images.ua.prom.st/2588159466_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg63{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input22 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label22 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input22:checked + .label22{
  background-color: white;
}

.input22:focus + .label22{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide22 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input22:checked ~ .slide22{
  transform: translateX(100%);
}

.input22:checked + .label22 + .slide22 {
  transform: translateX(0);
  opacity: 1;
}

.bg64{
  background-image: url(https://images.ua.prom.st/2588183737_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg65{
  background-image: url(https://images.ua.prom.st/2588183734_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg66{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}


.input23 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label23 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input23:checked + .label23{
  background-color: white;
}

.input23:focus + .label23{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide23 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input23:checked ~ .slide23{
  transform: translateX(100%);
}

.input23:checked + .label23 + .slide23 {
  transform: translateX(0);
  opacity: 1;
}

.bg67{
  background-image: url(https://images.ua.prom.st/2588963254_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg68{
  background-image: url(https://images.ua.prom.st/2588963253_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg69{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}


.input24 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label24 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input24:checked + .label24{
  background-color: white;
}

.input24:focus + .label24{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide24 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input24:checked ~ .slide24{
  transform: translateX(100%);
}

.input24:checked + .label24 + .slide24 {
  transform: translateX(0);
  opacity: 1;
}

.bg70{
  background-image: url(https://images.ua.prom.st/2588205201_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg71{
  background-image: url(https://images.ua.prom.st/2588205200_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg72{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input25 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label25 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input25:checked + .label25{
  background-color: white;
}

.input25:focus + .label25{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide25 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input25:checked ~ .slide25{
  transform: translateX(100%);
}

.input25:checked + .label25 + .slide25 {
  transform: translateX(0);
  opacity: 1;
}

.bg73{
  background-image: url(https://images.ua.prom.st/2588208766_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg74{
  background-image: url(https://images.ua.prom.st/2588208763_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg75{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input26 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label26 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input26:checked + .label26{
  background-color: white;
}

.input26:focus + .label26{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide26 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input26:checked ~ .slide26{
  transform: translateX(100%);
}

.input26:checked + .label26 + .slide26 {
  transform: translateX(0);
  opacity: 1;
}

.bg76{
  background-image: url(https://images.ua.prom.st/2609716541_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg77{
  background-image: url(https://images.ua.prom.st/2609716542_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg78{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input27 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label27 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input27:checked + .label27{
  background-color: white;
}

.input27:focus + .label27{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide27 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input27:checked ~ .slide27{
  transform: translateX(100%);
}

.input27:checked + .label27 + .slide27 {
  transform: translateX(0);
  opacity: 1;
}

.bg79{
  background-image: url(https://images.ua.prom.st/2588974425_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg80{
  background-image: url(https://images.ua.prom.st/2588974424_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg81{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input28 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label28 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input28:checked + .label28{
  background-color: white;
}

.input28:focus + .label28{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide28 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input28:checked ~ .slide28{
  transform: translateX(100%);
}

.input28:checked + .label28 + .slide28 {
  transform: translateX(0);
  opacity: 1;
}

.bg82{
  background-image: url(https://images.ua.prom.st/2588965836_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg83{
  background-image: url(https://images.ua.prom.st/2588965835_w640_h640_molbert-nastolnyj-hudozhestvennyj.jpg);
}
.bg84{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input29 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label29 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input29:checked + .label29{
  background-color: white;
}

.input29:focus + .label29{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide29 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input29:checked ~ .slide29{
  transform: translateX(100%);
}

.input29:checked + .label29 + .slide29 {
  transform: translateX(0);
  opacity: 1;
}

.bg85{
  background-image: url(https://images.ua.prom.st/2588212805_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg86{
  background-image: url(https://images.ua.prom.st/2588212725_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg87{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input30 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label30 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input30:checked + .label30{
  background-color: white;
}

.input30:focus + .label30{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide30 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input30:checked ~ .slide30{
  transform: translateX(100%);
}

.input30:checked + .label30 + .slide30 {
  transform: translateX(0);
  opacity: 1;
}

.bg88{
  background-image: url(https://images.ua.prom.st/2588221793_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg89{
  background-image: url(https://images.ua.prom.st/2588221759_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg90{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input31 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label31 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 95px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input31:checked + .label31{
  background-color: white;
}

.input31:focus + .label31{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide31 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input31:checked ~ .slide31{
  transform: translateX(100%);
}

.input31:checked + .label31 + .slide31 {
  transform: translateX(0);
  opacity: 1;
}

.bg91{
  background-image: url(https://images.ua.prom.st/2588952623_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg92{
  background-image: url(https://images.ua.prom.st/2588952587_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg93{
  background-image: url(https://images.unsplash.com/photo-1512529111457-3e8a595ef8e9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=9b3ab76b65a358830d60ca43be76f2e1);
}

.input32 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label32 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 65px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input32:checked + .label32{
  background-color: white;
}

.input32:focus + .label32{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide32 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input32:checked ~ .slide32{
  transform: translateX(100%);
}

.input32:checked + .label32 + .slide32 {
  transform: translateX(0);
  opacity: 1;
}

.bg94{
  background-image: url(https://images.ua.prom.st/2588953350_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg95{
  background-image: url(https://images.ua.prom.st/2609734322_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}
.bg96{
  background-image: url(https://images.ua.prom.st/2588953349_w640_h640_molbert-napolnyj-hudozhestvennyj.jpg);
}

.input33 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label33 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 65px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input33:checked + .label33{
  background-color: white;
}

.input33:focus + .label33{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide33 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input33:checked ~ .slide33{
  transform: translateX(100%);
}

.input33:checked + .label33 + .slide33 {
  transform: translateX(0);
  opacity: 1;
}

.bg97{
  background-image: url(photo/40.1.jpg);
}
.bg98{
  background-image: url(photo/40.2.jpg);
}
.bg99{
  background-image: url(photo/40.3.jpg);
}

.input34 {
  
  position: absolute;  
  opacity: 0;
  margin-top: 95vh;
  cursor: pointer;
}

.label34 {
  
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 2px #0FACF3;
  border-radius: 999px;
  background-color: transparent;
   margin: 80vh 5px 10px 65px;
  z-index: 2;
  cursor: pointer;
  transition-duration: .4s;
}

.input34:checked + .label34{
  background-color: white;
}

.input34:focus + .label34{
  box-shadow: 0 0 0 2px teal, 0 0 18px white;
}

.slide34 {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition-duration: .4s;
  opacity: 1;
}

.input34:checked ~ .slide34{
  transform: translateX(100%);
}

.input34:checked + .label34 + .slide34 {
  transform: translateX(0);
  opacity: 1;
}

.bg100{
  background-image: url(photo/47.1.jpg);
}
.bg101{
  background-image: url(photo/47.2.jpg);
}


/*кнопка звонка*/

.callback-bt {
  background:#2f89d3;
  border:2px solid #38a3fd;
  border-radius:50%;
  box-shadow:0 8px 10px rgba(56,163,253,0.3);
  cursor:pointer;
  height:68px;
  text-align:center;
  width:68px;
  position: fixed;
  right: 4%;
  bottom: 10%;
  z-index:999;
  transition:.3s;
  -webkit-animation:hoverWave linear 1s infinite;
  animation:hoverWave linear 1s infinite;
}

.callback-bt .text-call{
  height:68px;
  width:68px;        
  border-radius:50%;
  position:relative;
  overflow:hidden;
}

.callback-bt .text-call span {
text-align: center;
color:#38a3fd;
opacity: 0;
font-size: 0;
  position:absolute;
  right: 4px;
  top: 22px;
line-height: 14px;
  font-weight: 600;
text-transform: uppercase;
transition: opacity .3s linear;
font-family: 'montserrat', Arial, Helvetica, sans-serif;
}

.callback-bt .text-call:hover span {
opacity: 1;
  font-size: 11px;
}


.callback-bt:hover {
  z-index:1;
  background:#fff;
  color:transparent;
  transition:.3s;
}
.callback-bt:hover i {
  color:#38a3fd;
  font-size:40px;
  transition:.3s;
}
.callback-bt i {
  color:#fff;
  font-size:34px;
  transition:.3s;
  line-height: 66px;transition: .5s ease-in-out;
}

/*.callback-bt i  {
animation: 8800ms ease 0s normal none 1 running shake;
  animation-iteration-count: infinite;
  -webkit-animation: 8800ms ease 0s normal none 1 running shake;
  -webkit-animation-iteration-count: infinite;
}*/

@-webkit-keyframes hoverWave {
  0% {
  box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 0 rgba(56,163,253,0.2),0 0 0 0 rgba(56,163,253,0.2)
}
40% {
  box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 15px rgba(56,163,253,0.2),0 0 0 0 rgba(56,163,253,0.2)
}
80% {
  box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 30px rgba(56,163,253,0),0 0 0 26.7px rgba(56,163,253,0.067)
}
100% {
  box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 30px rgba(56,163,253,0),0 0 0 40px rgba(56,163,253,0.0)
}
}@keyframes hoverWave {
  0% {
  box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 0 rgba(56,163,253,0.2),0 0 0 0 rgba(56,163,253,0.2)
}
40% {
  box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 15px rgba(56,163,253,0.2),0 0 0 0 rgba(56,163,253,0.2)
}
80% {
  box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 30px rgba(56,163,253,0),0 0 0 26.7px rgba(56,163,253,0.067)
}
100% {
  box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 30px rgba(56,163,253,0),0 0 0 40px rgba(56,163,253,0.0)
}
}

/* animations icon */

@keyframes shake {
0% {
transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
}
10% {
transform: rotateZ(-30deg);
  -ms-transform: rotateZ(-30deg);
  -webkit-transform: rotateZ(-30deg);
}
20% {
transform: rotateZ(15deg);
  -ms-transform: rotateZ(15deg);
  -webkit-transform: rotateZ(15deg);
}
30% {
transform: rotateZ(-10deg);
  -ms-transform: rotateZ(-10deg);
  -webkit-transform: rotateZ(-10deg);
}
40% {
transform: rotateZ(7.5deg);
  -ms-transform: rotateZ(7.5deg);
  -webkit-transform: rotateZ(7.5deg);
}
50% {
transform: rotateZ(-6deg);
  -ms-transform: rotateZ(-6deg);
  -webkit-transform: rotateZ(-6deg);
}
60% {
transform: rotateZ(5deg);
  -ms-transform: rotateZ(5deg);
  -webkit-transform: rotateZ(5deg);
}
70% {
transform: rotateZ(-4.28571deg);
  -ms-transform: rotateZ(-4.28571deg);
  -webkit-transform: rotateZ(-4.28571deg);
}
80% {
transform: rotateZ(3.75deg);
  -ms-transform: rotateZ(3.75deg);
  -webkit-transform: rotateZ(3.75deg);
}
90% {
transform: rotateZ(-3.33333deg);
  -ms-transform: rotateZ(-3.33333deg);
  -webkit-transform: rotateZ(-3.33333deg);
}
100% {
transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
}
}

@-webkit-keyframes shake {
0% {
transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
}
10% {
transform: rotateZ(-30deg);
  -ms-transform: rotateZ(-30deg);
  -webkit-transform: rotateZ(-30deg);
}
20% {
transform: rotateZ(15deg);
  -ms-transform: rotateZ(15deg);
  -webkit-transform: rotateZ(15deg);
}
30% {
transform: rotateZ(-10deg);
  -ms-transform: rotateZ(-10deg);
  -webkit-transform: rotateZ(-10deg);
}
40% {
transform: rotateZ(7.5deg);
  -ms-transform: rotateZ(7.5deg);
  -webkit-transform: rotateZ(7.5deg);
}
50% {
transform: rotateZ(-6deg);
  -ms-transform: rotateZ(-6deg);
  -webkit-transform: rotateZ(-6deg);
}
60% {
transform: rotateZ(5deg);
  -ms-transform: rotateZ(5deg);
  -webkit-transform: rotateZ(5deg);
}
70% {
transform: rotateZ(-4.28571deg);
  -ms-transform: rotateZ(-4.28571deg);
  -webkit-transform: rotateZ(-4.28571deg);
}
80% {
transform: rotateZ(3.75deg);
  -ms-transform: rotateZ(3.75deg);
  -webkit-transform: rotateZ(3.75deg);
}
90% {
transform: rotateZ(-3.33333deg);
  -ms-transform: rotateZ(-3.33333deg);
  -webkit-transform: rotateZ(-3.33333deg);
}
100% {
transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
}
}
/* конец кнопки звонка */



#msform {
	width: 400px;
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
/*buttons*/
#msform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}




.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}



.modal-right {
  position: absolute; /* Абсолютное позиционирование */
    bottom: 15px; /* Положение от нижнего края */
    right: 25px; /* Положение от правого края */
    line-height: 1px;
}


.box{
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 15px;
  margin: 0 auto;
}
.cardsc{
  position: relative;
  width: 400px;
  height: 350px;
  background: #fff;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow:0 2px 10px rgba(0,0,0,.2);
}
.cardsc:before,
.cardsc:after
{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #fff;
  transition: 0.5s;
  z-index:-1;
}
.cardsc:hover:before{
transform: rotate(20deg);
box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.cardsc:hover:after{
transform: rotate(10deg);
box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.cardsc .imgBx{
position: absolute;
top: 10px;
left: 10px;
bottom: 10px;
right: 10px;
background: #222;
transition: 0.5s;
z-index: 1;
}

.cardsc:hover .imgBx
{
  bottom: 80px;
}

.cardsc .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cardsc .details{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 60px;
    text-align: center;
}

.cardsc .details h2{
 margin: 0;
 padding: 0;
 font-weight: 600;
 font-size: 20px;
 color: #777;
 text-transform: uppercase;
} 

.cardsc .details h2 span{
font-weight: 500;
font-size: 16px;
color: #f38695;
display: block;
margin-top: 5px;
 } 

 @media screen and (max-width: 1285px) {
  .cardsc-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  }
  
  @media screen and (max-width: 900px) {
  .cardsc-wrapper {
    grid-template-columns: 1fr;
  }
  .info {
    justify-content: center;
  }
  .cardsc-grid-space .num {
    margin-left: 0;
    text-align: center;
  }
  }
  
  @media screen and (max-width: 500px) {
  .cardsc-wrapper {
    padding: 4rem 2rem;
  }
  .cardsc {
    max-width: calc(100vw - 4rem);
  }
  }

/* form  checkuot */

  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    margin: 0 -16px;
  }
  
  .col-25 {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
  }
  
  .col-50 {
    -ms-flex: 40%; /* IE10 */
    flex: 40%;
  }
  
  .col-75 {
    -ms-flex: 75%; /* IE10 */
    flex: 75%;
  }
  
  .col-25,
  .col-50,
  .col-75 {
    padding: 0 16px;
  }
  
  .container3 {
    background-color: #f2f2f2;
    padding: 5px 20px 15px 20px;
    border: 1px solid lightgrey;
    border-radius: 3px;
    width: 100%;
  }
  
  input[type=text] {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }

  select[type=text]{
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  label {
    margin-bottom: 10px;
    display: block;
  }
  
  .icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
  }
  
  
  
  a {
    color: #2196F3;
  }
  
  hr {
    border: 1px solid lightgrey;
  }
  
  span.price {
    float: right;
    color: grey;
  }
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
  @media (max-width: 800px) {
    .row {
      flex-direction: column-reverse;
    }
    .col-25 {
      margin-bottom: 20px;
    }
  }
  
