
#homeBanner {
    height: 80vh;
    background: repeating-linear-gradient(
  45deg,
  #606dbc,
  #606dbc 10px,
  #465298 10px,
  #2F9C95 30px
);
}

#aboutContainer{
  height: 80vh;
  z-index: 2;
}
.aboutBGC::before{
  content: '';
  position: absolute;
  top: 56px;
  right:0;
  bottom:0;
  left:0;
  display: block;
  width: 100%;
  height: 82vh;
  border-radius: 0%;
  background:
    radial-gradient(circle at 50% 0, 
        rgba(11,241,34,1), rgba(255,0,0,0) 70.71%), 
    radial-gradient(circle at 6.7% 75%, 
        rgba(18,54,247,1), rgba(0,0,255,0) 70.71%), 
    radial-gradient(circle at 93.3% 75%, 
        rgba(255,0,0,1), rgba(0,255,0,0) 70.71%);
}

#exploreBTN {
    animation: breathing 3s ease-in-out infinite;
}

.w-80{
  width: 80%;
}

.footerBGC{
  background-color: rgb(255, 255, 255);
}

nav {
  z-index: 1;
}

.badge {
  position: relative;
  top: -85%;
  left: 35%;
  transform: rotate(45deg);
}


img.placeholder{
    width: 200px;
    height: 200px;
}

.paintingBCG{
    background: linear-gradient(270deg, rgba(255,0,0,1) 0%, rgba(255,0,245,1) 100%);
}

.embroideryBCG{
    background: linear-gradient(270deg, rgba(11,241,34,1) 0%, rgba(247,252,10,1) 100%);
}

.ceramicBCG{
    background: linear-gradient(270deg, rgba(18,54,247,1) 0%, rgba(8,248,248,1) 100%);
}
.figureBCG{
    background: linear-gradient(270deg, rgba(213,0,231,1) 0%, rgba(255,172,172,1) 100%);
}

@keyframes breathing {
    0% {
      transform: scale(1);
    }
  
    25% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.2);
    }
  
    100% {
      transform: scale(1);
    }
  }