.navbarSec {
    padding: 24px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.navbarWrapper {
    padding: 15px 24px;
    border-radius: 35px;
    background: #FFF;
    box-shadow: 0px 11px 23px 0px rgba(139, 188, 233, 0.11);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tryFreeBtn {
    display: flex;
    align-items: center;
    gap: 7px;
}

.tryFreeBtn {
    padding: 12px 20px 11px;
    background: #2563EB;
    border-radius: 100px;
}

.tryBtnText {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.tryFreeBtn:hover {
    background: #1B449E;
}

img.navbarLogo {
    max-width: 230px;
    width: 100%;
    height: 32px;
}

.magicWrapper img {
    width: 39px;
    height: 39px;
}

.navigations {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navigations a {
    color: #18172F;
}

.navigations a:hover {
    text-decoration: underline;
    color: #2563EB;
}

.mobOnly {
    display: none;
}

.navOverlay {
    /* display: none; */
    background: rgba(0, 0, 0, .5);
    z-index: 998;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    display: none;
}

@media (max-width:575px) {
    .dsktpOnly {
        display: none;
    }

    .navbarSec {
        padding: 15px 0;
    }

    .navbarWrapper {
        padding: 7px 12px;
    }

    img.navbarLogo {
        max-width: 172px;
        width: 100%;
        height: 42px;
    }

    .navbarWrapper .tryFreeBtn svg {
        display: none;
    }

    .navbarWrapper .tryFreeBtn {
        padding: 7px 14px;
    }

    .mobOnly {
        display: block;
    }

    .mobNav {
        max-width: 300px;
        width: 100%;
        height: 100vh;
        background: #fff;
        position: fixed;
        right: -200%;
        top: 0;
        z-index: 999;
        padding: 15px 20px;
        transition: all ease .4s;
    }

    .mobNav.show {
        right: 0;
    }

    .navbarWrapperMob {
        display: flex;
        flex-direction: column;
    }

    .navigations {
        flex-direction: column;
        align-items: start;
        padding: 10px 0px;
        gap: 0px;

    }

    .navigations a {
        padding: 10px 0;
        display: block;

    }

    .navbarWrapperMob .tryFreeBtn {
        max-width: max-content;
        margin: 0 auto;
    }

    .mobLogoWrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbarWrapper {
        border-radius: 10px;
    }

    .navbarWrapperMob .tryFreeBtn {
        padding: 10px 20px;
    }

    .navigations a {
        text-align: center;
    }
}