html {
  scroll-behavior: smooth;
}

:root {
  /* background Colors: */
  --color-ffffff: #ffffff;
  --color-000000: #000000;
  --color-cd93e0: #cd93e0;
  --color-63018a: #63018a;
  --color-f59326: #f59326;
  --color-f0f0f0: #f0f0f0;
  --color-f5f5f5: #f5f5f5;
  --color-fdd784: #fdd784;
  --color-1b6fab: #1b6fab;
  --color-2c2c2c: #2c2c2c;
  --color-57cdc9: #57cdc9;
  --color-3ca7d3: #3ca7d3;
  --color-e4509e: #e4509e;
  --color-f8682b: #f8682b;
  --color-e4af2f: #e4af2f;
  /* Font/text values */
  --font-family-baloobhai: 'Baloo Bhai 2', sans-serif;
  --font-family-poppins: 'Poppins', sans-serif;

  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-30: 30px;
  --font-size-36: 36px;
  --font-size-40: 40px;
  --font-size-50: 50px;
  --font-size-65: 65px;


  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
}


/* common css start*/
* {
  outline: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-poppins);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-16);
  color: var(--color-2c2c2c);
  margin: 0;
  padding: 0;
}

.clr {
  width: 100%;
  float: left;
}

.img {
  width: 100%;
  image-rendering: pixelated

}

a,
.btn,
button {
  color: var(--color-000000);
  outline: none;
  border: none;
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
select:focus,
.custom-select:focus,
.form-control:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
  color: var(--color-673418);
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #f8e2ff;
  transition-timing-function: linear;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-400);
  text-transform: normal;
  margin-bottom: 15px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

header,
footer,
section {
  width: 100%;
  float: left;
}

.navbar-expand-xl {
  justify-content: end;
}



.navbar-nav li:hover .dropdown-menu {
  margin-top: 0px;
  visibility: visible;
  border-top: 4px solid var(--color-57cdc9);
  border-radius: 0;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

p {
  font-size: var(--font-size-16);
  line-height: var(--line-height-18);
  color: var(--color-2c2c2c);
  margin-bottom: 15px;
}

.section-space {
  padding: 100px 0;
}

#backtotop {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: ease all 0.5s;

}

#backtotop i {
  color: var(--color-63018a);
  font-size: var(--font-size-30);
  color: var(--color-ffffff);
  top: 6px;
  position: relative;
}

#backtotop:hover {
  cursor: pointer;
  background-color: #333;
  transform: scale(1.1);
}

#backtotop:active {
  background-color: #555;
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

.swiper-pagination-bullet {
  width: auto;
  height: auto;
  background-color: #fff;
  padding: 2px;
  border-radius: 100%;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 50px;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: var(--color-63018a);
}

.swiper-button-prev:after {
  font-size: var(--font-size-16);
  background-color: aliceblue;
  border-radius: 50%;
  padding: 15px 20px;
  width: 50px;
  height: 48px;
  left: 35px;
  position: relative;
  color: var(--color-63018a);
  transition: ease all 0.5s;

}

.swiper-button-prev:hover:after {
  background-color: var(--color-63018a);
  color: var(--color-ffffff);

}

.swiper-button-next:hover:after {
  background-color: var(--color-63018a);
  transition: ease all 0.5s;
  color: var(--color-ffffff);

}

.swiper-button-next:after {
  font-size: var(--font-size-16);
  background-color: aliceblue;
  border-radius: 50%;
  padding: 15px 20px;
  width: 50px;
  height: 48px;
  position: relative;
  right: 35px;
  color: var(--color-63018a);
  transition: ease all 0.5s;

}

.navbar-brand {
  padding: 15px 0;
  margin-right: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.navbar-expand-lg {
  height: 100px;
}

.shrink {
  position: fixed;
  background: var(--color-cd93e0);
  background-size: contain;
  background-repeat: repeat-x;
  display: inline-block;
  top: 0;
  z-index: 999;
  width: 100%;
  display: block;
  animation: smoothScroll 1.5s forwards;
  background-position: bottom;
  height: 90px;
}


.shrink .contact-box {
  display: none !important;
}

.shrink .navbar-brand img {
  width: 130px;
}

.shrink .navbar-expand-lg {
  height: 75px;
  padding-bottom: 0;
}

.shrink .navbar-brand {
  padding: 10px 0;

}


header {
  position: relative;
  margin: 0 auto;
}

.main-header {
  height: 100%;
  width: 100%;
  justify-content: space-between;
  font-weight: var(--font-weight-medium);
  color: var(--color-ffffff);
}

.headerbox {
  background-color: var(--color-cd93e0);
  padding: 30px;
  border-radius: 20px;
  top: 0;
  position: absolute;
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0px;
  width: 100%;
}

.main-title {
  font-size: var(--font-size-65);
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-baloobhai);

}

.section-title {
  font-size: var(--font-size-50);
  font-weight: var(--font-weight-semibold);
  text-transform: capitalize;
  line-height: 50px;
  color: var(--color-000000);
  font-family: var(--font-family-baloobhai);
  letter-spacing: -2px;
}

.sub-title {
  font-size: var(--font-size-30);
  font-family: var(--font-family-baloobhai);
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
  line-height: 35px;
}

.sub-heading {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-poppins);
  line-height: 30px;
}

.small-heading {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-poppins);
  line-height: 30px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--color-ffffff);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  transition: all ease-in-out .2s;
  border-bottom: 2px solid var(--color-cd93e0);
  padding: 0 20px;
}

.navbar-light .navbar-nav .line-bottom::after {
  transition: all ease-in-out .2s;
  background: none repeat scroll 0 0 #ffffff;
  content: "";
  display: block;
  height: 2px;
  width: 0;
}

.navbar-light .navbar-nav .nav-link.line-bottom:hover:after {
  width: 100%;

}
.navbar-nav{
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.contact-box {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 886px;
  display: flex;
  justify-content: flex-end;
  float: right;
}

.contact-box .social-link i {
  color: var(--color-cd93e0);
  padding: 10px;
  font-size: var(--font-size-24);
}

.contact-box .email {
  background-color: var(--color-f59326);
  padding: 10px 40px;

}

.contact-box .email a {
  color: var(--color-63018a) !important;

}

.contact-box a:hover {
  /* filter: invert(1); */
  filter: brightness(0.5);
}

.contact-box .phone a {
  color: var(--color-ffffff) !important;

}

.contact-box .phone a:hover {
  color: var(--color-000000) !important;

}

.contact-box .phone {
  background-color: var(--color-57cdc9);
  padding: 10px 40px;
  overflow: hidden;
  position: relative;

}

.contact-box:after {
  background-color: var(--color-57cdc9);
  position: absolute;
  content: '';
  width: 50px;
  height: 100%;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: -1;
}

.contact-box ul {
  height: 100%;
  display: flex;
  align-items: center;
  background-color: var(--color-f0f0f0);
  border-radius: 15px;
  overflow: hidden;
  justify-content: center;
}

.contact-box li {
  width: auto;
  padding: 0px 15px;
}

.dropdown-toggle::after {

  top: 2px;
  position: relative;
}

.dropdown-menu {

  padding: 0;

}
.hero-style .swiper-slide img{
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown .dropdown-menu {
    display: none;

  }

  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;

  }
}

@media screen and (max-width: 991px) {
  .dropdown-toggle.show::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

.dropdown-item {
  font-weight: var(--font-weight-bold);
  padding: 10px 15px;
}

.hero-slider h2.main-title {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  width: 40%;
  font-family: var(--font-family-baloobhai);
  font-size: var(--font-size-65);
  font-weight: var(--font-weight-extrabold);
}

.color-purple {
  color: var(--color-63018a);
}

.color-orange {
  color: var(--color-f59326);
}

.hero-style {
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
      #button-style
  --------------------------------------------------------------*/

.btn-mat {
  width: fit-content;
  padding: 15px 35px;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  outline: none;
  color: var(--color-ffffff);
  background-color: transparent;
  /* margin: 40px; */
  border-radius: 0;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  border: 0px transparent;
  transition: 0.3s ease-in-out;
  transition-delay: 0.35s;
  overflow: hidden;
  border-radius: 15px;
  background-color: var(--color-63018a);
  z-index: 5;
}

.btn-mat span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px 25px;
  box-sizing: border-box;
  opacity: 0;
  color: var(--color-ffffff);
  transition: 0.35s ease;
  font-size: 18px;
}

.btn-mat:before {
  content: "";
  display: block;
  background: var(--color-f59326);
  position: absolute;
  width: 200%;
  height: 500%;
  border-radius: 100%;
  transition: 0.36s cubic-bezier(0.4, 0, 1, 1);
}

.btn-mat:hover {
  color: transparent;
}

.btn-mat:hover span {
  opacity: 1;
}

.btn--slideRightBottom:before {
  transform: translate(-110%, -110%) translateZ(0);
}

.btn--slideRightBottom:hover:before {
  transform: translate(-45%, -34%) translateZ(0);
}

/* about-founder-section  */
.about-founder-section {
  padding-top: 200px
}

.about-founder-section .container-fluid {
  background-color: var(--color-f0f0f0);
}

.waves-box {
  position: relative;
  width: 100%;
}

.waves {
  position: absolute;
  width: 100%;
  height: 15vh;
  margin-top: -221px;
  min-height: 100px;
  max-height: 150px;
  z-index: 99;
}

.waves1 {
  margin-bottom: -150px;

  background-color: var(--color-f0f0f0);
}

/* whysection */
.navbar-expand-xl {
  height: 100px;
}

/* aboutsection */
.about-section {
  padding-top: 100px;
}

.about-img {
  position: relative;
}

.about-img::after {
  width: 150px;
  height: 150px;
  background-color: var(--color-97927F);
  position: absolute;
  content: '';
  z-index: -1;
  bottom: -20px;
  right: -20px;
}

.about-right-img {
  width: 100%;
  margin-top: -175px;
  position: relative;
  display: flex;
  justify-content: end;
  z-index: -1;
  position: absolute;
  top: 114px;
}

.about-right-img img {
  display: flex;
  justify-content: flex-end;
  width: 30%;
  /* align-items: flex-end; */
}

.about-right-img {
  position: relative;
}

.about-right-img::after {
  width: 150px;
  height: 150px;
  background-color: var(--color-673418);
  position: absolute;
  content: '';
  z-index: -1;
  top: -20px;
  right: -20px;
}

.about-section .content {
  padding-left: 100px;
}

/* work section */
.work-box {
  margin-bottom: 80px;

}

.work-img {
  overflow: hidden;
  position: relative;
  transition: ease all 0.5s;

}

.work-img:hover {
  transform: scale(1.05);
  overflow: hidden;
}

.work-img img {
  object-fit: cover;
  width: 85%;
  overflow: hidden;
  margin-right: 15%;
}

.arrow-icon {
  position: relative;
}

.arrow-icon i {
  font-size: var(--font-size-64);
  font-weight: 200;
  position: absolute;
  right: 87px;
  transform: rotate(45deg);
  top: -12px;
  color: var(--color-97927F);
}

/* footer */
footer .wave {
  height: 150px;
  position: absolute;
  top: -140px;
  width: 100%;
  z-index: -1;
}

footer {
  position: relative;
  color: var(--color-ffffff);
  padding-top: 100px;
}

footer {
  background-color: var(--color-63018a);
  position: relative;
  z-index: 1;
}

footer .col-12 {
  margin-bottom: 40px;
}

footer a {
  color: var(--color-ffffff);
  width: auto;

}
footer i:hover {
  color: var(--color-f59326);
}
footer a:hover {
  color: var(--color-f59326);
}

footer p {
  color: var(--color-ffffff);
}

footer p a:hover {
  color: var(--color-f59326);
}

footer h3 {
  font-size: var(--font-size-20);
}

.footer-left {
  position: relative;
  z-index: 9;
}

.footer-link li {
  margin-bottom: 15px;
}

.footer-left h3 {
  font-family: var(--font-family-baloobhai);
  margin: 20px 0;
  font-weight: var(--font-weight-extrabold);
  font-size: var(--font-size-40);
}

.social-link h6 {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);

}

.socialfooter {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.social-footer-box {
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* flex-direction: revert-layer; */
  margin: 30px 0;
  justify-self: flex-start;
  flex-direction: row;
}

.social-footer-box::before {
  width: 89%;
  background-color: var(--color-57cdc9);
  height: 1px;
  position: absolute;
  content: '';
  right: 11%;
}

.socialfooter i {
  color: var(--color-57cdc9);
  font-size: 20px;
  margin-left: 15px;

}

.footer-link a {
  position: relative;
}

.curriculum-section {
  background-color: var(--color-63018a);
  position: relative;
  overflow: hidden;
  padding-bottom: 250px;
}

.curriculum-section::after {
  background-image: url(../images/curriculum-bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* counter section */

.counter-section {
  background-color: var(--color-cd93e0);
  color: var(--color-ffffff);
  padding: 80px 0;
  padding-bottom: 50px;
}

.counter-box {
  display: flex;
  justify-content: center;
}

.counter-box .icon img {
  width: 80px;
  margin-right: 15px;
  height: 80px;
}

.counter-box .counter-digit h3 {
  font-size: var(--font-size-50);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0;
  line-height: 40px;
  color: var(--color-63018a);
  font-family: var(--font-family-baloobhai);
  position: relative;
  margin-top:12px ;
}

.counter-box .counter-digit h3::after {
  content: '+';
  position: absolute;
  color: #fff;
  font-size: var(--font-size-18);
  top: -5px;
}

.counter-digit {
  margin-left: 0px;
}

.counter-digit .sub-title {
  margin-top: 10px;
}

/* solution section */
.solution-section {
  background-image: url(../images/solution-bg.jpg);
  background-repeat: no-repeat;
  /* height: 100vh; */
  padding-top: 170px;
  background-size: contain;
  background-color: #f0f0f0;
  background-position: bottom right;
}

.pencil-box {
  position: relative;
  display: flex;
  padding-left: 25px;
  padding-top: 150px;

}

.pencil-img {
  width: 140px;
  margin-left: 4px;
  position: relative;
}

.pencil-img:first-child {
  width: 140px;
  margin-left: 4px;
  position: relative;
  left: 17px;

}

.pencil-img-down {
  top: 0px;
  position: relative;
}

.pencil-img-up {
  top: -150px;
  position: relative;
}

.pencil-box::before {
  background-image: url(../images/pencil/pencil-after.png);
  background-repeat: no-repeat;
  position: absolute;
  content: '';
  width: 25px;
  height: 140px;
  left: 21px;
}

.pencil-box::after {
  background-image: url(../images/pencil/pencil-before.png);
  background-repeat: no-repeat;
  position: relative;
  content: '';
  width: 148px;
  height: 140px;
  left: 1.5%;
}

/* benefit section */
.benefit-box {
  text-align: center;
}

.benefit-box .benefit-img img {
  height: 250px;
  margin: auto;
}

.benefit-box .sub-title {
  line-height: 30px;
  font-size: var(--font-size-36);
  font-family: var(--font-family-baloobhai);
}

.benefit-contain {
  width: 90%;
  margin: auto;
}

.benefit-contain .col-md-2 {
  width: 20%;
}

.benefit-box .title-cyan {
  color: #11d2d8;
}

.benefit-box .title-blue {
  color: #379ecd;
}

.benefit-box .title-pink {
  color: #e4509e;
}

.benefit-box .title-orange {
  color: #f7682b;
}

.benefit-box .title-yellow {
  color: #e4af2f;
}

/* teamsection */

.team-section {
  background-color: var(--color-fdd784);
}

.team-box {
  text-align: center;
  position: relative;
  transition: ease all 0.5s;

}

.team-box:hover {
  background-image: url(../images/svg-blob.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}

.team-box .social-link {
  display: flex;
  justify-content: center;
}

.team-box .social-link li {
  padding: 5px;
}

.team-box .social-link li i {
  color: var(--color-cd93e0);
}

/* testimonial section */

.testimonial-section {
  background-color: var(--color-1b6fab);
  position: relative;
  bottom: -1px;
  z-index: 1;
}

.testimonial-section::after {
  background-image: url(../images/testimonial-bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.testimonial-section .container {
  position: relative;
  z-index: 9;
}

.testimonial-section .wave {
  height: 150px;
  position: absolute;
  top: -140px;
  z-index: 0;
  width: 100%;
}

.testimonial-slider .swiper-slide {
  padding: 50px 0;
}

.testimonial-box {
  border-radius: 25px;
  padding: 20px 30px;
  padding-top: 80px;
  background-color: var(--color-f0f0f0);
  box-shadow: 0px 23px 28px 8px rgba(0, 0, 0, 0.1);
}



.testimonial-box p .sub-heading {
  color: var(--color-57cdc9);
}

/* width */
.testimonial-box p::-webkit-scrollbar {
  width: 2px;
  border-radius: 5px;
}

/* Track */
.testimonial-box p::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.testimonial-box p::-webkit-scrollbar-thumb {
  background: var(--color-57cdc9);
}

/* Handle on hover */
.testimonial-box p::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.testimonial-img {
  margin-top: -123px;
  margin-bottom: 30px;
}

.testimonial-img img {
  width: 150px;
  height: 150px;
  border-radius: 50px;
}

.testimonial-box .title {
  font-size: 20px;
  color: var(--color-63018a);
  text-transform: capitalize;

}

.testimonial-box p {
  color: var(--color-2c2c2c);
  overflow: scroll;
  height: 300px;

}

.testimonial-box small {
  color: var(--color-63018a);

}

.testimonial-slider .swiper-button-next:after {
  right: -52px;
}

.testimonial-slider .swiper-button-prev:after {
  left: -52px;
}

.testimonial-box::after {
  position: absolute;
  content: '"';
  font-weight: var(--font-weight-extrabold);
  color: var(--color-f59326);
  right: 50px;
  font-family: var(--font-family-baloobhai);
  font-size: 120px;
  bottom: -65px;
}

/* achievement section */


.achievement-section .btn-mat {
  position: relative;
  z-index: 9;
}


.circle-text {
  text-transform: uppercase;
  font-family: sans-serif;
  position: absolute;
  top: 76px;
  text-align: center;
  color: #fff;
  width: 150px;
  margin-left: -110px;
  font-weight: 400;
  left: 68px;
}

.circle-icon {
  font-size: 40px;
  color: #fff;
}

.slidercircle {
  /* margin-left: 100px; */
  /* margin-top: 70px; */
  width: 500px;
  height: 500px;
  margin: 100px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.circle-middle {
  display: flex;
  align-items: center;
  justify-content: center;


  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  transition: 1s;
}

.circle-middle img {
  width: 250px;
  height: 250px;
}

.circle-middle:hover {
  box-shadow: 0 0 150px 55px #ffde00;
}

.circle-one {
  margin-left: 115px;
  margin-top: 115px;
  width: 200px;
  height: 200px;
  border: 2px solid #fff;
  position: absolute;
  border-radius: 50%;
}

.circle-two {
  width: 500px;
  height: 500px;
  border: 2px solid #520f55;
  position: relative;
  border-radius: 50%;
}

.circle-arround-two-1,
.circle-arround-two-2,
.circle-arround-two-3,
.circle-arround-two-4,
.circle-arround-two-5 {
  cursor: pointer;
  width: 70px;
  height: 70px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  transition: ease all 0.5s;

}

.circle-two .text {
  font-size: var(--font-size-18);
  color: white;
  text-transform: uppercase;
  line-height: 20px;
}

.circle-arround-two-1 {
  transform: rotate(45deg) translateX(300px) rotate(-45deg);
  transition: 1s;
  background: #3ca7d3;
  position: absolute;
  left: 70% !important;
  top: 1%;
  content: '';

}

.circle-arround-two-2 {
  transform: rotate(45deg) translateX(-300px) rotate(-45deg);
  transition: 1s;
  background: #11d2d9;
  position: absolute;
  left: -1%;
  top: 18%;
}

.circle-arround-two-3 {
  transform: rotate(45deg) translateY(300px) rotate(-45deg);
  position: absolute;
  left: 92%;
  top: 51%;
  transition: 1s;
  background: #e4af2f;
}

.circle-arround-two-4 {
  transform: rotate(45deg) translateY(300px) rotate(-45deg);
  position: absolute;
  left: 3%;
  top: 72%;
  transition: 1s;
  background: #e4509e;
}

.circle-arround-two-5 {
  transform: rotate(45deg) translateY(300px) rotate(-45deg);
  position: absolute;
  left: 67%;
  top: 86%;
  transition: 1s;
  background: #f8682b;
}


.circle-arround-two-1 i:hover,
.circle-arround-two-2 i:hover,
.circle-arround-two-3 i:hover,
.circle-arround-two-4 i:hover,
.circle-arround-two-5 i:hover {
  -webkit-animation: rotate-center 0.6s ease-in-out both;
  animation: rotate-center 0.6s ease-in-out both;
}

.circle-arround-two-1:hover,
.circle-arround-two-2:hover,
.circle-arround-two-3:hover,
.circle-arround-two-4 i:hover,
.circle-arround-two-5 i:hover {
  -webkit-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.25);
}

.circle-two {
  position: relative;
}

.circle-two .content {

  text-align: left;
  color: var(--color-ffffff);
}

.circle-two p {
  width: 350px;

  color: var(--color-ffffff);
}

.circle-two .content.box1 {
  position: absolute;
  left: 100px;
  top: 0px;

}

.circle-two .content.box2 {
  position: absolute;
  right: 100px;
  top: 0;
  text-align: right;
}

.circle-two .content.box3 {
  position: absolute;
  left: 130%;
  bottom: -90%;
}

.circle-two .content.box4 {
  position: absolute;
  left: 141%;
  bottom: -173%;
  text-align: left;
}

.circle-two .content.box5 {
  position: absolute;
  left: -515%;
  bottom: -131%;
  text-align: right;
}


.circle-two .sub-heading {
  font-family: var(--font-family-baloobhai);
  color: var(--color-f59326);
}


.stopanima {
  animation-play-state: paused !important;
}



/* why section */
.about-founder-section {
  background-color: var(--color-f0f0f0);
}

.about-founder-section .social-link i {
  font-size: var(--font-size-24);
  margin-right: 20px;
}

.profile-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.profile-img img {
  width: 500px;

}

.profile-img::after {
  position: absolute;
  content: '';
  background-image: url(../images/blob.svg);
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  height: 730px;
  background-repeat: no-repeat;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 700px;
}



.wave-container {
  background-color: rgba(32, 178, 170, 0);
  position: relative;
  top: -37px;
}

.wave-container::before {
  content: "";
  width: 100%;
  height: 91px;
  position: absolute;
  bottom: 30px;
  left: 0;
  background-size: auto;
  background-repeat: repeat no-repeat;
  background-position: 0vw bottom;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200  88' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 64L50 60C100 57 200 49 300 33C400 17 500 -7 600 1C700 9 800 49 900 64C1000 80 1100 72 1150 68L1200 64V88H1150C1100 88 1000 88 900 88C800 88 700 88 600 88C500 88 400 88 300 88C200 88 100 88 50 88H0V64Z' fill='%23cd93e0'/></svg>");
}

@media(max-width:850px) {
  .wave-container::before {
    height: 45.5px
  }
}

.wave-container1 {
  position: relative;
}

.wave-container1::before {
  content: "";
  width: 100%;
  height: 69px;
  position: absolute;
  bottom: 6px;
  left: 0;
  background-size: auto;
  background-repeat: repeat no-repeat;
  background-position: 100vw bottom;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200  84' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 61L50 58C100 54 200 46 300 31C400 16 500 -7 600 1C700 9 800 46 900 61C1000 77 1100 69 1150 65L1200 61V84H1150C1100 84 1000 84 900 84C800 84 700 84 600 84C500 84 400 84 300 84C200 84 100 84 50 84H0V61Z' fill='%23cd93e0'/></svg>");
  transform: rotate(180deg);
  margin-bottom: -118px;
  z-index: 9;
}

@media(max-width:850px) {
  .wave-container1::before {
    height: 34.5px
  }
}

.wave-container2 {
  background-color: rgba(32, 178, 170, 0);
  position: relative;
  top: -86px;
}

.wave-container2::before {
  content: "";
  width: 100%;
  height: 91px;
  position: absolute;
  bottom: -0.3%;
  left: 0;
  background-size: auto;
  background-repeat: repeat no-repeat;
  background-position: 0vw bottom;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200  88' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 64L50 60C100 57 200 49 300 33C400 17 500 -7 600 1C700 9 800 49 900 64C1000 80 1100 72 1150 68L1200 64V88H1150C1100 88 1000 88 900 88C800 88 700 88 600 88C500 88 400 88 300 88C200 88 100 88 50 88H0V64Z' fill='%2363018a'/></svg>");
}

@media(max-width:850px) {
  .wave-container2::before {
    height: 45.5px
  }
}

.why-right-box .content {
  overflow: hidden;
}

.why-right-box {
  overflow: hidden;
}

.why-right-box .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.why-right-box .content button {
  width: fit-content;
}

.why-feature {
  height: 100%;
  left: -5px;
  position: relative;
  z-index: 9;
}

.why-infographic {
  width: 100%;
  height: 100%;
  position: absolute;
  margin-top: -50px;
  z-index: 9;
}

.box-common {
  display: block;
  width: 100%;
  height: 160px;
}

.box-common .icon img {
  width: 70px;
  height: 70px;
  margin-right: 15px;
}


.box-common::before {
  position: absolute;
  content: '';
  width: 87px;
  height: 100%;
  left: 0px;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
}


.box-common::after {
  position: absolute;
  content: '';
  width: auto;
  width: 88px;
  height: 160px;
  right: -73px;
  background-repeat: no-repeat;
  top: 18px;
  background-size: contain;
}

.box-common .content {
  display: flex;
  padding-left: 50px;
  position: absolute;
  left: 77px;
  top: 18px;
  height: 100%;
  align-items: center;
  box-shadow: 0px 30px 20px -21px rgba(0, 0, 0, 0.45);
}

.box-common .content p {
  overflow: hidden;

}

.box-cyan {
  width: 75%;
  position: relative;
  left: 0;
  z-index: 5;
}

.box-cyan::before {
  position: absolute;
  background-image: url(../images/why/boxcyan-before.png);
  height: 211px;
  top: 19px;
  left: 2px;
}

.box-cyan::after {
  position: absolute;
  background-image: url(../images/why/boxcyan-after.png);

}

.box-cyan .content {

  background-color: #00d2d8;

}

.box-blue {
  width: 80%;
  position: relative;
  /* padding: 20px; */
  /* left: 0; */
  display: list-item;
  z-index: 4;

}

.box-blue::before {
  position: absolute;
  background-image: url(../images/why/boxblue-before.png);
  height: 181px;
  top: 18px;
}

.box-blue::after {
  position: absolute;

  background-image: url(../images/why/boxblue-after.png);

}


.box-blue .content {

  background-color: #3ca7d3;

}


.box-pink {
  width: 85%;
  position: relative;
  /* padding: 20px; */
  /* left: 0; */
  display: list-item;
  z-index: 3;

}

.box-pink::before {
  background-image: url(../images/why/boxpink-before.png);
  top: 18px;
  left: 2px;
}

.box-pink::after {
  background-image: url(../images/why/boxpink-after.png);
}


.box-pink .content {

  background-color: #e4509e;

}

.box-orange {
  width: 90%;
  position: relative;
  /* padding: 20px; */
  /* left: 0; */
  display: list-item;
  z-index: 2;

}

.box-orange::before {
  background-image: url(../images/why/boxorange-before.png);
  height: 174px;
  top: 6px;
  position: absolute;
}

.box-orange::after {
  background-image: url(../images/why/boxorange-after.png);
}

.box-orange .content {

  background-color: #f8682b;

}


.box-yellow {
  width: 95%;
  position: relative;
  /* padding: 20px; */
  /* left: 0; */
  display: list-item;
  z-index: 1;

}

.box-yellow::before {
  background-image: url(../images/why/boxyellow-before.png);
  height: 216px;
  top: -27px;
}

.box-yellow::after {
  background-image: url(../images/why/boxyellow-after.png);
}


.box-yellow .content {

  background-color: #e4af2f;

}

/* team page */

.team-page {
  position: relative;
}

.team-section .wave {
  height: 150px;
  position: absolute;
  top: -140px;
  z-index: 0;
  width: 100%;
}

.team-page .team-box {
  margin-bottom: 50px;
}

/* text .reveal */



section .revealtext {
  position: relative;
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.5s;
  transition-delay: 0.5s;
}

section .revealtext.active {
  transform: scaleX(1);
  transition-delay: 0s;

}



section .revealtext:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transform-origin: right;
  transition: 0.5s;
  transition-delay: 0s;

}

section .revealtext:nth-child(2):before {
  background: #fff;
}

section .revealtext.active:before {
  transform: scaleX(0);
  transition-delay: 0.5s;

}

.inner-section {
  background-color: var(--color-63018a);
  width: 100%;
  z-index: -1;
  position: relative;
  /*overflow: hidden;*/
}
.inner-section .banner-img img{
  object-fit: cover !important;
  width: 100% !important;
}
.inner-section .content {
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 50%;
  color: #fff;
  flex-direction: column;
  /* top: 154%; */
  bottom: 0;
  top: 160%;
}

.inner-section .content h2 {
  font-weight: var(--font-weight-bold);
}

.inner-section .content h6 {
  font-weight: var(--font-weight-light);
  line-height: 25px;
}

.inner-section .content img {
  width: 250px;
  height: 100px;
}

.inner-section .main-title {
  font-size: var(--font-size-40);
  font-weight: 600;
}

.inner-section .btn-mat {
  background-color: var(--color-f59326);
  top: 30px;
  box-shadow: 0 1rem 2rem rgb(76 81 102 / 44%) !important;
}

.inner-section .btn-mat:hover {
  background-color: var(--color-63018a);

}

.inner-section .col-12 {
  padding-top: 200px;
}

.masonry {
  columns: 3;
  column-gap: 50px;

}

@media (max-width: 1200px) {
  .masonry {
    columns: 3;
  }
}

@media (max-width: 992px) {
  .masonry {
    columns: 2;
  }
}

.masonry .grid {
  margin-bottom: 55px;
  position: relative;
  display: inline-flex;
  width: 100%;
}

.masonry .grid:before {
  border-radius: 5px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.masonry .grid .overlay {
  position: absolute;
  z-index: 999;
  right: 0;
  top: 0;
}

.masonry .grid i {
  font-size: 20px;
}

.masonry .grid video {
  width: 100%;
}

/* contact page */

.contact-page {
  position: relative;
}

.contact-info .contact-page-box {
  padding: 40px;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #edddff;
  display: flex;
  border: 2px solid #f3f3f3;
}

.contact-info .contact-page-box p {
  height: 100%;

  width: 100%;
}

.contact-page-box .icon img {
  width: 30px;
  height: 30px;
  /* filter: contrast(0.9); */
  opacity: 0.7;
  margin-bottom: 15px;
  position: relative;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-page-box .icon img::after {
  position: absolute;
  content: '';
  padding: 10px;
  border-radius: 50%;
  background-color: var(--color-f0f0f0);
  width: 80px;
  height: 80px;
}

.contact-page .wave {
  height: 150px;
  position: absolute;
  top: -140px;
  z-index: 0;
  width: 100%;
}

.gradient-brand-color {
  background-image: -webkit-linear-gradient(289deg, #0512ca 0%, #ffa600 100%);
  background-image: -ms-linear-gradient(0deg, #0512ca 0%, #ffa600 100%);
  color: #fff;
}

.contact-info__wrapper {
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}

@media (min-width: 1024px) {
  .contact-info__wrapper {
    border-radius: 25px;
    padding: 5rem !important;
    z-index: 9;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    height: fit-content;
  }

}

.contact-info__list span.position-absolute {
  left: 0;
}

.z-index-101 {
  z-index: 101;
}

.list-style--none {
  list-style: none;
}

.contact__wrapper {
  background-color: #fff;
  border-radius: 0 0 0.625rem 0.625rem;
}

@media (min-width: 1024px) {
  .contact__wrapper {
    border-radius: 0.625rem 0 0.625rem 0.625rem;
  }
}

@media (min-width: 1024px) {
  .contact-form__wrapper {
    padding: 4rem !important;
  }
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(76, 81, 102, 0.1) !important;
}

input.form-control {

  border-radius: 50px;
  padding: 12px 24px;
  border: transparent;
  background-color: #edddff;
}

textarea.form-control {

  border-radius: 20px;
  padding: 18px;
  border: transparent;
  background-color: #edddff;
}

.contact-form__wrapper .form-group {
  margin-bottom: 30px;
}

.form-control:focus {
  color: #212529;
  background-color: #edddff;
  border-color: #d286fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
}

.map-box iframe {
  border-radius: 25px;
}


.StepProgress {
  position: relative;
  padding-left: 45px;
  list-style: none;
}

.StepProgress::before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 10px;
  height: 76%;
  border-left: 2px solid #CCC;
}

.StepProgress-item {
  position: relative;
  counter-increment: list;
}

.StepProgress-item:not(:last-child) {
  padding-bottom: 20px;
}

.StepProgress-item::before {
  display: inline-block;
  content: '';
  position: absolute;
  left: -30px;
  height: 100%;
  width: 10px;
}

.StepProgress-item::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: -43px;
  width: 30px;
  height: 30px;
  border: 2px solid #CCC;
  border-radius: 50%;
  background-color: #FFF;
}

.StepProgress-item.is-done::after {
  content: "✔";
  font-size: 10px;
  color: #FFF;
  text-align: center;
  border: 2px solid #63018a;
  background-color: var(--color-f59326);
  padding: 5px;
}

.StepProgress-item.current::before {
  border-left: 2px solid green;
}

.StepProgress-item:last-child::before {
  border-left: transparent !important;
}

.StepProgress-item.current::after {
  content: counter(list);
  padding-top: 1px;
  width: 19px;
  height: 18px;
  top: -4px;
  left: -40px;
  font-size: 14px;
  text-align: center;
  color: green;
  border: 2px solid green;
  background-color: white;
}

.StepProgress strong {
  display: block;
}

.whatsapp-btn a {
  position: fixed;
  right: 28px;
  bottom: 90px;
  /* width: 50px; */
  /* height: 51px; */
  z-index: 9;
}

.whatsapp-btn a img {
  width: 54px;
  height: 54px;
  transition: ease all 0.5s;
}

.whatsapp-btn a img:hover {
  transform: scale(1.1);
}

.testimonial-page p {

  height: auto;

}

.form-section .form-box {
  background-color: var(--color-63018a);
  border-radius: 25px;
  padding: 3rem;
  margin: 8rem 0;
}

.form-box-left {

  height: 100%;
  position: relative;
}

.form-box-left img {
  position: absolute;
  /* top: 0; */
  /* height: 100%; */
  left: 0;
  overflow: hidden;
  z-index: -2;
  object-fit: contain;
  bottom: 25px;
  width: 150%;
}


.form-section .form-box .form-group {
  margin-bottom: 10px;
}

.form-section .form-box .btn-mat {

  background-color: var(--color-f59326);
}

/* faq .accordion */

.accordion .accordion-item {
  border: 1px solid var(--color-63018a) !important;
  border-radius: 5px;
  margin-bottom: 25px;
}

.accordion button {

  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em;
  color: var(--color-63018a);
  font-size: 1.0rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  background-color: var(--color-63018a);
  color: var(--color-ffffff);
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: var(--color-63018a);
  border: 1px solid var(--color-63018a);
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

/* .accordion button[aria-expanded=true] {
  color: var(--color-63018a);
} */
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content strong {
  font-weight: 600;
}

.accordion .accordion-content ul {
  padding: 0 1rem;
  margin-left: 19px;
}

.accordion .accordion-content ul li {
  font-size: 14px;
  list-style-type: disc;
  margin-bottom: 10px;
  padding-top: 0px;
  font-weight: 400;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 1em;
}

.challenge-section .container {
  background-color: #f7e1ff;
  padding: 80px;
  border-radius: 30px;
  z-index: 0;
  position: relative;
}

.challenge-box {
  padding: 30px;
  border-radius: 30px;
  height: 90%;
  color: var(--color-ffffff);
}

.challenge-slider {
  height: 100%;
}

.challenge-box .number {
  padding: 30px;
  border-radius: 30px;
  font-size: var(--font-size-65);
  font-weight: bold;
  font-family: var(--font-family-baloobhai);
  position: absolute;
  bottom: -30px;
  right: 0;
  opacity: 0.5;
}

.challenge-box p {
  color: var(--color-ffffff);
}

.challenge-box .solution {
  color: #271300;
  padding: 15px;
  background-color: #ffe53c;
  border-radius: 15px;
  height: 74%;
  position: relative;
}

.challenge-box .solution i {
  color: #000000;
  font-size: 20px;
  background-color: #fff;
  padding: 5px 11px;
  border-radius: 31px;
}

.challenge-box .sub-heading {
  margin-bottom: 10px;
}

.challenge-box.yellow {
  background-color: var(--color-f59326);

}

.challenge-box.pink {
  background-color: var(--color-cd93e0);

}

.challenge-box.cyan {
  background-color: var(--color-57cdc9);

}

.challenge-box.blue {
  background-color: var(--color-1b6fab);

}

.video-section {
  background-color: var(--color-57cdc9);
}

.video-section iframe {
  border-radius: 10px;
}

/* .offer-section{
  background-color: #cd93e042;
 } */

.offer-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  height: 100%;
}
.offer-box .content{
  padding-right:0;
  width: 70%;
}
.content-icon {
  display: flex;
  align-items: flex-start;
}

.offer-box .content p {
  font-size: var(--font-size-20);
  margin-bottom: 0;
  line-height: 24px;
  margin-left: 15px;
}

.offer-box .content p small {
  font-size: 14px;
  display: block;
  margin-top: 10px;
}
.offer-box .icon  {
  border-radius: 50%;
  border: 3px solid var(--color-cd93e0);

}
.offer-box .icon img {
  width: 100px;
  height: 100px;
  padding: 20px;

}
/* subject-section */
.subject-section-bg {
  position: relative;
}

.subject-section-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: -1;
}

.subject-div {
  width: 75%;
  /* height: 100%; */
  margin: 0 auto;
  margin-bottom: 50px;
}

.subject-div-left {
  width: 50%;
  height: 160px;
  float: left;
  padding: 0 15px;
  margin-bottom: 13px;
}

.subject-box .subject-img {
  width: 35%;
  height: 100%;
}

.subject-box .subject-title {
  width: 65%;
  height: 100%;
}

.subject-img img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  border: solid 10px var(--color-57cdc9);
  box-shadow: 5px 3px 18px 0px #0003;
  position: relative;
  z-index: 1;
}

/* subject-div-left */
.subject-img .subject-bg {
  position: absolute;
  width: 140px;
  height: 90%;
  background: var(--color-57cdc9);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.subject-img .subject-bg .subject-cylinder {
  position: absolute;
  width: 40px;
  height: 120%;
  background: var(--color-57cdc9);
  box-shadow: -3px 5px 18px 0px #0003;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.subject-title .sub-title {
  position: relative;
  z-index: 1;
  color: var(--color-ffffff);
  padding-left: 30%;
  font-size: var(--font-size-24);
}

.subject-title .subject--text-bg {
  position: absolute;
  width: 70%;
  height: 90%;
  background: var(--color-57cdc9);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100px 0 0 100px;
}

.subject-title .subject-text-border {
  position: absolute;
  width: 30%;
  height: 12px;
  background: var(--color-57cdc9);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.subject-title .subject-text-border div {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--color-57cdc9);
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100px;
  border: solid 10px var(--color-ffffff);
}

/* subject-div-left */
/* subject-div-right */
.subject-div-right .subject-img .subject-bg {
  left: 0;
  right: unset;
}

.subject-div-right .subject-img .subject-bg .subject-cylinder {
  left: -5px;
  right: unset;
}

.subject-div-right .subject-title .sub-title {
  padding-right: 30%;
  padding-left: 0;
}

.subject-div-right .subject-title .subject--text-bg {
  left: 0;
  right: unset;
  border-radius: 0 100px 100px 0;
}

.subject-div-right .subject-title .subject-text-border {
  right: 0;
  left: unset;
  z-index: 1;
}

.subject-div-right .subject-title .subject-text-border div {
  right: -20px;
  left: unset;
}

/* subject-div-right */

/* subject-section */
/* offer-section-bg */
.offer-section {
  position: relative;
}

.offer-section .col-12 {
  margin-bottom: 25px;
}

.offer-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/what-we-offer-bg.jpg);
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

/* offer-section-bg */
/* inner-team-section */
.why-us-box {
  width: 300px;
  display: flex;
}

.why-us-box img {
  width: 120px;
  height: 120px;
}

.inner-why-us-div {
  padding: 0px 100px;
}

.inner-why-us-div .why-us-img-box {
  position: absolute;
  left: 0;
  bottom: -120px;
  right: 0;
  margin: 0 auto;
  width: 300px;
}

.inner-why-us-div .why-us-img-box .why-us-img {

  width: 100%;
}

/* inner-team-section */


/* myp table */


.main-table-containter {
  border-radius: 3vmin;
  background-color: #F6F6F4;
  width: 100%;
  margin: auto;
  padding: 2rem 2rem;
  box-shadow: 0px 2px 5px 0px #00000033;
}



.title-table-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  align-items: center;
  padding: 0rem 1.5rem;
  text-align: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  font-size: 24px;
}

.subtitle {
  font-weight: 600;

}


.subject-table table {
  width: 100%;
  font-weight: 600;
  FONT-SIZE: 16PX;
  BORDER-COLLAPSE: COLLAPSE;
  color: #474747;
}

.subject-table tr {
  transition: background-color 0.2s;
}

.subject-table tr:hover {
  background-color: #ffffff !important;

}

.subject-table table tr td {
  font-size: 14px;
}

.subject-table th {
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  background-color: aliceblue;
}

.subject-table td {
  padding: 1rem;
  border: none;
}

.subject-table td {
  text-align: center;
}



.subject-table tbody, .subject-table td, .subject-table tfoot, .subject-table th, .subject-table thead, .subject-table tr {
  text-align: center;
  width: 20%;
}

.subject-table tr th:first-child {
  background-color: #fff6ce;
  border-bottom: 1px solid #fff;
  text-align: left;
}

.subject-table tr th:nth-child(2) {
  background-color: #efefff;
  COLOR: #8f67ff;
  padding: 22px;
  border-bottom: 1px solid #fff;
}

.subject-table tr th:nth-child(3) {
  background-color: #fdefee;
  COLOR: #ff968d;
  padding: 22px;
  border-bottom: 1px solid #fff;
}

.subject-table tr th:nth-child(4) {
  background-color: #fff3e7;
  COLOR: #CF5858;
  padding: 22px;
  border-bottom: 1px solid #fff;
}

.subject-table tr th:nth-child(5) {
  background-color: #eafff5;
  COLOR: #2ab8a2;
  padding: 22px;
  border-bottom: 1px solid #fff;
}

.subject-table tr td:nth-child(2) {
  background-color: #efefff;
  COLOR: #8f67ff;
  border-bottom: 1px solid #fff;
}

.subject-table tr td:nth-child(3) {
  background-color: #ffefee;
  COLOR: #ff968d;
  border-bottom: 1px solid #fff;
}

.subject-table tr td:nth-child(4) {
  background-color: #fff3e7;
  COLOR: #CF5858;
  border-bottom: 1px solid #fff;
}

.subject-table tr td:nth-child(5) {
  background-color: #eafff5;
  COLOR: #2ab8a2;
  border-bottom: 1px solid #fff;
}




/* ibdp page table */

.ibdp-subject-table tr th:first-child {

  width: 20%;
}

.ibdp-subject-table tr td:nth-child(2) {
  background-color: #fff3e7;
  COLOR: #CF5858;
  width: 80%
}

.ibdp-subject-table table tr td {
  text-align: left;
}


.cube {
  perspective: 800px;
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 5s infinite linear;
}

.cube__face {
  position: absolute;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 4em;
  line-height: 200px;
  text-align: center;
  color: white;
  font-weight: bold;
}

.cube__face--front {
  background-image: linear-gradient(to bottom, rgba(0, 122, 255, 1) 0%, rgba(100, 149, 237, 1) 100%);
  transform: rotateY(0deg) translateZ(100px);
}

.cube__face--back {
  background-image: linear-gradient(to bottom, rgba(245, 108, 108, 1) 0%, rgba(253, 174, 174, 1) 100%);
  transform: rotateY(180deg) translateZ(100px);
}

.cube__face--top {
  background-image: linear-gradient(to bottom, rgba(106, 220, 0, 1) 0%, rgba(204, 235, 111, 1) 100%);
  transform: rotateX(-90deg) translateZ(100px);
}

.cube__face--bottom {
  background-image: linear-gradient(to bottom, rgba(255, 202, 40, 1) 0%, rgba(255, 243, 166, 1) 100%);
  transform: rotateX(90deg) translateZ(100px);
}

.cube__face--left {
  background-image: linear-gradient(to bottom, rgba(125, 215, 245, 1) 0%, rgba(193, 230, 255, 1) 100%);
  transform: rotateY(-90deg) translateZ(100px);
}

.cube__face--right {
  background-image: linear-gradient(to bottom, rgba(163, 73, 164, 1) 0%, rgba(240, 198, 255, 1) 100%);
  transform: rotateY(90deg) translateZ(100px);
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

#canvas {
  width: 100%;
  height: 100%;
}

.vision-mission-section img {
  height: 100px;
  margin-right: 15px;
}

.vision-mission-section .content {
  padding: 50px;
}

.ib-section {
  position: relative;
}

.ib-section .section-title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 500px;
  border-radius: 100%;
  background-color: var(--color-63018a);
  padding: 50px;
  top: 16%;
  left: 37%;
  color: var(--color-ffffff);
  flex-direction: column;
  z-index: 9;
}

.ib-section .section-title p {
  color: var(--color-ffffff);

}

.ib-feature-section {
  background-color: #b24ecd;
  color: var(--color-ffffff);
  padding-bottom: 150px;
}

.ib-feature-section .wave {
  top: -281px;
  position: relative;
  height: 0;
}

.ib-feature-section p {
  color: var(--color-ffffff);
}

.ib-feature-section .feature-box {
  /* border: 5px solid; */
  height: 100%;
}

.challenges-section {
  background-color: #0091be;
}

.challenges-section li {
  border: dotted 1px #ccc;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: var(--font-size-20);
  text-align: left;
  border-radius: 15px;
  background-color: antiquewhite;
  padding: 25px;
  width: 100%;
  color: #fff;
  position: relative;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
}

.challenges-section li::after {
  display: flex;
  /* margin-left: -2.745em; */
  /* vertical-align: 0.255em; */
  content: "";
  border-right: 0.8em solid;
  border-top: 0.8em solid transparent;
  border-left: 0;
  border-bottom: 0.8em solid transparent;
  right: 0;
  position: absolute;
  /* align-items: center; */
  /* justify-content: center; */
  /* height: 100%; */
  top: 30%;
}

.challenges-section ul.right {
  position: relative;
}

.challenges-section ul.right li::after {
  left: 0;
  border-left: 0.8em solid;
  border-top: 0.8em solid transparent;
  border-right: 0;
  border-bottom: 0.8em solid transparent;
  position: absolute;
  width: 16px;
  left: 0;
}

.challenges-section li.box-cyan {
  background-color: var(--color-57cdc9);
}

.challenges-section li.box-blue {
  background-color: var(--color-1b6fab);
}

.challenges-section li.box-pink {
  background-color: var(--color-e4509e);
}

.challenges-section li.box-orange {
  background-color: var(--color-f8682b);
}

.challenges-section img {
  position: relative;
  top: 5px;
}

.challenges-section .container-fluid {
  border-bottom: 5px solid #fff;
}

.challenges-section .container-fluid ul {
  position: relative;
}

.challenges-section .content {
  margin: 50px;
  border-radius: 64px;
  position: relative;
}

.challenges-section .content h4 {
  position: relative;
  background-color: #ffa433;
  border-radius: 15px;
  padding: 20px 40px;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 40px;

}

.challenges-section .section-title {
  color: var(--color-ffffff);
}

.challenges-section h3 {
  margin-top: 20px;
}

.parent-students-challenges-section {
  width: 100%;
  z-index: 0;
  position: relative;
}

.parent-students-challenges-section .feature {
  background-color: #ffffff;
  padding: 34px;
  border-radius: 30px;
  font-size: x-large;
}

.parent-students-challenges-section .row {
  display: flex;
  height: 100% !important;
}

.parent-students-challenges-section .sub-heading {
  margin-bottom: 10px;
  display: flex;
  color: var(--color-63018a);
}

.parent-students-challenges-section .sub-heading i {
  margin-right: 15px;
}

.parent-students-challenges-section img {
  border-radius: 100%;
  width: 600px;
}

.parent-students-challenges-section .section-title {
  margin-bottom: 20px;
}

.profile-img::after {

  height: 750px;

  width: 750px;
}

.parent-students-challenges-section li {
  color: var(--color-ffffff);
}

ul.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 25em;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
}

ul.infoGraphic li .numberWrap {
  position: absolute;
}

ul.infoGraphic li .number {
  font-family: "maven pro", sans-serif;
  font-size: 13em;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
}

ul.infoGraphic li .number.fontColor1 {
  color: var(--blue);
}

ul.infoGraphic li .number.fontColor2 {
  color: var(--green);
}

ul.infoGraphic li .number.fontColor3 {
  color: var(--purple);
}

ul.infoGraphic li .number.fontColor4 {
  color: var(--gold);
}

ul.infoGraphic li .number.fontColor5 {
  color: var(--red);
}

ul.infoGraphic li .number.fontColor6 {
  color: var(--orange);
}

ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: 0em;
  top: 0;
}

ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  /* background: #c240c7; */
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #fd1cf8;
  transition: all 0.4s;
  left: 3rem;
}

ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 2px;
  left: 4em;
  right: 4em;
  top: 6em;
  box-shadow: 0 0 30px 17px #c240c7d1;
  border-radius: 100px / 10px;
  z-index: -1;
}

ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: 0;
  width: 100%;
  height: 155%;
  background: radial-gradient(at bottom, #9c3e9f, #bb4ec0, #c240c700);
  z-index: -1;
}

ul.infoGraphic li .content {
  margin: 15em 0em 1em 7em;
  position: relative;
  text-align: left;
}

ul.infoGraphic li .content .icon img {
  width: 90px;
  margin-bottom: 10px;
  background-color: var(--color-ffffff);
  padding: 15px;
  border-radius: 50%;
}

ul.infoGraphic li .content h2 {
  font-size: 1.7em;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

ul.infoGraphic li .content p {
  line-height: 1.5em;
}

ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}

.icon {
  font-size: 2rem;
  top: 0;
}

.icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.iconCodepen:before {
  content: "";
}

.iconSocial:before {
  content: "";
}

.iconAirplane:before {
  content: "";
}

.iconMap:before {
  content: "";
}

.iconBulb:before {
  content: "";
}

.iconPeace:before {
  content: "";
}

.btn-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  text-decoration: none;

}

.btn-alt::before, .btn-alt::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
}

.btn-alt:before {
  background: rgba(255, 255, 255, 1);
  width: 60px;
  left: 0;
  filter: blur(30px);
  -webkit-animation: shine-alt1 3s ease-in-out infinite;
  animation: shine-alt1 3s ease-in-out infinite;
}

.btn-alt:after {
  background: rgba(255, 255, 255, 1);
  width: 30px;
  left: 70px;
  filter: blur(5px);
  -webkit-animation: shine-alt2 3s ease-in-out infinite;
  animation: shine-alt2 3s ease-in-out infinite;
}

@-webkit-keyframes shine-alt1 {
  0% {
    opacity: 0.5;
    transform: translateX(-100px) skewX(-15deg);
    transition-property: opacity, transform;
  }

  11.5044247788%, 100% {
    opacity: 0.6;
    transform: translateX(300px) skewX(-15deg);
    transition-property: opacity, transform;
  }
}

@keyframes shine-alt1 {
  0% {
    opacity: 0.5;
    transform: translateX(-100px) skewX(-15deg);
    transition-property: opacity, transform;
  }

  11.5044247788%, 100% {
    opacity: 0.6;
    transform: translateX(300px) skewX(-15deg);
    transition-property: opacity, transform;
  }
}

@-webkit-keyframes shine-alt2 {
  0% {
    opacity: 0;
    transform: translateX(-100px) skewX(-15deg);
    transition-property: opacity, transform;
  }

  11.5044247788%, 100% {
    opacity: 1;
    transform: translateX(300px) skewX(-15deg);
    transition-property: opacity, transform;
  }
}

@keyframes shine-alt2 {
  0% {
    opacity: 0;
    transform: translateX(-100px) skewX(-15deg);
    transition-property: opacity, transform;
  }

  11.5044247788%, 100% {
    opacity: 1;
    transform: translateX(300px) skewX(-15deg);
    transition-property: opacity, transform;
  }
}


.parent-students-challenges-section .challenge-box {
  padding: 0px;
  border-radius: 30px;
  height: 90%;
  color: var(--color-ffffff);
  /* margin-bottom: 40px; */
  border: dotted 2px #63018a;
  padding: 20px;
}

:root {
  --color-text: #616161;
  --color-text-btn: #ffffff;
  --card1-gradient-color1: #f12711;
  --card1-gradient-color2: #f5af19;
  --card2-gradient-color1: #7F00FF;
  --card2-gradient-color2: #E100FF;
  --card3-gradient-color1: #3f2b96;
  --card3-gradient-color2: #a8c0ff;
  --card4-gradient-color1: #11998e;
  --card4-gradient-color2: #38ef7d;
  --card5-gradient-color1: #ca6200;
  --card5-gradient-color2: #ffe600;
}

.card-wrap {
  background: #fff;
  border-radius: 20px;
  border: 5px solid #fff;
  overflow: hidden;
  padding: 0;
  color: var(--color-text);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  margin: 1%;
}
.card-wrap:hover {
  transform: scale(1.1);
}

.card-header {
  width: 100%;
  background: red;
  border-radius: 100% 0% 100% 0% / 0% 50% 50% 100%;
  display: grid;
  place-items: center;
  height: 100%;
  text-align: center;
}

.card-header i {
  color: #fff;
  font-size: 72px;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
}

.card-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #fff;

}

.card-content .sub-heading {
  color: #fff;
}

.card-content p {
  color: #fff;
}

.card-text {
  color: #fff;

  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
}

.card-btn {
  border: none;
  border-radius: 100px;
  padding: 5px 30px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.card-header img {
  width: 150px;
  padding: 25px;
  filter: invert(1);
}

.card-header.one {
  background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}

.card-header.two {
  background: linear-gradient(to bottom left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}

.card-header.three {
  background: linear-gradient(to bottom left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}

.card-header.four {
  background: linear-gradient(to bottom left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}
.card-header.five {
  background: linear-gradient(to bottom left, var(--card5-gradient-color1), var(--card5-gradient-color2));
}
.card-btn.one {
  background: linear-gradient(to left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}

.card-btn.two {
  background: linear-gradient(to left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}

.card-btn.three {
  background: linear-gradient(to left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}

.card-btn.four {
  background: linear-gradient(to left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

.card-box-transition {
  display: flex;
  justify-content: center;
}


/* css */

.heading {
  padding: 0 28%;
}

.top-heading {
  padding: 0 21%;
}

.challenges-section {
  overflow: hidden;
}

.content {
  padding-right: 15%;
}

/* responsive */

@media only screen and (min-width: 1921px) {}


@media (max-width: 1600px) {
  .challenges-section {
    position: relative;
  }

  .challenges-section img {
    width: 493px;
    position: absolute;
    top: 37%;
    left: 35%;
  }

  ul.infoGraphic li {
    max-width: 25%;
    border-radius: 0.5em;
    padding: 0.5em;
  }

  .ib-section .section-title {
    height: 480px;
    width: 480px;
    top: 16%;
    left: 30%;
  }

  ul.infoGraphic li .content {
    margin: 12em 0em 0em 3em;
  }

  ul.infoGraphic li .content h2 {
    font-size: 1.4em;
  }

  .ib-feature-section .wave {
    top: -150px;
  }

  ul.infoGraphic li .number {
    font-size: 10em;
  }

  ul.infoGraphic li .coverWrap .numberCover {
    width: 15em;
    height: 5em;
  }

  ul.infoGraphic li .coverWrap {
    left: -5em;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1400px;
  }

  .top-heading {
    padding: 0px 15%;
  }

  .heading {
    padding: 0 22%;
  }

  .pencil-box {
    padding-left: 0px;
    padding-bottom: 100px;
  }

  .pencil-box::after {
    left: 16px;
  }

  .navbar-brand img {
    width: 180px;
  }

  .pencil-box::before {
    height: 140px;
    left: 0px;
  }

  .content {
    padding-right: 0%;
  }

  .profile-img img {
    width: 420px;
  }

  .profile-img::after {
    height: 650px;
    width: 650px;
  }

  .vision-mission-section .content {
    padding: 25px;
  }

  .vision-mission-section .content h3 {
    font-size: var(--font-size-24);
  }

  .ib-section h3 {
    font-size: 26px;
  }

}

@media (max-width: 1560px) {
  .social-footer-box::before {
    width: 87%;
    right: 13%;
  }

  .challenges-section img {
    width: 475px;
    position: absolute;
    top: 36%;
    left: 35%;
  }

}

@media (max-width: 1480px) {
  :root {
    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 17px;
    --font-size-22: 20px;
    --font-size-24: 22px;
    --font-size-30: 26px;
    --font-size-36: 28px;
    --font-size-40: 35px;
    --font-size-50: 36px;
    --font-size-65: 65px;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
  }

  .challenges-section img {
    width: 462px;
    position: absolute;
    top: 36%;
    left: 35%;
  }

  .challenges-section h4 {
    font-size: var(--font-size-20);
  }

  .solution-section {
    padding-top: 120px;
  }

  .testimonial-section .wave {
    top: -100px;
  }

  footer .wave {
    top: -90px;
  }

  .box-common .content {
    padding-left: 10px;
  }

  .box-common .icon img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .headerbox {
    width: 98%;
    padding-right: 0 !important;
  }

  .navbar-expand-lg {
    height: 80px;
  }

  .social-footer-box::before {
    width: 86%;
    right: 14%;
  }

  .p-4 {
    padding: 1.5rem 0rem !important;
  }

}

@media (max-width: 1366px) {
  .section-title {
    line-height: 40px;
  }

  .about-founder-section {
    padding-top: 100px;
  }

  .challenges-section img {
    width: 490px;
    position: absolute;
    top: 36%;
    left: 30%;
  }

  section.ib-section img {
    width: 90%;
  }

  /* .box-yellow::before {
    height: 170px;
    top: -27px;
}
  .box-common .content {
    height: 80%;
}
.box-common::after {
  height: 128px;
}
.box-cyan::before {
  height: 170px;
  top: 19px;
  left: 2px;
}
.box-blue::before {
  height: 146px;
  top: 18px;
}
.box-pink::before {
  height: 128px;
}
.box-orange::before {
  height: 140px;
}
.box-common .content {
  left: 62px;
} */
  .top-heading {
    padding: 0px 10%;
  }

  .heading {
    padding: 0 20%;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }



  .counter-box .icon img {
    width: 70px;
    margin-right: 10px;
    height: 70px;
  }

  .social-footer-box::before {
    width: 82%;
    right: 18%;
  }

  .contact-box .email, .contact-box .phone {
    padding: 10px 25px;
  }

  .circle-two {
    width: 400px;
    height: 400px;
    border: 2px solid #520f55;
    position: relative;
    border-radius: 50%;
  }

  .circle-arround-two-5 {
    left: 46%;
    top: 92%;
  }

  .circle-two .content.box1 {
    left: 85px;
  }

  .circle-arround-two-1 {
    left: 70% !important;
    top: -5%;
  }

  .circle-two .content.box4 {
    left: 125%;
  }

  .circle-arround-two-3 {
    left: 85%;
    top: 60%;
  }
}

@media (max-width: 1200px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 1024px) {}

@media (max-width: 991.98px) {
  .headerbox {
    position: relative;
  }

  header {
    background: var(--color-cd93e0);
  }

  .navbar {
    justify-content: flex-end;
    height: 125px;
    align-items: center;
}

  .counter-box {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: column;
  }

  .hero-style img {
    margin-top: 0;
  }

}

@media (max-width: 800px) {}

@media (max-width: 767.98px) {}

@media (max-width: 480px) {}

@media (max-width: 375px) {}

@media (max-width: 320px) {}

.swiper-button-next, .swiper-button-prev {
  z-index: 2;
}




.pyp-offer .content-icon {
  display: flex;
  align-items: center;
  height: 100%;
}

.curriculum-section a .content:hover{
  color: var(--color-e4af2f);
}
.curriculum-section a .content p:hover{
  color: var(--color-e4af2f);
}
.popup-box .modal.fade .modal-dialog {
  transform: translateY(10vh);
}

.popup-box .modal.show .modal-dialog {
  transform: translateY(0);
}

.popup-box .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0;
}

.popup-box .modal-content {
  border-radius: 1.3rem;

}
.popup-box .form-div{padding: 2rem;
text-align: center;}

.popup-box .btn-close{
  position: absolute;
  right: -11px;
  padding: 15px;
  border-radius: 100%;
  background-color: white;
  top: -18px;
  opacity: 1;
  filter: drop-shadow(0px 4px 2px #ccc);
}

.popup-box .btn-close:hover{
  background-color: #63018a;
}
.popup-box .btn-close:hover i{
  color: #fff;

}
.inner-section {
    background-color: var(--color-63018a);
    width: 100%;
    z-index: -1;
    position: relative;
}