@charset "UTF-8";
.wrapper {
  padding: 70px 0;
  width: 100%;
}

.page-wrap {
  position: relative;
  top: 80px;
}

.page-head {
  height: 160px;
  padding: 0 80px;
  display: flex;
  align-items: center;
}
.page-head span {
  font-size: 36px;
  font-weight: 700;
  line-height: 43.2px;
  text-align: left;
  color: #221F1F;
}

.page-content {
  padding: 0 80px 20px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-wrap-bg {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-wrap-md {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-head span {
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  color: #333333;
}

.content-head-sm span {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000000;
}

.content-paragraph {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content-paragraph p {
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  color: #000000;
  margin: 0;
}

.content-list ul, .content-list ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.content-list ul li, .content-list ol li {
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  color: #000000;
}
.content-list ul {
  list-style-type: none; /* Remove default bullets */
  position: relative;
}
.content-list ul li {
  position: relative;
}
.content-list ul li::before {
  content: "•"; /* Bullet point symbol */
  font-size: 18px; /* Adjust the size of the bullet point */
  position: absolute;
  left: -20px; /* Position the bullet point to the left */
  top: 0;
  line-height: 26px; /* Align the bullet point with the text */
}
.content-list ol li {
  padding-left: 2px;
}

@media (min-width: 0px) and (max-width: 968px) {
  .page-head {
    padding: 0 16px;
    height: 94px;
  }
  .page-head span {
    font-size: 22px;
    line-height: 26.4px;
  }
  .page-content {
    width: 100%;
    padding: 20px 16px 24px;
  }
  .content-head span {
    font-size: 16px;
  }
  .content-paragraph p {
    font-size: 13px;
  }
  .content-list ul li, .content-list ol li {
    font-size: 13px;
  }
  .content-list ol {
    padding-left: 16px;
  }
  .content-list ol li {
    padding-left: 0px;
  }
  .content-list ul {
    padding-left: 20px;
  }
  .content-list ul li::before {
    left: -15px;
  }
}
.container-fluid {
  --bs-gutter-x: 0rem;
}

.navbar-nav {
  width: 100%;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}

.navbar {
  --bs-navbar-padding-y: 0;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.close-icon {
  width: 30px;
  height: 30px;
  padding: 3px;
}

.offcanvas-backdrop {
  background: none;
}

.navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
}

.navbar-nav .nav-link.active {
  color: #FB7009;
}

.nav-item a {
  text-decoration: none;
  font-size: 16px;
}

.navbar-background {
  background-color: white;
  z-index: 99;
}

.container.card-wrapper {
  max-width: 85%;
}

.container.get-in-touch-container {
  max-width: 82%;
}

.container.info-wrapper, .container-lg.info-wrapper, .container-md.info-wrapper, .container-sm.info-wrapper, .container-xl.info-wrapper, .container-xxl.info-wrapper {
  max-width: 85%;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  margin: 0 16px;
  position: absolute;
  top: 60px;
  background: #F0F4FF;
}

.dropdown-item.active {
  color: #FB7009;
  background-color: #F0F4FF;
}

.dropdown-menu {
  --bs-dropdown-link-active-bg:none;
  --bs-dropdown-link-active-color: #FB7009;
}

.dropdown-item.focus {
  background-color: #F0F4FF;
}

@media (min-width: 481px) and (max-width: 991px) {
  .navbar-nav {
    padding: 0;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 264px;
    border: none;
    top: 38px;
  }
  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 20px;
    height: 48px;
    margin: 0;
  }
  .carousel-control-next, .carousel-control-prev {
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 20% 0 0 0;
  }
  .carousel-item {
    z-index: 2;
  }
}
@media (min-width: 0px) and (max-width: 480px) {
  .container.get-in-touch-container {
    max-width: 100%;
  }
  .carousel-control-next, .carousel-control-prev {
    display: flex;
    align-items: end;
    justify-content: center;
    height: 250px;
  }
  .redeem-cards-mobile .carousel-control-next, .redeem-cards-mobile .carousel-control-prev {
    display: flex;
    align-items: flex-start;
    top: 36px;
    z-index: 1;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
    padding: 0 2%;
  }
  .navbar-section .navbar .navbar-nav {
    gap: 10px;
    align-items: center;
  }
  .navbar-section .navbar .nav-item .nav-link {
    font-size: 11px;
  }
  .navbar-section .navbar .nav-item .demo-btn {
    height: 30px;
  }
  .navbar-section .navbar .nav-item .conatct-btn {
    height: 30px;
    font-size: 10px;
  }
  .navbar-section .navbar .dropdown .dropdown-menu .dropdown-item {
    padding-top: 12px;
    font-size: 10px;
  }
  .navbar-section .navbar .dropdown .nav-link {
    font-size: 11px;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .nav-item a {
    font-size: 14px;
  }
}
.application-home-section {
  background-image: url(../asset/application-page/application-bg-img1.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 1020px;
  display: flex;
  justify-content: center;
}
.application-home-section .application-content {
  width: 50%;
  padding-top: 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.application-home-section .application-content .application-heading-mobile {
  display: none;
}
.application-home-section .application-content .application-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.application-home-section .application-content .application-heading span {
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  text-align: left;
  color: #000000;
}
.application-home-section .application-content p {
  width: 70%;
  font-size: 18px;
  font-weight: 400;
  line-height: 33px;
  text-align: left;
  color: #000000;
}
.application-home-section .application-content .apps-img {
  display: flex;
  gap: 16px;
}
.application-home-section .application-content .apps-img img {
  cursor: pointer;
}
.application-home-section .application-image {
  padding-top: 100px;
  display: flex;
  align-items: self-start;
  justify-content: center;
}

.cards-section {
  margin-top: 9px;
  padding-top: 28px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.cards-section .header-part span {
  font-size: 32px;
  font-weight: 600;
  line-height: 65px;
  text-align: left;
  color: #221F1F;
}
.cards-section .cards-part {
  display: flex;
  gap: 39px;
}

.gamification-section {
  display: flex;
  padding: 0 10%;
  justify-content: space-between;
  background-color: #E9F9FE;
  height: 720px;
  margin-bottom: 45px;
}
.gamification-section .gamification-left {
  width: 50%;
  display: flex;
  align-items: center;
}
.gamification-section .gamification-left .game-head span {
  font-size: 32px;
  font-weight: 600;
  line-height: 65px;
  text-align: left;
  color: #221F1F;
}
.gamification-section .gamification-left .game-head p {
  font-size: 18px;
  font-weight: 300;
  line-height: 31.39px;
  text-align: left;
  color: #000000;
  width: 70%;
}
.gamification-section .gamification-right {
  width: 50%;
  position: relative;
  display: flex;
}
.gamification-section .gamification-right .left-stars, .gamification-section .gamification-right .right-stars {
  position: absolute;
}
.gamification-section .gamification-right .left-stars .small-star, .gamification-section .gamification-right .right-stars .small-star {
  position: relative;
  top: 12px;
  left: -5px;
}
.gamification-section .gamification-right .left-stars {
  left: -15%;
  top: 12%;
}
.gamification-section .gamification-right .right-stars {
  right: -5%;
  bottom: 8%;
}
.gamification-section .gamification-right .card-one, .gamification-section .gamification-right .card-two, .gamification-section .gamification-right .card-three, .gamification-section .gamification-right .card-four {
  position: absolute;
  display: flex;
  flex-direction: column;
}
.gamification-section .gamification-right .card-one span, .gamification-section .gamification-right .card-two span, .gamification-section .gamification-right .card-three span, .gamification-section .gamification-right .card-four span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  color: #000000;
  font-size: 16px;
  line-height: 22.42px;
  font-weight: 500;
}
.gamification-section .gamification-right .card-one {
  top: 8%;
  rotate: -6deg;
}
.gamification-section .gamification-right .card-one span {
  bottom: -10px;
  left: 21%;
  rotate: -2deg;
}
.gamification-section .gamification-right .card-two {
  top: 10%;
  right: 0;
  rotate: 6deg;
}
.gamification-section .gamification-right .card-two span {
  bottom: -10px;
  right: 15%;
  rotate: 10deg;
  width: 208px;
}
.gamification-section .gamification-right .card-three {
  top: 48%;
  rotate: -6deg;
}
.gamification-section .gamification-right .card-three span {
  left: 15%;
  rotate: -7deg;
  width: 224px;
}
.gamification-section .gamification-right .card-four {
  top: 50%;
  right: 0;
  rotate: 6deg;
}
.gamification-section .gamification-right .card-four span {
  left: 25%;
  rotate: 0deg;
}

.features-wrap {
  height: 564px;
  overflow-y: scroll;
}

.card {
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 20px;
}

.features-wrap::-webkit-scrollbar {
  width: 0;
}

.features-section {
  padding: 0 10%;
}
.features-section .features-title {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 27px;
}
.features-section .features-title span {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  text-align: left;
  color: #221F1F;
}
.features-section .features-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  gap: 80px;
  background-color: #FAFAFD;
}
.features-section .features-body .text-part {
  width: 50%;
  padding-left: 56px;
}
.features-section .features-body .text-part .text-head span {
  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
  text-align: left;
  color: #26253B;
  margin-bottom: 10px;
}
.features-section .features-body .text-part .text-head .blue-text span {
  font-size: 18px;
  font-weight: 600;
  line-height: 24.5px;
  letter-spacing: 2px;
  text-align: left;
  color: #104CD2;
  margin-bottom: 4px;
}
.features-section .features-body .text-part .text-head p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #26253B;
}
.features-section .features-body .img-part {
  width: 50%;
  display: flex;
  text-align: end;
  justify-content: flex-end;
  border-radius: 0 20px 20px 0;
}
.features-section .features-body .img-part img {
  border-radius: 0 20px 20px 0;
}

.more-features-section {
  padding-top: 24px;
}
.more-features-section .more-features-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  color: #221F1F;
  text-align: center;
  margin-bottom: 48px;
}
.more-features-section .more-features-img {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  justify-content: center;
}
.more-features-section .more-features-img .orange-stars {
  position: absolute;
  top: -13%;
  left: 22%;
}
.more-features-section .more-features-img .orange-stars .small-star {
  position: relative;
  top: 12px;
  left: -15px;
}
.more-features-section .more-features-img .horizontal-img {
  display: block;
}
.more-features-section .more-features-img .vertical-img {
  display: none;
}

.admin-console-section {
  padding: 0 10%;
  background-color: #F7F9F9;
}
.admin-console-section .admin-console-title {
  padding-top: 48px;
  padding-bottom: 51px;
  text-align: center;
}
.admin-console-section .admin-console-title span {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  text-align: left;
  color: #221F1F;
}
.admin-console-section .admin-console-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 80px;
}
.admin-console-section .admin-console-body .chart-row {
  display: flex;
  gap: 50px;
}
.admin-console-section .admin-console-body .admin-consol-chart .chart-icon {
  margin-bottom: 12px;
}
.admin-console-section .admin-console-body .admin-consol-chart .chart-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-console-section .admin-console-body .admin-consol-chart .chart-content span {
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
  text-align: left;
  color: #272727;
}
.admin-console-section .admin-console-body .admin-consol-chart .chart-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  color: #000000;
  width: 80%;
}

.video-fluid {
  max-width: 100%;
  height: auto;
}

.bullet-board-mobile {
  display: none;
}

.redeem-cards-mobile {
  display: none;
}

.home-wrapper-mobile {
  display: none;
}

.card-one, .card-two, .card-three, .card-four {
  transform: rotate(0deg); /* Initial rotation */
}

.card-one.rotate, .card-three.rotate {
  transform: rotate(15deg); /* Additional rotation */
}

.card-two.rotate, .card-four.rotate {
  transform: rotate(-15deg);
}

@media (min-width: 320px) and (max-width: 767px) {
  .application-home-section {
    height: unset;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(0deg, #F7F9F9, #F7F9F9), linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(180deg, rgba(237, 242, 255, 0) 0%, #EDF2FF 100%);
  }
  .application-home-section .application-content {
    background-image: url(../asset/application-page/application-bg-mb.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 61px;
    width: 100%;
    margin-top: 80px;
    padding: 40px 24px 0;
    gap: 12px;
  }
  .application-home-section .application-content p {
    width: 100%;
  }
  .application-home-section .application-content .application-heading {
    display: none;
  }
  .application-home-section .application-content .application-heading-mobile {
    display: flex;
    align-items: flex-start;
  }
  .application-home-section .application-content .application-heading-mobile span {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
    text-align: left;
    color: #000000;
  }
  .application-home-section .application-content .application-heading-mobile p {
    margin-bottom: 12px;
  }
  .application-home-section .application-content .application-heading-mobile img {
    height: 33px;
  }
  .application-home-section .application-content .apps-img img {
    width: 100px;
  }
  .application-home-section .application-image {
    padding-top: 40px;
  }
  .cards-section {
    margin-top: 0;
    padding: 34px 20px;
    gap: 22px;
  }
  .cards-section .header-part span {
    font-size: 22px;
    line-height: 36px;
  }
  .cards-section .cards-part {
    flex-direction: column;
  }
  .gamification-section {
    flex-direction: column;
    padding: 34px 16px;
    height: unset;
    overflow: hidden;
    margin-bottom: 0;
  }
  .gamification-section .gamification-left {
    width: 100%;
  }
  .gamification-section .gamification-left .game-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .gamification-section .gamification-left .game-head span {
    font-size: 22px;
    line-height: 36px;
  }
  .gamification-section .gamification-left .game-head p {
    font-size: 14px;
    line-height: 24px;
    width: 100%;
  }
  .gamification-section .gamification-right {
    width: 100%;
    display: block;
    position: relative;
  }
  .gamification-section .gamification-right .card-one, .gamification-section .gamification-right .card-two, .gamification-section .gamification-right .card-three, .gamification-section .gamification-right .card-four {
    position: unset;
    margin-bottom: 40px;
    align-items: center;
    margin-top: 20px;
  }
  .gamification-section .gamification-right .card-one img, .gamification-section .gamification-right .card-two img, .gamification-section .gamification-right .card-three img, .gamification-section .gamification-right .card-four img {
    width: 224.7px;
    height: 239.86px;
  }
  .gamification-section .gamification-right .card-one span, .gamification-section .gamification-right .card-two span, .gamification-section .gamification-right .card-three span, .gamification-section .gamification-right .card-four span {
    font-size: 15.56px;
  }
  .gamification-section .gamification-right .card-one span {
    left: 28%;
    rotate: -4deg;
  }
  .gamification-section .gamification-right .card-two span {
    right: 25%;
    rotate: 6deg;
  }
  .gamification-section .gamification-right .card-three span {
    left: 26%;
  }
  .gamification-section .gamification-right .card-four span {
    left: 32%;
  }
  .gamification-section .gamification-right .left-stars {
    left: 5px;
    top: 0;
  }
  .gamification-section .gamification-right .right-stars {
    right: 0;
    bottom: 2%;
  }
  .features-section {
    padding: 34px 16px;
  }
  .features-section .features-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
  }
  .features-section .features-title span {
    line-height: 36px;
    font-size: 22px;
  }
  .features-section .features-body {
    flex-direction: column;
    margin-bottom: 0;
    border-radius: 0 0 20px 20px;
  }
  .features-section .features-body .text-part {
    width: 100%;
    padding: 22px 12px 0;
  }
  .features-section .features-body .text-part .text-head .blue-text {
    margin-bottom: 10px;
  }
  .features-section .features-body .text-part .text-head span {
    font-size: 22px;
    line-height: 32px;
  }
  .features-section .features-body .text-part .text-head p {
    font-size: 14px;
    line-height: 24px;
  }
  .features-section .features-body .img-part {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .features-section .features-body .img-part img {
    border-radius: 0 0 20px 20px;
  }
  .more-features-section {
    padding-top: 0;
  }
  .more-features-section .more-features-title {
    padding: 34px 0 24px;
    margin-bottom: 0;
    line-height: 36px;
    font-size: 22px;
  }
  .more-features-section .more-features-img {
    margin-bottom: 0;
  }
  .more-features-section .more-features-img .orange-stars {
    display: none;
  }
  .more-features-section .more-features-img .horizontal-img {
    display: none;
  }
  .more-features-section .more-features-img .vertical-img {
    display: block;
  }
  .admin-console-section {
    padding: 0 16px;
  }
  .admin-console-section .admin-console-title {
    padding: 34px 16px;
  }
  .admin-console-section .admin-console-title span {
    font-size: 22px;
    line-height: 36px;
  }
  .admin-console-section .admin-console-body {
    gap: 34px;
    padding-bottom: 34px;
  }
  .admin-console-section .admin-console-body .chart-row {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }
  .admin-console-section .admin-console-body .admin-consol-chart .chart-content {
    gap: 12px;
  }
  .admin-console-section .admin-console-body .admin-consol-chart .chart-content p {
    width: 100%;
    margin-bottom: 0;
    line-height: 24px;
  }
}
@media (min-width: 0px) and (max-width: 480px) {
  .home-wrapper {
    display: none;
  }
  .home-wrapper-mobile {
    display: block;
    width: 100%;
  }
  .home-wrapper-mobile img {
    height: 788px;
    width: 100%;
  }
  .info-section .info-title h1 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    text-align: start;
    width: 50%;
    padding-left: 12px;
    padding-top: 5%;
  }
  .info-section .info-points ul {
    padding: 0 30px;
  }
  .info-section .info-points ul li {
    color: #221F1F;
    font-size: 14px;
    font-weight: 400;
  }
  .media-section .media-wrapper {
    margin: 0 5%;
    text-align: center;
  }
  .media-section .media-wrapper .media-title h1 {
    text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
  }
  .media-section .media-wrapper .media-title p {
    color: #4F4F4F;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin: 0 2%;
  }
  .features-section .cards .card {
    border-radius: 1rem;
    height: 315px;
    width: 263px;
    display: flex;
    justify-content: center;
    padding: 0 5%;
  }
  .features-section .cards .card .card-title h3 {
    padding-top: 5%;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
  }
  .features-section .cards .card .card-msg p {
    padding-top: 10px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
  }
  .features-section .cards .card .card-img img {
    height: 100px;
    width: 100px;
  }
  .bullet-board-mobile {
    display: block;
  }
  .bullet-board-mobile img {
    width: 100%;
    height: 800px;
  }
  .poster-section {
    padding: 50px;
  }
  .poster-section .poster-img {
    margin-bottom: 20px;
  }
  .poster-section .poster-img img {
    height: 60px;
    width: 60px;
  }
  .poster-section .poster-content h3 {
    font-size: 24px;
  }
  .poster-section .poster-content p {
    font-size: 14px;
  }
  .admin-consol-chart .chart-icon {
    margin-bottom: 8px;
  }
  .admin-consol-chart .chart-icon img {
    height: 48px;
    width: 48px;
  }
  .media-section .media-img {
    display: flex;
    justify-content: center;
  }
  .media-section .media-img img {
    width: 202px;
    height: 150px;
  }
  .amount-img {
    display: none;
  }
  .redeem-section {
    height: 247px;
  }
  .redeem-section .carousel-item img {
    height: 160px !important;
  }
}
@media (min-width: 480px) and (max-width: 1024px) {
  .home-section .home-wrapper .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
  }
  .home-section .home-wrapper .left-mobile {
    display: none;
  }
  .home-section .home-wrapper .right-mobile {
    position: absolute;
    right: 0;
    top: -14%;
  }
}
@media (min-width: 0px) and (max-width: 991px) {
  .bullet-board-section {
    display: none;
  }
  .redeem-cards {
    display: none !important;
  }
  .redeem-cards-mobile {
    display: block;
  }
}
.head-section h1 {
  color: #221F1F;
  font-size: 56px;
  font-weight: 700;
}
.head-section p {
  width: 85%;
  color: #221F1F;
  font-size: 18px;
  font-weight: 400;
}

.color-board-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.color-board-content h1 {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
}
.color-board-content p {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  width: 50%;
}
.color-board-content .indoor-team-para p {
  width: 52%;
}
.color-board-content .phygital-team-para p {
  width: 56%;
}
.color-board-content .educational-inst-para p, .color-board-content .corporate-entertain-para p, .color-board-content .themed-team-para p, .color-board-content .csr-driven-para p {
  width: 60%;
}
.color-board-content .inovate-team-para p {
  width: 60%;
}
.color-board-content .konfluence-exclu-para p {
  width: 65%;
}

.events-wrapper .event-chart .chart-icon {
  cursor: pointer;
  padding-bottom: 18px;
}
.events-wrapper .event-chart .chart-title {
  cursor: pointer;
}
.events-wrapper .event-chart .chart-title h4 {
  color: #221F1F;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
}
.events-wrapper .event-chart .chart-content {
  cursor: pointer;
}
.events-wrapper .event-chart .chart-content p {
  color: #221F1F;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 24px;
}

.op-absolute-styles {
  position: relative;
}
.op-absolute-styles img {
  position: absolute;
  right: 0;
  bottom: -33px;
  z-index: -1;
}

.outcome-images {
  position: relative;
}
.outcome-images img {
  position: absolute;
  right: 11px;
  bottom: -60px;
  z-index: -1;
}

.corporate-images {
  position: relative;
}
.corporate-images img {
  position: absolute;
  right: 0;
  bottom: -156px;
  z-index: -1;
}

.educational-images {
  position: relative;
}
.educational-images img {
  position: absolute;
  bottom: -30px;
  right: 25%;
  z-index: -1;
}

.outdoor-images {
  position: relative;
}
.outdoor-images img {
  position: absolute;
  right: 50px;
  bottom: -50px;
  z-index: -1;
}

.indoor-images {
  position: relative;
}
.indoor-images img {
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: -1;
}

.physical-images {
  position: relative;
}
.physical-images img {
  position: absolute;
  bottom: -95px;
  right: 5%;
  z-index: -1;
}

.corporate-entertainment-images {
  position: relative;
}
.corporate-entertainment-images img {
  position: absolute;
  right: 0;
  bottom: -47px;
  z-index: -1;
}

.themed-images {
  position: relative;
}
.themed-images img {
  position: absolute;
  right: 0;
  bottom: -140px;
  z-index: -1;
}

@media (min-width: 0px) and (max-width: 767px) {
  .head-section {
    margin: 0 1rem;
  }
  .head-section h1 {
    color: #221F1F;
    font-size: 24px;
    font-weight: 700;
  }
  .head-section p {
    width: 100%;
    color: #221F1F;
    font-size: 13px;
    font-weight: 400;
  }
  .color-board-wrapper {
    height: 245px;
    display: flex;
    align-items: center;
  }
  .color-board-wrapper .color-board-content {
    margin: 0 1rem;
  }
  .color-board-wrapper .color-board-content h1 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
  }
  .color-board-wrapper .color-board-content p {
    color: #FFF;
    font-size: 13px;
    font-weight: 400;
    width: 100%;
  }
  .events-wrapper {
    margin: 0 1rem;
  }
  .events-wrapper .event-chart .chart-title h4 {
    color: #221F1F;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .events-wrapper .event-chart .chart-content p {
    color: #221F1F;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 24px;
  }
  .op-absolute-styles {
    position: relative;
  }
  .op-absolute-styles img {
    position: absolute;
    right: 0;
    bottom: -10px;
    z-index: -1;
  }
  .corporate-images {
    position: relative;
  }
  .corporate-images img {
    position: absolute;
    right: 0;
    bottom: -40px;
    z-index: -1;
  }
  .educational-images {
    position: relative;
  }
  .educational-images img {
    position: absolute;
    bottom: -20px;
    right: 20px;
    z-index: -1;
    height: 100px;
  }
  .outdoor-images img {
    position: absolute;
    left: 0;
    bottom: -20px;
    z-index: -1;
  }
  .indoor-images img {
    position: absolute;
    right: 0;
    bottom: -76px;
    z-index: -1;
  }
  .physical-images img {
    position: absolute;
    bottom: -52px;
    right: 0;
    z-index: -1;
    width: 60%;
  }
  .corporate-entertainment-images img {
    position: absolute;
    right: 0;
    bottom: -17px;
    z-index: -1;
  }
  .themed-images img {
    position: absolute;
    right: 0;
    bottom: -40px;
    z-index: -1;
  }
}
@media (min-width: 380px) and (max-width: 440px) {
  .features-wrap {
    height: 700px;
  }
}
@media (min-width: 330px) and (max-width: 379px) {
  .features-wrap {
    height: 731px;
  }
}
@media (min-width: 300px) and (max-width: 329px) {
  .features-wrap {
    height: 702px;
  }
  .application-home-section {
    height: unset;
  }
  .cards-section .header-part span {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .corporate-images {
    position: relative;
  }
  .corporate-images img {
    position: absolute;
    right: 0;
    bottom: -102px;
    z-index: -1;
  }
  .outdoor-images img {
    position: absolute;
    left: 0;
    bottom: -50px;
    z-index: -1;
  }
  .features-wrap {
    height: 294px;
  }
}
@media (min-width: 968px) and (max-width: 1024px) {
  .features-wrap {
    height: 391px;
  }
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .head-section p {
    width: 87%;
  }
  .color-board-content p {
    width: 50%;
  }
  .color-board-content .educational-inst-para p, .color-board-content .konfluence-exclu-para p, .color-board-content .inovate-team-para p {
    width: 65%;
  }
  .color-board-content .indoor-team-para p {
    width: 52%;
  }
  .color-board-content .phygital-team-para p {
    width: 60%;
  }
  .color-board-content .corporate-entertain-para p, .color-board-content .themed-team-para p, .color-board-content .csr-driven-para p {
    width: 62%;
  }
  .application-home-section {
    height: unset;
    padding-bottom: 120px;
  }
  .application-home-section .application-content p {
    width: 80%;
  }
  .features-wrap {
    height: 542px;
    overflow-y: scroll;
  }
  .features-section .features-body {
    gap: 80px;
  }
}
@media (min-width: 720px) and (max-width: 1024px) {
  .application-home-section {
    background-size: cover;
    height: auto;
    align-items: center;
    padding: 10% 0;
  }
  .application-home-section .application-content {
    gap: 12px;
    padding-top: 0;
  }
  .application-home-section .application-content .application-heading span {
    font-size: 22px;
    line-height: 28px;
  }
  .application-home-section .application-content .application-heading span img {
    width: 100px;
  }
  .application-home-section .application-content p {
    font-size: 14px;
    line-height: 23px;
  }
  .application-home-section .application-image {
    padding-top: 0;
  }
  .application-home-section .application-image img {
    width: 350px;
  }
  .cards-section {
    gap: 18px;
    padding-bottom: 32px;
    padding-top: 18px;
  }
  .cards-section .header-part span {
    font-size: 24px;
    line-height: 32px;
  }
  .cards-section .cards-part {
    overflow-x: scroll;
    gap: 19px;
  }
  .cards-section .cards-part img {
    width: 220px;
  }
  .gamification-section {
    height: 410px;
    padding: 0 6%;
  }
  .gamification-section .gamification-left .game-head span {
    font-size: 24px;
    line-height: 32px;
  }
  .gamification-section .gamification-left .game-head p {
    font-size: 12px;
    width: 86%;
    line-height: 22px;
  }
  .gamification-section .gamification-right .left-stars {
    top: 2%;
  }
  .gamification-section .gamification-right .card-one img, .gamification-section .gamification-right .card-two img, .gamification-section .gamification-right .card-three img, .gamification-section .gamification-right .card-four img {
    width: 150px;
  }
  .gamification-section .gamification-right .card-one span {
    font-size: 10px;
  }
  .gamification-section .gamification-right .card-two span {
    font-size: 10px;
    right: -20%;
  }
  .gamification-section .gamification-right .card-three span {
    font-size: 10px;
    left: -13%;
    bottom: -4px;
  }
  .gamification-section .gamification-right .card-four span {
    font-size: 10px;
    bottom: -5px;
  }
  .features-section {
    padding: 0 5%;
  }
  .features-section .features-title span {
    font-size: 24px;
    line-height: 32px;
  }
  .features-section .features-body .text-part {
    padding-left: 20px;
  }
  .features-section .features-body .text-part .blue-text span {
    font-size: 14px !important;
  }
  .features-section .features-body .text-part .text-head span {
    font-size: 18px;
    line-height: 32px;
  }
  .features-section .features-body .text-part .text-head p {
    font-size: 13px;
    line-height: 20px;
  }
  .features-section .features-body .img-part {
    width: 45% !important;
  }
  .more-features-section .more-features-title span {
    font-size: 24px;
    line-height: 32px;
  }
  .more-features-section .more-features-img .orange-stars {
    top: -26%;
    left: 6%;
  }
  .admin-console-section {
    padding: 0 5%;
  }
  .admin-console-section .admin-console-title {
    padding-top: 24px;
    padding-bottom: 25px;
  }
  .admin-console-section .admin-console-title span {
    font-size: 24px;
    font-weight: 32px;
  }
  .admin-console-section .admin-console-body .chart-row {
    gap: 15px;
  }
  .admin-console-section .admin-console-body .chart-row .admin-consol-chart {
    gap: 5px;
  }
  .admin-console-section .admin-console-body .chart-row .admin-consol-chart .chart-icon {
    margin-bottom: 6px;
  }
  .admin-console-section .admin-console-body .chart-row .admin-consol-chart .chart-icon img {
    width: 30px;
  }
  .admin-console-section .admin-console-body .chart-row .admin-consol-chart .chart-content span {
    font-size: 14px;
    line-height: 20px;
  }
  .admin-console-section .admin-console-body .chart-row .admin-consol-chart .chart-content p {
    font-size: 11px;
    line-height: 18px;
  }
}/*# sourceMappingURL=app-page.css.map */