
*,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'CircularStd';
}
 

body.transFromLeft {
  transform: translateX(-270px);
}


a,
a:hover {
  text-decoration: none
}

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

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

section.af-footer-new {
  display: none
}
.fiftyOfferSec {
  padding: 7px 15px 8px;
  background: #db1a34;
  box-shadow: 0px 0px 13px 0px #5B5B5B26;
  position: sticky;
  top: 0;
  z-index: 22;
  text-align: center;
}
.fiftyOfferSec span {
  position: absolute;
  right: 98px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  cursor: pointer;
}
.fiftyOfferSec p {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.83px;
  text-align: center;
  color: #FFFFFF;
}
.fiftyOfferSec a:hover {
  opacity: .5;
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 43%;
  position: relative;
  margin: 0 auto;
  /* display: flex;
  gap: 160px; */
}
.fiftyOfferSec .marquee-text {
  display: inline-block;
  animation-name: slide;
  animation-duration: 9s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  padding-right: 20px;
}

.marquee-container {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes slide {
  from {
      transform: translateX(0);
  }

  to {
      transform: translateX(-100%);
  }
}
/* .fiftyOfferSec .mobText {
  display: none;
} */
.marquee-text {
  display: inline-block;
  position: relative;
}

.marquee-text.delay {
  visibility: visible;
  /* animation-delay: 5s;   */
}
.marquee-text.delay.hide{
  visibility: hidden;
}
@keyframes marquee {
  0% {
    transform: translate3d(93%, 0, 0);
  }
  100% {
    transform: translate3d(-221%, 0, 0);
  }
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
  z-index: 2;
  display: none
}

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

header.mpw-navbar {
  width: 100%;
  position: relative;
  background-color: #fff;
  box-shadow: 0 4px 10px rgb(119 119 119 / 15%);
  top: 0px;
  /* top:0; */
  padding: 15px 0;
  z-index: 11;
  position: sticky;
  left: 0;
  transform: translateY(0px);
}

header.mpw-navbar.fixed-header {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  top: 0px;
  background-color: #fff;
}
header.mpw-navbar.sticked{
  position: sticky;
}

header.mpw-navbar.opened {
  position: sticky;
  top: 0;
  background-color: transparent;
  box-shadow: none;
  transform: translateY(0px);
}

nav.navWrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

.navbarBrand {
  max-width: 185px;
  width: 100%;
}

.navbarBrand a {
  display: block;
}

.navbarBrand a img {
  display: block;
  max-width: 185px;
  max-height: 28px;
  width: 100%;
  height: 100%;
}

.banner-btn .pulseanim {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 100px;
  animation-name: pulse-animation;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #2d96ee;
  }

  100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

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

.pagesCentered {
  margin: 0 auto;
}

.pagesCentered ul {
  display: flex;
  list-style: none;
}

.pagesCentered ul li {
  display: block;
  padding-right: 28px;
}

.pagesCentered ul li.has-dropdown {
  padding-right: 40px;
}

.pagesCentered ul .navItems .navLinks,
.service-nav-dd-title {
  display: block;
  font-size: 14px;
  font-weight: 450;
  line-height: 120%;
  text-align: left;
  color: #1B1A2E;
  padding: 5px 0;
  cursor: pointer;
  position: relative;
}

.pagesCentered ul .navItems .navLinks:hover,
.service-nav-dd-title:hover {
  color: #2D96EE;
}

.navNewBtns {
  display: flex;
  column-gap: 6px;
  align-items: center;
  position: relative;

}

.newOrderBtn a {

  background: none;
  border: 1px solid #1B1A2E;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: #1B1A2E;
  display: block;
  font-weight: 450;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  max-width: max-content;
  position: relative;
}

.newOrderBtn a:hover {
  background-color: #2d96ee;
  color: #fff;
  border-color: #2D96EE;
}

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

.newLoginBtn.loggedIn .userIcon {
  background-color: #E5EFFF;
}

.userIcon img {
  display: block;
  width: 18px;
  height: 18px;
}
.userIcon img:hover{
  filter: brightness(0) saturate(100%) invert(61%) sepia(69%) saturate(4662%) hue-rotate(185deg) brightness(100%) contrast(88%);
}
/*
button.userIcon::after {
  position: absolute;
  right: -15px;
  height: 7px;
  width: 12px;
  content: "";
  background-image: url(/images/down-arrow-nav.svg);
  transition: transform 0.3s ease-in-out;
  background-repeat: no-repeat;
  bottom: 30%;
  pointer-events: none;
  transform: translateY(-50%);
} */

.new-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 {
  display: block;
  list-style: none;
  border-bottom: 1px solid #CEE4FD;
}

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

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

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

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

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

.info-head {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  column-gap: 15px;
  border-bottom: 1px solid #ccc;
}

.session_links ul li:last-child {
  border-bottom: none;
}

/* ai essay writer button style */
.btnsWrap {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

/* .newOrderBtn a.ai-essaywriter {
  background: none;
  border: 1px solid #1B1A2E;
  padding: 5px;
  border-radius: 6px;
  font-size: 13px;
  color: #1B1A2E;
} */

/* .newOrderBtn a.ai-essaywriter:hover {
  background-color: #2d96ee;
  color: #fff;
  border-color: #2D96EE;
} */

/* ai essay writer button style ends*/

.newLoginBtn.loggedIn .session_links ul {
  padding-top: 10px;
}

.session_links ul {
  list-style: none;
}

.user_avatar {
  max-width: 40px;
  width: 100%;
  border-radius: 100px;
  background-color: #F2F6FF;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

p.greetings {
  font-family: 'GT-Walsheim-Pro-Medium';
  font-size: 17px;
  color: #000;
  display: flex;
  flex-direction: column;
}

.session_links ul li:hover {
  background-color: #F4F8FF;
}

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

.new-session-wraper.loggedUser {
  min-width: 260px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease all;
}

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

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

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

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

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

/********** nav dropdown service *************/


.navItems .dropdown-menu.services {
  min-width: 460px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-top: 0;
  justify-content: flex-start;
}
.navItems .dropdown-menu.services ul{
  display: block;
  padding: 0;
}
.navItems .dropdown-menu.services p{
  font-weight: 500;
  margin-bottom: 10px;
}

.navItems .dropdown-menu.bestOffers {
  min-width: 185px;
  width: 100%;
}

.navItems .dropdown-menu.whyUs {
  min-width: 165px;
  width: 100%;
}

.navItems .dropdown-menu {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  border-radius: 10px;
  border: 1px solid #CEE4FD;
  background: #FFF;
  box-shadow: 0px 3px 20px 0px rgba(15, 56, 112, 0.15);
  column-gap: 40px;
  align-items: flex-start;
  padding: 15px;
  visibility: hidden;
  height: auto;
}

.navItems .dropdown-menu li a {
  padding: 12px 0 0;
  padding-right: 0 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  color: #01305C;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  text-transform: capitalize;
}

.has-dropdown:hover .dropdown-menu {
  visibility: unset;
}

.has-dropdown:hover .hover {
  color: #2D96EE;
}

.navItems .dropdown-menu li a:hover {
  color: #2D96EE;
  border-color: #2D96EE;
}
.navItems .dropdown-menu li:hover {
    background-color: unset;
}
.navItems .dropdown-menu li {
  padding: 0 !important;
  display: block;
  max-width: 100%;
  width: 100%;
}

.navItems .dropdown-menu.bestOffers li,
.navItems .dropdown-menu.whyUs li {
  max-width: 100%;
}

.service-nav-dd {
  position: relative;
  display: flex;
}

.service-nav-dd::before {
  position: absolute;
  right: 20px;
  height: 12px;
  width: 12px;
  content: "";
  background-image: url(/images/down-arrow-nav.svg);
  transition: transform 0.3s ease-in-out;
  background-repeat: no-repeat;
  top: 8px;
  pointer-events: none;
}
/* .service-nav-dd:hover::before */
.service-nav-dd.open::before {
  transform: rotate(180deg);
}

.service-nav-dd:hover::before {
  transform: rotate(180deg);
  background-image: url(/images/down-arrow-colored.svg);
}

li.service-nav-dd .service-nav-dd-title.hover {
  position: relative
}

li.service-nav-dd .service-nav-dd-title.hover:after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  border-radius: 15px;
  transition: width 0.2s;
}

li.service-nav-dd .service-nav-dd-title.hover:hover:after {
  width: 100%;
  transition: width .2s
}

li.service-nav-dd {
  padding-right: 40px;
}





.mobile-only,
.pagesCentered ul li.mobile-only {
  display: none;
}
.newOrderBtn a.ai-essaywriter {
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(90deg, #FF8906, #9CE2A7, #ffeb3b, #FF8906);
  background-size: 400%;
  padding: 7px 15px;
  border-radius: 7px;
  z-index: 1;
  animation: animate 10s linear infinite;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  height: 42px;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  column-gap: 8px;
  outline: none;
  cursor: pointer;
  margin-left: 12px;
  text-align: center;
}

.newOrderBtn a.ai-essaywriter::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: 6px;
  opacity: 0;
  transition: .5s;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 400%;
  }
}

.newOrderBtn a.ai-essaywriter:hover::before {
  filter: blur(5px);
  opacity: 1;
  animation: animate 8s linear infinite;
}
.ai-essaywriter .ctaNewblinkText {
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url(/images/ai-essay-writer-star-blank.svg);
  background-size: 28px 28px;
  background-position: center;
  background-repeat: no-repeat;
  right: -12px;
  top: -11px;
  z-index: 0;
}

.ai-essaywriter .ctaNewblinkText span {
  font-size: 7px;
  font-family: cursive;
  color: white;
  animation: blink 1s linear infinite;
  position: relative;
  top: 3px;
}
@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}
.mob-show{
  display: none!important;
}
.contactWrapperNav .top_icon{
  position: relative;
    top: 1px;
}
.contactWrapperNav{
  padding: 9px 0;
  background: #ECF7FF;
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 12;
}
.contactWrapperNav.sticked{
  position: sticky;
}
.singleWrapCont{
  display: flex;
  align-items: center;
  gap: 6px;
}
.singleWrapCont p{
  font-size: 14px;
  font-weight: 450;
  line-height: 16.44px;}
  .singleWrapCont span.aval,
.singleWrapCont p.contactNo{
  font-weight: 600;
}
.contactWrapperNav > span{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  cursor: pointer;
}
.contactWrapperNav > span:hover{
  opacity: .7;
}
@media(max-width:992px) {
  .fiftyOfferSec span{
    right: 10px;
  }
  .contactWrapperNav{
    display: none;
  }
  .pagesCentered ul li.mobile-only,
  .mobile-only {
    display: block;
  }
  .mob-show{
    display: block!important;
  }
  nav.navWrapper {
    justify-content: space-between;
  }

  .contactBtns a img {
    display: block;
    width: 14px;
    height: 14px;
  }

  button.navToggler {
    display: block;
    border: none;
    outline: none;
    background-color: transparent;
  }

  button.navOpenBtn img {
    display: block;
    width: 20px;
    height: 20px;
  }

  .navPages {
    display: flex;
    align-items: unset;
    flex: 1;
    justify-content: unset;
    position: fixed;
    top: 0;
    height: 100vh;
    right: -270px;
    flex-direction: column;
    width: 0;
    background-color: #FCFDFF;
    transition: 0.3s ease all;
    overflow-y: auto;
  }

  .pagesCentered ul {
    flex-direction: column;
  }
  .navItems l.dropdown-menu.services ul{
    width: 100%;
  }
 .navItems .dropdown-menu.services p{
    margin: 20px 15px 10px;
  }

  .navMobHead {
    padding: 28px 20px 14px;
    display: flex!important;
    align-items: center;
    justify-content: space-between;
  }

  .pagesCentered {
    margin: 0;
    padding: 15px 0px;
  }

  .desktop-only {
    display: none;
  }

  .service-nav-dd {
    display: block;
  }

  .pagesCentered ul li.has-dropdown {
    padding-right: 0;
  }

  .service-nav-dd::before {
    top: 17px;
    bottom: unset;
    background-image: url(/images/plusIcon.svg) !important;
    height: 13px;
    width: 10px;
  }

  .service-nav-dd.open::before {
    background-image: url(/images/minusIcon.svg) !important;
    z-index: 1;
  }

  .service-nav-dd-title {
    display: flex;
    align-items: center;
  }

  .navItems .dropdown-menu.services {
    min-width: unset;
  }

  .service-nav-dd .navItems .dropdown-menu {
    width: 100% !important;
    position: relative;
    z-index: 9999999;
    left: 0;
    top: 5px;
    padding: 0;
    border: unset;
    transform: translateX(0);
    visibility: unset;
    display: none;
    box-shadow: none;
  }
  .navItems .dropdown-menu.services{
    display: none;
  }
  .has-dropdown.open .navItems .dropdown-menu {
    display: flex;
  }

  .navItems .dropdown-menu li {
    max-width: 100%;
  }

  li.service-nav-dd .service-nav-dd-title.hover:hover:after {
    width: 0;
    display: none;
  }



  li.service-nav-dd.has-dropdown,
  .navItems {
    position: relative;
    border-bottom: 1px solid #dae5f5;
  }

  li.service-nav-dd.has-dropdown.open {
    border-bottom: 0;
  }

  li.service-nav-dd.has-dropdown.open .service-nav-dd-title {
    background-color: #4CAEFF;
    color: #fff;
  }

  .service-nav-dd .navItems .dropdown-menu li {
    padding: 0;
    border: none;
    border-bottom: 1px solid #E6F3FF;

  }

  .service-nav-dd .navItems .dropdown-menu li a {
    padding: 10px 15px;
    border: unset;
  }

  header.mpw-navbar .navItems .navLinks,
  .service-nav-dd .service-nav-dd-title {
    font-size: 16px;
    color: #3F3F3F;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px !important;
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-weight: 450 !important;
  }

  .white {
    display: none;
  }

  .service-nav-dd.has-dropdown.open .white {
    display: block;
  }

  .service-nav-dd.has-dropdown.open .dark {
    display: none;
  }

  .service-nav-dd .navItems .dropdown-menu li a {
    font-size: 13px;
    color: #3F3F3F;
  }

  .service-nav-dd .navItems .dropdown-menu li:last-child {
    border-bottom: 1px solid #E6F3FF;
    border-radius: 0;

  }

  .signUp--Btn {
    padding: 0px 0 30px;
    border-bottom: 1px solid #E6F3FF;
  }

  .signUp--Btn a {
    background: none;
    border: 1px solid #1B1A2E;
    padding: 5px;
    border-radius: 6px;
    display: flex;
    font-size: 14px;
    color: #1B1A2E;
    max-width: 151px;
    width: 100%;
    height: 40px;
    margin: 15px auto 0px;
    justify-content: center;
    align-items: center;


  }
  .signUp--Btn a:hover {
    background-color: #2d96ee;
    color: #fff;
    border-color: #2D96EE;
  }

  .ai-btn {
    display: block;
    padding: 11px 32px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    max-width: max-content;
    margin: 0 auto;
    background: linear-gradient(90deg, #4CAEFF 0%, #294BFC 100%);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
  }
  .ai-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    transform: skewX(-30deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .3), transparent);
    animation: shine 1.5s linear infinite;
    content: '';
  }
  .ai-btn:hover {
    background-color: #2d96ee;
    color: #fff;
    border-color: #2D96EE;
  }
  .newOrderBtn a.ai-essaywriter{
    padding: 7px 31px;
    margin: 30px auto 0;
  }

  @keyframes shine {
    0% {
      left: -10px
    }

    100% {
      left: 100px
    }
  }

  .contactBtns {
    padding: 15px;
  }

  .contactBtns a {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #0B2330;
  }

  .navLinks span img,
  .service-nav-dd-title span img {
    display: block;
    width: 18px;
    height: 18px;
  }

  .navMobHead .sidebar-logo {
    display: block;
    width: 164px;
    height: 20px;
  }
} 
@media(max-width:575px){
  .marquee-container {
     
    width: 75%;
    
}
  .fiftyOfferSec a{
    right:20px
  }
  

}