@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: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 10px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  margin-left: 0;
  border: 1px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  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: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #000000;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  color: #171717;
  width: 100%;
}
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;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #171717;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.business-analyst .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.business-analyst .buttons .btn-blue,
.business-analyst .buttons .btn-white {
  display: flex;
  font-weight: 500;
  padding: 8px 16px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  min-width: 160px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  z-index: 1;
  overflow: hidden;
  position: relative;
  transition: 1s all;
}
.business-analyst .buttons .btn-blue:hover::before,
.business-analyst .buttons .btn-white:hover::before {
  height: 50px;
  width: 100%;
  transform: skew(0deg, 0deg);
}
.business-analyst .buttons .btn-blue::before,
.business-analyst .buttons .btn-white::before {
  content: '';
  position: absolute;
  border-radius: 30px;
  height: 0px;
  width: 0px;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -1;
  transition: 1s all;
  transform: skew(22deg, 8deg);
}
.business-analyst .buttons .btn-blue img,
.business-analyst .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  align-self: center;
}
.business-analyst .buttons .btn-blue {
  background-color: #39CABB;
  color: #ffffff;
}
.business-analyst .buttons .btn-blue::before {
  background-color: #453F85;
}
.business-analyst .buttons .btn-blue:hover {
  box-shadow: 0px 2px 6px #ffffff;
}
.business-analyst .buttons .btn-blue:hover::before {
  background-color: #3A3571;
}
.business-analyst .buttons .btn-white {
  background-color: #ffffff;
  color: #171717;
  border: 1px solid #171717;
}
.business-analyst .buttons .btn-white::before {
  background-color: #F5F5F5;
}
.business-analyst .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.business-analyst .heading p {
  margin-top: 1rem;
}
.business-analyst .heading h2 {
  width: 100%;
  font-size: 22px;
}
.business-analyst .heading h2 span {
  display: flex;
  position: relative;
  background-color: #453F85;
  width: 90px;
  height: 6px;
  border-radius: 20px;
  top: 7px;
}
.business-analyst .heading h2 span::before,
.business-analyst .heading h2 span::after {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 20px;
  top: 0;
  background-color: #ffffff;
}
.business-analyst .heading h2 span::before {
  left: 10px;
  animation: heading1 6s linear infinite;
}
.business-analyst .heading h2 span::after {
  right: 10px;
  animation: heading2 6s linear infinite;
}
.business-analyst .center-heading {
  justify-content: center;
  align-items: center;
}
.business-analyst .center-heading h2,
.business-analyst .center-heading p {
  text-align: center;
}
.business-analyst .center-heading h2 span {
  margin: auto;
}
.business-analyst .white-heading h2,
.business-analyst .white-heading p {
  color: #ffffff;
}
.business-analyst .white-heading h2 span {
  background-color: #ffffff;
}
.business-analyst .white-heading h2 span::before,
.business-analyst .white-heading h2 span::after {
  background-color: #39CABB;
}
@keyframes heading1 {
  0% {
    left: 0;
  }
  50% {
    left: 86%;
  }
  100% {
    left: 0;
  }
}
@keyframes heading2 {
  0% {
    right: 0;
  }
  50% {
    right: 86%;
  }
  100% {
    right: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.business-analyst .banner {
  flex-direction: column;
  padding-top: 2rem;
}
.business-analyst .banner .logo-container,
.business-analyst .banner .tka-logo,
.business-analyst .banner .menu,
.business-analyst .banner .menu-toggle {
  display: flex;
}
.business-analyst .banner .logo-container {
  border-bottom: 1px solid #453F85;
}
.business-analyst .banner .logo-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.business-analyst .banner .container {
  height: 100%;
}
.business-analyst .banner .tka-logo {
  max-width: 210px;
}
.business-analyst .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.business-analyst .banner .menu {
  margin-left: auto;
  width: 24px;
  height: 23px;
}
.business-analyst .banner .menu img {
  width: 100%;
  height: 100%;
}
.business-analyst .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #39CABB;
}
.business-analyst .banner .menu-toggle {
  font-weight: 500;
  color: #ffffff;
}
.business-analyst .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.business-analyst .banner ul .links-li {
  padding: 8px 0;
  color: #ffffff;
  border-bottom: 1px dotted #ffffff;
}
.business-analyst .banner ul .links-li:first-child {
  padding-top: 0;
}
.business-analyst .banner ul .links-li:nth-last-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}
.business-analyst .banner ul .links-li:last-child {
  display: none;
}
.business-analyst .banner .menu.active + .menu-links {
  padding: 1rem;
  width: 80%;
}
.business-analyst .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.business-analyst .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s all;
  height: auto;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-bottom: none;
}
.business-analyst .banner .sticky .container {
  padding: 1rem 1.5rem;
}
.business-analyst .banner .sticky-down {
  top: -100px;
}
.business-analyst .banner .banner-container,
.business-analyst .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.business-analyst .banner .banner-container {
  padding-top: 1.5rem;
}
.business-analyst .banner .banner-content h1 {
  line-height: 1.3;
  color: #453F85;
  font-size: 30px;
  margin: 0.5rem 0 1rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.business-analyst .banner .banner-content h1 img {
  width: 40px;
  height: 40px;
  margin-right: 0.6rem;
  transform: translateY(8px);
}
.business-analyst .banner .banner-content h3 {
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.business-analyst .banner .banner-content h3 img {
  height: 30px;
  width: 30px;
  margin-right: 1rem;
  transform: translate(0px, 8px);
}
.business-analyst .banner .banner-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.business-analyst .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.business-analyst .fact {
  background-color: #F5F5F5;
}
.business-analyst .fact .heading {
  margin-bottom: 0;
}
.business-analyst .fact .fact-container,
.business-analyst .fact .fact-list {
  display: flex;
  flex-direction: column;
}
.business-analyst .fact .fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.business-analyst .fact .fact-item .image {
  display: flex;
  background-color: #ffffff;
  border: 2px solid #171717;
  border-radius: 50px;
  padding: 1rem;
  height: 70px;
  width: 70px;
}
.business-analyst .fact .fact-item .image img {
  width: 100%;
  height: 100%;
}
.business-analyst .fact .fact-item .fact-content {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 85px);
}
.business-analyst .fact .fact-item .fact-content span,
.business-analyst .fact .fact-item .fact-content h3 {
  font-size: 35px;
  font-weight: 600;
  color: #453F85;
}
.business-analyst .fact .fact-item .fact-content p {
  line-height: 1.4;
}
.business-analyst .overview .overview-container,
.business-analyst .overview .overview-content,
.business-analyst .overview .overview-info {
  display: flex;
  flex-direction: column;
}
.business-analyst .overview .overview-container {
  align-items: flex-start;
}
.business-analyst .overview .overview-content {
  align-items: center;
  width: 100%;
}
.business-analyst .overview .overview-content p {
  text-align: center;
}
.business-analyst .overview .overview-content p:nth-child(3) {
  margin-top: 0.8rem;
}
.business-analyst .overview .overview-info {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.business-analyst .overview .overview-info .image {
  display: flex;
  height: 100%;
}
.business-analyst .overview .overview-info .image img {
  height: 100%;
  width: 100%;
}
.business-analyst .course {
  padding-top: 0;
}
.business-analyst .course .course-container,
.business-analyst .course .course-list,
.business-analyst .course .course-item {
  display: flex;
  flex-direction: column;
}
.business-analyst .course .heading {
  margin-bottom: 0;
}
.business-analyst .course .heading p {
  margin: 0 0 0.2rem 0;
}
.business-analyst .course .heading p strong {
  color: #39CABB;
}
.business-analyst .course .course-item {
  margin-top: 2rem;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  background-image: url(/_public/images/business-analyst/course-bg.png), url(/_public/images/business-analyst/grid.svg);
  background-repeat: no-repeat;
  background-size: 87px 72px,72px 60px;
  background-position: bottom right, top right;
  position: relative;
  padding: 0.8rem;
}
.business-analyst .course .course-item:hover .buttons .btn-white {
  color: #ffffff;
  border: 1px solid #39CABB;
}
.business-analyst .course .course-item:hover .buttons .btn-white::before {
  background-color: #39CABB;
  height: 50px;
  width: 100%;
  transform: skew(0deg, 0deg);
}
.business-analyst .course .course-item:hover .buttons .btn-white span img:first-child {
  height: 0;
  width: 0;
}
.business-analyst .course .course-item:hover .buttons .btn-white span img:last-child {
  height: 100%;
  width: 100%;
}
.business-analyst .course .course-item .image {
  display: flex;
  background-color: #F5F5F5;
  border-radius: 50px;
  padding: 1.2rem;
  position: absolute;
  right: 13px;
  bottom: 5px;
  height: 67px;
  width: 67px;
}
.business-analyst .course .course-item .image img {
  width: 100%;
  height: 100%;
}
.business-analyst .course .course-item h3 {
  font-size: 14px;
}
.business-analyst .course .course-item p {
  font-size: 12px;
}
.business-analyst .course .course-item p:nth-child(3) {
  margin: 0.6rem 0 0.2rem;
}
.business-analyst .course .course-item .buttons .btn-white {
  font-size: 13px;
  min-width: 142px;
}
.business-analyst .course .course-item .buttons .btn-white span {
  display: flex;
  height: 15px;
  width: 15px;
  margin-right: 8px;
}
.business-analyst .course .course-item .buttons .btn-white span img {
  margin-right: 0;
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.business-analyst .course .course-item .buttons .btn-white span img:last-child {
  height: 0;
  width: 0;
}
.business-analyst .method {
  background-color: #453F85;
}
.business-analyst .method .method-container,
.business-analyst .method .method-list,
.business-analyst .method .method-item {
  display: flex;
  flex-direction: column;
}
.business-analyst .method .heading {
  margin-bottom: 0;
}
.business-analyst .method .method-item {
  border-radius: 12px;
  padding: 0 0.6rem 2.5rem;
  background-color: #ffffff;
  margin-top: 5rem;
  position: relative;
}
.business-analyst .method .method-item span {
  display: flex;
  width: 100%;
  height: 200px;
  background-image: url(/_public/images/business-analyst/classroom.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  transform: translateY(-22px);
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.16);
}
.business-analyst .method .method-item p,
.business-analyst .method .method-item h3 {
  text-align: center;
}
.business-analyst .method .method-item h3 {
  font-size: 16px;
}
.business-analyst .method .method-item p {
  margin-top: 0.5rem;
  font-size: 13px;
}
.business-analyst .method .method-item .buttons {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
}
.business-analyst .method .method-item .buttons .btn-white {
  font-size: 15px;
  min-width: 130px;
}
.business-analyst .method .method-item:first-child {
  margin-top: 4rem;
}
.business-analyst .method .method-item:nth-child(2) span {
  background-image: url(/_public/images/business-analyst/led.png);
}
.business-analyst .method .method-item:nth-child(3) span {
  background-image: url(/_public/images/business-analyst/paced.png);
}
.business-analyst .method .method-item:last-child span {
  background-image: url(/_public/images/business-analyst/onsite.png);
}
.business-analyst .method .method-item:hover .btn-white {
  border: 1px solid #39CABB;
  color: #ffffff;
  transition: 0.6s all;
  box-shadow: none;
}
.business-analyst .method .method-item:hover .btn-white::before {
  background-color: #39CABB;
  height: 50px;
  width: 100%;
  transform: skew(0deg, 0deg);
}
.business-analyst .skill .skill-container,
.business-analyst .skill .skill-content,
.business-analyst .skill .skill-info {
  display: flex;
  flex-direction: column;
}
.business-analyst .skill .skill-content ul li {
  margin-top: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.business-analyst .skill .skill-content ul li::before {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  background-image: url(/_public/images/business-analyst/polygon.svg);
  background-size: 100% 100%;
  left: 0;
  top: 3px;
  animation: rotate 8s linear infinite;
}
.business-analyst .skill .skill-info {
  margin-top: 2rem;
  height: 100%;
}
.business-analyst .skill .skill-info .image {
  display: flex;
  height: 100%;
}
.business-analyst .skill .skill-info .image img {
  width: 100%;
  height: 100%;
}
.business-analyst .choose {
  padding-top: 0;
}
.business-analyst .choose .choose-container,
.business-analyst .choose .choose-list {
  display: flex;
  flex-direction: column;
}
.business-analyst .choose .heading {
  margin-bottom: 1rem;
}
.business-analyst .choose .choose-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #3A3571;
  padding: 1.5rem;
  margin-top: 1.5rem;
  background-image: url(/_public/images/business-analyst/choose-bg.png);
  background-size: 90% 88%;
  background-position: bottom left;
  background-repeat: no-repeat;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}
.business-analyst .choose .choose-item img {
  width: 42px;
  height: 42px;
  transform: translateY(-10px);
}
.business-analyst .choose .choose-item p,
.business-analyst .choose .choose-item h3 {
  color: #ffffff;
}
.business-analyst .choose .choose-item h3 {
  font-size: 14px;
  width: calc(100% - 55px);
  background-image: linear-gradient(90deg, #ffffff 50px, transparent 50px);
  background-position: bottom;
  padding-bottom: 0.6rem;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}
.business-analyst .choose .choose-item p {
  font-size: 13px;
  margin-top: 1rem;
}
.business-analyst .onsite {
  padding-top: 0;
}
.business-analyst .onsite .onsite-container,
.business-analyst .onsite .onsite-content {
  display: flex;
  flex-direction: column;
}
.business-analyst .onsite .onsite-content {
  background-color: #453F85;
  padding: 1.5rem 0.8rem;
}
.business-analyst .onsite .onsite-content p,
.business-analyst .onsite .onsite-content li {
  color: #ffffff;
}
.business-analyst .onsite .onsite-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.business-analyst .onsite .onsite-content ul li::before {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  background-image: url(/_public/images/business-analyst/white-polygon.svg);
  background-size: 100% 100%;
  left: 0;
  top: 3px;
  animation: rotate 8s linear infinite;
}
.business-analyst .onsite .onsite-info {
  display: flex;
  height: 100%;
  margin-top: 2rem;
}
.business-analyst .onsite .onsite-info img {
  width: 100%;
  height: 100%;
}
.business-analyst .client {
  padding-top: 0;
}
.business-analyst .client .client-container,
.business-analyst .client .client-list,
.business-analyst .client .client-item {
  display: flex;
  flex-direction: column;
}
.business-analyst .client .client-item {
  width: 97%;
}
.business-analyst .client .client-item span {
  display: flex;
  width: 118px;
  height: 30px;
  padding: 0.4rem;
  border-radius: 8px;
  border: 1px solid #c7c7c7;
}
.business-analyst .client .client-item span img {
  width: 100%;
  height: 100%;
}
.business-analyst .client .client-item h3 {
  color: #453F85;
  font-size: 18px;
}
.business-analyst .client .client-item h4 {
  font-size: 14px;
  margin-top: 0.5rem;
}
.business-analyst .client .client-item p {
  margin: 1rem 0;
}
.business-analyst .client .owl-nav {
  display: flex;
  width: 130px;
  justify-content: space-between;
  margin-top: 2rem;
}
.business-analyst .client .owl-nav .owl-prev,
.business-analyst .client .owl-nav .owl-next {
  display: flex;
  width: 60px;
  height: 30px;
  background-image: url(/_public/images/business-analyst/arrow.svg);
  background-size: 100% 100%;
  opacity: 0.8;
}
.business-analyst .client .owl-nav .owl-prev {
  transform: rotate(180deg);
}
.business-analyst .client .owl-nav .btn-active {
  opacity: 1;
}
.business-analyst .faq {
  padding-top: 0;
}
.business-analyst .faq .faq-container,
.business-analyst .faq .faq-list,
.business-analyst .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.business-analyst .faq .heading {
  margin-bottom: 0.8rem;
}
.business-analyst .faq .faq-item {
  margin-top: 1.2rem;
}
.business-analyst .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  background-color: #F5F5F5;
  border-radius: 8px;
  padding: 0.8rem;
  cursor: pointer;
}
.business-analyst .faq .faq-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 25px);
  align-self: center;
}
.business-analyst .faq .faq-item .ques span {
  display: flex;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}
.business-analyst .faq .faq-item .ques span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.business-analyst .faq .faq-item .ques span img:last-child {
  width: 0;
}
.business-analyst .faq .faq-item .ans {
  display: none;
  margin-top: 0.8rem;
}
.business-analyst .faq .faq-item .ans p {
  font-size: 13px;
}
.business-analyst .faq .faq-item.active .ques span img:first-child {
  width: 0;
}
.business-analyst .faq .faq-item.active .ques span img:last-child {
  width: 100%;
}
.business-analyst .footer {
  background-color: #453F85;
}
.business-analyst .footer .footer-container,
.business-analyst .footer .footer-content,
.business-analyst .footer .form,
.business-analyst .footer .input-list {
  display: flex;
  flex-direction: column;
}
.business-analyst .footer .footer-content {
  margin-top: 2rem;
  background-color: #ffffff;
  padding: 1rem;
  align-items: center;
}
.business-analyst .footer .footer-content .image {
  width: 100%;
  height: auto;
}
.business-analyst .footer .footer-content p {
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
  margin-top: 1.5rem;
}
.business-analyst .footer .form {
  margin-bottom: 0;
}
.business-analyst .footer .form .heading {
  margin-bottom: 2rem;
}
.business-analyst .footer .form .input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #c7c7c7;
}
.business-analyst .footer .form .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.business-analyst .footer .form .input-container span img {
  width: 100%;
  height: 100%;
}
.business-analyst .footer .form .input-container span img:last-child {
  display: none;
}
.business-analyst .footer .form .input-container input,
.business-analyst .footer .form .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  color: #ffffff;
}
.business-analyst .footer .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.business-analyst .footer .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #c7c7c7;
}
.business-analyst .footer .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #c7c7c7;
}
.business-analyst .footer .form .input-container ::placeholder {
  color: #c7c7c7;
}
.business-analyst .footer .form .input-container:last-child {
  align-items: flex-start;
}
.business-analyst .footer .form .input-error {
  border-color: #ff0000;
}
.business-analyst .footer .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.business-analyst .footer .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.business-analyst .footer .form .input-error ::placeholder {
  color: #ff0000;
}
.business-analyst .footer .form .input-error span img:first-child {
  display: none;
}
.business-analyst .footer .form .input-error span img:last-child {
  display: flex;
}
.business-analyst .footer .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.business-analyst .footer .form .form-consent p {
  font-size: 11px;
  color: #ffffff;
}
.business-analyst .footer .form .form-consent a {
  font-weight: 600;
  color: #39CABB;
}
.business-analyst .footer .form .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  line-height: 1.6;
  font-size: 11px;
  width: 90%;
  font-weight: 500;
  color: #ffffff;
}
.business-analyst .footer .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.business-analyst .footer .form .consent-error,
.business-analyst .footer .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.business-analyst .footer .form .consent-error p,
.business-analyst .footer .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.business-analyst .footer .form .buttons .btn-white {
  min-width: 138px;
}
.business-analyst .footer .form .buttons .btn-white img {
  width: 17px;
  height: 17px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .business-analyst .banner .menu.active + .menu-links {
    width: 50%;
  }
  .business-analyst .banner .sticky .container {
    padding: 1rem 2rem;
  }
  .business-analyst .banner .banner-container {
    padding-top: 3rem;
  }
  .business-analyst .banner .banner-info {
    display: none;
  }
  .business-analyst .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .business-analyst .fact .heading h2 {
    text-align: center;
  }
  .business-analyst .fact .heading h2 span {
    margin: auto;
  }
  .business-analyst .fact .fact-item {
    width: 40%;
  }
  .business-analyst .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .business-analyst .overview .overview-content {
    width: 48%;
    align-items: flex-start;
  }
  .business-analyst .overview .overview-content .heading h2 span {
    margin: 0;
  }
  .business-analyst .overview .overview-content h2,
  .business-analyst .overview .overview-content p {
    text-align: left;
  }
  .business-analyst .overview .overview-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .business-analyst .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .business-analyst .course .heading h2,
  .business-analyst .course .heading p {
    text-align: center;
  }
  .business-analyst .course .heading span {
    margin: auto;
  }
  .business-analyst .course .course-item {
    width: 47.5%;
    margin-right: 2rem;
  }
  .business-analyst .course .course-item h3 {
    min-height: 42px;
  }
  .business-analyst .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .business-analyst .course .course-item:last-child {
    margin-right: 0;
  }
  .business-analyst .method {
    background-image: url(/_public/images/business-analyst/method-bg.png);
    background-color: transparent;
    background-size: 100% 100%;
  }
  .business-analyst .method .method-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .business-analyst .method .method-item {
    width: 46%;
  }
  .business-analyst .method .method-item:nth-child(2) {
    margin-top: 4rem;
  }
  .business-analyst .skill .skill-container {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .business-analyst .skill .skill-content {
    width: 52%;
  }
  .business-analyst .skill .skill-info {
    width: 42%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .business-analyst .choose .heading h2,
  .business-analyst .choose .heading p {
    text-align: center;
  }
  .business-analyst .choose .heading h2 span {
    margin: auto;
  }
  .business-analyst .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .business-analyst .choose .choose-item {
    width: 46.5%;
  }
  .business-analyst .choose .choose-item p {
    min-height: 104px;
  }
  .business-analyst .onsite .onsite-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .business-analyst .onsite .onsite-content {
    width: 48%;
    padding: 1.5rem 1.2rem;
  }
  .business-analyst .onsite .onsite-info {
    width: 45%;
    position: sticky;
    margin-top: 0;
    top: 60px;
  }
  .business-analyst .faq .faq-list {
    counter-reset: counter;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .business-analyst .faq .faq-item {
    width: 46.5%;
  }
  .business-analyst .footer .footer-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .business-analyst .footer .form {
    width: 45%;
  }
  .business-analyst .footer .footer-content {
    width: 47%;
    margin-top: 0;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .business-analyst .heading h2 {
    font-size: 28px;
  }
  .business-analyst .buttons .btn-blue,
  .business-analyst .buttons .btn-white {
    font-size: 16px;
  }
  .business-analyst .banner {
    position: relative;
    z-index: 2;
  }
  .business-analyst .banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/_public/images/business-analyst/pattern.png);
    background-size: 100% 100%;
    height: 718px;
    width: 605px;
    animation: blink 3s linear infinite;
    z-index: -1;
  }
  .business-analyst .banner .menu-links {
    display: flex;
    width: auto;
    background-color: transparent;
    position: relative;
  }
  .business-analyst .banner .logo-container {
    border-bottom: none;
  }
  .business-analyst .banner .logo-container .container {
    padding-bottom: 0;
  }
  .business-analyst .banner .sticky .container {
    padding-bottom: 1rem;
  }
  .business-analyst .banner .tka-logo {
    max-width: 235px;
  }
  .business-analyst .banner .menu,
  .business-analyst .banner .menu-toggle {
    display: none;
  }
  .business-analyst .banner ul {
    display: flex;
    align-items: center;
  }
  .business-analyst .banner ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    font-size: 16px;
    color: #171717;
    transition: 1s all;
    padding: 0;
    position: relative;
  }
  .business-analyst .banner ul .links-li::before {
    content: '';
    position: absolute;
    background-color: #39CABB;
    border-radius: 50px;
    width: 0px;
    height: 3px;
    left: 0;
    right: 0px;
    margin: auto;
    bottom: -3px;
    transition: 1s all;
  }
  .business-analyst .banner ul .links-li:hover {
    color: #39CABB;
  }
  .business-analyst .banner ul .links-li:hover::before {
    width: 100%;
  }
  .business-analyst .banner ul .links-li:nth-child(4) {
    display: none;
  }
  .business-analyst .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .business-analyst .banner ul .links-li:last-child::before {
    content: none;
  }
  .business-analyst .banner ul .links-li:last-child .btn-white,
  .business-analyst .banner ul .links-li:last-child .btn-blue {
    height: 45px;
    min-width: 168px;
  }
  .business-analyst .banner ul .links-li:last-child .btn-white {
    margin-right: 1rem;
  }
  .business-analyst .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .business-analyst .banner .banner-content {
    width: 50%;
  }
  .business-analyst .banner .banner-content h1 {
    font-size: 46px;
  }
  .business-analyst .banner .banner-content h1 img {
    width: 55px;
    height: 55px;
  }
  .business-analyst .banner .banner-content h3 {
    font-size: 20px;
  }
  .business-analyst .banner .banner-content h3 img {
    height: 40px;
    width: 40px;
  }
  .business-analyst .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 45%;
  }
  .business-analyst .fact {
    background-image: url(/_public/images/business-analyst/fact-bg.png);
    background-color: transparent;
    background-size: 100% 100%;
  }
  .business-analyst .fact .fact-list {
    justify-content: space-between;
  }
  .business-analyst .fact .heading {
    display: none;
  }
  .business-analyst .fact .fact-item {
    width: 21%;
    margin-top: 0;
  }
  .business-analyst .fact .fact-item .image {
    background-color: #F5F5F5;
  }
  .business-analyst .fact .fact-item .fact-content span,
  .business-analyst .fact .fact-item .fact-content h3 {
    font-size: 40px;
  }
  .business-analyst .fact .fact-item .fact-content p {
    font-size: 16px;
  }
  .business-analyst .overview .overview-content {
    width: 55%;
  }
  .business-analyst .overview .overview-info {
    position: static;
    top: 0px;
    width: 38%;
  }
  .business-analyst .course .course-item {
    width: 31%;
    background-size: 95px 75px, 72px 60px;
  }
  .business-analyst .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .business-analyst .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .business-analyst .course .course-item .image {
    width: 72px;
    height: 72px;
    right: 13px;
  }
  .business-analyst .method .heading {
    width: 90%;
    margin: auto;
  }
  .business-analyst .method .method-list {
    width: 80%;
    margin: auto;
  }
  .business-analyst .choose .heading {
    width: 90%;
    align-self: center;
  }
  .business-analyst .choose .choose-list {
    justify-content: space-between;
  }
  .business-analyst .choose .choose-item {
    width: 32%;
  }
  .business-analyst .choose .choose-item p {
    min-height: 125px;
    line-height: 1.6;
  }
  .business-analyst .onsite {
    background-image: linear-gradient(90deg, #3A3571 75%, #ffffff 35%);
    padding-top: 3rem;
  }
  .business-analyst .onsite .onsite-content {
    background-color: transparent;
    padding: 0;
  }
  .business-analyst .onsite .onsite-info {
    padding: 2rem 1.2rem;
    background-image: url(/_public/images/business-analyst/circle.png);
    background-size: 100% 100%;
  }
  .business-analyst .client {
    padding-top: 3rem;
  }
  .business-analyst .client .client-container {
    position: relative;
  }
  .business-analyst .client .client-container::before {
    content: '';
    position: absolute;
    left: -28px;
    top: -20px;
    background-image: url(/_public/images/business-analyst/client-bg.png);
    background-size: 100% 100%;
    width: 325px;
    height: 325px;
  }
  .business-analyst .client .client-list,
  .business-analyst .client .heading {
    width: 65%;
    margin-left: auto;
  }
  .business-analyst .client .owl-nav {
    position: absolute;
    right: 0;
    top: -25%;
    margin-top: 0;
  }
  .business-analyst .faq .faq-item::before {
    height: 42px;
    width: 42px;
  }
  .business-analyst .faq .faq-item .ques {
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    align-items: center;
  }
  .business-analyst .faq .faq-item .ques::before {
    content: counter(counter, decimal-leading-zero);
    display: flex;
    justify-content: center;
    align-items: center;
    counter-increment: counter;
    height: 42px;
    width: 42px;
    font-size: 17px;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 500;
    line-height: 1.5;
    background-color: #453F85;
  }
  .business-analyst .faq .faq-item .ques h3 {
    width: calc(100% - 95px);
    font-size: 15px;
  }
  .business-analyst .faq .faq-item .ques span {
    height: 22px;
    width: 22px;
  }
  .business-analyst .footer {
    background-color: transparent;
    background-image: url(/_public/images/business-analyst/footer-bg.png);
    background-size: 100% 100%;
    position: relative;
    padding-bottom: 2rem;
    z-index: 1;
  }
  .business-analyst .footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 507px;
    width: 523px;
    background-image: url(/_public/images/business-analyst/layer.png);
    background-size: 100% 100%;
    z-index: -1;
  }
  .business-analyst .footer .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .business-analyst .footer .form .input-container {
    width: 47%;
  }
  .business-analyst .footer .form .input-container:last-child {
    width: 100%;
  }
  .business-analyst .footer .footer-content {
    justify-content: center;
    height: 475px;
    width: 475px;
    border-radius: 100%;
    border: 28px solid #67619B;
  }
  .business-analyst .footer .footer-content .image {
    width: 200px;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .business-analyst .heading h2 {
    font-size: 32px;
  }
  .business-analyst .banner {
    padding-bottom: 0.9rem;
    position: relative;
  }
  .business-analyst .banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0px;
    background-image: url(/_public/images/business-analyst/banner-bg.png);
    background-size: 100% 100%;
    height: 787px;
    width: 700px;
    z-index: -1;
  }
  .business-analyst .banner ul .links-li {
    margin-right: 1.5rem;
  }
  .business-analyst .banner ul .links-li:nth-child(4) {
    display: flex;
  }
  .business-analyst .banner ul .btn-white {
    margin-right: 1.5rem;
  }
  .business-analyst .banner .sticky .container {
    padding: 1rem 0;
  }
  .business-analyst .banner .banner-container {
    padding-top: 4rem;
  }
  .business-analyst .banner .banner-content {
    width: 45%;
  }
  .business-analyst .banner .banner-content h1 {
    font-size: 53px;
    line-height: 1.1;
  }
  .business-analyst .banner .banner-content h1 img {
    width: 56px;
    height: 56px;
  }
  .business-analyst .banner .banner-info {
    width: 50%;
  }
  .business-analyst .fact .fact-item {
    width: 23%;
  }
  .business-analyst .course .course-item {
    width: 29%;
    background-size: 105px 88px,72px 60px;
  }
  .business-analyst .course .course-item .image {
    width: 82px;
    height: 82px;
    padding: 1.4rem;
    background-image: linear-gradient(#F5F5F5, #F5F5F5), linear-gradient(0deg, #ffffff, #F5F5F5);
    border: 4px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
  }
  .business-analyst .method {
    padding-top: 3rem;
  }
  .business-analyst .method .method-list {
    width: 100%;
    justify-content: space-between;
  }
  .business-analyst .method .method-item {
    width: 23.3%;
    margin-top: 4rem;
  }
  .business-analyst .skill .skill-container {
    align-items: center;
  }
  .business-analyst .skill .skill-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .business-analyst .skill .skill-content ul li {
    width: 48%;
  }
  .business-analyst .skill .skill-info {
    position: static;
    top: 0px;
  }
  .business-analyst .choose .choose-container {
    width: 95%;
    margin: auto;
  }
  .business-analyst .choose .choose-item h3 {
    font-size: 15px;
  }
  .business-analyst .choose .choose-item p {
    min-height: 104px;
  }
  .business-analyst .onsite {
    background-image: url(/_public/images/business-analyst/onsite-bg.png), linear-gradient(90deg, #3A3571 75%, #ffffff 35%);
    background-size: 85% 100%, 100% 100%;
    background-repeat: no-repeat;
    padding: 3rem 0;
  }
  .business-analyst .onsite .onsite-content {
    width: 55% ;
  }
  .business-analyst .onsite .onsite-info {
    position: static;
    align-self: center;
    top: 0px;
    width: 40%;
  }
  .business-analyst .client {
    padding-top: 4rem;
  }
  .business-analyst .client .client-container::before {
    width: 375px;
    height: 360px;
  }
  .business-analyst .client .heading,
  .business-analyst .client .client-list {
    width: 58%;
  }
  .business-analyst .client .client-list {
    position: relative;
  }
  .business-analyst .client .client-list::before {
    content: '';
    position: absolute;
    background-color: #39CABB;
    border: 12px solid #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-image: url(/_public/images/business-analyst/quotes.svg);
    background-size: 33px 26px;
    background-position: center;
    background-repeat: no-repeat;
    left: -17%;
    top: 17%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  }
  .business-analyst .footer::before {
    height: 530px;
    width: 619px;
  }
  .business-analyst .footer .footer-content {
    height: 525px;
    width: 525px;
    padding: 2rem;
  }
  .business-analyst .footer .form {
    width: 50%;
  }
}
@media (min-width : 1500px) {
  .business-analyst .banner::before,
  .business-analyst .banner::after {
    content: none;
  }
  .business-analyst .onsite {
    background-image: linear-gradient(90deg, #453F85 90%, #ffffff 10%);
  }
  .business-analyst .footer::before {
    content: none;
  }
}
@media (min-width: 768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
}
