/* .flexi {
    max-width: 1510px;
} */
.flexi{
    max-width: 1270px;
}
.btn-header{
    background: rgb(143,29,20);
    color:white;
    transition: 0.3s;
}
.btn-main{
    background: rgb(143,29,20);
    transition: 0.3s;

}
.btn-main:hover{
    background: black;
}
.circle {
    position: absolute;
    top: calc(50% + 100px);
    left: 50%;
    width: 1200px;
    height: 1200px;
    opacity: 0;
    -webkit-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%,-50%) scale(0);
    -webkit-animation-name: grow;
    animation-name: grow;
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.555,.32,.205,.63);
    animation-timing-function: cubic-bezier(.555,.32,.205,.63);
    border-radius: 50%;
}

.grow {
  animation-name: grow;
  animation-delay: -1000ms;
}

@keyframes grow {
    0% {
    opacity: .5;
    -webkit-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%,-50%) scale(0);
}
100% {
    opacity: 0;
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
}
}
.grow2 {
  animation-name: grow2;
  animation-delay: -500ms;
}

@keyframes grow2 {
    0% {
    opacity: .5;
    -webkit-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%,-50%) scale(0);
}
100% {
    opacity: 0;
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
}
}

.product-icon{
    opacity: 0;
    transition: 0.3s;
}

    /*animations links*/
    .product-card {
        position: relative;
        filter: drop-shadow(0 4px 94px rgba(0, 0, 0, .1));
        
    }

    .product-card::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: rgb(143,29,20);
        top: -2px;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform .3s ease-in-out;
        color:black
    }

    .product-card:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }

    .product-card:hover .product-icon{
        opacity: 1;
    }
    /*end animation links*/