@import url(component.min.css);
@import url(layout.min.css);
:root {
  --gradient: linear-gradient(180deg, #3e36bd 0%, #262261 100%);
  --primary: #262261;
  --secondry: #000000;
  --blue: #3f3eed;
  --green: #c6ff00;
  --gray: #f9f9f9;
  --black: #111;
  --white: #fff;
  --text-color: #666666;
  --text-dark: #030303;
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
}

::selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.8);
}

html,
body {
  height: 100%;
}

html {
  font-size: 16px;
  line-height: 1;
}

body {
  background: var(--gray);
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease;
}

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

p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

h2,
h3,
h4 {
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2.125rem;
}

h4 {
  font-size: 1.5rem;
}

section {
  padding: 6rem 0;
}

.textGradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btnWrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.text-blue {
  color: #000000;
}

.text-gray {
  color: var(--text-color);
}

.text-dark {
  color: var(--text-dark);
}

/* Begin: Main Banner CSS */
.mainBan {
  background: url(../images/banner/home-banner.png) top center/cover no-repeat;
  /* height: calc(100% - 9.75rem);
  min-height: 40rem; */
  min-height: calc(100dvh - 63px - 77px);
  display: flex;
  align-items: center;
  color: var(--white);
  padding-block: 2rem;
}

.mainBan h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
}

.mainBan p {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0;
  text-transform: capitalize;
}

.mainBan p i {
  color: var(--primary);
}

.featureList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1rem 1rem;
  margin: 2rem 0;
  position: relative;
}

.mainBan h2 + p::after {
  content: "";
  display: block;
  width: 6rem;
  height: 4px;
  background: var(--primary);
  margin: 10px 0 0;
}

.featureList li {
  flex: 0 0 47%;
}

.featureList li p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1rem;
}
@media screen and (max-width: 1366px) {
  .featureList li p {
    font-size: 14px;
  }
}

.featureList li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border-radius: 100px;
}

.reviewsList {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.reviewsList li {
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 8px 1rem;
}

.leadForm {
  background: #3e36bd;
  padding: 1rem;
  border-radius: 1.25rem;
  max-width: 470px;
}

.leadForm .head {
  background: #262261;
  text-align: center;
  padding: 1rem 1rem 0.5rem;
  border-radius: 1rem 1rem 0 0;
}

.leadForm .head h2 {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
}

.leadForm .head h2 span {
  display: block;
  font-size: clamp(15px, 1.1vw, 19px);
  font-weight: 300;
  margin-bottom: 5px;
  color: var(--gray);
}

.leadForm .highlight {
  background: #3e36bd;
  padding: 5px 10px;
  text-align: center;
}

.leadForm .highlight p {
  margin: 0;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  color: var(--gray);
  text-transform: uppercase;
}

.leadForm .formStyle {
  background: var(--white);
  padding: 0 1.5rem 1.3rem;
  border-radius: 0 0 1rem 1rem;
}

/* END: Main Banner CSS */
/* Begin: Tab Style */
.navStyle {
  justify-content: center;
  gap: 1rem;
  margin-bottom: -1.8rem;
}

.navStyle .nav-item {
  flex: 0 0 25%;
}

.navStyle .nav-link {
  border: 0;
  border-radius: 5px;
  padding: 1rem 3rem;
  background: #dbd9df;
  position: relative;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 500;
  width: 100%;
}

.navStyle .nav-link.active {
  background: var(--gradient);
  color: var(--white);
}

.navStyle .nav-link:before {
  content: "";
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #dbd9df;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 12px);
}

.navStyle .nav-link.active:before {
  border-top: 12px solid var(--primary);
}

.tabStyle {
  border: 1px solid #dadada;
  border-radius: 6px;
  padding: 6rem 3rem 4rem;
}

.tabStyle .imgWrap {
  position: relative;
  text-align: end;
}

.tabStyle .imgWrap img {
  border-radius: 10px;
}

.tabStyle .imgWrap .women {
  position: absolute;
  bottom: -3rem;
  left: 0rem;
  box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.3215686275);
}

.successBatch {
  background: var(--gradient);
  border: 4px solid var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2666666667);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  text-align: start;
  gap: 1rem;
  position: absolute;
  bottom: 0;
  left: 0%;
}

.successBatch strong {
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1;
}

.successBatch strong small {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

/* END: Tab Style */
/* Begin: Process Sec */
.processSec {
  background: url(../images/components/bg-arrow.webp) top left/95% no-repeat;
}

.processBox {
  padding: 2rem;
  background: var(--white);
  box-shadow: 0 0 57px rgba(63, 62, 237, 0.2);
  border-radius: 30px;
  text-align: center;
  transition: ease all 0.5s;
}

.processBox:hover {
  transform: scale(1.08);
}

.processBox h5,
.processBox .h5 {
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #cbcbcb;
  transition: ease all 0.5s;
  margin-bottom: 1rem;
}

.processBox:hover h5,
.processBox:hover .h5 {
  -webkit-text-stroke-color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.processBox h4,
.processBox .h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 21px;
}

.processBox p {
  font-size: 1rem;
  margin: 1rem 2rem;
  color: #000;
  font-weight: 500;
}

.processBox .linkStyle {
  font-size: 1.3rem;
  opacity: 0;
}

.processBox .linkStyle:before {
  left: 7rem;
}

.processBox .linkStyle:hover:before {
  left: 9rem;
}

.processBox:hover .linkStyle {
  opacity: 1;
}

/* END: Process Sec */
.writBox a {
  width: 100%;
  margin: 0.4rem 0;
  text-align: center;
}

.writBox {
  text-align: center;
  background: #fff;
  box-shadow: 0px 0px 34px rgba(48, 43, 137, 0.49);
  border-radius: 30px;
  padding: 3rem;
  position: absolute;
  top: -4rem;
  left: -3rem;
  width: 410px;
}

.writBox img {
  margin-bottom: 1rem;
}

.writBox .btnGrey {
  background: #e9e7ec;
  color: #000;
  font-weight: 500;
}

.writBox .btnGrey:hover,
.writBox .btnGrey.active {
  background: var(--gradient);
  color: #fff;
}

.greyBox {
  display: flex;
  justify-content: space-around;
}

.greyBox ul li {
  padding: 10px 0;
}

.greyBox ul li i {
  padding-right: 0.5rem;
}

.paperWriting h4,
.paperWriting .h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 4rem;
}

.greyWrite {
  background: #e3e2e6;
  padding: 3rem 2rem;
  border-radius: 30px;
  position: relative;
  margin-top: 4rem;
}

.ctaSec h2 {
  font-size: 2.125rem;
  color: #fff;
}

.ctaSec p {
  color: #fff;
}

.ctaSec .container {
  /* background-image: url(../images/bg/ctabg.webp); */
  background-color: #3e36bd;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 3rem;
  background-position: center;
}

.ctaSec ul li h3 {
  font-size: 3.125rem;
  color: #fff;
}

.ctaSec ul li h3 span {
  font-size: 1rem;
  display: block;
  color: #ffffff;
}

.ctaSec ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.ctaSec ul li {
  text-align: center;
}

/* Begin: Career Prospective */
.careerProspectiveSec {
  padding: 0;
  position: relative;
}

.careerProspectiveSec .students {
  margin-top: -2.5rem;
}

.careerProspectiveSec:before {
  content: "";
  width: 95%;
  height: 86%;
  background: var(--gradient);
  position: absolute;
  top: 2.25rem;
  left: 0;
  z-index: -1;
  border-radius: 0 20px 20px 0;
}

.careerProspectiveSec :is(h3, p),
.sampleSec h3,
.sampleSec h3 + p {
  color: var(--white);
}

.phoneCta {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin: 2rem 0;
}

.phoneCta .phone {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
}

.phoneCta .phone small {
  display: block;
  font-size: 1.125rem;
  color: #fff;
}

.phoneCta .phone .fa {
  color: var(--primary);
  margin-right: 10px;
}

/*.phoneCta .themeBtn {*/
/*    font-size: 1.125rem;*/
/*    font-weight: 400;*/
/*    padding: 6px 1rem;*/
/*    position: relative;*/
/*    bottom: 8px;*/
/*}*/
.discountTag {
  display: flex;
  align-items: center;
  gap: 10px;
}

.discountTag p {
  margin: 0;
}

.discountTag .discount {
  background: url(../images/components/shape1.webp) center/100% no-repeat;
  text-align: center;
  width: 7rem;
  height: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.discountTag .discount small {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.discountTag .discount strong {
  display: block;
  font-size: 2.25rem;
  color: var(--white);
}

/* END: Career Prospective */
/* Begin: Price CSS */
.priceSec {
  background: var(--gradient);
}

.priceSec .benefitList {
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.priceSec .benefitList li {
  flex: 0 0 46%;
  padding: 1rem 2rem;
  border: 1px solid #919191;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.priceSec .benefitList h5,
.priceSec .benefitList .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

.priceSec .benefitList p {
  font-size: 1rem;
  font-weight: 300;
}

.priceThumb {
  background: var(--white);
  border-radius: 1.875rem;
  padding: 2rem 2.5rem 2rem;
}

.priceThumb h3,
.priceThumb .h3 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.priceThumb .priceList li {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 9px;
}

.priceThumb .priceList li:last-child {
  border-bottom: 0;
  gap: 10px;
}

.priceThumb .priceList li p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.priceThumb .priceList li .right {
  margin-left: auto;
}

.priceThumb .priceList .text-blue {
  font-size: 1.25rem;
}

.priceThumb .priceList .text-green {
  background: var(--gradient);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 2px 10px;
  margin-left: 10px;
  color: #fff;
}

.btnWrap ul li a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}

.btnWrap ul li i {
  font-size: 2rem;
  color: var(--primary);
  padding-right: 0.6rem;
}

.btnWrap ul li a span {
  font-weight: 300;
  font-size: 1rem;
  display: block;
}

.btnWrap ul li {
  display: flex;
  align-items: center;
}

.btnWrap ul {
  display: flex;
  gap: 3rem;
}

.logoSec {
  background-image: url(../images/line.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.uniList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.uniList li {
  background: #fff;
  box-shadow: 0px 0px 31px rgba(0, 0, 0, 0.2196078431);
  padding: 2rem;
  width: 230px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

/* END: Price CSS */
h2 span {
  color: var(--primary);
}

.abtSec .btnWrap ul li a {
  color: #000;
}

.multipleSec {
  padding: 0;
}

.multipleSec .container {
  /* background-image: url(../images/bg/multipleBg.webp); */
}

.multipleSec ul li h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 1rem 0;
}

.multipleSec h2 {
  font-size: 2.25rem;
}

.faqSec h4 {
  font-size: 2.25rem;
}

.faqSec .accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-bg: transparent;
}

.faqSec .accordion-item {
  border-bottom: 1px solid #ddd;
  border-radius: 0;
}

.faqSec .accordion-item button {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 0;
}

.faqSec .accordion-button:not(.collapsed) {
  background: transparent;
  color: #000;
}

.faqSec .accordion-button:focus {
  box-shadow: none;
}

.faqSec .accordion-button::after {
  content: "+";
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
}

.faqSec .accordion-button:not(.collapsed)::after {
  content: "-";
}

.faqSec .accordion-item .accordion-body {
  padding: 0 0 1rem;
}

.faqSec .accordion-item .accordion-body p {
  margin: 0;
}

.faqSec .accordion-item .accordion-body p + p {
  margin-top: 1.5rem;
}

.faqHead p {
  background: #e3e2e6;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
}

.lets-talk .review-slide {
  background: var(--gradient);
  padding: 2rem;
  border-radius: 30px;
  margin: 0 10px;
  height: 16rem;
}

.reviewInner .review-slide {
  margin: 10px 0;
  height: 20rem;
}

.lets-talk h4 span {
  display: block;
  font-size: 13px;
}

/* .animatedGirl {
    position: relative;
}
.canmove {
    position: absolute;
    top: -12.6rem;
    width: 33rem;
} */
/* .canmove {
    display: block;
    margin: auto;
    top: -13rem;
    position: relative;
    -webkit-animation: 1.5s infinite alternate-reverse canmove;
    animation: 1.5s infinite alternate-reverse canmove
} */
/* @keyframes canmove {

    0%,
    100% {
        transform: translateY(-2rem)
    }

    50% {
        transform: translateY(0)
    }
} */
.lets-talk .shadow {
  display: block;
  margin: auto;
}

.lets-talk h4 {
  font-size: 1.675rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}

.lets-talk p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.lets-talk ul li a {
  display: flex;
  gap: 1rem;
  color: var(--purple);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.lets-talk ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.lets-talk ul li {
  font-size: 1.3rem;
  color: #ff9c00;
}

.reviewInner .review-slide {
  background: #f3f3f3;
}

.reviewInner .review-slide p {
  color: var(--black);
}

/* .animatedGirl{
    background-image: url(../images//bg/reviewbg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 6rem;
} */
.clientBox {
  position: relative;
  margin-top: 3rem;
}

.review-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.review-overlay a {
  background: rgba(0, 0, 0, 0.5215686275);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50%;
}

.reviewSec {
  padding-bottom: 0;
  position: relative;
}
.reviewSec .reviewSec-img {
  position: absolute;
  bottom: -40px;
  right: 12px;
  width: 35vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.reviewSec .linkStyle {
  margin: 1rem 0;
}

.reviewSec .linkStyle:before {
  left: 5rem;
}

/* Subjects Start*/
.aboutThesis .thumb-text {
  margin-top: 10px;
}

.aboutThesis .thumb-img {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  transition: ease all 0.5s;
  position: relative;
}

.aboutThesis .thumb-text {
  margin: 0;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease all 0.5s;
}

.aboutThesis .thumb-img:hover .thumb-text {
  background: rgba(51, 45, 147, 0.6509803922);
}

.aboutThesis .thumb > * {
  padding-top: 1.5rem;
}

.writingService {
  background: var(--gradient);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
}

.writingService .content h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.writingService .content p {
  color: var(--white);
  margin: 0;
  width: 95%;
}

.writingService .btnStyle {
  background: var(--black);
  font-size: 1.25rem;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.writingService .btnStyle:hover,
.writingService .btnStyle:focus {
  background: var(--white);
  color: var(--black);
}

.aboutThesis p {
  font-weight: 600;
  line-height: 1.5;
}

.clientBox img {
  width: 100%;
}

.reviewsInner .clientBox {
  margin-top: 2rem;
}

.processSteps ul {
  display: flex;
  justify-content: space-evenly;
  margin-top: 4rem;
  position: relative;
}

.processSteps ul li {
  display: flex;
  align-items: center;
  position: relative;
}

.numtext {
  width: 20rem;
}

span.onenum {
  font-size: 7rem;
  position: absolute;
  color: #ededed;
  z-index: -2;
  font-weight: 700;
  left: 0px;
  top: -10px;
}

.processImg {
  background: var(--gradient);
  padding: 2rem;
  border-radius: 50%;
}

.onenum p {
  margin: 0;
  font-weight: 500;
}

.processSteps ul li div {
  width: 20rem;
}

.processSteps ul li div {
  width: 20rem;
}

.numtext div {
  margin-left: 6.5rem;
}

.numtext h4,
.numtext p {
  font-weight: 700;
}

.numtext h4 span {
  color: var(--primary);
}

.line:after {
  content: "";
  background: #000;
  height: 100%;
  position: absolute;
  border: 1px solid;
  border-color: #000;
  bottom: 0;
  left: 50%;
  top: 100%;
}

.processText p {
  color: var(--text-color);
  font-weight: 400;
}

.paymentInner {
  background: #f1f1f1;
  padding: 3rem 0 !important;
}

/* Subjects End*/
.formContact input {
  height: 4rem;
  border: 1px solid #000;
  background: none;
}

.formContact textarea {
  height: 150px;
  border: 1px solid #000;
  background: none;
}

.contactIcon {
  margin: 4rem 0;
}

.contactIcon li {
  margin: 1rem 0;
  color: #000;
}

.contactIcon i.fa {
  background: var(--gradient);
  padding: 1rem;
  color: white;
  border-radius: 5px;
  font-size: 1.2rem;
  margin-right: 10px;
}

.contactIcon a {
  font-size: 1.2rem;
  color: #000;
  font-weight: 600;
}

.aboutThesis strong {
  line-height: 1.5;
  margin: 1rem 0 1.8rem;
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
}

.priceThumb .priceList li .right input {
  width: 20px;
  height: 18px;
}

.about-page-section ul {
  list-style-type: disc;
  list-style-position: inside;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

/*.contactInner {*/
/*    height: auto;*/
/*    min-height: auto;*/
/*    padding: 4rem 0 2rem;*/
/*}*/
.termsContentStyle h2 {
  font-size: 2.2rem;
}

.termsContentStyle h4 {
  font-size: 1.5rem;
}

.priceSec .benefitList li img {
  width: 5rem;
}

.priceThumb .priceList li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.leadForm h2 {
  font-size: 1.9rem;
}

.ctaSec {
  padding: 0 0 2rem;
}

.whatsapp {
  position: fixed;
  bottom: 5px;
  z-index: 5;
  left: 15px;
}

.ctaImges {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ctaImgRow img {
  margin: 5px 0;
}

.ctaImges .ctaImgRow:first-child {
  animation: xmoveAnim ease infinite 2s;
  position: relative;
  top: 4rem;
}

.ctaImges .ctaImgRow:nth-child(2) {
  animation: xmoveAnims ease infinite 3s;
}

.ctaImges .ctaImgRow:last-child {
  animation: xmoveAnim ease infinite 2s;
  position: relative;
  top: -4rem;
}

@keyframes xmoveAnim {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes xmoveAnims {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.thankBanner {
  background: var(--gradient);
  height: 100%;
  min-height: 50rem;
  text-align: center;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.thankBanner h4 {
  font-size: 4rem;
  color: var(--white);
  position: relative;
}

.thankBanner h4::before {
  content: "";
  position: absolute;
  background: url(../images/banner/text.webp);
  background-repeat: no-repeat;
  left: 6rem;
  top: 4rem;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.thankBanner p {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.thankBanner figure {
  margin: 0;
}

.thankContnt {
  padding: 0 4rem;
}

.iti {
  width: 20%;
}

.aboutThesis .iti__selected-flag {
  padding: 1rem 6px 0 8px;
}

/*.priceThumb .priceList li .right input {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    opacity: 0;*/
/*    z-index: 1;*/
/*}*/
/*.priceThumb .priceList li .right span {*/
/*    display: block;*/
/*    width: 1.5rem;*/
/*    height: 1.5rem;*/
/*    border: 1px solid var(--primary);*/
/*    border-radius: 4px;*/
/*    padding: 3px;*/
/*}*/
/*.priceThumb .priceList li .right span:before {*/
/*    content: "\f00c";*/
/*    font-family: "Font Awesome 5 Pro";*/
/*    font-weight: 900;*/
/*    color: var(--white);*/
/*    opacity: 0;*/
/*}*/
/*.priceThumb .priceList li .right input:checked + span:before {*/
/*    opacity: 1;*/
/*}*/
/*.priceThumb .priceList li .right input:checked + span {*/
/*    background: var(--primary);*/
/*}*/
.iti {
  width: 100% !important;
}

.form-error {
  border: 2px solid red !important;
}

.form-error .vscomp-value {
  color: red !important;
}

.form-error::-moz-placeholder {
  color: red !important;
}

.form-error::placeholder {
  color: red !important;
}

.iti .iti__country-list {
  color: black;
}

ul.subjects_clm {
  -moz-column-count: 3;
       column-count: 3;
}

.react-tel-input .country-list .country-name {
  margin-right: 6px;
  color: black;
}

@media screen and (max-width: 576px) {
  .footer-form {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-form {
    margin-bottom: -3rem;
  }
}

.lp-footer {
  padding: clamp(1rem, 8vw, 5rem) 0 1rem !important;
}

.cta-form {
  background: url(../images/banner/form-cta-bg.png) no-repeat center/cover;
  padding: 2rem 0 !important;
}
.cta-form .cta-form-image {
  position: absolute;
  width: clamp(250px, 23vw, 300px);
  bottom: 0;
  left: calc(50vw - clamp(33rem, 36vw, 35rem));
}
@media screen and (min-width: 992px) {
  .cta-form {
    margin-top: 3rem;
  }
}

.leadForm .formStyle label {
  color: #000;
  margin: 1rem 0 0.3rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  height: 3rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.packages_section .badge_parent {
  background-color: #262261;
  border-radius: 35px;
  box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.1882352941);
  max-width: 554px;
}
.packages_section .badge_parent .badge_span {
  background: #262261;
  color: #fff;
  font-size: 18 px;
  letter-spacing: 2px;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 15px;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}
.packages_section .parent-pgk {
  max-width: 554px;
  border: 1px solid #e1e1e1;
  border-radius: 30px;
  background-color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 735px;
}
.packages_section .parent-pgk h3 {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 1rem;
}
.packages_section .parent-pgk p {
  font-size: clamp(14px, 1.2vw, 25px);
  color: #666666;
}
.packages_section .parent-pgk h2 {
  font-size: 59px;
  color: var(--black);
  font-weight: bold;
}
.packages_section .parent-pgk h2 .price_divide {
  font-size: 25px;
  color: black;
  display: inline-block;
  margin: 0 10px;
}
.packages_section .parent-pgk ul li {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666666;
  margin-bottom: 1rem;
}
.packages_section .parent-pgk .btn-parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: auto;
}
.packages_section .parent-pgk .btn-parent .btn-pkg {
  background: #1a1a1a;
  color: white;
  width: 100% !important;
  font-size: 20px;
  border-radius: 30px;
  padding: 15px 60px;
}
.packages_section .parent-pgk:hover {
  box-shadow: inset 0px 0px 0px 4px #262261;
  border: 1px solid #262261;
}
.packages_section .parent-pgk:hover .btn-parent .btn-pkg {
  background: #262261;
  color: white;
}

.mt-minus {
  margin-top: -50px;
}
@media screen and (max-width: 1024px) {
  .mt-minus {
    margin-top: 0px;
  }
}

.packages_tabs ul {
  margin-bottom: 50px;
}
.packages_tabs ul li button {
  font-size: 20px;
  color: var(--primary);
  padding: 15px 20px;
}
.packages_tabs ul li button.active {
  background-color: var(--primary) !important;
  color: white !important;
}

.sequence_form .btn-check:checked + .input_service {
  box-shadow: 27px 27px 52px rgba(0, 0, 0, 0.15);
  transform: scale(1.015);
  transition: all 0.3s ease;
  background-color: white;
}
.sequence_form .input_service {
  background-color: white;
  color: #000 !important;
  border-color: #dee2e6;
  transition: all 0.3s ease;
}
.sequence_form .input_service:hover {
  background-color: white;
  color: #000;
}
.sequence_form .sequence_step_card {
  background: var(--gradient);
}
.sequence_form .sequence_step_card .cus_sequence_btn {
  background-color: #3E36BD;
  color: white;
}

.error-border {
  border: 2px solid red !important;
  border-radius: 8px;
  padding: 15px;
}/*# sourceMappingURL=custom.min.css.map */