.openMenu{
    position: relative;
    cursor:pointer;
    padding-left: 25px;
    padding-top: 20px;
}

.openMenu2{
    position: relative;
    cursor:pointer;
    padding-left: 30px;
    padding-top: 20px;
}

#navMenu,
#navMenu2{
    text-align:center;
    width: 40px;
    height: 40px;
}

#navMenu > span,
#navMenu2 > span {
    display:block;
    width: 30px;
    height: 3px;
    border-radius:9999px;
    
}

.crack{
    background-color: white;
}

.crack-fix{
    background-color: rgb(41, 41, 41);
}

#navMenu > span:not(:last-child),
#navMenu2 > span:not(:last-child){
    margin-bottom: 4px;
}

/* Adding Class active */
#navMenu,
.active,
#navMenu > span,
#navMenu2,
.active,
#navMenu2 > span,
.transition {
    transition: all .3s ease-in-out;
}

#navMenu.active,
#navMenu2.active {
    transition-delay: 0.6s;
    transform: rotate(45deg);
}

#navMenu.active > span:nth-child(2),
#navMenu2.active > span:nth-child(2){
    width:0;
}

#navMenu.active > span:nth-child(1),
#navMenu.active > span:nth-child(3),
#navMenu2.active > span:nth-child(1),
#navMenu2.active > span:nth-child(3) {
    transition-delay: .3s;
}

#navMenu.active > span:nth-child(1),
#navMenu2.active > span:nth-child(1){
    transform: translateY(9px);
}

#navMenu.active > span:nth-child(3),
#navMenu2.active > span:nth-child(3){
    transform: translateY(-9px) rotate(90deg);
}

.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item{
    -ms-touch-action: auto;
        touch-action: auto;
}