#notifications {
  position: fixed;
  top: 7rem;
  right: 6rem;
  display: flex;
  flex-direction: column;
  z-index: 3000;
  pointer-events: none;
  align-items: flex-end;
}

#notifications .notification {
  padding: 0.7rem 1.5rem;
  color: #fff;
  border-radius: 4rem;
  margin-bottom: 1rem;
  transform: translateX(1rem);
  transition: 0.5s ease all;
  opacity: 0;
  max-width: 300px;
}

#notifications .notification:last-child {
  margin-bottom: 0;
}

#notifications .notification.success {
  background: #313e20;
}

#notifications .notification.error {
  background: #ec4747;
}

#notifications .notification.warning {
  background: #ec9a47;
}

#notifications .notification.shown {
  transform: translateX(0);
  opacity: 1;
}

.gallery_img_01 {
  height: 259px;
}

@media all and (max-width: 991px) {
  .gallery_img_01 {
    height: 178px;
  }
}
@media all and (max-width: 768px) {
  .gallery_img_01 {
    height: auto;
    width: 100%;
  }
}
.gallery_img_02, .gallery_img_03, .gallery_img_04 {
  height: 508px;
}

@media all and (max-width: 991px) {
  .gallery_img_02, .gallery_img_03, .gallery_img_04 {
    height: 350px;
  }
}
@media all and (max-width: 768px) {
  .gallery_img_02, .gallery_img_03, .gallery_img_04 {
    height: auto;
    width: 100%;
  }
}
.gallery_img_05 {
  height: 304px;
}

@media all and (max-width: 991px) {
  .gallery_img_05 {
    height: 205px;
  }
}
@media all and (max-width: 768px) {
  .gallery_img_05 {
    height: auto;
    width: 100%;
  }
}
.gallery_img_06 {
  height: 596px;
}

@media all and (max-width: 991px) {
  .gallery_img_06 {
    height: 404px;
  }
}
@media all and (max-width: 768px) {
  .gallery_img_06 {
    height: auto;
    width: 100%;
  }
}
.gallery_img_01 img, .gallery_img_02 img, .gallery_img_03 img, .gallery_img_04 img, .gallery_img_05 img, .gallery_img_06 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

