/*
Theme Name: Astra Child
Theme URI: https://example.com
Description: Astra Child Theme
Author: Harshit
Template: astra
Version: 1.0
*//* ZOOM OUT IMAGE */

.zoom-out {
  opacity: 0;
  transform: scale(1.5);
}
.zoom-out.show {
  opacity: 1;
  transform: scale(1);
  transition: all 0.8s ease;
}

/* POP-UP TEXT */
.pop-up {
  opacity: 0;
  transform: scale(0.5);
}
.pop-up.show {
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s ease;
}

/* SLIDE UP */
.slide-up {
  opacity: 0;
  transform: translateY(50px);
}
.slide-up.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* HARD FIX overflow */
html, body {
  overflow-x: hidden !important;
}

/* Fix columns */
.wp-block-columns {
  max-width: 100%;
  overflow: hidden;
}

/* Fix images */
img {
  max-width: 100% !important;
  height: auto;
  display: block;
}




