@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;
  }
}
.row {
  --bs-gutter-x: 0rem;
}

.green-bg {
  background: #75B43C;
}

.rose-bg {
  background: #EF3073;
}

.orange-bg {
  background: #FB7009;
}

.blue-bg {
  background: #104CD2;
}

.black-bg {
  background: #221F1F;
}

.orange-bg-img {
  background-image: url(../asset/orange-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.green-bg-img {
  background-image: url(../asset/green-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.black-bg-img {
  background-image: url(../asset/black-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.rose-bg-img {
  background-image: url(../asset/rose-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.blue-bg-img {
  background-image: url(../asset/blue-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.navbar-section {
  background-color: #F0F4FF;
  position: fixed;
  z-index: 99;
  width: 100%;
}
.navbar-section .conatct-btn {
  border-radius: 5px;
  background: #FF9750;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.5px;
  padding: 7.5px 12px;
  height: 34px;
  border: 0;
  display: flex;
  align-items: center;
}
.navbar-section .demo-btn {
  cursor: pointer;
  border: 1px solid #BDBDBD;
  font-size: 16px;
  font-weight: 400;
  color: #221F1F;
  height: 38px;
  padding: 10px 12px 10px 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.navbar-section a {
  text-decoration: none;
}

.features-home-section {
  position: relative;
  top: 65px;
}
.features-home-section .features-home-content .features-content-side .features-content-body h4 {
  color: #FFF;
  font-size: 28px;
  font-weight: 400;
}
.features-home-section .features-home-content .features-content-side .features-content-body p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}

.features-home-content .features-content-side .features-content-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.features-home-content .features-content-side .features-content-body h4 {
  color: #fff;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
}
.features-home-content .features-content-side .features-content-body p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.features-video-side video {
  width: 100%;
  height: 101.1%;
}
.features-video-side img {
  height: 100%;
}

.footer-section {
  background: #221f1f;
  color: #fff;
}

#slider {
  position: relative;
  width: 50%;
  height: 31vw;
  margin: 20px auto;
  font-family: "Helvetica Neue", sans-serif;
  perspective: 1400px;
  transform-style: preserve-3d;
}

input[type=radio] {
  position: relative;
  top: 108%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: 0 15px 0 0;
  opacity: 0.4;
  transform: translateX(-83px);
  cursor: pointer;
  display: none;
}

input[type=radio]:nth-child(5) {
  margin-right: 0px;
}

input[type=radio]:checked {
  opacity: 1;
}

#slider label {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: white;
  font-size: 70px;
  font-weight: bold;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 400ms ease;
}

/*  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *style for 3 slides * * * * * * * * * * * * * * * * * * * * * * * * */
#slide1, #slide2, #slide3 {
  background-repeat: no-repeat;
  background-size: cover;
}

.applicationSlideOne {
  background-image: url("../asset/a-img1.webp");
}

.applicationSlideTwo {
  background-image: url("../asset/a-img2.webp");
}

.applicationSlideThree {
  background-image: url("../asset/a-img3.webp");
}

.csrSlideOne {
  background-image: url("../asset/csr-corousel-img1.webp");
}

.csrSlideTwo {
  background-image: url("../asset/csr-corousel-img2.webp");
}

.csrSlideThree {
  background-image: url("../asset/csr-corousel-img3.webp");
}

.employeeEngagementSlideOne {
  background-image: url("../asset/ee-img1.webp");
}

.employeeEngagementSlideTwo {
  background-image: url("../asset/ee-img2.webp");
}

.employeeEngagementSlideThree {
  background-image: url("../asset/ee-img3.webp");
}

.exoticLocationTrainingSlideOne {
  background-image: url("../asset/elt-img1.webp");
}

.exoticLocationTrainingSlideTwo {
  background-image: url("../asset/elt-img2.webp");
}

.exoticLocationTrainingSlideThree {
  background-image: url("../asset/elt-img3.webp");
}

.familyEngagementSlideOne {
  background-image: url("../asset/fe-img1.webp");
}

.familyEngagementSlideTwo {
  background-image: url("../asset/fe-img2.webp");
}

.familyEngagementSlideThree {
  background-image: url("../asset/fe-img3.webp");
}

.konfluenceHealthSlideOne {
  background-image: url("../asset/kh-img1.webp");
}

.konfluenceHealthSlideTwo {
  background-image: url("../asset/kh-img2.webp");
}

.konfluenceHealthSlideThree {
  background-image: url("../asset/kh-img3.webp");
}

.merchandiseSlideOne {
  background-image: url("../asset/m-img1.webp");
}

.merchandiseSlideTwo {
  background-image: url("../asset/m-img2.webp");
}

.merchandiseSlideThree {
  background-image: url("../asset/m-img3.webp");
}

.talentScoutSlideOne {
  background-image: url("../asset/ts-img1.webp");
}

.talentScoutSlideTwo {
  background-image: url("../asset/ts-img2.webp");
}

.talentScoutSlideThree {
  background-image: url("../asset/ts-img3.webp");
}

.virtualEngagementSlideOne {
  background-image: url("../asset/ve-img1.webp");
}

.virtualEngagementSlideTwo {
  background-image: url("../asset/ve-img2.webp");
}

.virtualEngagementSlideThree {
  background-image: url("../asset/ve-img3.webp");
}

.audienceEngagementSlideOne {
  background-image: url("../asset/ae-img1.webp");
}

.audienceEngagementSlideTwo {
  background-image: url("../asset/ae-img2.webp");
}

.audienceEngagementSlideThree {
  background-image: url("../asset/ae-img3.webp");
}

.trainingSeminarsSlideOne {
  background-image: url("../asset/tsw-img1.webp");
}

.trainingSeminarsSlideTwo {
  background-image: url("../asset/tsw-img2.webp");
}

.trainingSeminarsSlideThree {
  background-image: url("../asset/tsw-img3.webp");
}

/* Slider Functionality */
/* Active Slide */
#s1:checked ~ #slide1,
#s2:checked ~ #slide2,
#s3:checked ~ #slide3 {
  transform: translate3d(0%, 0, 50px);
  border-radius: 20px;
  height: 90%;
}

/* Next Slide */
#s1:checked ~ #slide2,
#s2:checked ~ #slide3,
#s3:checked ~ #slide1 {
  transform: translate3d(120%, 0, -230px);
  border-radius: 20px;
  height: 80%;
}

/* Previous Slide */
#s1:checked ~ #slide3,
#s2:checked ~ #slide1,
#s3:checked ~ #slide2 {
  transform: translate3d(-120%, 0, -230px);
  border-radius: 20px;
  height: 80%;
}

.slider-wrapper {
  overflow-x: hidden;
}

/* # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #style for 5 slides # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # */
/* Slider Functionality */
/* Active Slide */
/* Next Slide */
/* Next to Next Slide */
/* Previous to Previous Slide */
/* Previous Slide */
.back-arrow {
  border: 0px solid transparent;
  background-color: transparent;
}

.footer-text {
  font-size: 14px;
  color: #FFF;
  font-weight: 400;
}

.curousel-btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.curousel-btn .left-arrow {
  position: relative;
  z-index: 1;
  top: 300px;
  left: 3%;
  width: 50%;
}
.curousel-btn .left-arrow img {
  cursor: pointer;
  width: 42px;
  height: 42px;
}
.curousel-btn .right-arrow {
  text-align: end;
  position: relative;
  z-index: 1;
  top: 300px;
  right: 3%;
  width: 50%;
}
.curousel-btn .right-arrow img {
  cursor: pointer;
  width: 42px;
  height: 42px;
}

.card-section {
  cursor: pointer;
}
.card-section img {
  height: 100px;
  width: 100px;
}

@media (min-width: 0px) and (max-width: 480px) {
  .card-section img {
    height: 80px;
    width: 80px;
  }
  .slider-wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
    height: 235px;
    margin-bottom: 35px;
  }
  .vr-eng {
    height: 280px;
  }
  .features-home-content .features-content-side .features-content-body h4 {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
  }
  .features-home-content .features-content-side .features-content-body p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
  }
  .curousel-btn .left-arrow {
    cursor: pointer;
    position: relative;
    z-index: 1;
    top: 103px;
    left: 0;
  }
  .curousel-btn .right-arrow {
    cursor: pointer;
    text-align: end;
    position: relative;
    z-index: 1;
    top: 103px;
    right: 0;
  }
  .curousel-btn .left-arrow img {
    width: 24px;
  }
  .curousel-btn .right-arrow img {
    width: 24px;
  }
  #s1:checked ~ #slide3, #s2:checked ~ #slide1, #s3:checked ~ #slide2 {
    transform: translate3d(-122%, 0, 350px);
    border-radius: 10px;
  }
  #s1:checked ~ #slide2, #s2:checked ~ #slide3, #s3:checked ~ #slide1 {
    transform: translate3d(122%, 0, 350px);
    border-radius: 10px;
  }
  #s1:checked ~ #slide1, #s2:checked ~ #slide2, #s3:checked ~ #slide3 {
    transform: translate3d(0%, 0, 580px);
    border-radius: 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .curousel-btn .left-arrow {
    cursor: pointer;
    position: relative;
    z-index: 1;
    top: 205px;
    left: 0;
  }
  .curousel-btn .right-arrow {
    cursor: pointer;
    text-align: end;
    position: relative;
    z-index: 1;
    top: 205px;
    right: 0;
  }
  .curousel-btn .left-arrow img {
    width: 40px;
  }
  .curousel-btn .right-arrow img {
    width: 40px;
  }
}
@media (min-width: 767px) and (max-width: 1200px) {
  .curousel-btn .left-arrow {
    position: relative;
    z-index: 1;
    top: 262px;
    left: 0;
  }
  .curousel-btn .right-arrow {
    text-align: end;
    position: relative;
    z-index: 1;
    top: 262px;
    right: 0;
  }
  .curousel-btn .left-arrow img {
    width: 70px;
    height: 70px;
    padding-left: 2%;
  }
  .curousel-btn .right-arrow img {
    width: 70px;
    height: 70px;
    padding-right: 2%;
  }
}
@media (min-width: 0px) and (max-width: 991px) {
  .footer-text {
    font-size: 11px;
    color: #FFF;
    font-weight: 400;
  }
}/*# sourceMappingURL=styleAnimation.css.map */