@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url(component.min.css);
@import url(layout.min.css);
:root {
  --gradient: linear-gradient(
    to right,
    #cb4e1e,
    #da611b,
    #e87415,
    #f4880d,
    #ff9c00
  );
  --primary: #c52e3d;
  --secondry: #0055a6;
  --blue: #3f3eed;
  --green: #c6ff00;
  --gray: #f9f9f9;
  --black: #111;
  --white: #fff;
  --text-color: #666666;
  --text-dark: #03024d;
}

::-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-black);
}

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(--primary);
  -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/bg.webp) 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: 3.125rem;
  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 2rem;
  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;
}

.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: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 1.25rem;
}

.leadForm .head {
  background: url(../images/bg/form-head-bg.webp);
  text-align: center;
  padding: 1rem 1rem 0.5rem;
  border-radius: 1rem 1rem 0 0;
}

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

.leadForm .head h2 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 5px;
}

.leadForm .highlight {
  background: var(--primary);
  padding: 5px 10px;
  text-align: center;
}

.leadForm .highlight p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  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: 5rem;
  box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.3215686275);
}

.successBatch {
  background: var(--primary);
  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: 40%;
}

.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 */
.processBox {
  background: #e3f2f9;
  border-radius: 10px;
  text-align: center;
  transition: ease all 0.5s;
  position: relative;
  padding: 2rem;
  z-index: 99;
}

.processBox:hover {
  background-color: #0055a6;
}

.processBox:hover h4 {
  color: #fff;
}

.processBox:hover p {
  color: #fff;
}

.processBox:hover h5 {
  color: #015eab;
}

.processBox h5 {
  font-size: 10.625rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: #d4e8f3;
  /* -webkit-text-fill-color: transparent; */
  -webkit-text-stroke-width: 1px;
  /* -webkit-text-stroke-color: #cbcbcb; */
  transition: ease all 0.5s;
  margin-bottom: 1rem;
  position: absolute;
  top: 10px;
  right: 33px;
  z-index: -1;
}

.processBox h4 {
  color: #c53847;
  margin-bottom: 1rem;
  text-align: left;
  margin-top: 60px;
}

.processBox p {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  text-align: left;
}

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

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

.writBox a {
  font-size: 1rem;
}

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

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

.writBox .btnGrey:hover,
.writBox .btnGrey.active {
  background: var(--primary);
  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 {
  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;
  color: #ffffff;
  font-weight: 700;
  font-family: "Montserrat";
}

.ctaSec p {
  color: #abc4db;
}

.ctaSec {
  background-image: url(../images/bg/cta-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem;
  background-position: center;
}

.ctaSec ul li h3 {
  font-size: 3.125rem;
  color: #fff;
  font-weight: 700;
  font-family: "Montserrat";
}

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

.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: 88%;
  height: 86%;
  background: var(--secondry);
  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: var(--primary);
}

.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: url(../images/bg/form-bg.png) center/cover no-repeat;
}

.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 #f7ebeb;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.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 {
  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(--white);
  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: 2rem;
}

.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(--secondry);
  padding: 2rem;
  border-radius: 30px;
  margin: 0 10px;
  height: 20rem;
}

.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;
  overflow: hidden;
}

.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%);
  background: rgba(11, 15, 40, 0.9);
  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(255, 121, 23, 0.78);
}

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

.writingService {
  background: url(../images/bg/cta-bg.webp) center/cover no-repeat;
  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(--primary);
  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(--primary);
  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;
  filter: brightness(8.5);
}

.priceThumb .priceList li i {
  color: var(--secondry);
  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: url(../images/bg/form-bg.png) center/cover no-repeat;
  height: 100%;
  min-height: 50rem;
  text-align: center;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.thankBanner h4 {
  font-size: 5rem;
  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;
}

.text_primary_custom {
  color: #0055a6;
}

.text_sec_custom {
  color: #c32838;
}

.text_orng_custom {
  color: #f16a28;
}

.banner {
  background: url(../images/banner/home.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;
  padding: 60px 0;
  color: white;
  overflow-x: hidden;
  position: relative;
}
.banner h1 {
  font-size: clamp(30px, 4vw, 62px);
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 800;
  font-family: "Montserrat";
  filter: drop-shadow(3.993px 3.009px 0px rgba(0, 0, 0, 0.1));
}
.banner p {
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 300;
}

.banner .highlight {
  background-color: #f16a28;
  font-size: clamp(20px, 2vw, 30px);
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  padding: 5px 22px;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 35px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.banner .form-box {
  position: relative;
  z-index: 2;
  background: white;
  color: black;
  padding: 25px;
  border-radius: 10px;
  max-width: 370px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 0px 25px 20px 25px;
}
.banner .form-box .span_1 {
  font-size: clamp(40px, 4vw, 46px);
  letter-spacing: -2px;
  line-height: 68px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  font-family: "Montserrat";
}
.banner .form-box .span_2 {
  font-size: clamp(45px, 4vw, 62px);
  letter-spacing: -3px;
  line-height: 97px;
  text-transform: uppercase;
  color: #c32838;
  font-weight: 800;
  font-family: "Montserrat";
}
.banner .form-box .span_3 {
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -1px;
  line-height: 22px;
  text-transform: uppercase;
  color: #c32838;
  font-weight: 700;
  font-family: "Montserrat";
}
.banner .form-box h5 {
  font-size: clamp(15px, 2vw, 14px);
  line-height: 22px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 400;
  margin-top: -18px;
}
.banner .form-box h6 {
  color: #fff;
  background-color: #0055a6;
  margin-inline: -25px;
  font-size: 19px;
  line-height: 22px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
}
.banner .btn-orange {
  background-color: #f16a28;
  color: white;
  line-height: 22px;
  padding: 0.375rem 0.75rem;
  height: 3rem;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
}
.banner .btn-orange:hover {
  background-color: #0055a6;
  color: white;
}

.trusted-badge {
  background-color: #ffffff;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 22px;
  text-transform: uppercase;
  color: #0056a6;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px 13px;
  margin: 15px 0;
  display: inline-block;
}

.banner-img {
  max-width: 100%;
  height: auto;
}

.form-box ::-moz-placeholder {
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #757575;
  font-weight: 400;
}

.form-box ::placeholder {
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #757575;
  font-weight: 400;
}

.form-box input {
  border: 1px solid rgba(117, 117, 117, 0.5294117647);
}

.btn_banner {
  background-color: #0055a6;
  color: white;
  border-radius: 5px;
  font-size: 25px;
  line-height: 22px;
  font-weight: 600;
}
.btn_banner:hover {
  background-color: #f16a28;
  color: #ffffff;
}

.banner-text {
  z-index: 3;
}

.home_girl {
  width: 20%;
  right: 41%;
  bottom: 0;
  height: auto;
  z-index: 0;
}
@media only screen and (max-width: 1920px) {
  .home_girl {
    width: 24%;
    right: 37%;
  }
}
@media only screen and (max-width: 1440px) {
  .home_girl {
    width: 26%;
    right: 35%;
  }
}

.aboutUsSec .about_us_content {
  font-size: clamp(20px, 2vw, 30px);
}
.aboutUsSec .about_us_content .span1 {
  color: #c52e3d;
}
.aboutUsSec .about_us_content .span2 {
  color: #0055a6;
}
.aboutUsSec .about_us_content p {
  font-size: 16px;
  line-height: 22px;
  color: #676767;
  font-weight: 400;
  margin-bottom: 25px;
}

.inner_banner h1 {
  font-size: clamp(20px, 3vw, 37px);
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  font-family: "Montserrat";
  filter: drop-shadow(3.993px 3.009px 0px rgba(0, 0, 0, 0.1));
}
.inner_banner .trusted-badge {
  background-color: #ffffff;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 22px;
  text-transform: uppercase;
  color: #0056a6;
  font-weight: 600;
  border-radius: 20px;
  padding: 7px 15px;
  margin: 15px 0;
  font-size: clamp(15px, 2vw, 16px);
  box-shadow: 0px 0px 28px -7px #ffffff;
}

.new_cta {
  background: linear-gradient(to right, #e8505b, #f59c00);
  color: white;
  padding: 60px 0;
}
.new_cta h4 {
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -1px;
  line-height: 39px;
  color: #ffffff;
  font-weight: 275;
}
.new_cta h2 {
  font-size: clamp(25px, 2vw, 36px);
  letter-spacing: -1px;
  line-height: 39px;
  color: #ffffff;
  font-weight: 275;
}
.new_cta .features-list li {
  position: relative;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 39px;
  text-transform: uppercase;
  color: #ffffff;
}
@media only screen and (max-width: 425px) {
  .new_cta .features-list li {
    margin-left: 127px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .new_cta .features-list li {
    margin-left: 95px;
  }
}
@media only screen and (max-width: 330px) {
  .new_cta .features-list li {
    margin-left: 67px;
  }
}
.new_cta .features-list li:after {
  position: absolute;
  position: absolute;
  content: "";
  left: -22px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 8px solid var(--white);
  border-bottom: 7px solid transparent;
}
.new_cta h5 {
  position: relative;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -1px;
  line-height: 29px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Montserrat";
  filter: drop-shadow(3.993px 3.009px 1px rgba(0, 0, 0, 0.15));
}
.new_cta h5::after {
  content: "";
  position: absolute;
  right: 35px;
  top: -27px;
  width: 176px;
  height: 153px;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(18deg);
}
@media only screen and (max-width: 1023px) {
  .new_cta h5::after {
    display: none;
  }
}
@media only screen and (max-width: 1366px) {
  .new_cta h5::after {
    right: -33px;
  }
}

.new_cta-img {
  max-width: 100%;
  height: auto;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.offer-50 {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  position: relative;
  display: inline-block;
}
.offer-50 img {
  filter: drop-shadow(0.993px 9.009px 0px rgba(8, 76, 0, 0.1));
}
@media only screen and (max-width: 768px) {
  .offer-50 {
    width: 200px;
  }
}

.offer-50 span {
  position: absolute;
  top: 10px;
  right: -35px;
  background-color: #4f46e5;
  padding: 5px 10px;
  font-size: 1rem;
  border-radius: 5px;
  transform: rotate(15deg);
}

.cta_btn_call {
  background-color: #a91120;
  border: 1px solid var(--white);
  border-radius: 6px;
  padding: 10px 20px;
  box-shadow: 0px 0px 28px -7px #ffffff;
}
.cta_btn_call:hover {
  background-color: #000;
}
.cta_btn_call small {
  color: var(--white);
}
.cta_btn_call span {
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
}

.bg_cus_primary {
  background-color: #c52e3d;
}

.bg_cus_orng {
  background-color: #f16a28;
}

.new_cta {
  position: relative;
}
.new_cta .left-img {
  position: absolute;
  bottom: 0;
  left: 20%;
}
@media only screen and (max-width: 1920px) {
  .new_cta .left-img {
    left: 10%;
  }
}
@media only screen and (max-width: 1440px) {
  .new_cta .left-img {
    left: 4%;
  }
}
.new_cta .left-img img {
  width: 755px;
  height: auto;
  max-width: 100%;
}
@media only screen and (max-width: 1440px) {
  .new_cta .left-img img {
    width: 688px;
  }
}
@media only screen and (max-width: 1366px) {
  .new_cta .left-img img {
    width: 635px;
  }
}

.navbar-nav {
  gap: 79px;
}
@media only screen and (max-width: 1440px) {
  .navbar-nav {
    gap: 58px;
  }
}
@media only screen and (max-width: 1399px) {
  .navbar-nav {
    gap: 27px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar-nav {
    gap: 14px;
  }
}

.online_course_tutoring {
  width: 20%;
  right: 3%;
  bottom: 0;
  height: auto;
  z-index: 0;
}
@media only screen and (max-width: 1920px) {
  .online_course_tutoring {
    width: 24%;
    right: 0%;
  }
}
@media only screen and (max-width: 1440px) {
  .online_course_tutoring {
    width: 26%;
    right: -5%;
  }
}

@media only screen and (max-width: 991px) {
  .lp-top .lp-logo {
    width: 160px;
  }
}

@media only screen and (max-width: 991px) {
  .lp-call {
    width: 30px !important;
  }
}

@media only screen and (max-width: 991px) {
  .lp-mail {
    width: 40px !important;
  }
}

.custom_bold {
  font-weight: 700;
}

.my_btnWrap a {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.new_trusted-badge {
  font-size: clamp(14px, 1vw, 15px) !important;
  font-weight: 500 !important;
  padding: 8px 13px !important;
  display: inline-block !important;
}/*# sourceMappingURL=custom.min.css.map */