@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
@import url(component.min.css);
@import url(layout.min.css);
:root {
  --light: #36348d;
  --dark: #161457;
  --yellow: #fcc23b;
  --gradient: radial-gradient(
    circle,
    #36348d,
    #2e2c7f,
    #262471,
    #1e1c64,
    #161457
  );
  --black: #161457;
  --white: #fff;
  --text-color: #696969;
}

::selection {
  background: var(--dark);
  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(--white);
  color: var(--text-color);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

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-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}

img {
  max-width: 100%;
}

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

h1 {
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

section {
  padding: 4rem 0;
}
.yellow-color {
  color: var(--yellow);
}
.gradient-bg {
  background-image: var(--gradient);
}
.contList {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.contList li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contList .btnStyle {
  padding: 13px 1rem;
}
.contList a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light);
}
.contList a i {
  margin-right: 5px;
}
.contList a:hover,
.contList a:focus {
  color: #282675;
}
.listStyle {
  margin-top: 1rem;
}
.listStyle p {
  color: var(--white);
  position: relative;
}
.listStyle p strong {
  font-weight: 600;
}
.listStyle p:before {
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 10px;
  color: var(--yellow);
}

/* Begin: Main Banner CSS */
.main-slider {
  background: url(../images/banners/ban.webp) center/cover no-repeat;
  min-height: 50rem;
  display: flex;
  align-items: center;
  padding-top: 10rem;
}
.main-slider h4 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 100;
}
.main-slider h4 span {
  font-size: 2.25rem;
  font-weight: 700;
}
.main-slider h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.highlight {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 10px 1.5rem;
  border-radius: 100px;
  display: inline-block;
}
/* END: Main Banner CSS */

/* Begin: Lead Form CSS */
.leadForm {
  background: #f5f5f5 url(../images/form-bg.webp) top center/100% no-repeat;
  padding: 1.25rem 2rem 2rem;
  border: 1px solid var(--white);
  border-radius: 10px;
  box-shadow: 0 0 30px rgb(0 0 0 / 15%);
}
.leadForm .title {
  text-align: center;
}
.leadForm .title h2 {
  font-size: 2.25rem;
  text-transform: capitalize;
  margin: 0;
}
.leadForm .title p {
  font-size: 1.25rem;
  color: var(--white);
  margin: 0;
}
.leadForm .formStyle {
  margin-top: 4rem;
}
.formStyle label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.formStyle .form-control {
  height: 3.125rem;
  border-color: #e6e6e6;
  border-radius: 5px;
}
.formStyle .btnStyle {
  background: var(--gradient);
  color: var(--white);
  border-radius: 5px;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
}
.formStyle .btnStyle:hover,
.formStyle .btnStyle:focus {
  background: var(--yellow);
  color: var(--black);
}
/* END: Lead Form CSS */

/* Begin: Services CSS */
.serviceSec {
  padding: 6rem 0 4rem;
}
.serviceWrap {
  background: var(--white);
  box-shadow: 0 0 30px rgb(0 0 0 / 15%);
  padding: 4rem 2.5rem;
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.serviceWrap .circle {
  width: 5rem;
  height: 5rem;
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gradient);
  border-radius: 100px;
  transition: ease all 0.5s;
}
.serviceWrap:hover .circle {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
}
.serviceWrap .img {
  width: 8rem;
  height: 8rem;
  background: var(--gradient);
  border: 8px solid #e0e0fa;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: ease all 0.5s;
}
.serviceWrap:hover .img {
  background: var(--white);
  border: 8px solid var(--dark);
  box-shadow: 0 0 0 6px var(--white);
}
.serviceWrap:hover .img img {
  filter: brightness(0);
}
.serviceWrap .content {
  width: calc(100% - 8rem);
  position: relative;
  padding-left: 2rem;
}
.serviceWrap .content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.serviceWrap .content p {
  margin: 0;
}
.serviceWrap:hover .content * {
  color: var(--white);
}
.serviceWrap.small {
  padding: 2.5rem 1rem;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.serviceWrap.small .content {
  padding: 0;
  width: 100%;
}
.serviceWrap.small .content h4 {
  color: var(--black);
  margin: 0;
  font-size: 1.25rem;
}
.serviceWrap.exp {
  padding: 2rem;
  text-align: left;
  align-items: flex-start;
  min-height: 17rem;
  justify-content: space-between;
}
.serviceWrap.exp :is(p, h4),
.serviceWrap.contInfo :is(i, h4, p, a) {
  position: relative;
}
.serviceWrap.exp:hover :is(p, h4),
.serviceWrap.contInfo:hover :is(i, h4, p, a) {
  color: var(--white);
}
.serviceWrap.exp h4 {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.serviceWrap.exp h4 i {
  font-size: 1.5rem;
  color: var(--yellow);
  margin-right: 5px;
}
.serviceWrap.contInfo {
  padding: 2rem;
}
.serviceWrap.contInfo i {
  font-size: 4rem;
  color: var(--light);
}
.serviceWrap.contInfo h4 {
  font-size: 1.5rem;
  margin: 0;
}
.serviceWrap.contInfo p {
  margin: 0;
}
.serviceWrap.contInfo a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--light);
}
.topUniSec {
  position: relative;
}
.topUniSec:before {
  content: "";
  width: 100%;
  height: 30rem;
  background: url(../images/bg2.webp) center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.topUniSec :is(h2, p),
.mapSec :is(h2, p),
.stapSec * {
  color: var(--white);
}
/* END: Services CSS */

/* Begin: Global Uni CSS */
.globalUniMap {
  background: url(../images/uni/map.webp) center/100% no-repeat;
  min-height: 44rem;
  position: relative;
}
.globalUniMap .uni {
  position: absolute;
  width: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.globalUniMap .uni .uniLogo {
  padding: 1rem;
  background: var(--white);
  border-radius: 5px;
  box-shadow: 3px 3px 6px rgb(0 0 0 / 20%);
  opacity: 0;
  transition: ease all 0.5s;
}
.globalUniMap .uni:hover .uniLogo {
  opacity: 1;
}
.globalUniMap .uni .marker {
  background: url(../images/uni/marker.webp) top center/90px no-repeat;
  width: 90px;
  height: 120px;
  text-align: center;
  padding-top: 32px;
}
.globalUniMap .uni:hover .marker {
  position: relative;
  animation: moveIn ease-in infinite 2s;
}
@keyframes moveIn {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.globalUniMap .uni.one {
  left: 16.5rem;
  top: 6rem;
}
.globalUniMap .uni.two {
  left: 38.5rem;
  top: 2rem;
}
.globalUniMap .uni.three {
  left: 49rem;
  top: 0rem;
}
.globalUniMap .uni.four {
  left: 47rem;
  top: 10rem;
}
.globalUniMap .uni.five {
  left: 62.5rem;
  top: 8.5rem;
}
.globalUniMap .uni.six {
  left: 24rem;
  bottom: 10.5rem;
}
.globalUniMap .uni.seven {
  left: 41rem;
  bottom: 7rem;
}
.globalUniMap .uni.eight {
  right: 6rem;
  bottom: 6rem;
}
/* END: Global Uni CSS */

/* Begin: Achivements CSS */
.achivementSec {
  padding: 4rem 0 7rem;
}
.achiveList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.achiveList li:nth-child(2) {
  padding: 0 2rem;
  border-right: 1px solid var(--light);
  border-left: 1px solid var(--light);
}
.achiveList h2 {
  font-size: 3.875rem;
  color: var(--light);
  text-align: center;
  line-height: 1;
}
.achiveList h2 span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
/* END: Achivements CSS */

/* Begin: Confidential CSS */
.confidentialSec {
  background: url(../images/bg1.webp) center right/cover no-repeat;
  padding: 8rem 0;
}
.confidentialSec :is(h3, p) {
  margin-bottom: 1.5rem;
}
.stapSec .contList li:last-child i {
  color: var(--yellow);
}
.stapSec .contList li:last-child a {
  color: var(--white);
}
/* END: Confidential CSS */

/* Begin: Order Steps */
.stapSec .orderSteps {
  position: relative;
  background: url(../images/shape.webp) 40px 50%/80% 70% no-repeat;
}
.stapSec .orderSteps .cell {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stapSec .orderSteps .cell:nth-child(2) {
  margin: 5rem 0;
}
.orderSteps .cell .img {
  width: 8rem;
  height: 8rem;
  background: var(--white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orderSteps .cell .content {
  width: calc(100% - 8rem);
}
.orderSteps .cell .content h4 {
  font-weight: 500;
  margin-bottom: 1rem;
}
.orderSteps .cell .content p {
  margin-bottom: 0;
}
/* END: Order Steps */

/* Begin: Mobile Sceen */
.paymentSec {
  padding: 5rem 0;
}
.screen {
  width: 16rem;
  min-height: 30rem;
  margin: 2rem auto;
  padding: 5rem 2rem 2rem;
  position: relative;
  background: var(--white);
  box-shadow: 0 0 30px rgb(0 0 0 / 15%);
  border-radius: 1.5rem;
  text-align: center;
}
.slick-current + .slick-active .screen:before {
  background: url(../images/iphone-mask.webp) top left/100% 100% no-repeat;
  content: "";
  position: absolute;
  top: -11px;
  left: -20px;
  width: calc(100% + 35px);
  height: calc(100% + 22px);
  z-index: -1;
}
.screen .shape {
  width: 100%;
  height: 45%;
  background: var(--gradient);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 47%, 0 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}
.screen img {
  margin: 0 auto;
  position: relative;
}
.screen h4 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  word-break: break-word;
}
.screen p {
  margin-bottom: 1.3rem;
}
.screen .btnStyle {
  padding: 12px 1rem;
  width: 100%;
  font-size: 15px;
}
.slick-dots li {
  width: 10px;
  height: 10px;
  background: #cecee1;
  border-radius: 10px;
}
.slick-dots li.slick-active {
  background: var(--dark);
}
.slick-dots li button:before {
  content: none;
}
.phoneMask {
  position: absolute;
  left: 50%;
  top: 21px;
  transform: translateX(-50%);
  z-index: 1;
}
/* END: Mobile Screen */

/* Begin: CTA CSS */
.ctaSec :is(h2, p) {
  color: var(--white);
  margin: 0;
}
.ctaSec .btnStyle {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
  padding: 13px 1rem;
  width: 100%;
  text-align: center;
}
.ctaSec .btnStyle:hover,
.ctaSec .btnStyle:focus {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
/* END: CTA CSS */

/* Begin: FAQ CSS */
.accordionStyle .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #ecedef;
  border-radius: 5px;
}
.accordionStyle .accordion-header .accordion-button {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  border-radius: 5px;
}
.accordionStyle .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.accordionStyle .accordion-header .accordion-button[aria-expanded="true"] {
  background: var(--black);
  color: var(--white);
}
.accordionStyle .accordion-header .accordion-button:after {
  content: none;
}
.accordionStyle .accordion-header .accordion-button i {
  width: 2rem;
  height: 2rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease all 0.5s;
}
.accordionStyle
  .accordion-header
  .accordion-button[aria-expanded="true"]
  i:before {
  transform: rotate(180deg);
}
.accordionStyle .accordion-item .accordion-body {
  background: #f5f5f5;
  text-align: left;
}
.accordionStyle .accordion-item .accordion-body p {
  margin: 0;
}
.accordionStyle .accordion-item .accordion-body p + p {
  margin: 1rem 0 0;
}
/* END: FAQ CSS */

/* Begin: Testimonials */
.testimonialSec {
  padding: 6rem 0 4rem;
}
.testimonialSec * {
  color: var(--white);
}
.testimonialCarousel .item {
  background: #514fa7;
  border-radius: 5px;
  padding: 0 2.5rem 2rem 2.5rem;
  margin: 2rem;
  position: relative;
}
.testimonialCarousel .item .top {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  position: relative;
  top: -2rem;
}
.testimonialCarousel .item .top i {
  margin-left: auto;
  margin-bottom: 1.5rem;
}
.testimonialCarousel .item .top h4 {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.testimonialCarousel .item .top img {
  border-radius: 5px;
  border: 2px solid var(--white);
}
.testimonialCarousel .item p {
  margin: 0;
}
.testimonialCarousel .item:before {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  z-index: -1;
  transform: skewY(-5deg);
  animation: skew ease-in infinite 2s;
}
@keyframes skew {
  0% {
    transform: skewY(-5deg);
  }
  50% {
    transform: skewY(0deg);
  }
  100% {
    transform: skewY(-5deg);
  }
}
.testimonialCarousel .slick-dots li.slick-active {
  background: var(--white);
}
/* END: Testimonials */

.contwrap {
  background: #f5f5f5;
  border-radius: 1.75rem;
  box-shadow: 0 0 2rem rgb(0 0 0 / 20%);
  padding: 3rem 3rem 4rem;
  margin-top: 5rem;
}
.contwrap .form-control {
  height: 3.125rem;
  border-radius: 5px;
}
.contwrap label {
  font-size: 14px;
  margin-bottom: 5px;
}
.contwrap textarea.form-control {
  height: auto;
  resize: none;
}
.contwrap .btnStyle {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient);
}
.contwrap .btnStyle:hover,
.contwrap .btnStyle:focus {
  background: var(--yellow);
  color: var(--dark);
}
.thankyou {
  position: relative;
  padding: 0;
  background: url(../images/thankyou-bg.webp) center/cover fixed no-repeat;
  text-align: center;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.thankyou:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(19 35 145 / 30%);
}
.thankyou .main-content {
  position: relative;
}

.thankyou h1 {
  padding: 20px 0 0;
  color: #fff;
  font-size: 6.25rem;
}
.thankyou p {
  color: #fff;
}

/* Begin: ExameaSec Sec CSS */
.bg-gradient-1 {
  background: #ececec;
  padding: 50px 25px;
  border-radius: 15px;
}
.exameaSec .happyGirl {
  margin: -8rem 0 -4rem -10rem;
}
.exameaSec p,
.exameaSec a {
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
}
.exameaSec p a {
  text-decoration: underline;
}
.exameaSec a,
.exameaSec p strong {
  font-weight: 700;
}
.exameaSec p strong,
.exameaSec p a {
  font-size: 14px;
}
.exameaSec .listStyle p:before {
  color: var(--dark);
}
.exameaSec .contList .btnStyle {
  background: var(--dark);
  color: var(--white);
}
/* END: ExameaSec Sec CSS */

.errorDisplay {
  color: red;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  width: 90%;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown a:hover {
  background-color: #ddd;
}

/* .iti{
    height: auto;
    background-color:white;
    position:relative;
    display:block;
}
.iti__selected-flag {
    height:43px;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.phone-container {
  background-color: white;
  height: 45px;
  position: relative;
  border: 1px solid #bdbdbd;
  border-radius: 4%;
} */
.phone1 {
  visibility: hidden !important;
}
/* .iti__flag-container {
  height: white;
} */
.phone2 {
  height: 43px;
  position: absolute;
  top: 0;
  left: 85px;
  width: calc(100% - 85px);
  border-color: transparent;
}
/* .iti__selected-dial-code {
  width: 30px;
  font-size: 12px;
  font-weight: bold;
}
.iti__flag-box {
}
.iti__country-name {
  font-size: 12px;
}
.iti__dial-code {
  font-size: 12px;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
} */
.iti {
  width: 100% !important;
}
.form-error {
  border: 2px solid red !important;
}
.form-error .vscomp-value {
  color: red !important;
}

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