*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.gallery {
  column-count: 4;
  --webkit-column-count: 4;
  --moz-column-count: 4;
  gap: 1rem;
  /* padding: 4rem; */
}

.image img {
  height: auto;
  width: 100%;
}

/* Responsive-ness for different screen-sizes */
@media screen and (max-width: 810px) {
  .gallery {
    column-count: 3;
    --webkit-column-count: 3;
    --moz-column-count: 3;
  }
}

@media screen and (max-width: 500px) {
  .gallery {
    column-count: 2;
    --webkit-column-count: 2;
    --moz-column-count: 2;
  }
}

@media screen and (max-width: 400px) {
  .gallery {
    column-count: 1;
    --webkit-column-count: 1;
    --moz-column-count: 1;
  }
}

/* my css for icon */

.imagequotes {
  position: relative;
  /* display: inline-block; */
}



.imagequotesoverlay {
  position: absolute;
  top: 5px;
  margin-right: 5px;
  right: 0;
  display: none;
}

.imagequotes:hover .imagequotesoverlay {
  display: block;
}

.imagequotesoverlay a {
  display: block;
  text-align: center;
  padding: 5px;
  background-color: #fff;
  color: black;
  text-decoration: none;
  border-radius: 5px;
}

@media (max-width: 480px) {
  .imagequotesoverlay:hover {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
  }
}

  .imagequotesoverlay a {
    display: block;
    text-align: center;
    padding: 2px;
    background-color: #fff;
    color: black;
    text-decoration: none;
    border-radius: 5px;
  }

 /* start breadcrumb css */
.quotes,
.quotes .owl-item {
    padding: 0;
    width: 100%;
    height: auto;
    display: table;
    overflow: hidden;
    position: relative;
    table-layout: fixed;
    z-index: 0;
}

.quotes .owl-stage-outer {
    height: 100%;
}

.quotes .quote {
    width: 100%;
    height: 100%;
    display: table-cell;
    /* position: relative; */
    vertical-align: middle;
    z-index: 2;
    background-position: 50% 20%;
    background-repeat: repeat-y;
    background-size: cover;
}

.quotes .quote-captions h1,
.quotes .quote-captions h2,
.quotes .quote-captions h3,
.quotes .quote-captions h4,
.quotes .quote-captions h5,
.quotes .quote-captions h6 {
    color: black;
    font-family: "Open Sans";
    font-weight: 600;
    letter-spacing: -0.5px;
}

.quotes .quote-captions h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 1%;
}

/* end breadcrumb css */

