*, *::after , *::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

html{
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased; /* For WebKit (Safari, Chrome) */
    -moz-osx-font-smoothing: grayscale; /* For Firefox (Mac OS X) */
    -webkit-font-smoothing: antialiased; /* For Safari on Mac OS X */
    scrollbar-width: thin;
    width: 100%;
    
    
}

body {
    font-family: 'Inter', sans-serif;
    width: 100%;
    background-color: #ffffff;
    color: #4f4f4f;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
}

button, a {
    cursor: pointer;
}

img, video {
    max-width: 100%;
    height: auto;
}


.commonBtn{
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.commonBtn::after{
    content:'';
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* background-color: transparent; */
    position: absolute;
    top: 0;
    left: -100%;
    transition: left 0.4s ease;
    z-index: -1;
}

.commonBtn:hover::after{ 
    left: 0;
}

