@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: black;
  font-weight: 700;
  font-size: 10px;
}
input[type="checkbox"]:checked:before {
  content: "\2713";
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  min-width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  background-color: white;
  border: 2px solid #dadada;
  border-radius: 2px;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: white;
}
::-webkit-scrollbar-thumb {
  background: black;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: "Poppins";
}
ul,
li,
p {
  margin: 0;
  font-weight: 400;
  line-height: 1.8;
  color: #475569;
  font-size: 14px;
}
ul,
li {
  padding: 0;
  list-style: none;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 66, 193, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(111, 66, 193, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 66, 193, 0);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0;
  }
}
.ai-revolution .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.ai-revolution .heading p {
  margin-top: 1rem;
}
.ai-revolution .heading h2 {
  width: 100%;
  font-size: 22px;
}
.ai-revolution .center-heading {
  justify-content: center;
  align-items: center;
}
.ai-revolution .center-heading h2,
.ai-revolution .center-heading p {
  text-align: center;
}
.ai-revolution .white-heading h2,
.ai-revolution .white-heading p {
  color: white;
}
.ai-revolution .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.ai-revolution .buttons .btn-gradient,
.ai-revolution .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-revolution .buttons .btn-gradient {
  padding: 10px 20px;
  min-width: 160px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background-image: linear-gradient(to right, #5046E5 0%, #9034EA 100%);
  color: white;
}
.ai-revolution .buttons .btn-gradient img {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.ai-revolution .buttons .btn-white {
  background-color: white;
  border-radius: 5px;
  padding: 13px;
  width: 47px;
}
.ai-revolution .buttons .btn-white img {
  width: 17px;
  height: 17px;
}
.ai-revolution .banner {
  background-color: #F8FAFC;
  flex-direction: column;
  padding: 0;
}
.ai-revolution .banner .logo-container,
.ai-revolution .banner .banner-container,
.ai-revolution .banner .banner-content,
.ai-revolution .banner .banner-info {
  display: flex;
  flex-direction: column;
}
.ai-revolution .banner .logo-container {
  padding: 1rem 1.5rem;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #D7D7D7;
  background-color: white;
}
.ai-revolution .banner .logo-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ai-revolution .banner .logo-container .container .tka-logo {
  display: flex;
  max-width: 253px;
}
.ai-revolution .banner .logo-container .container .tka-logo img {
  width: 100%;
  height: 100%;
}
.ai-revolution .banner .logo-container .buttons .btn-white {
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.ai-revolution .banner .menu {
  width: 25px;
  height: 25px;
  display: flex;
}
.ai-revolution .banner .menu img {
  width: 100%;
  height: 100%;
}
.ai-revolution .banner .menu-links {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  padding: 1rem;
  width: 80%;
  transition: 1s all;
  transform: translateX(100%);
  background-color: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.ai-revolution .banner .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ai-revolution .banner .menu-toggle img {
  width: 23px;
  height: 14px;
  margin-right: 2px;
}
.ai-revolution .banner ul li {
  border-bottom: 1px dashed black;
  padding: 10px;
}
.ai-revolution .banner ul li:nth-child(4) {
  border: none;
  padding-bottom: 0;
}
.ai-revolution .banner ul li:last-child {
  display: none;
}
.ai-revolution .banner .active + .menu-links {
  transform: translateX(0);
}
.ai-revolution .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  z-index: 5;
  box-shadow: 0 0 10px grey;
  transition: 1s all;
  background-color: white;
}
.ai-revolution .banner .sticky-down {
  top: -100px;
}
.ai-revolution .banner .banner-container {
  padding: 3rem 1.5rem;
}
.ai-revolution .banner .banner-content {
  align-items: center;
}
.ai-revolution .banner .banner-content h1 {
  font-size: 25px;
  margin: 1.3rem 0 0.5rem;
  text-align: center;
}
.ai-revolution .banner .banner-content h1 b {
  background-image: linear-gradient(to right, #5046E5 32.16%, #9034EA 83.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ai-revolution .banner .banner-content h1 img {
  width: 37px;
  height: 37px;
  transform: translate(-8px, 10px);
}
.ai-revolution .banner .banner-content p {
  text-align: center;
  color: #475569;
}
.ai-revolution .banner .banner-content > span {
  display: flex;
  background-color: #EEF2FF;
  color: #4338D6;
  align-items: center;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 50px;
  font-weight: 500;
}
.ai-revolution .banner .banner-content svg {
  height: 15px;
  width: 15px;
  margin-right: 7px;
}
.ai-revolution .banner .banner-info {
  align-items: center;
}
.ai-revolution .banner .banner-info span {
  display: flex;
  margin-top: 1.5rem;
  height: 30px;
  width: 257px;
}
.ai-revolution .banner .banner-info span img {
  width: 100%;
  height: 100%;
}
.ai-revolution .banner .banner-info .buttons .btn-gradient img {
  margin: 0 0 0 10px;
}
.ai-revolution .client .client-container,
.ai-revolution .client .client-list {
  display: flex;
  flex-direction: column;
}
.ai-revolution .client .client-list {
  background-color: #F3E8FF;
  padding: 0 1rem 1rem;
  align-items: center;
}
.ai-revolution .client span {
  display: flex;
  margin-top: 2rem;
  height: 50px;
}
.ai-revolution .client span img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.ai-revolution .path {
  background-color: #F8FAFC;
}
.ai-revolution .path .path-container,
.ai-revolution .path .path-list,
.ai-revolution .path .path-item {
  display: flex;
  flex-direction: column;
}
.ai-revolution .path .buttons .btn-gradient {
  width: 100%;
}
.ai-revolution .path .buttons .btn-gradient img {
  margin: 0 0 0 10px;
}
.ai-revolution .path .heading {
  margin-bottom: 0;
}
.ai-revolution .path .path-item {
  padding: 1.5rem;
  border: 1px solid #D7D7D7;
  border-radius: 20px;
  background-color: white;
  margin-top: 2rem;
}
.ai-revolution .path .path-item span {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 0.8rem;
  border-radius: 15px;
}
.ai-revolution .path .path-item span img {
  width: 100%;
  height: 100%;
}
.ai-revolution .path .path-item h3 {
  margin-bottom: 1rem;
  font-size: 20px;
  line-height: 28px;
}
.ai-revolution .path .path-item p {
  margin-bottom: 1.2rem;
}
.ai-revolution .path .user {
  background-color: #DBEAFE;
}
.ai-revolution .path .builder {
  background-color: #F3E8FF;
}
.ai-revolution .path .leader {
  background: #E0E7FF;
}
.ai-revolution .path .exam {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #D7D7D7;
  padding-top: 1rem;
  margin-top: 1.8rem;
}
.ai-revolution .path .exam p {
  display: flex;
  position: relative;
  padding-left: 20px;
  color: #D7D7D7;
  font-weight: 500;
}
.ai-revolution .path .exam p b {
  margin-left: 0.2rem;
  color: #0f172a;
}
.ai-revolution .path .exam p::before {
  content: '';
  background-size: 100% 100%;
  min-width: 13px;
  height: 13px;
  position: absolute;
  top: 5px;
  left: 0;
}
.ai-revolution .path .exam p:first-child::before {
  background-image: url(/_public/images/ai-revolution/clock.svg);
}
.ai-revolution .path .exam p:last-child {
  margin-top: 0.5rem;
}
.ai-revolution .path .exam p:last-child::before {
  background-image: url(/_public/images/ai-revolution/exam.svg);
}
.ai-revolution .path .designation {
  background-color: #f3f3f3;
  padding: 2px 15px;
  font-weight: 500;
  font-size: 12px;
  width: fit-content;
  margin: 1.5rem 0 0.7rem !important;
  border-radius: 30px;
}
.ai-revolution .path li {
  display: flex;
  margin-top: 0.8rem;
}
.ai-revolution .path li::before {
  content: '';
  background-image: url(/_public/images/ai-revolution/tick.svg);
  background-size: 100% 100%;
  min-width: 15px;
  height: 15px;
  margin: 5px 10px 0 0;
}
.ai-revolution .experience .experience-container,
.ai-revolution .experience .experience-list,
.ai-revolution .experience .experience-detail {
  display: flex;
  flex-direction: column;
}
.ai-revolution .experience .heading {
  margin-bottom: 0;
}
.ai-revolution .experience .experience-container {
  background-color: #0F172A;
  border-radius: 30px;
  padding: 1.5rem;
}
.ai-revolution .experience .experience-item {
  display: flex;
  margin-top: 2rem;
}
.ai-revolution .experience .experience-item span {
  display: flex;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background-color: #272F40;
  padding: 10px;
  margin-right: 12px;
}
.ai-revolution .experience .experience-item span img {
  height: 100%;
  width: 100%;
}
.ai-revolution .experience .experience-item .experience-detail h3 {
  font-size: 16px;
  font-weight: 600;
  color: white;
}
.ai-revolution .experience .experience-item .experience-detail p {
  color: #A7A7A7;
  margin-top: 5px;
}
.ai-revolution .experience .experience-info {
  display: flex;
  margin-top: 2rem;
}
.ai-revolution .experience .experience-info img {
  height: 100%;
  width: 100%;
  object-fit: scale-down;
}
.ai-revolution .course .course-container,
.ai-revolution .course .course-list,
.ai-revolution .course .course-item {
  display: flex;
  flex-direction: column;
}
.ai-revolution .course .course-container #toggleCourses {
  display: flex;
  align-items: center;
  color: #5046E5;
  font-weight: 600;
  cursor: pointer;
}
.ai-revolution .course .course-container #toggleCourses img {
  min-width: 15px;
  height: 11px;
  margin-left: 8px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(98%) saturate(2576%) hue-rotate(232deg) brightness(92%) contrast(95%);
}
.ai-revolution .course .course-info {
  display: flex;
  justify-content: space-between;
}
.ai-revolution .course .course-info strong {
  background-color: #EEF2FF;
  font-size: 12px;
  padding: 8px;
  border-radius: 4px;
  font-weight: 500;
  color: #7566F1;
}
.ai-revolution .course .course-info b {
  font-size: 13px;
  color: #A7A7A7;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.ai-revolution .course .course-info b:before {
  content: '';
  background-image: url(/_public/images/ai-revolution/clock.svg);
  background-size: 100% 100%;
  height: 12px;
  width: 12px;
  margin-right: 5px;
}
.ai-revolution .course .course-item {
  background-color: #F8FAFC;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border: 1px solid #EEF6FF;
  padding: 20px;
  margin-top: 2rem;
}
.ai-revolution .course .course-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 16px;
}
.ai-revolution .course .course-item a {
  display: flex;
  align-items: center;
  color: #A7A7A7;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.ai-revolution .course .course-item a img {
  transform: rotate(360deg);
  width: 18px;
  height: 10px;
  margin-left: 2px;
  filter: brightness(0) saturate(100%) invert(67%);
}
.ai-revolution .contact {
  background-image: linear-gradient(52.96deg, rgba(83, 69, 229, 0.3) 1.43%, rgba(140, 52, 233, 0.05) 100%);
}
.ai-revolution .contact .contact-container,
.ai-revolution .contact .contact-item,
.ai-revolution .contact .contact-fact,
.ai-revolution .contact .form,
.ai-revolution .contact .consent-list,
.ai-revolution .contact .input-list {
  display: flex;
  flex-direction: column;
}
.ai-revolution .contact .contact-fact .heading {
  margin-bottom: 0;
}
.ai-revolution .contact .contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.ai-revolution .contact .contact-item {
  width: 47%;
  margin-top: 2.2rem;
  position: relative;
  z-index: 1;
}
.ai-revolution .contact .contact-item::before {
  content: '';
  background-color: #C7BAFD;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  position: absolute;
  top: -7px;
  left: 40px;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}
.ai-revolution .contact .contact-item .contact-count {
  display: flex;
  justify-content: center;
}
.ai-revolution .contact .contact-item .contact-count strong {
  font-size: 22px;
}
.ai-revolution .contact .contact-item p {
  text-align: center;
  line-height: 1.7;
  margin-top: 5px;
}
.ai-revolution .contact .form {
  background-image: linear-gradient(180deg, white 0%, #E3DDFE 100%);
  border-radius: 30px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.ai-revolution .contact .form input[type="checkbox"] {
  border: 1px solid #D7D7D7;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.102);
}
.ai-revolution .contact .form .input-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  background-color: white;
  border: 1px solid transparent;
}
.ai-revolution .contact .form .input-container input {
  padding: 0;
}
.ai-revolution .contact .form .input-container:last-child {
  align-items: flex-start;
  margin-bottom: 0.4rem;
}
.ai-revolution .contact .form .input-container span {
  display: flex;
  width: 20px;
  height: 15px;
}
.ai-revolution .contact .form .input-container span img {
  width: 100%;
  height: 100%;
}
.ai-revolution .contact .form .input-container span img:last-child {
  display: none;
}
.ai-revolution .contact .form .input-container input,
.ai-revolution .contact .form .input-container textarea {
  border: none;
  outline: 0;
  font-size: 13px;
  width: calc(100% - 30px);
}
.ai-revolution .contact .form .input-container .checkbox {
  width: 14px;
  height: 14px;
}
.ai-revolution .contact .form .input-container textarea {
  resize: none;
  overflow: auto;
  height: 70px;
  padding: 0px;
}
.ai-revolution .contact .form .input-container:nth-of-type(6) {
  align-items: flex-start;
  margin-bottom: 0;
}
.ai-revolution .contact .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  background: white;
  color: #D7D7D7;
}
.ai-revolution .contact .form .input-container :-ms-input-placeholder {
  /* Firefox */
  background: white;
  color: #D7D7D7;
}
.ai-revolution .contact .form .input-container ::placeholder {
  /* Chrome */
  font-size: 13px;
  font-weight: 500;
  background-color: white;
  color: #8c8c8c;
}
.ai-revolution .contact .form .input-error {
  border: 1px solid red;
}
.ai-revolution .contact .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.ai-revolution .contact .form .input-error :-ms-input-placeholder {
  /* Firefox */
  color: red;
}
.ai-revolution .contact .form .input-error ::placeholder {
  /* Chrome */
  color: red;
}
.ai-revolution .contact .form .input-error span img:first-child {
  display: none;
}
.ai-revolution .contact .form .input-error span img:last-child {
  display: flex;
}
.ai-revolution .contact .form p {
  font-size: 12px;
}
.ai-revolution .contact .form .form-consent {
  display: flex;
  margin-top: 1rem;
}
.ai-revolution .contact .form .form-consent:nth-child(5) {
  margin-bottom: 0;
}
.ai-revolution .contact .form .form-consent label {
  display: flex;
  width: auto;
  align-self: center;
  margin-left: 0.3rem;
  font-size: 11px;
  cursor: pointer;
}
.ai-revolution .contact .form .form-consent p a {
  font-weight: 800;
  color: #5046E5;
}
.ai-revolution .contact .form .consent-error {
  display: none;
  margin-top: 0.6rem;
}
.ai-revolution .contact .form .consent-error p {
  color: red;
}
.ai-revolution .contact .form .buttons .btn-gradient {
  min-width: 117px;
}
.ai-revolution .choose .choose-container,
.ai-revolution .choose .choose-list,
.ai-revolution .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.ai-revolution .choose .heading {
  margin-bottom: 0.5rem;
}
.ai-revolution .choose .choose-item {
  align-items: center;
  margin-top: 2rem;
}
.ai-revolution .choose .choose-item span {
  display: flex;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(180deg, white 0%, #E2DCF8 100%);
  margin-bottom: 15px;
  padding: 9px;
  border: 1px solid #C2B3FE;
  border-radius: 5px;
}
.ai-revolution .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.ai-revolution .choose .choose-item p {
  margin-top: 10px;
}
.ai-revolution .choose .choose-item h3 {
  font-weight: 600;
  font-size: 16px;
}
.ai-revolution .choose .choose-item h3,
.ai-revolution .choose .choose-item p {
  text-align: center;
}
.ai-revolution .review .review-container,
.ai-revolution .review .review-list,
.ai-revolution .review .review-item {
  display: flex;
  flex-direction: column;
}
.ai-revolution .review .heading {
  margin-bottom: 2rem;
}
.ai-revolution .review .content {
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.102) inset;
  border-radius: 8px;
  padding: 1.5rem 1.3rem 1.6rem;
  line-height: 27px;
}
.ai-revolution .review .content::before {
  content: "";
  background-image: url(/_public/images/ai-revolution/quotes.svg);
  background-size: 100% 100%;
  width: 40px;
  height: 30px;
  margin: 0 auto 15px;
}
.ai-revolution .review .author {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #C7BAFD;
  padding: 0.5rem;
  border-radius: 0 0 8px 8px;
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.ai-revolution .review .author::before {
  content: "";
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #C7BAFD;
  position: absolute;
  top: -12px;
}
.ai-revolution .review .author strong {
  font-size: 15px;
  color: #020015;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.ai-revolution .review .author p {
  font-weight: 500;
  text-align: center;
  color: rgba(0, 0, 0, 0.502);
}
.ai-revolution .review .owl-dots {
  display: flex;
  min-width: 92px;
  margin: 2.5rem auto 0;
}
.ai-revolution .review .owl-dots .owl-dot {
  background-color: #e8e8e8;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-right: 8px;
}
.ai-revolution .review .owl-dots .owl-dot:last-child {
  margin-right: 0 !important;
}
.ai-revolution .review .owl-dots .owl-dot.active {
  background-color: transparent;
  background-image: linear-gradient(90deg, #3b1ead 0%, #7453f9 100%);
}
.ai-revolution .faq .faq-container,
.ai-revolution .faq .faq-list,
.ai-revolution .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.ai-revolution .faq .heading {
  margin-bottom: 2rem;
}
.ai-revolution .faq .faq-list {
  border-radius: 15px;
  background-image: linear-gradient(white, white), linear-gradient(52.96deg, rgba(83, 69, 229, 0.3) 1.43%, rgba(140, 52, 233, 0.05) 100%);
  border: 10px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.ai-revolution .faq .faq-item {
  border: 1px solid #D7D7D7;
  border-bottom: none;
}
.ai-revolution .faq .faq-item:first-child {
  border-radius: 5px 5px 0 0;
}
.ai-revolution .faq .faq-item:first-child .ques {
  border-radius: 10px 10px 0 0;
}
.ai-revolution .faq .faq-item:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: 1px solid #D7D7D7;
}
.ai-revolution .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
}
.ai-revolution .faq .faq-item .ques h3 {
  font-weight: 600;
  font-size: 16px;
  width: calc(100% - 50px);
}
.ai-revolution .faq .faq-item .ques::after {
  content: "+";
  display: flex;
  width: 30px;
  height: 30px;
  background-image: linear-gradient(180deg, white 0%, #e2dcf8 100%);
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
}
.ai-revolution .faq .faq-item .ques::after img {
  width: 100%;
  height: 100%;
}
.ai-revolution .faq .faq-item .ques::after img:last-child {
  display: none;
}
.ai-revolution .faq .faq-item .ans {
  display: none;
  padding: 1rem 1.5rem;
  background-color: rgba(116, 83, 249, 0.05);
  border-top: 1px solid #D7D7D7;
}
.ai-revolution .faq .faq-item .ans p {
  line-height: 27px;
}
.ai-revolution .faq .faq-item .ans ul {
  padding-left: 1.2rem;
}
.ai-revolution .faq .faq-item .ans ul li {
  list-style: disc;
  margin-top: 0.5rem;
}
.ai-revolution .faq .faq-item .ans ul li:first-child {
  margin-top: 0;
}
.ai-revolution .faq .faq-item.active .ques::after {
  content: "-";
  background-image: linear-gradient(to right, #5046E5 0%, #9034EA 100%);
  color: white;
}
.ai-revolution .footer {
  background-image: linear-gradient(180deg, #1B126D, #8C34E9, #5544E5, #1B126D);
  padding-bottom: 0rem;
}
.ai-revolution .footer .heading {
  margin-bottom: 1.8rem;
}
.ai-revolution .footer .footer-container,
.ai-revolution .footer .footer-list,
.ai-revolution .footer .footer-item {
  display: flex;
  flex-direction: column;
}
.ai-revolution .footer .footer-container {
  position: relative;
  padding-bottom: 6rem;
}
.ai-revolution .footer .footer-container::before {
  content: "CONTACT US";
  position: absolute;
  font-size: 37px;
  font-weight: 700;
  letter-spacing: 8px;
  color: white;
  bottom: 20px;
  opacity: 0.1;
  animation: blink 4s infinite;
}
.ai-revolution .footer .footer-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ai-revolution .footer .footer-item {
  color: white;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
}
.ai-revolution .footer .footer-item:last-child b {
  text-align: center;
}
.ai-revolution .footer .footer-item b {
  margin-bottom: 0.5rem;
}
.ai-revolution .footer .footer-item a {
  font-size: 15px;
}
.ai-revolution .footer .footer-item img {
  width: 105px;
  height: 17px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .ai-revolution .banner .logo-container {
    padding: 1rem 2rem;
  }
  .ai-revolution .banner .banner-container {
    padding: 3rem 2rem;
  }
  .ai-revolution .banner .banner-info {
    flex-direction: row;
    justify-content: center;
  }
  .ai-revolution .banner .banner-info .buttons {
    margin-right: 1.5rem;
  }
  .ai-revolution .banner .sticky {
    padding: 1rem 2rem;
  }
  .ai-revolution .banner .menu-links {
    width: 50%;
  }
  .ai-revolution .client .client-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .ai-revolution .client .client-list span {
    width: 220px;
  }
  .ai-revolution .path .path-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .ai-revolution .path .path-item {
    width: 47%;
    margin-right: 2rem;
    transition: 1s all;
  }
  .ai-revolution .path .path-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .ai-revolution .path .path-item:last-child {
    margin-right: 0 !important;
  }
  .ai-revolution .path .path-item:hover {
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.102);
    transform: translateY(-10px);
  }
  .ai-revolution .path .path-item ul {
    margin-bottom: 1.5rem;
  }
  .ai-revolution .path .path-item .buttons {
    margin-top: auto;
  }
  .ai-revolution .experience .experience-container {
    align-items: flex-start;
  }
  .ai-revolution .course .course-list {
    flex-flow: wrap;
  }
  .ai-revolution .course .course-item {
    width: 47%;
    margin-right: 2rem;
  }
  .ai-revolution .course .course-item a {
    margin-top: auto;
  }
  .ai-revolution .course .course-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .ai-revolution .course .course-item:last-child {
    margin-right: 0;
  }
  .ai-revolution .contact .heading {
    margin-bottom: 2rem;
  }
  .ai-revolution .contact .contact-item {
    width: 22%;
  }
  .ai-revolution .contact .contact-item::before {
    left: 35px;
  }
  .ai-revolution .contact .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ai-revolution .contact .form .input-container {
    width: 48%;
  }
  .ai-revolution .contact .form .input-container:nth-of-type(5) {
    width: 100%;
    margin-bottom: 0px;
  }
  .ai-revolution .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .ai-revolution .choose .choose-item {
    width: 42%;
  }
  .ai-revolution .review .content {
    min-height: 257px;
  }
  .ai-revolution .review .author p {
    min-height: 50px;
  }
  .ai-revolution .review .owl-dots {
    justify-content: center;
  }
  .ai-revolution .faq .faq-list {
    counter-reset: counter;
  }
  .ai-revolution .faq .faq-item .ques h3::before {
    content: counter(counter, decimal-leading-zero) "_";
    counter-increment: counter;
  }
  .ai-revolution .faq .faq-item.active .ques h3::before {
    color: #A7A7A7;
  }
  .ai-revolution .footer {
    background-image: url(/_public/images/ai-revolution/diamond.gif), conic-gradient(from 180deg at 49.8% 88.88%, #1B126D -0.3deg, #8C34E9 0.45deg, #5544E5 138.27deg, #1B126D 359.7deg, #8C34E9 360.45deg);
    background-size: 100px 55px,
                100% 100%;
    background-position: bottom 7% center,
                center;
    background-repeat: no-repeat, no-repeat;
  }
  .ai-revolution .footer .footer-container::after {
    content: "CONTACT US";
    position: absolute;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 8px;
    color: white;
    bottom: 20px;
    opacity: 0.1;
    right: -20px;
    animation: blink 4s infinite;
  }
  .ai-revolution .footer .footer-container::before {
    left: -20px;
  }
  .ai-revolution .footer .footer-list {
    flex-flow: wrap;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .ai-revolution .footer .footer-item {
    width: 50%;
  }
  .ai-revolution .footer .footer-item:first-child,
  .ai-revolution .footer .footer-item:nth-of-type(2) {
    border: 0;
  }
  .ai-revolution .footer .footer-item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .ai-revolution .footer .footer-item:last-child {
    width: 100%;
  }
}
@media (min-width : 1024px) {
  .ai-revolution .heading h2 {
    font-size: 28px;
  }
  .ai-revolution .buttons .btn-gradient {
    font-size: 16px;
  }
  .ai-revolution .banner .menu {
    display: none;
  }
  .ai-revolution .banner .menu-links {
    transform: translateX(0);
    width: auto;
    box-shadow: none;
    background-color: transparent;
    position: relative;
    padding: 0;
  }
  .ai-revolution .banner .menu-links ul {
    display: flex;
    align-items: center;
  }
  .ai-revolution .banner .menu-links ul li {
    padding: 0px;
    border: none;
    font-weight: 500;
    margin-left: 1.5rem;
  }
  .ai-revolution .banner .menu-links ul li:first-child {
    margin-left: 0px;
  }
  .ai-revolution .banner .menu-links ul li:nth-child(3) {
    display: none;
  }
  .ai-revolution .banner .menu-links ul li:last-child {
    display: flex;
    margin-top: 0px;
  }
  .ai-revolution .banner .menu-links ul li:last-child .btn-white {
    min-width: 0px;
  }
  .ai-revolution .banner .menu-links ul li:last-child .btn-gradient {
    margin-left: 1.5rem;
  }
  .ai-revolution .banner .menu-links ul li:hover {
    background-image: linear-gradient(to right, #5046E5 0%, #9034EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .ai-revolution .banner .menu-links ul li:hover:last-child {
    -webkit-text-fill-color: white;
  }
  .ai-revolution .banner .menu-links ul .buttons {
    align-items: center;
  }
  .ai-revolution .banner .menu-toggle {
    display: none;
  }
  .ai-revolution .banner .banner-container {
    width: 64%;
    margin: auto;
  }
  .ai-revolution .banner .banner-content h1 {
    font-size: 38px;
    line-height: 47px;
  }
  .ai-revolution .banner .banner-content h1 img {
    transform: translate(-8px, 5px);
  }
  .ai-revolution .client .client-container {
    background-image: url(/_public/images/ai-revolution/client-bg.png);
    background-size: 100% 100%;
  }
  .ai-revolution .client .heading {
    display: none;
  }
  .ai-revolution .client .client-list {
    background-color: transparent;
    justify-content: space-between;
    padding: 2.4rem 4rem 2.4rem 2.5rem;
  }
  .ai-revolution .client .client-list span {
    width: 160px;
    margin-top: 0px;
  }
  .ai-revolution .path .heading {
    width: 85%;
    margin: 0 auto;
  }
  .ai-revolution .path .path-item h3 {
    font-size: 22px;
  }
  .ai-revolution .experience .experience-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
  }
  .ai-revolution .experience .experience-list {
    width: 46%;
  }
  .ai-revolution .experience .experience-info {
    width: 48%;
    margin-top: 0;
  }
  .ai-revolution .course .course-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ai-revolution .course .course-item {
    width: 30%;
  }
  .ai-revolution .course .course-item:nth-of-type(2n) {
    margin-right: 2rem;
  }
  .ai-revolution .course .course-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .ai-revolution .contact .contact-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .ai-revolution .contact .heading h2 {
    text-align: left;
  }
  .ai-revolution .contact .contact-fact {
    width: 40%;
  }
  .ai-revolution .contact .contact-list {
    justify-content: space-between;
  }
  .ai-revolution .contact .contact-item {
    width: 47%;
  }
  .ai-revolution .contact .contact-item:last-child,
  .ai-revolution .contact .contact-item:nth-last-child(2) {
    margin-top: 5.1rem;
  }
  .ai-revolution .contact .contact-item .contact-count {
    justify-content: flex-start;
  }
  .ai-revolution .contact .contact-item .contact-count strong {
    font-size: 45px;
  }
  .ai-revolution .contact .contact-item p {
    text-align: left;
  }
  .ai-revolution .contact .contact-item::before {
    height: 60px;
    width: 60px;
    left: -14px;
    top: 0px;
  }
  .ai-revolution .contact .form {
    width: 54%;
    margin-top: 0;
    padding: 4.2rem 2.2rem 2rem;
    background-image: url(/_public/images/ai-revolution/form-bg.png);
    background-size: 100% 100%;
  }
  .ai-revolution .choose .choose-list {
    justify-content: space-between;
    counter-reset: choose-counter;
  }
  .ai-revolution .choose .heading {
    width: 80%;
    margin: 0 auto 0.5rem;
  }
  .ai-revolution .choose .choose-item {
    width: 31%;
  }
  .ai-revolution .choose .choose-item::after {
    content: counter(choose-counter, decimal-leading-zero);
    counter-increment: choose-counter;
    background-image: linear-gradient(180deg, white 0%, #E2DCF8 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
  }
  .ai-revolution .review .content {
    min-height: 230px;
  }
  .ai-revolution .review .review-item {
    width: 96%;
    margin: 1rem auto 0;
  }
  .ai-revolution .faq .faq-container {
    width: 75%;
    margin: 0 auto;
  }
  .ai-revolution .faq .faq-item .ques {
    padding: 1.5rem 2rem;
  }
  .ai-revolution .faq .faq-item .ans {
    padding: 1.2rem 2rem;
  }
  .ai-revolution .footer .footer-container::before,
  .ai-revolution .footer .footer-container::after {
    font-size: 55px;
    bottom: 3px;
  }
  .ai-revolution .footer .footer-item {
    justify-content: center;
    width: 33%;
    margin-top: 0;
  }
  .ai-revolution .footer .footer-item:last-child {
    width: 33%;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media (min-width : 1366px) {
  section {
    padding: 4rem 0;
  }
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  .ai-revolution .heading h2 {
    font-size: 32px;
  }
  .ai-revolution .banner .menu-links ul li:nth-child(3) {
    display: flex;
  }
  .ai-revolution .banner .banner-container {
    width: 52%;
    padding: 4rem 0;
  }
  .ai-revolution .banner .banner-content h1 {
    font-size: 48px;
    line-height: 64px;
  }
  .ai-revolution .banner .banner-content h1 img {
    width: 47px;
    height: 47px;
    transform: translate(-8px, 6px);
  }
  .ai-revolution .client .client-list {
    padding: 3.4rem 6rem 3.4rem 4.5rem;
  }
  .ai-revolution .path .path-item {
    width: 31.5%;
  }
  .ai-revolution .path .path-item:nth-of-type(2n) {
    margin-right: 2rem;
  }
  .ai-revolution .path .exam {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ai-revolution .path .exam p {
    flex-direction: column;
    width: fit-content;
  }
  .ai-revolution .path .exam p:last-child b {
    text-align: end;
  }
  .ai-revolution .path .exam p:last-child {
    margin-top: 0;
  }
  .ai-revolution .path .exam p b {
    margin-left: 0;
    font-size: 16px;
  }
  .ai-revolution .contact {
    background-image: url(/_public/images/ai-revolution/contact-bg.jpg);
    background-size: cover;
  }
  .ai-revolution .contact .contact-item p {
    font-size: 16px;
  }
  .ai-revolution .choose .choose-container {
    width: 92%;
    margin: 0 auto;
  }
  .ai-revolution .choose .choose-list {
    align-items: flex-start;
    position: relative;
  }
  .ai-revolution .choose .choose-list::before {
    content: '';
    background-image: url(/_public/images/ai-revolution/choose-line.png);
    background-size: 100% 100%;
    width: 701px;
    position: absolute;
    height: 87px;
    right: 0px;
    left: 0px;
    margin: auto;
    top: 57px;
    z-index: -1;
  }
  .ai-revolution .choose .choose-item:first-of-type,
  .ai-revolution .choose .choose-item:last-of-type {
    margin-top: 7rem;
  }
  .ai-revolution .review .content {
    min-height: 257px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  }
  .ai-revolution .footer {
    background-size: 160px 107px,
                100% 100%;
  }
  .ai-revolution .footer .footer-container {
    padding-bottom: 10rem;
  }
  .ai-revolution .footer .footer-container::before,
  .ai-revolution .footer .footer-container::after {
    font-size: 80px;
  }
  .ai-revolution .footer .footer-container::before {
    left: -52px;
  }
  .ai-revolution .footer .footer-container::after {
    right: -52px;
  }
}
