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 {
    text-decoration: none;
  }
  
  strong {
    font-weight: 800;
  }
  
  section {
    position: relative;
  }
  
.navbar {
    padding: 21px 0;
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: #fff;
    background: #060606;
    box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.12);
}
.navbar.fixed{
    position: fixed;
    width: 100%;
    background: transparent;
    box-shadow: none;
}
.navbar.fixed-color{
    position: fixed;
    width: 100%;
    background: #060606;
    box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.12);
}
.summerEnabled .navbar{
    top: 51px;
}
.navbar.stick-down{
    top: 62px;
}
.navWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.navigations a,.orderBtns a {
    margin-left: 22px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
}

.navigations a{
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
.navigations a.active{
    border-bottom: 2px solid #fff;
}

.navigations a:hover,.orderBtns a:hover {
    border-bottom: 2px solid #fff;
}
.navigations a.active:hover{
    text-decoration: none;
}

.navigations a:first-child,.orderBtns a:first-child {
    margin-left: 0;
}

.navigations .navOrderBtn {
    margin-left: 32px;
    padding: 7px 15px;
    background: #05ada3;
    border-radius: 100px;
    line-height: 18px;
    color: #FFFFFF;
    font-weight: 400;
    position: relative;
    transition: all ease .1s;
}

.navigations .navOrderBtn:hover {
    background: #019990;
}

.navigations .navOrderBtn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    animation-name: pulse-animation6;
    -webkit-animation-duration: 2s;
    animation-duration: 1s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navRight.navMob {
    display: none;
}

.navbarMenu {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 110;
}

.navbarMenu.hide {
    display: none;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.navbarLogo {
    display: inline-block;
}

.navbarLogo img {
    max-width: 231px;
    width: 100%;
    max-height: 38px;
    height: 100%;
}

.navigations>svg {
    margin-left: 20px;
}

.navigations .sessionBtn {
    margin-left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.navigations .sessionBtn.mg10{
    /* padding: 9px 16px; */
    display: flex;
    align-items: center;
    /* border-radius: 100px; */
    /* border: 1px solid #fff; */
    position: relative;
}
/* .navigations .sessionBtn.mg10:hover{
    background: linear-gradient(180deg, #24C7BD 0%, #046761 100%), #FFF;
    border-color: #000;
} */
.navigations a.homeFreeBtn{
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    /* background: linear-gradient(180deg, #24C7BD 0%, #046761 100%), #FFF; */
    border-radius: 100px;
    border: 1px solid #000;
    position: relative;
    margin-left: 15px;
     border-radius: 100px;
    border: 1px solid #fff;
}
.navigations a.homeFreeBtn.mg0{
    margin-left: 0;
}
.customEssayWriter{
    position: relative;
    padding: 9px 16px!important;
    box-sizing: border-box;
    background: linear-gradient(90deg, #FF8906, #9CE2A7, #ffeb3b, #FF8906);
    background-size: 400%;
    border-radius: 100px;
    z-index: 1;
    animation: animateBtn 10s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #E2E8F0; */
    color: #000!important;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    column-gap: 8px;
    outline: none;
    cursor: pointer;
    text-align: center;
}
.customEssayWriter::before{
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
    background: linear-gradient(90deg, #FF8906, #9CE2A7, #ffeb3b, #FF8906);
    background-size: 400%;
    border-radius: 100px;
    opacity: 0;
    transition: .5s;
}
.customEssayWriter:hover:before{
    filter: blur(5px);
    opacity: 1;
    animation: animateBtn 8s linear infinite;
}
@keyframes animateBtn{
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 400%;
    }
}
.navigations a.homeFreeBtn::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    animation-name: pulse-animation7;
    -webkit-animation-duration: 2s;
    animation-duration: 1s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.navigations a.homeFreeBtn:hover{
    background: transparent;
    border-color: #fff;
}
.navigations a.homeFreeBtn:hover .btnText{
    color: #fff;
}
.navigations a.homeFreeBtn .btnIcon path{
    fill: #fff;
}
.navigations a.homeFreeBtn .btnText{
    color: #fff;
font-size: 14px;
font-weight: 500;
line-height: normal;
}
.navigations a.homeFreeBtn .btnIcon{
    display: flex;
    align-items: center;
    transform: translateY(1px);
}
.basicUtilization{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.basicUtilizationWrapper{
    border-bottom: 1px solid #DEE7E7;
    margin-bottom: 11px;
    padding-bottom: 10px;
    display: none;
}
.basicUtilizationWrapper.red{
    margin-bottom: 7px;
}
.basicCount{
    color: #1E1E1E;
font-size: 15px;
font-weight: 600;
line-height: normal;
}
#basic-utilized{
    color: #ff7f14;
}
.basicUtilizationWrapper.red #basic-utilized{
    color: #D40000;
}
.basicSlash{
    color: #1E1E1E;
font-size: 18px;
line-height: normal;
}
.basisWordsDesc{
    color: #1E1E1E;
    font-size: 12px;
line-height: normal;
margin-left: 1px;
}
.navigations a.exceedUpgrade{
    background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 13px;
line-height: normal;
display: block;
max-width: max-content;
margin: 0 auto;
position: relative;
padding-bottom: 1px;
display: none;
}
.navigations a.exceedUpgrade::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
    left: 0;
    bottom: 0;
}
.navigations a.exceedUpgrade:hover::after{
    display: none;
}
@media (max-width:767px) {
    .mainPageLink .pageLink.mob-none{
        display: none;
    }
    .navigations {
        display: none;
    }

    .navbar {
        padding: 10px 0;
    }

    .navigationMenu.default {
        right: 0;
    }

    .navRight.navMob {
        display: block;
    }

    .navigationMenu {
        position: absolute;
        right: 0;
        top: 0;
        max-width: 239px;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
        border-radius: 0;
        z-index: 60;
        height: 100%;
        /* transition: all ease .1s; */
        overflow-y: auto;
    }

    .toggleHead img.logo-bg {
        display: flex;
        max-width: 155px;
        height: 26px;
        width: 100%;
        object-fit: scale-down;
    }

    .pageLink {
        display: flex;
        width: 100%;
        padding: 15px 17px 16px;
        align-items: center;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #333333;
        border-bottom: 1px solid #F3F3F3;
    }
    .pageLink:last-child{
        border-bottom: none;
    }
    .pageLink.active {
        background: #F8FAFC;
        border-radius: 5px;
        color: #05ada3;
    }

    .toggleHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 17px;
        background: #F5F5F5;
    }

    .mainPageLink {
        margin-top: 11px;
    }

    a.menuCTA.blue {
        background: #05ada3;
        border-radius: 100px;
        font-weight: 450;
        font-size: 14px;
        line-height: 18px;
        color: #FFFFFF;
        padding: 9px 30px 10px;
        max-width: max-content;
        margin: 44px auto 0;
        display: block;
        position: relative;
    }
    a.menuCTA.blue::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        transform: skewX(-20deg);
        background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
        animation: shine 1s linear infinite;
        content: '';
    }
    @keyframes shine {
        0% {
          left: -10%;
        }
        100% {
          left: 100%;
        }
      }
    .navbarLogo img {
        max-width: 180px;
    }
    .navbar.stick-down{
        top: 43px;
    }
    .summerEnabled .navbar{
        top: 64px;
    }
}


.newLoginBtn .userIcon {
    border: none;
    display: block;
    cursor: pointer;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-image: url(../svg/user_icon_filled.svg);
    background-repeat: no-repeat;
    background-color: transparent;
}

/* .loggedIn.newLoginBtn .userIcon {
    background-color: rgba(2, 197, 133, .1)
} */

/* .newLoginBtn .userIcon:hover {
    background-image: url(../images/user_icon_filled.svg)
} */


.new-session-wraper::before {
    width: 10px;
    height: 10px;
    border-left: 1px solid #CDE1EB;
    border-top: 1px solid #CDE1EB;
    position: absolute;
    content: '';
    top: -6px;
    right: 20px;
    transform: rotate(45deg);
    background: #fff;
}

.new-session-wraper.userMenu {
    min-width: 207px;
}

.newLoginBtn.loggedIn {
    position: relative;
}

.new-session-inner {
    padding: 15px 11px;
}

.session_links ul {
    list-style: none;
}

.session_links ul li,
.session_links ul li a {
    display: block;
}

.session_links ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}

.session_links ul li:last-child a {
    padding-bottom: 0;
}

.session_links ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    padding-bottom: 15px;
    display: block;
    color: #000;
}

.session_links ul li a:hover {
    color: #05ada3;
}

.new-session-wraper {
    max-width: 180px;
    width: 100%;
    margin-left: auto;
    position: absolute;
    top: 44px;
    display: none;
    right: -14px;
    background: #fff;
    border: 1px solid #d9e4e1;
    border-radius: 6px;
}