@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: #000000;
  font-weight: 700;
  font-size: 11px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #707070;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
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: #30A1F9;
}
::-webkit-scrollbar-thumb {
  background: #012068;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #000000;
  width: 100%;
  font-weight: 500;
}
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: #000000;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.pmi-pba {
  border-bottom: 8px solid #30A1F9;
}
.pmi-pba .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.pmi-pba .buttons .btn-blue,
.pmi-pba .buttons .btn-white {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  outline: 0;
  color: #FFFFFF;
  border-radius: 30px;
  min-width: 160px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.pmi-pba .buttons .btn-blue::before,
.pmi-pba .buttons .btn-white::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: #012068;
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: -webkit-transform 0.9s;
  transition: transform 0.9s;
}
.pmi-pba .buttons .btn-blue:hover::before,
.pmi-pba .buttons .btn-white:hover::before {
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}
.pmi-pba .buttons .btn-blue img,
.pmi-pba .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.pmi-pba .buttons .btn-white {
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
.pmi-pba .buttons .btn-blue {
  background-color: #30A1F9;
}
.pmi-pba .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.pmi-pba .heading p {
  margin-top: 1rem;
}
.pmi-pba .heading h2 {
  width: 100%;
  font-size: 22px;
}
.pmi-pba .heading h2 span {
  display: flex;
  background-color: #30A1F9;
  height: 3px;
  width: 100px;
  position: relative;
  margin: 0.5rem 0 auto;
}
.pmi-pba .heading h2 span:after {
  content: '';
  position: absolute;
  background-image: url(/_public/images/pmi-pba/rectangle.svg);
  background-size: 100% 100%;
  height: 16px;
  width: 28px;
  bottom: -6px;
  left: 0px;
  animation: move 6s linear infinite;
}
.pmi-pba .center-heading {
  justify-content: center;
  align-items: center;
}
.pmi-pba .center-heading h2,
.pmi-pba .center-heading p {
  text-align: center;
}
.pmi-pba .center-heading h2 span {
  margin: 0.5rem auto 0;
}
.pmi-pba .white-heading h2,
.pmi-pba .white-heading p {
  color: #FFFFFF;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes move {
  0% {
    left: 0;
  }
  50% {
    left: 80px;
  }
  100% {
    left: 0;
  }
}
.pmi-pba .banner {
  flex-direction: column;
  padding-top: 1.5rem;
}
.pmi-pba .banner .logo-container,
.pmi-pba .banner .tka-logo,
.pmi-pba .banner .menu,
.pmi-pba .banner .menu-toggle {
  display: flex;
}
.pmi-pba .banner .container {
  height: 100%;
}
.pmi-pba .banner .logo-container {
  height: 100%;
}
.pmi-pba .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
}
.pmi-pba .banner .tka-logo {
  max-width: 200px;
}
.pmi-pba .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.pmi-pba .banner .menu {
  z-index: 1;
  margin-left: auto;
}
.pmi-pba .banner .menu img {
  width: 22px;
  height: 23px;
}
.pmi-pba .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #30A1F9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.pmi-pba .banner .menu-toggle {
  font-weight: 500;
  color: #FFFFFF;
}
.pmi-pba .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.pmi-pba .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #FFFFFF;
  font-weight: 500;
  color: #FFFFFF;
}
.pmi-pba .banner ul .links-li:first-child {
  padding-top: 0;
}
.pmi-pba .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.pmi-pba .banner ul .links-li:last-child {
  display: none;
}
.pmi-pba .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.pmi-pba .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.pmi-pba .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
}
.pmi-pba .banner .sticky-down {
  top: -100px;
}
.pmi-pba .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}
.pmi-pba .banner .banner-container h1 {
  margin-bottom: 1rem;
  font-size: 21px;
  color: #012068;
}
.pmi-pba .banner .banner-container h1 span:nth-child(3) {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #012068;
  color: transparent;
  font-size: 30px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.pmi-pba .banner .banner-container h1 span:last-child {
  color: #FFFFFF;
  background-color: #9ACAF0;
  padding: 0.2rem 0.5rem;
  font-weight: 400;
  font-style: italic;
  font-family: Lucida Fax;
  font-size: 30px;
}
.pmi-pba .banner .banner-container h1 img {
  width: 35px;
  height: 35px;
  margin-right: 0.8rem;
  transform: translateY(10px);
}
.pmi-pba .overview {
  background-color: #F5F5F5;
}
.pmi-pba .overview .overview-container,
.pmi-pba .overview .overview-content,
.pmi-pba .overview .course-content {
  display: flex;
  flex-direction: column;
}
.pmi-pba .overview .overview-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.pmi-pba .overview .course-content {
  margin-top: 2rem;
  padding: 1.5rem 1rem 6.5rem;
  border-left: 3px solid #30A1F9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  position: relative;
}
.pmi-pba .overview .course-content::before {
  content: '';
  position: absolute;
  bottom: 25px;
  right: 25px;
  height: 85px;
  width: 85px;
  background-image: url(/_public/images/pmi-pba/monitor.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.pmi-pba .overview .course-content h3 {
  font-size: 16px;
}
.pmi-pba .overview .course-content p:nth-child(2) {
  margin: 1rem 0 0.3rem;
}
.pmi-pba .course {
  padding-bottom: 0;
}
.pmi-pba .course .course-container,
.pmi-pba .course .course-list,
.pmi-pba .course .course-item {
  display: flex;
  flex-direction: column;
}
.pmi-pba .course .heading {
  margin-bottom: 0.5rem;
}
.pmi-pba .course .heading p {
  margin: 0 0 0.2rem;
}
.pmi-pba .course .heading p strong {
  color: #30A1F9;
}
.pmi-pba .course .course-item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 1.3rem;
  margin-top: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: 1s all;
}
.pmi-pba .course .course-item:hover {
  background-color: #012068;
}
.pmi-pba .course .course-item:hover h3,
.pmi-pba .course .course-item:hover p {
  color: #FFFFFF;
}
.pmi-pba .course .course-item:hover::before {
  content: none;
}
.pmi-pba .course .course-item:hover::after {
  opacity: 0.4;
}
.pmi-pba .course .course-item::before,
.pmi-pba .course .course-item::after {
  content: '';
  position: absolute;
  z-index: -1;
}
.pmi-pba .course .course-item::before {
  width: 50px;
  height: 50px;
  background-image: url(/_public/images/pmi-pba/education.svg);
  background-size: 100% 100%;
  right: 20px;
  top: 20px;
}
.pmi-pba .course .course-item::after {
  width: 100%;
  height: 60px;
  bottom: 79px;
  left: 0;
  background-color: #E6E6E6;
}
.pmi-pba .course .course-item h3,
.pmi-pba .course .course-item p {
  text-align: center;
  transition: 1s all;
}
.pmi-pba .course .course-item p {
  line-height: 1.5;
  font-size: 13px;
}
.pmi-pba .course .course-item h3 {
  font-size: 16px;
  margin-bottom: 1.5rem;
  min-height: 50px;
  width: 100%;
}
.pmi-pba .course .course-item .buttons .btn-blue {
  min-width: 135px;
  font-size: 14px;
}
.pmi-pba .course .course-item .buttons .btn-blue::before {
  content: none;
}
.pmi-pba .course .course-item .buttons .btn-blue img {
  width: 16px;
  height: 16px;
}
.pmi-pba .method .method-container,
.pmi-pba .method .method-content,
.pmi-pba .method .method-item {
  display: flex;
  flex-direction: column;
}
.pmi-pba .method .method-content {
  margin-bottom: 0.5rem;
}
.pmi-pba .method .method-content .heading {
  margin-bottom: 0;
}
.pmi-pba .method .method-item {
  height: 272px;
  margin-top: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 10px solid #FFFFFF;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: flex-end;
  cursor: pointer;
}
.pmi-pba .method .method-item:hover .method-info h3 {
  opacity: 1;
}
.pmi-pba .method .method-item .method-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pmi-pba .method .method-item .method-info h3 {
  display: flex;
  align-items: center;
  font-size: 14px;
  background-color: #30A1F9;
  color: #FFFFFF;
  padding: 1rem;
  opacity: 0;
  min-height: 74px;
  width: calc(100% - 72px);
  transition: 1s all;
}
.pmi-pba .method .method-item .method-info span {
  display: flex;
  min-width: 72px;
  height: 74px;
  background-color: #30A1F9;
  padding: 1rem;
}
.pmi-pba .method .method-item .method-info span img {
  width: 100%;
  height: 100%;
}
.pmi-pba .method .method-item:nth-child(2) {
  background-image: url(/_public/images/pmi-pba/classroom-bg.png);
}
.pmi-pba .method .method-item:nth-child(3) {
  background-image: url(/_public/images/pmi-pba/led-bg.png);
}
.pmi-pba .method .method-item:nth-child(4) {
  background-image: url(/_public/images/pmi-pba/paced-bg.png);
}
.pmi-pba .method .method-item:last-child {
  background-image: url(/_public/images/pmi-pba/onsite-bg.png);
}
.pmi-pba .process {
  padding-top: 1rem;
}
.pmi-pba .process .process-container,
.pmi-pba .process .analysis-container,
.pmi-pba .process .fact-container,
.pmi-pba .process .analysis-content,
.pmi-pba .process .analysis-info {
  display: flex;
  flex-direction: column;
}
.pmi-pba .process .analysis-container {
  align-items: flex-start;
}
.pmi-pba .process .analysis-content {
  width: 100%;
}
.pmi-pba .process .analysis-content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-top: 0.8rem;
}
.pmi-pba .process .analysis-content ul li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(/_public/images/pmi-pba/cube.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 3px;
  left: 0px;
  animation: rotate 8s linear infinite;
}
.pmi-pba .process .analysis-info {
  width: 100%;
  margin-top: 2rem;
}
.pmi-pba .process .analysis-info .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.pmi-pba .process .analysis-info .image img {
  width: 100%;
  height: 100%;
}
.pmi-pba .process .fact-container {
  margin-top: 2rem;
}
.pmi-pba .process .fact-container .heading {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid #012068;
  padding: 1rem;
}
.pmi-pba .process .fact-container .heading h2 span {
  display: none;
}
.pmi-pba .process .fact-container .fact-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  margin-top: 1.5rem;
  padding: 1rem;
  border-top: 2px solid #30A1F9;
}
.pmi-pba .process .fact-container .fact-item p {
  text-align: center;
}
.pmi-pba .process .fact-container .fact-item h3,
.pmi-pba .process .fact-container .fact-item span {
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #012068;
  color: transparent;
  font-size: 35px;
  font-weight: 600;
}
.pmi-pba .benefit {
  background-color: #012068;
}
.pmi-pba .benefit .benefit-container,
.pmi-pba .benefit .benefit-content,
.pmi-pba .benefit .graph-content,
.pmi-pba .benefit .graph-list {
  display: flex;
  flex-direction: column;
}
.pmi-pba .benefit .benefit-content p {
  color: #FFFFFF;
}
.pmi-pba .benefit .benefit-content p:nth-child(3) {
  margin-top: 0.8rem;
}
.pmi-pba .benefit .graph-content {
  margin-top: 2rem;
}
.pmi-pba .benefit .graph-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #27468E;
  padding: 1.2rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}
.pmi-pba .benefit .graph-item h3 {
  color: #FFFFFF;
  width: calc(100% - 65px);
  font-size: 13px;
}
.pmi-pba .benefit .graph-item img {
  width: 50px;
  height: 50px;
}
.pmi-pba .benefit .graph-item:first-child {
  margin-top: 0;
}
.pmi-pba .benefit .graph-item:first-child h3,
.pmi-pba .benefit .graph-item:first-child img {
  width: 100%;
}
.pmi-pba .benefit .graph-item:first-child img {
  height: auto;
}
.pmi-pba .benefit .graph-item:first-child h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.pmi-pba .choose .choose-container,
.pmi-pba .choose .choose-list,
.pmi-pba .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.pmi-pba .choose .heading {
  margin-bottom: 0;
}
.pmi-pba .choose .choose-container {
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
}
.pmi-pba .choose .choose-item {
  margin-top: 2rem;
}
.pmi-pba .choose .choose-item img {
  width: 68px;
  height: 68px;
}
.pmi-pba .choose .choose-item h3 {
  font-size: 17px;
  margin: 0.8rem 0;
}
.pmi-pba .business {
  padding-top: 1rem;
  padding-bottom: 0;
}
.pmi-pba .business .business-container,
.pmi-pba .business .business-content {
  display: flex;
  flex-direction: column;
}
.pmi-pba .business .business-content ul li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
.pmi-pba .business .business-content ul li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(/_public/images/pmi-pba/cube.svg);
  background-size: 100% 100%;
  left: 0;
  top: 4px;
  animation: rotate 8s linear infinite;
}
.pmi-pba .business .business-content p:nth-last-child(2) {
  margin-top: 0.8rem;
}
.pmi-pba .business .business-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
  border: 10px solid #F5F5F5;
  padding: 1rem;
}
.pmi-pba .business .business-info img {
  width: 100%;
  height: 100%;
}
.pmi-pba .testimonial .testimonial-container,
.pmi-pba .testimonial .testimonial-list,
.pmi-pba .testimonial .testimonial-item {
  display: flex;
  flex-direction: column;
}
.pmi-pba .testimonial .testimonial-item {
  background-color: #012068;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  width: 95%;
  margin: auto;
  align-items: flex-start;
}
.pmi-pba .testimonial .testimonial-item img {
  width: 135px;
  height: 25px;
}
.pmi-pba .testimonial .testimonial-item p {
  color: #FFFFFF;
  margin: 3rem 0;
  position: relative;
}
.pmi-pba .testimonial .testimonial-item p::before,
.pmi-pba .testimonial .testimonial-item p::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 20px;
  background-size: 100% 100%;
}
.pmi-pba .testimonial .testimonial-item p::before {
  background-image: url(/_public/images/pmi-pba/quote.svg);
  top: -32px;
  left: 0;
}
.pmi-pba .testimonial .testimonial-item p::after {
  background-image: url(/_public/images/pmi-pba/quote.svg);
  bottom: -25px;
  right: 0;
  transform: rotate(180deg);
}
.pmi-pba .testimonial .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 95px;
  align-self: center;
  margin-top: 2rem;
}
.pmi-pba .testimonial .owl-nav .owl-prev,
.pmi-pba .testimonial .owl-nav .owl-next {
  display: flex;
  background-image: url(/_public/images/pmi-pba/arrow.svg);
  background-size: 100% 100%;
  width: 37px;
  height: 37px;
  opacity: 0.6;
}
.pmi-pba .testimonial .owl-nav .owl-prev {
  transform: rotate(90deg);
}
.pmi-pba .testimonial .owl-nav .owl-next {
  transform: rotate(-90deg);
}
.pmi-pba .testimonial .owl-nav .btn-active {
  opacity: 1;
}
.pmi-pba .testimonial .icon {
  display: flex;
  justify-content: space-between;
  background-color: #27468E;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 45px;
  align-items: center;
}
.pmi-pba .testimonial .icon span {
  display: flex;
  width: 46px;
  height: 46px;
  background-color: #FFFFFF;
  border-radius: 50px;
  padding: 0.4rem;
  border: 3px solid #27468E;
  box-shadow: 0 0 0 1px #FFFFFF;
  margin-right: 0.8rem;
}
.pmi-pba .testimonial .icon span img {
  width: 100%;
  height: 100%;
}
.pmi-pba .testimonial .icon h3 {
  font-size: 14px;
  color: #FFFFFF;
}
.pmi-pba .faq {
  padding-top: 0;
  padding-bottom: 0;
}
.pmi-pba .faq .faq-container,
.pmi-pba .faq .faq-content,
.pmi-pba .faq .faq-list,
.pmi-pba .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.pmi-pba .faq .heading {
  margin-bottom: 0;
}
.pmi-pba .faq .faq-list {
  counter-reset: counter;
}
.pmi-pba .faq .faq-item {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 2.2rem;
  transition: 1s all;
  border: 1px solid transparent;
}
.pmi-pba .faq .faq-item.active {
  box-shadow: none;
  border: 1px solid #E6E6E6;
}
.pmi-pba .faq .faq-item.active .ques {
  background-color: #012068;
}
.pmi-pba .faq .faq-item.active .ques h3 {
  color: #FFFFFF;
}
.pmi-pba .faq .faq-item.active .ques .icon img:first-child {
  display: none;
}
.pmi-pba .faq .faq-item.active .ques .icon img:last-child {
  display: flex;
}
.pmi-pba .faq .ques {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.7rem;
  cursor: pointer;
}
.pmi-pba .faq .ques .number {
  display: none;
  background-color: #E6E6E6;
  width: 34px;
  height: 30px;
  position: relative;
}
.pmi-pba .faq .ques .number::before {
  position: absolute;
  counter-increment: counter;
  content: none;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  width: 20px;
  height: 25px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pmi-pba .faq .ques h3 {
  display: flex;
  align-self: center;
  font-size: 14px;
  width: calc(100% - 30px);
}
.pmi-pba .faq .ques .icon {
  display: flex;
  width: 20px;
  height: 20px;
}
.pmi-pba .faq .ques .icon img {
  width: 100%;
  height: 100%;
}
.pmi-pba .faq .ques .icon img:last-child {
  display: none;
}
.pmi-pba .faq .ans {
  display: none;
  padding: 0.7rem;
}
.pmi-pba .faq .ans p {
  font-size: 13px;
}
.pmi-pba .footer .footer-container,
.pmi-pba .footer .footer-content,
.pmi-pba .footer .footer-list,
.pmi-pba .footer .form,
.pmi-pba .footer .input-list {
  display: flex;
  flex-direction: column;
}
.pmi-pba .footer .footer-list {
  background-image: url(/_public/images/pmi-pba/footer-bg.png);
  background-size: cover;
  background-position: center;
  padding: 1rem 0.8rem;
}
.pmi-pba .footer .footer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.pmi-pba .footer .footer-item:first-child {
  margin-top: 0;
}
.pmi-pba .footer .footer-item span {
  display: flex;
  width: 25px;
  height: 25px;
}
.pmi-pba .footer .footer-item span img {
  width: 100%;
  height: 100%;
}
.pmi-pba .footer .footer-item .info {
  width: calc(100% - 36px);
}
.pmi-pba .footer .footer-item .info a,
.pmi-pba .footer .footer-item .info h3 {
  color: #FFFFFF;
}
.pmi-pba .footer .footer-item .info h3 {
  font-size: 14px;
}
.pmi-pba .footer .footer-item .info a {
  font-size: 12px;
}
.pmi-pba .footer .footer-item .info img {
  width: 110px;
  height: 20px;
}
.pmi-pba .footer .form {
  margin-bottom: 0;
  margin-top: 2rem;
}
.pmi-pba .footer .form .input-container {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #E6E6E6;
  padding: 0.6rem;
  border-radius: 10px;
}
.pmi-pba .footer .form .input-container:last-child {
  align-items: flex-start;
}
.pmi-pba .footer .form .input-container span {
  display: flex;
  height: 18px;
  width: 18px;
}
.pmi-pba .footer .form .input-container span img {
  height: 100%;
  width: 100%;
}
.pmi-pba .footer .form .input-container span .red {
  display: none;
}
.pmi-pba .footer .form .input-container input,
.pmi-pba .footer .form .input-container textarea {
  width: calc(100% - 30px);
  border: none;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-size: 14px;
}
.pmi-pba .footer .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.pmi-pba .footer .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: rgba(112, 112, 112, 0.5);
}
.pmi-pba .footer .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: rgba(112, 112, 112, 0.5);
}
.pmi-pba .footer .form .input-container ::placeholder {
  color: rgba(112, 112, 112, 0.5);
}
.pmi-pba .footer .form .input-error {
  border: 1px solid #ff0000;
}
.pmi-pba .footer .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.pmi-pba .footer .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.pmi-pba .footer .form .input-error ::placeholder {
  color: #ff0000;
}
.pmi-pba .footer .form .input-error span .white {
  display: none;
}
.pmi-pba .footer .form .input-error span .red {
  display: flex;
}
.pmi-pba .footer .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.pmi-pba .footer .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.pmi-pba .footer .form .form-consent label {
  display: flex;
  font-size: 11px;
  width: 95%;
  align-self: center;
  margin-left: 0.3rem;
  cursor: pointer;
  line-height: 1.6;
  font-weight: 500;
}
.pmi-pba .footer .form .form-consent p {
  font-size: 11px;
}
.pmi-pba .footer .form .form-consent a {
  font-weight: 600;
  color: #30A1F9;
}
.pmi-pba .footer .form .consent-error,
.pmi-pba .footer .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.pmi-pba .footer .form .consent-error p,
.pmi-pba .footer .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.pmi-pba .footer .form .buttons .btn-blue {
  min-width: 100px;
}
.pmi-pba .footer .form .buttons .btn-blue img {
  height: 16px;
  width: 16px;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pmi-pba .banner .banner-container h1 span:nth-child(3) {
    color: #012068;
    font-weight: 600;
  }
  .pmi-pba .process .fact-container .fact-item h3,
  .pmi-pba .process .fact-container .fact-item span {
    color: #012068;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .pmi-pba .banner .menu.active + .menu-links {
    width: 50%;
  }
  .pmi-pba .banner .sticky {
    padding: 1rem 2rem;
  }
  .pmi-pba .banner .banner-container h1 .box {
    margin: 0 0 0 0.8rem;
  }
  .pmi-pba .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .pmi-pba .overview .overview-content {
    width: 53%;
  }
  .pmi-pba .overview .course-content {
    width: 43%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .pmi-pba .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .pmi-pba .course .course-item {
    width: 47%;
    margin-right: 2rem;
  }
  .pmi-pba .course .course-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .pmi-pba .course .course-item:last-child {
    margin-right: 0!important;
  }
  .pmi-pba .method .method-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pmi-pba .method .method-content {
    width: 100%;
  }
  .pmi-pba .method .method-item {
    width: 48%;
  }
  .pmi-pba .process .analysis-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .pmi-pba .process .analysis-content {
    width: 48%;
  }
  .pmi-pba .process .analysis-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .pmi-pba .process .fact-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pmi-pba .process .fact-container .heading {
    width: 55%;
    margin: auto;
  }
  .pmi-pba .process .fact-container .fact-item {
    width: 48%;
  }
  .pmi-pba .benefit .benefit-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .pmi-pba .benefit .benefit-content {
    width: 48%;
  }
  .pmi-pba .benefit .graph-content {
    width: 46%;
    margin-top: 0;
  }
  .pmi-pba .choose .heading h2 {
    text-align: center;
  }
  .pmi-pba .choose .heading h2 span {
    margin: 0.5rem auto 0;
  }
  .pmi-pba .choose .choose-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .pmi-pba .choose .choose-item {
    width: 32%;
  }
  .pmi-pba .choose .choose-item h3 {
    min-height: 52px;
  }
  .pmi-pba .business .business-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .pmi-pba .business .business-content {
    width: 50%;
  }
  .pmi-pba .business .business-info {
    margin-top: 0;
    width: 45%;
    position: sticky;
    top: 60px;
  }
  .pmi-pba .testimonial .testimonial-container {
    position: relative;
  }
  .pmi-pba .testimonial .heading {
    margin-bottom: 3rem;
  }
  .pmi-pba .testimonial .heading h2 {
    text-align: left;
    padding-left: 1.2rem;
  }
  .pmi-pba .testimonial .heading h2 span {
    margin: 0.5rem 0 auto;
  }
  .pmi-pba .testimonial .testimonial-item {
    width: 90%;
    padding: 2rem;
  }
  .pmi-pba .testimonial .testimonial-item p {
    min-height: 335px;
  }
  .pmi-pba .testimonial .owl-nav {
    position: absolute;
    right: 22px;
    top: -82px;
    margin-top: 0;
  }
  .pmi-pba .faq .faq-list {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .pmi-pba .faq .heading {
    width: 50%;
  }
  .pmi-pba .faq .heading h2 {
    text-align: left;
  }
  .pmi-pba .faq .heading h2 span {
    margin: 0.5rem 0 auto;
  }
  .pmi-pba .faq .faq-item {
    width: 47%;
  }
  .pmi-pba .faq .faq-item:nth-child(2) {
    margin-top: 0;
  }
  .pmi-pba .footer .center-heading {
    margin-bottom: 2.5rem;
  }
  .pmi-pba .footer .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .pmi-pba .footer .footer-list {
    width: 47%;
    padding: 2rem 1rem;
    position: sticky;
    top: 60px;
  }
  .pmi-pba .footer .footer-item {
    margin-top: 2.5rem;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 1.5rem;
  }
  .pmi-pba .footer .form {
    width: 48%;
    margin-top: 0;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .pmi-pba .heading h2 {
    font-size: 28px;
  }
  .pmi-pba .buttons .btn-blue,
  .pmi-pba .buttons .btn-white {
    font-size: 16px;
  }
  .pmi-pba .banner {
    background-image: url(/_public/images/pmi-pba/banner-bg.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  .pmi-pba .banner .menu,
  .pmi-pba .banner .menu-toggle {
    display: none;
  }
  .pmi-pba .banner .menu-links {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    background-color: transparent;
    position: relative;
    box-shadow: none;
  }
  .pmi-pba .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .pmi-pba .banner ul .links-li {
    border-bottom: none;
    margin-right: 0.8rem;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-size: 15px;
  }
  .pmi-pba .banner ul .links-li::before {
    content: '';
    position: absolute;
    background-color: #30A1F9;
    left: -6px;
    bottom: 5px;
    width: 2px;
    height: 0;
    transition: 1s all;
    z-index: -1;
  }
  .pmi-pba .banner ul .links-li:hover::before {
    height: 12px;
  }
  .pmi-pba .banner ul .links-li:nth-child(5) {
    display: none;
  }
  .pmi-pba .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .pmi-pba .banner ul .links-li:last-child::before {
    content: none;
  }
  .pmi-pba .banner ul .buttons .btn-blue,
  .pmi-pba .banner ul .buttons .btn-white {
    height: 43px;
    min-width: 168px;
  }
  .pmi-pba .banner ul .buttons .btn-white {
    margin-right: 0.8rem;
  }
  .pmi-pba .banner ul .buttons .btn-white::before {
    background-color: #30A1F9;
  }
  .pmi-pba .banner .sticky {
    background-image: linear-gradient(235deg, #012068 69%, transparent 70%);
  }
  .pmi-pba .banner .banner-container {
    width: 53%;
  }
  .pmi-pba .banner .banner-container h1 {
    margin-bottom: 1.5rem;
    width: 80%;
  }
  .pmi-pba .banner .banner-container h1 span:nth-child(3) {
    font-size: 40px;
  }
  .pmi-pba .overview {
    background-color: transparent;
  }
  .pmi-pba .overview .overview-container {
    position: relative;
  }
  .pmi-pba .overview .overview-content {
    background-color: #F5F5F5;
    padding: 1.5rem 5rem 1.5rem 1.5rem;
    width: 67%;
  }
  .pmi-pba .overview .course-content {
    position: absolute;
    right: 0;
    top: 15%;
    padding: 1.8rem 1.8rem 5rem;
    width: 37%;
  }
  .pmi-pba .overview .course-content h3 {
    font-size: 25px;
  }
  .pmi-pba .course {
    padding-top: 0;
  }
  .pmi-pba .course .course-item {
    width: 31%;
  }
  .pmi-pba .course .course-item:nth-of-type(2n) {
    margin-right: 2rem;
  }
  .pmi-pba .course .course-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .pmi-pba .method .method-container {
    width: 80%;
    margin: auto;
  }
  .pmi-pba .method .method-item .method-info h3 {
    width: calc(100% - 86px);
    min-height: 86px;
    font-size: 18px;
    padding: 1rem;
  }
  .pmi-pba .method .method-item .method-info span {
    min-width: 86px;
    height: 86px;
  }
  .pmi-pba .process .fact-container .heading {
    width: 31%;
    order: 3;
    margin: 0;
    padding: 1.4rem 1rem;
  }
  .pmi-pba .process .fact-container .fact-item {
    width: 16%;
    margin-top: 0;
  }
  .pmi-pba .process .fact-container .fact-item p {
    line-height: 1.5;
  }
  .pmi-pba .process .fact-container .fact-item:nth-child(1) {
    order: 3;
  }
  .pmi-pba .process .fact-container .fact-item:nth-child(2) {
    order: 1;
  }
  .pmi-pba .process .fact-container .fact-item:nth-child(3) {
    order: 2;
  }
  .pmi-pba .process .fact-container .fact-item:nth-child(4) {
    order: 4;
  }
  .pmi-pba .process .fact-container .fact-item:nth-child(5) {
    order: 5;
  }
  .pmi-pba .benefit .graph-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pmi-pba .benefit .graph-item {
    width: 47%;
  }
  .pmi-pba .benefit .graph-item:first-child {
    width: 100%;
  }
  .pmi-pba .choose {
    background-image: url(/_public/images/pmi-pba/choose-bg.png), url(/_public/images/pmi-pba/choose-dots.png);
    background-repeat: no-repeat;
    background-position: left, right top;
    background-size: 16% 100%, 17% 45%;
  }
  .pmi-pba .testimonial .testimonial-item p {
    min-height: 252px;
  }
  .pmi-pba .testimonial .icon h3 {
    font-size: 18px;
  }
  .pmi-pba .faq .ques .number {
    display: flex;
  }
  .pmi-pba .faq .ques .number::before {
    content: counter(counter, decimal-leading-zero);
  }
  .pmi-pba .faq .ques h3 {
    width: calc(100% - 85px);
  }
  .pmi-pba .footer .footer-content {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    align-items: inherit;
  }
  .pmi-pba .footer .center-heading {
    width: 80%;
    align-self: center;
  }
  .pmi-pba .footer .footer-list {
    position: static;
    padding: 4rem 1.5rem;
  }
  .pmi-pba .footer .footer-item span {
    width: 70px;
    height: 65px;
    background-image: url(/_public/images/pmi-pba/polygon.svg);
    background-size: 100% 100%;
    padding: 1.2rem;
  }
  .pmi-pba .footer .footer-item .info {
    width: calc(100% - 90px);
  }
  .pmi-pba .footer .footer-item .info h3 {
    font-size: 19px;
  }
  .pmi-pba .footer .footer-item .info a {
    font-size: 18px;
  }
  .pmi-pba .footer .form {
    padding: 2rem 2rem 2rem 0;
  }
  .pmi-pba .footer .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pmi-pba .footer .form .input-container {
    width: 48%;
  }
  .pmi-pba .footer .form .input-container:last-child {
    width: 100%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .pmi-pba .heading h2 {
    font-size: 35px;
  }
  .pmi-pba .banner {
    background-size: 100% 100%;
  }
  .pmi-pba .banner .tka-logo {
    max-width: 230px;
  }
  .pmi-pba .banner ul .links-li {
    margin-right: 0.8rem;
  }
  .pmi-pba .banner ul .links-li:nth-child(5) {
    display: flex;
  }
  .pmi-pba .banner .buttons .btn-white {
    margin-right: 0.8rem;
  }
  .pmi-pba .banner .sticky {
    padding: 1rem 0;
  }
  .pmi-pba .banner ul .links-li {
    margin-right: 1.2rem;
  }
  .pmi-pba .banner .buttons .btn-white {
    margin-right: 1.2rem;
  }
  .pmi-pba .banner .banner-container {
    padding-top: 4rem;
  }
  .pmi-pba .banner .banner-container h1 {
    font-size: 30px;
    position: relative;
  }
  .pmi-pba .banner .banner-container h1 span:nth-child(3) {
    line-height: 1;
    font-size: 50px;
  }
  .pmi-pba .banner .banner-container h1 span:last-child {
    position: absolute;
    width: auto;
    right: -36%;
    bottom: 0;
    font-size: 38px;
  }
  .pmi-pba .banner .banner-container h1 img {
    width: 42px;
    height: 42px;
  }
  .pmi-pba .course .course-item {
    width: 23%;
  }
  .pmi-pba .course .course-item:nth-of-type(3n) {
    margin-right: 2rem;
  }
  .pmi-pba .course .course-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .pmi-pba .method .method-container {
    width: 100%;
  }
  .pmi-pba .method .method-content {
    width: 60%;
  }
  .pmi-pba .method .method-item {
    width: 32%;
  }
  .pmi-pba .method .method-item:nth-child(2) {
    margin-top: 0;
  }
  .pmi-pba .process .analysis-container {
    align-items: center;
  }
  .pmi-pba .process .analysis-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pmi-pba .process .analysis-content ul li {
    width: 48%;
  }
  .pmi-pba .process .analysis-info {
    position: static;
  }
  .pmi-pba .process .fact-container {
    margin-top: 5rem;
  }
  .pmi-pba .process .fact-container .heading {
    width: 26%;
    align-self: center;
  }
  .pmi-pba .process .fact-container .heading h2 {
    font-size: 28px;
  }
  .pmi-pba .choose .choose-container {
    width: 90%;
    margin: auto;
    padding: 3rem 4rem;
  }
  .pmi-pba .choose .choose-item h3 {
    font-size: 17px;
    margin: 1.2rem 0;
    min-height: auto;
  }
  .pmi-pba .business .business-info {
    position: static;
    align-self: center;
    padding: 3rem 1.5rem;
    top: 0;
  }
  .pmi-pba .testimonial .testimonial-item p {
    min-height: 302px;
  }
  .pmi-pba .footer .footer-list {
    width: 40%;
  }
  .pmi-pba .footer .form {
    padding: 2rem 3.5rem;
    width: 58%;
  }
}
