.w-nav{
    z-index: 998 !important;
}




.text-center{
    text-align: center;
}

@keyframes left-to-right {
    0%{
        transform: translateX(-80%);
    }50%{
        transform: translateX(-95%);
    }100%{
        transform: translateX(0%);
    }
}
@keyframes right-to-left {
    0%{
        transform: translateX(80%);
    }50%{
        transform: translateX(95%);
    }100%{
        transform: translateX(0%);
    }
}
@keyframes bottom-to-top {
    0%{
        transform: translateY(90%);
    }100%{
        transform: translateY(0%);
    }
}

.swip-heading-text-right{
    animation: left-to-right ease-out 0.9s;
}
.swip-heading-text-left{
    animation: right-to-left ease-out 0.9s;
}
.swipe-up-ani{
    animation: bottom-to-top ease-out 0.9s;
}
.swipe-up{
    /* transition-delay: 0.2s; */
    transition: 0.4s ease-out;
}
.what-icon{
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 70px;
    height: 70px;
    z-index: 999;
}

.popup-wrap{
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.inquiry-form{
    background-color: white;
    width: min(100%, 500px);
    padding: 10px;
    border-radius: 10px;
}
.inquiry-form h3{
    margin-top: 10px;
    margin-bottom: 5px;
}
.my-input{
    width: 100%;
    outline: none;
    border: 1px solid var(--text-brown);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}
.four-blocks-wrap{
    width: 100%;
    flex-wrap: wrap;
}
.four-blocks-wrap .hero-usp-points{
    width: calc((100% / 4) - 20px);
    margin-right: 20px;
    margin-bottom: 29px;
}

@media screen and (width < 800px) {
    .four-blocks-wrap .hero-usp-points{
        width: 100%;
        margin-right: 0px;
    }
}