.breadcrumb-button-group-flex {
    background-color: var(--secondary-color);
    display: flex;
    margin-left:auto;
    margin-right:auto;
    width: fit-content;
    border-radius: 50px;
    overflow: hidden;
}

.breadcrumb-button-group-flex a {
    padding: 7px 30px;
    border-radius: 50px;
    font-size: 14px;
}
.breadcrumb-button-group-flex a.active{
    background-color:var(--primary-color);
    color:#fff;
}
h2.magicHeading {
    font-size: 30px;
    font-weight: 400;
    
}
h2.magicHeading.two {
    font-weight: 600;
    text-transform: capitalize;
}

.commonpaw{
    width: 32px;
    height:auto;
    position: absolute;
}
img.paw1.commonpaw {
    left: 0;
    top: -15px;
    transform: rotate(325deg);
}

img.paw2.commonpaw {
    right: 0;
    top: -15px;
    transform: rotate(45deg);
}

img.paw3.commonpaw {
    left: 0;
    bottom: -15px;
    transform: rotate(225deg);
}

img.paw4.commonpaw {
    right: 0;
    bottom: -15px;
    transform: rotate(125deg);
}

.mashroom-card-box{
    padding:20px 30px;
    background-color:#f8dbba;
    text-align: center;
}
.mashroompositionabsolute{
    position: absolute;
    bottom: -35px;
    left:0;
    width: 100%;
    height:auto;
    
}

.mashroom-card-box p.heading {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 10px;
}
.image-stack {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.image-stack img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}

.righticon {
    position: absolute;
    right: 10px;
    top: 0;
    width: 100px;
    max-width: 100px;
}
.righticon img{
    width: 100%;
    height:auto;
    animation: moveTopBottom 2s ease-in-out infinite;
}
.lefticon {
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 100px;
    max-width: 100px;
}
.lefticon img{
    width: 100%;
    height:auto;
    animation: moveTopBottom 2s ease-in-out infinite;
}

.breadcrumb-area{
    
    .lefticon, .righticon{
        max-width: 75px;
    }
}
@keyframes moveTopBottom {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); /* Adjust the value for the range of movement */
    }
    100% {
        transform: translateY(0);
    }
}

.breadcumbIcon {
 position: absolute;
    right: 2.5%;
    width: 120px;
    bottom: 7.5%;
}

.breadcumbIcon img {
  width:100%;
  height:auto;
}

@media only screen and (max-width: 600px) {
 .breadcumbIcon{
 
 	display:none;
 
 }
 .breadcrumb-button-group-flex{
     display: block;
     width: 100%;
     border-radius: 0;
     background-color: unset;
 }
 .breadcrumb-button-group-flex a {
  
    display: block;
    width: 100%;
    margin-bottom: 5px;
    background-color: var(--secondary-color);
}
.breadcrumb-area .lefticon, .breadcrumb-area .righticon {
        max-width: 44px;
    }
    img.paw1.commonpaw, img.paw2.commonpaw {
   
    top: -15px;
   
}
img.paw3.commonpaw, img.paw4.commonpaw {

  
    bottom: -15px;
   
}
h2.magicHeading {
    font-size: 24px;
  
}
.mt-minus-bottom-10{
    margin-bottom:-10px;
}
.mt-minus-top-10{
    margin-top:-10px;
}

.mashroom-card-box {
    padding: 20px 10px;
   
}



}


@media (min-width: 768px) and (max-width: 1200px) {
.breadcumbIcon {
   display: none;
}
h2.magicHeading {
    font-size: 22px;
   
}
.image-wrapper {
   
    margin-top: 30px;
}


}

