@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&amp;display=swap");
@import url(component.min.css);
@import url(layout.min.css);

:root {
  --gradient: linear-gradient(
    to right,
    #cb4e1e,
    #da611b,
    #e87415,
    #f4880d,
    #ff9c00
  );
  --primary: #ff7917;
  --secondry: #261342;
  --blue: #3f3eed;
  --green: #c6ff00;
  --gray: #f9f9f9;
  --black: #111;
  --white: #fff;
  --text-color: #666666;
  --text-dark: #03024d;
}

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

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

::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(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;
  -webkit-transition: all 0.5s ease;
  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;
}

h1 {
}

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/bg.webp) top center/cover no-repeat;
  height: calc(100% - 9.75rem);
  min-height: 40rem;
  display: flex;
  align-items: center;
  color: var(--white);
}

.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: rgb(255 255 255 / 10%);
  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 #ffffff52;
}

.successBatch {
  background: var(--gradient);
  border: 4px solid var(--white);
  box-shadow: 0 0 10px #0004;
  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 */
.processSec {
  background: url(../images/components/bg-arrow.webp) top left/95% no-repeat;
}

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

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

.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 {
  -webkit-text-stroke-color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.processBox h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.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 #00000030;
  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 {
  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-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.counter {
  font-size: 3.125rem;
  color: #fff;
  display: inline;
}


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

.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/bg2.webp) 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 #919191;
  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 rgb(0 0 0 / 10%);
  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 #00000038;
  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;
}
section.faqSec img {
  border-radius: 20px;
}

.lets-talk .review-slide {
  background: #240148;
  padding: 2rem;
  border-radius: 30px;
  margin: 0 10px;
  height: 27rem;
}
.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: #00000085;
  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;
}
.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 rgb(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: rgb(11 15 40 / 90%);
  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: rgb(255 121 23 / 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 rgb(0 0 0 / 10%);
}
.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: #4e0c93;
  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/bg2.webp) 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.html);
  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::placeholder {
  color: red !important;
}
.iti .iti__country-list {
  color: black;
}

.prev_result {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  margin-top: 60px
}

.prev_result img {
  height: 220px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  box-shadow: 0 2px 19px -5px #000;
  aspect-ratio: 2;
  max-width: 100%;
  transition: .4s all ease-in-out;
}
.prev_result img:hover{
  transform:scale(1.4);
  cursor: zoom-in;
}

.prev_result .col-lg-4 {overflow: hidden;}