*{
  margin: 0;
  padding: 0;
  font-family: "montserrat",sans-serif;
  box-sizing: border-box;
  background: black;
}
.gallery-section{
  width: 100%;
  padding: 60px 0;
  
}
.inner-width{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


.gallery-section .gallery{
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  margin-top: 80px;
}

.gallery-section .image{
  flex: 25%;
  overflow: hidden;
  cursor: pointer;
}

.gallery-section .image img{
  width: 100%;
  height: 100%;
  transition: 0.4s;
  border-radius: 40px;
  padding: 10px;
}

.gallery-section .image:hover img{
  transform: scale(1.4) rotate(15deg);
}
footer {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 10vh;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
}

footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 10px;
}

footer ul a {
  color: white;
}

footer ul li {
  position: relative;
  display: block;
  color: #fff;
  font-size: 20px;
  height: 60px;
  width: 60px;
  background: #000;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 15px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

footer ul li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

footer ul li:hover::before {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

footer ul li:nth-child(1):hover {
  -webkit-box-shadow: 0 0 15px #4267b2;
  box-shadow: 0 0 15px #4267b2;
  text-shadow: 0 0 15px #4267b2;
}

footer ul li:nth-child(1):hover a {
  color: #456cba;
}

footer ul li:nth-child(2):hover {
  -webkit-box-shadow: 0 0 15px #1da1f2;
  box-shadow: 0 0 15px #1da1f2;
  text-shadow: 0 0 15px #1da1f2;
}

footer ul li:nth-child(2):hover a {
  color: #26a4f2;
}

footer ul li:nth-child(3):hover {
  -webkit-box-shadow: 0 0 15px #e1306c;
  box-shadow: 0 0 15px #e1306c;
  text-shadow: 0 0 15px #e1306c;
}

footer ul li:nth-child(3):hover a {
  color: #e23670;
}

footer ul li:nth-child(4):hover {
  -webkit-box-shadow: 0 0 15px #2867b2;
  box-shadow: 0 0 15px #2867b2;
  text-shadow: 0 0 15px #2867b2;
}

footer ul li:nth-child(4):hover a {
  color: #2a6cbb;
}

footer ul li:nth-child(5):hover {
  -webkit-box-shadow: 0 0 15px #fff;
  box-shadow: 0 0 15px #fff;
  text-shadow: 0 0 15px #fff;
}

footer ul li:nth-child(5):hover a {
  color: #fff;
}

@media screen and (max-width:960px) {
  .gallery-section .image{
    flex: 33.33%;
  }
}

@media screen and (max-width:768px) {
  .gallery-section .image{
    flex: 50%;
  }
}

@media screen and (max-width:480px) {
  .gallery-section .image{
    flex: 100%;
  }
}
