@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: 'nexalight';
  src: url('../fonts/NEXA-EXTRALIGHT.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'nexaheavy';
  src: url('../fonts/NEXA-HEAVY.TTF') format('truetype');
  font-weight: bold;
  font-style: normal;
}

.nexaheavy {
  font-family: 'nexaheavy', sans-serif;
}

.yellow {
  color: #FFC530;
}

:root {
  --Secondary: #1a1816;
  --Primary: #426efc;
  --white: #fff;
  --Grey: #F3F2E9;
  --black: #000;
  --silver: #F8F8F8;
  --darkgrey: #D9D9D9;
}

.silverbg {
  background: var(--silver);
}

.darkgreybg {
  background: var(--darkgrey) !important;
}

.greynewbg {
  background: #f2f2f2 !important;
}

.black {
  color: var(--black);
}

.bgprimary {
  background: var(--Primary);
}

.rounded30 {
  border-radius: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'nexaheavy', sans-serif;
}

.topbarSec {
  background: var(--Secondary);
}

.fs16 {
  font-size: 16px;
}

.fs14 {
  font-size: 14px;
}

ul.social {
  display: flex;
  gap: 8px;
}

ul.social li {}

ul.social li a {
  font-size: 20px;
  color: var(--white);
}

.sliderSec {
  background: var(--Grey);
}

.sliderSec ul li {
  display: flex;
  flex: 25%;
  align-items: flex-start;
  gap: 8px;
}

ul.action {}

ul.action li {}

ul.action li a {
  background: var(--Primary);
  color: var(--white);
}

.fs50 {
  font-size: 50px;
}

.orderitems {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0.5rem 1rem;
  gap: 6px;
}

.orderitems p span:nth-child(1) {
  font-weight: 800;
}

.fs40 {
  font-size: 40px;
}

.rounded20 {
  border-radius: 20px;
}

.placeorder .form-control {
  box-shadow: 0px 0px 10px #3333;
  border: none;
  border-radius: 20px;
  appearance: auto;
  font-size: 14px;
  padding: 8px 10px;
}

.placeorder .form-group {
  margin: 5px 0;
}

.fs20 {
  font-size: 20px;
}

.innerorder button {
  background: var(--Primary);
  padding: 0.3rem 3rem;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 10px;
  border: none;
  color: var(--white);
}

.fs30 {
  font-size: 30px;
}

.fs25 {
  font-size: 25px;
}

.supportSec {
  background: var(--silver);
}


.supportSec .swiper-slide.swiper-slide .supportBox {
  margin-top: 25px;
}

.supportSec .swiper-slide.swiper-slide-active .supportBox {
  margin-top: 8px;
}


.supportBox {
  background: var(--darkgrey);
  padding: 2.3rem 1.4rem;
  border-radius: 20px;
  margin: 10px 5px 20px;
  box-shadow: 0px 0px 10px #3333;
    transition: all 0.3s ease-in-out;
}

.supportBox:hover {
    transform: translateY(-6px);

}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
    opacity: 0.9;
  }

  50% {
    background-position: 100% 50%;
    opacity: 1;
  }

  100% {
    background-position: 0% 50%;
    opacity: 0.9;
  }
}

.supportBox .icon {
  width: 60px;
  height: 50px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.supportBox:hover {
  background: var(--white);
}

.supportBox:hover .icon {
  background: var(--Primary);
}

.supportBox:hover .icon img {
  filter: invert(1);
}

.supportBox.active {
  background: var(--white);
}

.supportBox.active .icon {
  background: var(--Primary);
}

.supportBox.active .icon img {
  filter: invert(1);
}

.supportBox .icon img {
  width: 40px;
  /* filter: invert(1); */

}

.aboutSec .icon img {
  filter: invert(1);
}

.painlessprocess .supportBox.active {
  background: var(--Primary);
}

.painlessprocess .supportBox.active .icon {
  background: var(--white);
}

.painlessprocess .supportBox.active .icon img {
  filter: invert(0);
}

.painlessprocess .supportBox .icon {
  background: var(--Secondary);
}

.painlessprocess .supportBox .icon img {
  filter: invert(1);
}

.painlessprocess .fs20 {
  font-size: 18px;
}

.painlessprocess .supportBox {
  background: white;
}

.painlessprocess .supportBox:hover {
  background: var(--Primary);
}

.painlessprocess .supportBox:hover p {
  color: white;
}

.silverbg .supportBox.active {
  background: var(--Primary);

}

.silverbg .supportBox.active .icon {
  background: var(--white);
}

.silverbg .supportBox.active .icon img {
  filter: invert(0);
}

.ctaSec {
  background: var(--Secondary);
}

.servicesSec {}

.servicesSec .nav-tabs .nav-link {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--silver);
  margin: 8px 0;
  color: var(--black);
  border: none;
  box-shadow: 0px 0px 5px #3333;
  border-radius: 10px;
}

.servicesSec .nav-tabs .nav-link.active {
  background: var(--Primary);
  color: var(--white);
}

.servicesSec .nav-tabs .nav-link.active .serviceicon {
  background: var(--white);
}

.servicesSec .nav-tabs .nav-link.active .serviceicon img {
  filter: invert(1);
}

.servicesSec .nav-tabs .nav-link .serviceicon {
  background: var(--Secondary);
  padding: 7px 10px;
  border-radius: 5px;
}

.serviveesBox {
  position: relative;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
}

.serviveesBox .Group {
  position: absolute;
  width: 100%;
  max-width: 350px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 8rem;
}

.serviveesBox .innerServices {
  box-shadow: 0px 0px 5px #C3C2C2;
  padding: 1rem 2rem;
  position: relative;
  z-index: 0;
  background: #fff;
  margin-top: 9rem;
  border-radius: 20px;
}

.innerServices p img {
  filter: invert(1);
}

.researchSec {
  background: var(--silver);
}

.researchItems {
  background: var(--white);
  box-shadow: 0px 0px 10px #3333;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin: 10px 8px;
  height: 100px;
  /* width: 100%; */
}

.contentInner {
  border: 1px solid #3333;
  padding: 2rem 2rem;
  margin: 2rem 0;
  border-radius: 20px;
}

.fs35 {
  font-size: 35px;
}

.rightCtai {
  background: var(--Grey);
  padding: 1rem 2rem;
  border-radius: 10px;
}

.rightCtai ul.itemlist li {
  flex: 45%;
  display: flex;
  gap: 7px;
}

.rightCtai ul {}

.rightCtai ul li {
  flex: 1;
}

.rightCtai ul li a {
  background: var(--Secondary);
  padding: 10px 0px;
  text-decoration: none;
  color: var(--white);
  display: inline-block;
  border-radius: 30px;
  width: 100%;
  text-align: center;
}

.boxcourse {
  background: var(--silver);
  width: max-content;
  padding: 12px 3rem;
  border-radius: 30px;
  font-weight: 600;
  color: var(--black);
  margin: auto;
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 1.02) 0px -1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.courseBox {
  box-shadow: 0px 0px 10px #3333;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  margin: 10px 8px 20px;
}

.courseBox .courseinfo {
  flex: 40%;
}

.courseBox .courseend {}

.courseBox .courseend p.year {
  box-shadow: 0px 0px 10px #3333;
  border-radius: 30px;
  text-align: center;
}

.expertWritersSec {
  background: var(--silver);
}

.expertBox {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0px 0px 10px #3333;
  margin: 8px;
}

.expertBox a {
  text-decoration: none;
}

.expertheader ul li {
  background: #EEF6FB;
  padding: 10px 10px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
}

.hirenow {
  background: var(--Primary);
  padding: 0.7rem 1.4rem;
  color: var(--white);
  border-radius: 10px;
  display: inline-block;
  margin: 10px 0;
  text-decoration: none;
  font-size: 15px;
}

.customerHeader {
  background: var(--silver);
}

.customerBox {
  box-shadow: 0px 0px 10px #3333;
  border-radius: 20px;
  margin: 8px
}

.faqSec {
  background: var(--silver);
}

.customInner {
  background: var(--white);
  padding: 2rem 3rem;
  border-radius: 30px;
  box-shadow: 0px 0px 10px #3333;
}

.fs23 {
  font-size: 23px;
}

.faqSec .accordion-item:first-of-type {
  background: var(--Primary);
}

.faqSec .accordion-item {
  margin: 10px 0;
}

.faqSec .accordion-header {}

.faqSec .accordion-header .accordion-button {
  font-size: 20px;
  padding: 22px 18px;
}

.faqSec .accordion-button:not(.collapsed) {
  background: var(--Primary);
  box-shadow: none;
  color: var(--white);
  padding: 22px 18px;

}

.faqSec .accordion-body {
  padding-top: 0;
}

.faqSec .accordion-item:first-of-type .accordion-body {
  color: var(--white);
}

.faqSec .collapse.show {
  background: var(--Primary);
  color: var(--white);
}

.faqSec .accordion-button::after {
  content: '+';
  font-size: 30px;
  font-weight: bold;
  background-image: none !important;
  transform: none !important;
  color: var(--black);
  position: absolute;
  top: 13px;
  right: 24px;
  bottom: 0;
}

.faqSec .accordion-button:not(.collapsed)::after {
  content: '−';
  color: var(--white);
}

.clientboxes {
  padding: 3rem 0;
  background: var(--darkgrey);
  text-align: center;
  border-radius: 20px;
}

.pricingItemSec {
  background: var(--silver);
}

.pricingItemSec .nav-tabs li {
  flex: 1;
}

.pricingItemSec .nav-tabs .nav-link {
  width: 100%;
  background: var(--white);
  box-shadow: 0px 0px 10px #3333;
  border-radius: 10px;
  color: var(--black);
  padding: 1rem 0;
  font-size: 20px;
}

.pricingItemSec .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: var(--Primary);
  color: var(--white);
}

.pricingListview p {
  background: var(--white);
  box-shadow: 0px 0px 10px #3333;
  padding: 10px 20px;
  margin: 10px 0 !important;
  border-radius: 10px;
}

.pricingListview p a {
  flex: 1;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: 1px solid var(--black);
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  padding: 6px 0;
  box-shadow: 0px 0px 10px #3333;
}

.pricingListview p span {
  flex: 1;
  font-size: 18px;
}

.greenbg {
  background: #2DAA00;
}

.orderSec .form-group {
  margin: 10px 0;
}

.orderSec .form-control {
  appearance: auto;
  padding: 10px 10px;
  box-shadow: 0px 0px 10px #3333;
  border-radius: 10px;
}

.orderDetails .form-group {
  margin: 10px 0;
}

.orderDetails .form-control {
  appearance: auto;
  padding: 10px 10px;
  box-shadow: 0px 0px 10px #3333;
  border-radius: 10px;
}

.orderDetails button {
  background: var(--Primary);
  padding: 10px 10rem;
  border: none;
  box-shadow: 0px 0px 10px #3333;
  border-radius: 10px;
  color: var(--white);
}

.summaryorder {
  padding: 1.5rem 1.5rem;
  border-radius: 20px;
}

.fs18 {
  font-size: 18px;
}

.bestItems {
  padding: 1.5rem 0.6rem;
  text-align: center;
  border-right: 1px solid var(--black);
}

.innerBest {
  background: #FBFBFB;
  padding: 1rem 0;
}

.quotessize {
  font-size: 33px;
  vertical-align: text-top;
}

.reviewPage .customerBox {
  margin: 5px 5px 20px 5px;

}

.footerSec {
  background: url("../../assets/img/footerBg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.qicklinks ul li a {
  text-decoration: none;
  color: var(--white);
  font-size: 17px;
}

.footerSec .social li a i {
  font-size: 30px;
}

.coprightsSec {
  background: var(--Primary);
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  right: 0;
  width: 100%;
  background: var(--white);
}

.fs120 {
  font-size: 120px;
}

.swiper-pagination-bullet {
  padding: 6px;
}

.fixedbtnwhatsapp {
  position: fixed;
  bottom: 1em;
  left: 2em;
  z-index: 999999;
}

.heading1 {
  background: var(--Primary);
  padding: 1rem 1rem;
  border-radius: 12px;
  color: #fff;
  font-size: 28px;
  margin-bottom: 0.6rem;
}

.sitemapdata ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

.sitemapdata ul li {
  width: 32%;
  padding: 0.4rem 0;
  background: #e2e0e033;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.sitemapdata ul li a {
  color: #000;
  font-size: 1rem;
  font-weight: normal;
  text-decoration: none;
}

.heading2 {
  background: var(--Secondary);
  padding: 1rem 1rem;
  border-radius: 12px;
  color: #fff;
  font-size: 28px;
  margin-bottom: 0.6rem;
}

#cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: none;
}

#cover-spin::after {
  content: "";
  display: block;
  position: absolute;
  left: 48%;
  top: 45%;
  width: 60px;
  height: 60px;
  border-style: solid;
  border-right-color: var(--Primary);
  border-left-color: var(--Primary);
  border-width: 4px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.file-upload {
  border: 2px dashed #426efc;
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s;
  margin-top: 7px;
}

.orderitems p span:nth-child(2) {
  font-size: 15px;
}
.customerReviewBox{
  height: 45%!important;
}
.hire-me{
    background: black;
    padding: 0.7rem 2rem;
    color: var(--white);
    border-radius: 10px;
    display: inline-block;
    margin: 10px 0;
    text-decoration: none;
    font-size: 15px!important;

}