.instafeed-image-square {
  position: relative;border-radius: 30px;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}

.instafeed-image-square img {
  object-fit: cover;
  border-radius: 30px;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.instafeed-image-square.with-background {
  background-size: cover;
  background-position: center;
}


/* 
These are just styles for the test page 
-------------------------------------------
*/



.image-boxes {
  display: flex;
  flex-direction: row;
  margin-bottom:10px;
}

.image-boxes  > * {
  flex: 1;
  margin-right: 1rem;
  position: relative;
}

.image-box > img {
  width: 100%;
}


.circle-img {
  width: 19%;
  height: auto;
  margin:5px;
  padding-top: 20%;
  border-radius: 10px 50%;
  background-image: url("../images/position-01.webp");
  background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
.circle-img2 {
  width: 19%;
  height: auto;
  margin:5px;
  padding-top: 20%;
  border-radius: 10px 50%;
  background-image: url("../images/position-02.webp");
  background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
.circle-img3 {
  width: 19%;
  height: auto;
  margin:5px;
  padding-top: 20%;
  border-radius: 10px 50%;
  background-image: url("../images/position-03.webp");
  background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
.circle-img4 {
  width: 19%;
  height: auto;
  margin:5px;
  padding-top: 20%;
  border-radius: 10px 50%;
  background-image: url("../images/position-04.webp");
  background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}

.circle-img5 {
  width: 19%;
  height: auto;
  margin:5px;
  padding-top: 20%;
  border-radius: 10px 50%;
  background-image: url("../images/position-05.webp");
  background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}

.READ_Dashboard_Banner {
	background: #000 url(../images/pattern.png) repeat;
	width: 100%;
	border-radius: 25px;
	
	box-shadow: 0 2px 4px rgba(0,0,0,.1);
	color: #fff;
	text-align: center;
}
.READ_Dashboard_Banner .banner-inner {
	background: url(../images/top-model.webp) no-repeat right bottom;
	padding: 20px;
	border-radius: 10px;
}
.READ_Dashboard_Banner h3 {
	text-transform: uppercase;
}
.READ_Dashboard_Banner h4 {
	font-size: 1.1em;
}
.READ_Dashboard_Banner a {
	background: #E24849;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 8px;
	padding: 8px 40px;
	text-decoration: none;
	display: inline-block;
}
@media(max-width: 450px) {
	.READ_Dashboard_Banner h3, .READ_Dashboard_Banner h4 {font-size: initial;}
	.READ_Dashboard_Banner a {padding: 8px 20px;}
}


.faq {
  padding: 40px;
  text-align: center; 
  color:#333333;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.faq__title {
  text-transform: uppercase;
  color: #8b7197;
}

details {
  background-color: #bba8c1;
  border-radius: 10px;
  cursor: pointer;
  padding: 20px 30px;
  margin-block: 30px;
}

summary,
p {
  text-align: left;
}

summary {
  margin-inline-start: 1rem;
  list-style-position: outside;
}

summary::marker {
  color: #8b7197;
  font-size: 18px;
}

.image-gallary-section {
  display: flex;
  justify-content: center;
  align-items:center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  min-height: 100dvh;
  transition: all 0.5s ease-in-out;

  &:hover {
    > :not(:hover) {
      opacity: 0.4;
    }
  }

  .card {
    transition: transform 0.5s ease;
    height: 300px;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;

    &:hover {
      cursor: zoom-in;
      transform: scale(1.1);
    }

    img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
  }
}

.blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
}
.poster img {
    width: 100%;
}
.blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}