/* Général */
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Source Sans Pro", sans-serif;
}
  
body {
    min-height: 100vh;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #8E8D78;
  -webkit-border-radius: 1ex;
}

.instagram:hover {
    color: #D62976;
}
  
.tiktok:hover {
    color: #020202;
}

.social-media-w {
    color: #fff;
    font-size: 1.4rem;
    transition: .2s linear;
}
  
.social-media-w:hover {
    transform: scale(125%);
}

/* Header */
header {
    width: 100%;
    height: 60px;
    background-color: #111;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

header a {
    color: #fff;
    font-weight: 600;
    transition: .3s linear;
}

header a:hover {
    color: #8E8D78;
}

/* Content */
.photos-section {
  margin: 0 auto;
  max-width: 1200px;
  min-height: 54vh;
  padding: 0 20px;
}

.photos-gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.photos-gallery .photo-gallery-image {
  width: calc(100% / 2);
  padding: 14px 7px 0 7px;
}

.photos-gallery .photo-gallery-image span {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.photos-gallery .photo-gallery-image img {
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
  cursor: pointer;
}

.photos-gallery .photo-gallery-image:hover img {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 1050px) {
  .photos-gallery .photo-gallery-image {
    padding: 10px;
  }
}

@media (max-width: 800px) {
  .photos-gallery .photo-gallery-image {
    width: calc(100% / 2);
  }
}

@media (max-width: 600px) {
  .photos-gallery .photo-gallery-image {
    width: 100%;
    margin: 10px auto 0 auto;
  }
}

/* Footer Section */
.footer-section {
    width: 100%;
    background: #111;
    padding-top: 2.5rem;
    color: #fff;
    margin-top: 50px;
}
  
.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.footer-top h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-top p {
    max-width: 525px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 15px;
}

.footer-top-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0 3rem 0;
}

.footer-top-sm li {
    margin: 0 20px;
}

.footer-bottom {
    width: 100%;
    background: #111;
    border-top: 1px solid #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 15px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span {
    color: #8E8D78;
    text-transform: uppercase;
    font-weight: 600;
}