* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu Sans", sans-serif;
}

/* navbar style */

.container-fluid {
  background-color: #FFFFFF;
}


.nav {
  height: 5rem;
  width: 100vw;
  background-color: #FFFFFF;
}

.nav img,
.footer img {
  width: 10rem;
  height: 2.5rem;
  margin: 1rem;
}

.nav a {
  color: rgb(235, 25, 52);
  margin-right: 1rem;
}

.modal-footer {
  align-items: center !important;
  justify-content: center !important;
}

.modal-footer button {
  border-color: transparent;
}

.nav-link.active {
  position: relative;
  color: gray !important;
  /* Adjust the color as needed */
}

.nav-link.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  /* Adjust the height as needed */
  bottom: -19px;
  /* Adjust the position as needed */
  left: 0;
  /* background-color: rgba(56, 55, 55,.3); Adjust the color and opacity as needed */
  animation: spread 0.5s forwards;
  background-color: gray;
}

@keyframes spread {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}




/* qrcode  */


#qr-code-container {
  position: absolute;
  top: 4rem;
  /* Adjust as needed to position the QR code */
  right: 2rem;
  /* Adjust as needed to position the QR code */
  background-color: white;
  border: 4px solid black;
  border-radius: .7rem;
  display: none;
  text-align: center;
}

#qr-code-container img {
  width: 10rem;
  /* Adjust the size of the QR code */
  height: 10rem;
}

.qr-contain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.qr-cont-icon i {
  font-size: 1.7rem;
}

.qr-cont-icon a {
  margin: .2rem;
}



/* heading of home page */

.heading {
  width: 100%;
  height: 31rem;
  position: relative;
}

.head-img img {
  width: 42rem;
  height: 28rem;
  position: absolute;
  top: 0rem;
  right: 10rem;
  animation: right-middle 2.5s forwards;
}


.head-desc {
  position: absolute;
  top: 3.5rem;
  left: 6rem;
  color: white;
}

.main-head-desc {
  background-color: rgb(235, 25, 52);
  padding: .5rem 2rem .5rem 1rem;
  margin-left: .3rem;
  font-size: 2.4rem;
  animation: left-middle 1.5s forwards;
  font-weight: 400 !important;
  width: 45%;
}

.main-head-desc img {
  height: 3rem;
  width: 3rem;
}

.main-head-desc-2 {
  background-color: rgb(235, 25, 52);
  padding: .1rem 2rem .1rem 1rem;
  margin-left: .3rem;
  font-size: 2.4rem;
  animation: left-middle 1.5s forwards;
  font-weight: 400 !important;
  width: fit-content;
}


.sec-head-desc {
  color: rgb(100, 87, 87);
  font-size: 1.8rem;
  width: 35%;
  margin-top: 1.3rem;
  animation: left-middle 2s forwards;
  font-weight: 400 !important;
}


.head-button {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}


@keyframes left-middle {
  0% {
    transform: translateX(-30vw);
    opacity: 0;
  }

  100% {
    transform: translate(0%, 0%) translateY(0);
    opacity: 1;
  }
}

@keyframes right-middle {
  0% {
    transform: translateY(-30vw);
    opacity: 0;
  }

  100% {
    transform: translate(0%, 0%) translateX(0);
    opacity: 1;
  }
}

.thi-head-desc {
  color: rgb(82, 81, 81);
  font-size: larger;
  font-family: cursive;
}


.head-button a {
  cursor: pointer;
  margin: 1rem;
  background-color: rgb(235, 25, 52);
  color: white !important;
  padding: .5rem 1.5rem .5rem 1.5rem;
  font-weight: 600;
  border-radius: .3rem;
  text-align: center;
  transition: 0.6s;
}

.pop-up {
  background-color: rgb(235, 25, 52) !important;
}

.download-btn {
  background-color: black;
  color: white !important;
}


.head-button a:hover {
  scale: 1.03 !important;
  background-color: #000000;
}


/* animation in heading  */

.typewriter {
  width: fit-content;
  margin: 0 auto;
  margin-top: 1.3rem;
  margin-bottom: 1.7rem;
}

.typewriter h1 {
  color: rgb(235, 25, 52);
  font-family: sans-serif;
  overflow: hidden;
  border-right: .01em solid rgb(235, 25, 52);
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .01em;
  font-size: 2.5vw;
  animation:
    typing 3s steps(30, end),
    blink-caret 1.4s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0%
  }

  to {
    width: 100%
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: rgb(235, 25, 52);
  }
}




/* Information or features */

.info {
  /* position: relative; */
  margin: 2rem;
  margin-bottom: 0rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  grid-template-rows: 18rem;
}



.feature {
  display: flex;
  flex-direction: column;
  color: rgb(235, 25, 52);
  height: 16rem;
  align-items: center;
  justify-content: space-evenly;
  font-size: larger;
  font-weight: bold;
  border-width: 0 1px 0 0;
  border-color: lightgray;
  border-style: solid;
}

.feature:last-child {
  border-width: 0 0 0 0;
}


.feature img {
  height: 16rem;
  width: 14rem;
}


/* Available jobs */

.available {
  color: white;
  font-size: larger;
  font-weight: bolder;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.available span {
  background-color: rgb(235, 25, 52);
  padding: .5rem 2rem .5rem 2rem;
  border-radius: 1rem;
}

.jobs {
  margin: 1rem;
}

.position {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1.3rem;
  padding: 1rem;
}

.pos {
  border-radius: 1rem;
  box-shadow: rgba(50, 50, 93, 0.35) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.pos:hover {
  box-shadow: rgba(50, 50, 93, 0.70) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


.job-image {
  border-radius: 1rem;
  height: 12rem;
  width: 100%;
}

.job-desc {
  padding: 1rem;
}

.desc-1 {
  font-weight: 500;
  font-size: 16px;
  color: rgb(235, 25, 52);
}

.desc-2 {
  font-size: 14px;
}

/* partners */

.logos,
.logos-2 {
  overflow: hidden;
  padding: .2rem 0;
  white-space: nowrap;
}

.logos-1,
.logos-3 {
  overflow: hidden;
  padding: .2rem 0;
  white-space: nowrap;
}

.logos-slide-3 {
  margin-top: 0rem;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }

}

@keyframes slide-left {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }

}

.logos-slide,
.logos-slide-2 {
  display: inline-block;
  animation: 40s slide infinite linear;
}

.logos-slide-1 {
  display: inline-block;
  animation: 74s slide infinite linear;
}

.logos-slide-3 {
  display: inline-block;
  animation: 20s slide infinite linear;
}

.logos-slide img,
.logos-slide-2 img {
  height: 8rem;
  margin: .3rem .5rem;
}

.logos-slide-1 div,
.logos-slide-3 div {
  display: inline-block;
  color: white;
  margin: .2rem;
  padding: 0.4rem;
  padding-right: .8rem;
  padding-left: .8rem;
  border-radius: 12rem;
}


#keyword-4,
#keyword-2 {
  background-color: rgb(235, 25, 52);
}

#keyword-1,
#keyword-3 {
  color: rgb(235, 25, 52);
  border: 1px solid rgb(235, 25, 52);
}

#keyword-5 {
  color: rgb(235, 25, 52);
  border: 1px solid rgb(235, 25, 52);
}


/* counter */


.counter {
  font-size: 3.6rem;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  height: 12.5rem;
  align-items: center;
}

.digit-container {
  position: relative;
  width: 1em;
  height: 2em;
  overflow: hidden;
  margin: .1rem;
}

.digit {
  position: absolute;
  color: rgb(235, 25, 52);
  width: 100%;
  text-align: center;
  border: 1px solid rgb(206, 17, 17);
  border-radius: 1rem;
}

.digit.old {
  animation: move-down 1.5s forwards;
}

.digit.new {
  animation: move-up 1.5s forwards;
}

.counter-desc {
  font-size: 3rem;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  height: 1em;
  margin-top: 1rem;
}

@keyframes move-down {
  0% {
    top: 0;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes move-up {
  0% {
    top: -100%;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}




/* subscription plan */

.subscription {
  display: flex;
  gap: 8px;
  width: 100%;
  overflow-x: hidden;
}

.sub-plan1,
.sub-plan2 {
  width: 50%;
  align-items: center;
}

.sub-plan1 {
  background-color: rgb(235, 25, 52);
  border-top-right-radius: 20rem;
  color: white;
}

.sub-plan2 {
  background-color: rgb(195, 193, 193);
  border-bottom-left-radius: 20rem;
  color: black;
}

.sub-1,
.sub-2 {
  margin: 3rem;
}

.sub-2 {
  margin-left: 11rem;
}

.sub-heading {
  font-weight: bold;
  padding: .6rem;
  font-size: x-large;
  border-radius: .6rem .6rem 0 0;
}


.sub-feature {
  font-size: larger;
  font-weight: 500;

}

.sub-feature div {
  padding: .4rem;
}

.price-btn button {
  color: white;
  border-radius: .5rem;
  padding: .3rem 1rem .3rem 1rem;
  background-color: #000000;
  border-color: transparent;
}

.price-btn-2 button {
  color: white;
  border-radius: .5rem;
  padding: .3rem 1rem .3rem 1rem;
  margin-left: .5rem;
  background-color: black;
  border-color: transparent;
}



.training {
  margin: 2rem;
}

.tr-head {
  font-size: 2rem;
  font-weight: bold;
}

.tr-desc {
  font-size: 1.3rem;
}

.consultant-btn,
.training-btn {
  padding: .3rem 1rem .3rem 1rem;
  background-color: black;
  color: white;
  border-radius: .5rem;
  margin-top: 1rem;
  border-color: transparent;
}

.consultant-btn {
  background-color: rgb(235, 52, 25);
}




/* footer */

.footer {
  /* background-color:#000000; */
  display: flex;
  /* box-shadow: .09rem .09rem rgb(241, 236, 236); */
  box-shadow: 0 -5px 10px -5px rgb(241, 236, 236);
  /* flex-direction: column; */
}

.footer img {
  margin: 2rem;
}

.popularity {
  margin: 2rem;
  color: black;
}

.j {
  margin-bottom: .5rem;
  color: rgb(235, 25, 52);
  font-size: large;
}

.f-info-links a,
.f-info-links-1 a {
  text-decoration: none;
  color: black;
}

.f-info-links-1 a {
  /* visibility:hidden; */
  display: none;
}

.f-info-links a:hover {
  text-decoration: underline;
}

.f-info {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  vertical-align: middle;
  margin-bottom: 16px;
}

.f-info-links,
.f-info-social,
.f-info-brand {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

.f-email {
  color: black;
  display: flex;
  align-items: center;
  margin: 1rem;
  justify-content: center;
}


.f-email div {
  margin-left: .4rem;
}

.f-info-social {
  gap: 24px;
}

.f-info-brand {
  margin-top: 8px;
  margin-bottom: 8px;
}

.f-info-social i {
  font-size: 1.8rem;
}

/* about us page */

.about {
  margin-bottom: 32px;
}

.abt {
  color: white;
  text-align: center;
  font-size: x-large;
}

.abt-end {
  font-size: 1.4rem;
  margin: 2rem;
  text-align: center;
}


.intro-about {
  margin: 2rem;
  margin-top: .001rem;
  font-size: x-large;
  text-align: center;
}

.para-intro {
  font-weight: 800;
  font-size: larger;
  margin: .5rem 2rem .8rem 2rem;
}

.paragraph {
  display: flex;
  margin: 0 4rem 1rem 4.5rem;
  align-items: center;
  justify-content: space-between;
}

.paragraph div {
  width: 80%;
  margin-left: 4rem;
}

#abt-desc {
  margin-right: 4rem;
  width: 54%;
}

.para-img {
  width: 20rem;
  height: 20rem;
  border-radius: 12rem;
}

.para-desc {
  margin: .5rem 2rem .8rem 2rem;
  font-size: larger;
  width: 60%;
}


/* FAQS page and blog*/

.FAQ {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.FAQ-sub {
  max-width: 800px;
}

.rozg-accordion-item {
  margin-left: 32px;
  margin-right: 32px;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  cursor: pointer;
  background: white;
  margin-bottom: 16px;
  overflow: hidden;
}

.rozg-accordion-item:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.rozg-accordion-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rozg-accordion-title-container.active .accordion-title {
  font-weight: bold;
}

.accordion-title {
  background-color: white;
  padding: 16px;
  text-align: left;
  font-size: 1.2rem;
}

.rozg-accordion-icon {
  margin-right: 16px;
}

.up-icon {
  display: none;
}

.active .up-icon {
  display: inline-block;
}

.active .down-icon {
  display: none;
}

.active:hover {
  background-color: white;
}

.panel {
  transition: max-height 0.2s ease-out;
  padding: 0 18px;
  font-size: 1.2rem;
  max-height: 0;
  background-color: white;
  overflow: hidden;
  border-radius: 8px;
  line-height: 2rem;
}

.blog-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  padding: 2rem;
}

.blog-card {
  background-color: white;
  border-radius: 1rem;
  color: black;
  text-decoration: none;
  box-shadow: rgba(50, 50, 93, 0.35) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.blog-card:hover {
  box-shadow: rgba(50, 50, 93, 0.70) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.blog-card-img {
  width: 100%;
  height: 200px;
  background-color: bisque;
  border-radius: 1rem 1rem 0 0;
}

.blog-card-title {
  margin: .8rem;
  font-size: 20px;
  font-weight: bold;
}

.blog-card-content {
  color: #333;
  margin: .8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-content a {
  color: black;
}

.blog-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.blog-content {
  margin: 3rem;
  width: 80%;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 3rem;
}

.blog-content-title {
  font-size: 2.0rem;
  font-weight: bold;
}

.blog-content-content {
  margin-top: 16px;
  font-size: large;
  line-height: 32px;
}


/* reviews by carousel */

.review {
  width: 100%;
}

.rev-1 {
  display: flex;
  align-items: center;
}

.rev-content {
  font-style: italic;
  margin-top: 1rem;
}

.review img {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  box-shadow: 1px 1px 15px 1px #dedede;
  object-fit: contain;
}


.carousel1 .card .img {
  height: 4rem;
  width: 4rem;
  margin: auto;
}


.card .img i {
  font-size: 2.9rem;
  cursor: pointer;
}


.carousel1 .card h2 {
  font-weight: 500;
  font-size: 1.2rem;
  margin: 4px 0px 4px 16px;
  color: rgb(235, 25, 52);
}


.carousel1 .card span {
  font-size: 1rem;
  margin-left: 16px;
  display: flex;
  flex-wrap: wrap;
}

.wrapper {
  position: relative;
  align-items: center;
  margin: 2rem;
  margin-top: 1.5rem;
}

.wrapper .i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  margin-left: 1.6rem;
}

.wrapper i.arrow-btn:active {
  transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
  left: -48px;
}

.wrapper i:last-child {
  right: -22px;
}


.wrapper .carousel1 {
  margin-left: 16px;
  padding-left: 0px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 4) - 16px);
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel1::-webkit-scrollbar {
  display: none;
}


.carousel1.no-transition {
  scroll-behavior: auto;
}

.carousel1.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel1.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel1 :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}


.carousel1 .card {
  display: flex;
  align-items: flex-start;
  scroll-snap-align: start;
  min-width: 230px;
  list-style: none;
  background: #fff;
  flex-direction: column;
  border-radius: 8px;
  padding: 12px !important;

}


@media screen and (max-width:1250px) {
  .wrapper .carousel1 {
    grid-auto-columns: calc((100% / 3) - 16px);
  }
}

@media screen and (max-width: 900px) {
  .wrapper .carousel1 {
    grid-auto-columns: calc((100% / 2) - 16px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel1 {
    grid-auto-columns: 100%;
  }
}


#stopControl {
  display: none;
}

.blur {
  background-color: antiquewhite;
}


/* associate partners */

.associate-partner {
  margin: 8px;
}

.asso-logo {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#iima {
  width: 130px;
}

#tata {
  width: 150px;
}

#fea {
  width: 90px;
}

#ihub {
  width: 120px;
}

/* contact form */

.form {
  display: flex;
  justify-content: center;
  margin: 4rem;
  margin-top: 2rem;
}

.form-btn {
  background-color: rgb(235, 52, 25) !important;
  color: white !important;
}

.col-6 {
  width: 50%;
  /* Equivalent to col-6 in Bootstrap */
}