:root {
    --primary-color: linear-gradient(90deg, #812be3 55.67%, #4c01e0 71.51%);
    --secondary-color: #1f1f1f;
    --text-color: #585858;
    --head-font: 30px;
    --subHead-font: 26px;
    --headDesc-font: 15px;
    --bg-cta: #5b0be1;
    --text-cta: #5b0be1;
    --text-font: 14px;
    --wrap-space: 70px;
    --sec-space-filled: 100px 0;
    --sec-space: 120px 0;
    --bg-light: #fbf8ff;
    --secBg: #fafdff;
    --bullet-color: #bd9df3;
    --headDesc-font-mob: 13px;
    --auth-form-head: 21px;
    --auth-form-desc: 13px;
}

*,
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

a,
button {
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

.secTitle h2 span,
.secTitle h1 span {
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.secTitle h1 {
    font-size: var(--head-font);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 39px;
    color: var(--secondary-color);
}

.secTitle h2 {
    font-size: var(--subHead-font);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 39px;
    color: var(--secondary-color);
}

.secTitle p {
    font-size: var(--headDesc-font);
    font-weight: 400;
    line-height: 18.15px;
    text-align: center;
    color: var(--text-color);
}

.ctaBtn {
    background: var(--bg-cta);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctaBtn.loginBtn:hover {
    background: linear-gradient(135.29deg, #812BE3 25.65%, #4C01E0 94.74%);
}

.secWraper {
    padding-top: var(--wrap-space);
}

.btnSecondary {
    background: #fff;
    width: 100%;
    border: 1px solid var(--text-cta);
    color: var(--text-cta);
    border-radius: 4px;
    position: relative;
}

.btnSecondary:hover {
    color: #fff;
    background: linear-gradient(90deg, #812BE3 11.46%, #4C01E0 94.53%);
}

.btnSecondary::after {
    content: '';
    background: url('../images/cta-arrow.svg');
    display: inline-block;
    margin-left: 10px;
    width: 14px;
    height: 14px;
}

.btnSecondary:hover::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7470%) hue-rotate(296deg) brightness(94%) contrast(103%);
}

.modalOverlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    display: block;
    transition: .3s;
    backdrop-filter: blur(4px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
}

/* header */
header {
    position: fixed;
    top: 0;
    padding: 12px 0;
    background: #fff;

    z-index: 999;
    width: 100%;
    transition: all 0.2s ease;
}

.newLoginBtn {
    display: none;
}

header.scrolled {
    padding: 12px 0px;
    background: #ffffff;
    box-shadow: 0px 4px 6.5px 0px #00000008;
    transition: all 0.2s ease;
}

.navBar-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.loginBtn {
    border-radius: 6px;
    height: 39px;
    width: 80px;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.94px;
    color: #fff;
}

.navbar-toggle {
    display: none;
}

.navbar-collapse ul {
    list-style: none;
}

.navbar-nav.navbar-right {
    display: flex;
    column-gap: 10px;
    position: relative;
}

.newLoginBtn .userIcon {
    border: none;
    background-color: transparent;
    cursor: pointer;
    width: 33px;
    height: 33px;
    border-radius: 100px;
    align-items: center;
    position: relative;
    justify-content: center;
}

.userIcon img {
    display: block;
    width: 15px;
    height: 15px;
}

.newLoginBtn button img:last-child {
    display: none;
}

.session-wraper.userMenu {
    max-width: 125px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease all;
}

.session-wraper {
    width: 100%;
    margin-left: auto;
    position: absolute;
    top: 50px;
    right: -10px;
    border: 1px solid #CEE4FD;
    border-radius: 10px;
    background-color: #fff;
}

.session_links ul li:first-child {
    border-radius: 10px 10px 0 0;
}

.session_links ul li {
    display: block;
    list-style: none;
    border-bottom: 1px solid #CEE4FD;
}

.session_links ul li:first-child a {
    border-radius: 9px 9px 0px 0px;
}

.session_links ul li a {
    font-size: 14px;
    font-weight: 450;
    line-height: 19px;
    padding: 10px 15px;
    color: #01305C;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.newLoginBtn:hover .session-wraper.userMenu {
    visibility: visible;
    opacity: 1;
}

.navbar-nav.navbar-left {
    display: flex;
    gap: 20px;
}

.navbar-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.navbar-nav .menu-link {
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 150%;
    font-size: 15px;
    text-align: left;
}

.menu-link {
    position: relative;
}

.navbar-nav .menu-link:hover {
    color: var(--bg-cta);
}

.navbar-nav .menu-link::before {
    content: "";
    width: 0;
    height: 0.5px;
    border-radius: 15px;
    background: var(--bg-cta);
    position: absolute;
    bottom: -3px;
    transition: width 0.2s;
}

.navbar-nav .menu-link:hover::before {
    width: 100%;
    transition: width 0.2s;
}

/* footer */
footer {
    background-color: #fff;
    padding: 40px 0 20px;
}

.footerWraper {
    text-align: center;
}

.footerLink {
    display: flex;
    justify-content: space-between;
    max-width: 747px;
    width: 100%;
    margin: 0 auto;
    list-style: none;
    padding: 20px 0;
}

.footerLink li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: var(--secondary-color);
}

.footerLink li a:hover {
    color: var(--text-cta);
    text-decoration: underline;
}

.socialList {
    list-style: none;
}

.copyRight {
    display: flex;
    justify-content: center;
    border-top: 1px solid #EDF1F8;
    padding: 20px 0;
}

.socialList {
    display: flex;
    column-gap: 11px;
}

.socialList img {
    width: 28px;
    height: 28px;
    transition: all ease .1s;
}

.socialList img:hover {
    transform: scale(1.05);
}

.copyRight p {
    font-size: 12px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text-color);

}

.burgerMenu {
    display: none;
}

.closeIcon {
    display: none;
}

.side-bar-head {
    display: none;
}

@media(max-width:785px) {
    .side-bar-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav .menu-link {
        display: block;
    }

    .navbar-nav.navbar-left {
        flex-direction: column;
        row-gap: 16px;
        justify-content: start;
        margin: 30px 0;
    }

    .closeIcon {
        display: block;
    }

    .burgerMenu {
        display: block;
    }


    .navbar-collapse ul {
        list-style: none;
        display: block;
    }

    .closeIcon {
        display: block;
    }

    .overLay {
        position: fixed;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.65);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .overLay.show {
        pointer-events: all;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .navbar-content {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        width: 280px;
        background-color: #fff;
        height: 100vh;
        z-index: 1000;
        transition: all 0.3s ease;
        transform: translateX(280px);
        text-align: right;
        padding: 35px 20px;
    }

    .navbar-content.showMenu {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        width: 280px;
        background-color: #fff;
        height: 100vh;
        z-index: 1000;
        transition: all 0.3s ease;
        transform: translateX(0px);
        text-align: right;
        padding: 35px 20px;
    }

    .burgerMenu {
        display: block;
        z-index: 999;
    }

    .navbar-nav.navbar-right {
        justify-content: center;
    }
}

@media(max-width:575px) {
    :root {
        --head-font: 24px;
        --subHead-font: 22px;
        --headDesc-font: 13px;
        --text-font: 14px;
        --wrap-space: 60px;
        --sec-space-filled: 70px 0;
        --sec-space: 120px 0;
    }

    .secTitle h2 {
        margin-bottom: 12px;
    }

    /* footer */
    .footerLink {
        column-gap: 22px;
        flex-wrap: wrap;
        row-gap: 14px;
        padding: 18px 0 36px;
        justify-content: center;
    }

    .copyRight {
        flex-direction: column;
        text-align: center;
        row-gap: 8px;
        padding: 22px 0 36px;
    }

    .socialList {
        justify-content: center;
    }

    .footerLink li a {
        font-size: 13px;
    }

}